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..08a08683 100644 --- a/data/cidref.json +++ b/data/cidref.json @@ -1,16698 +1,37479 @@ [ { - "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)" - }, - { - "authorized_access_point": "Hispanismes (idiotismes)" - }, - { - "authorized_access_point": "Imprim\u00e9s espagnols" - }, - { - "authorized_access_point": "Influence sur l'espagnol" - }, - { - "authorized_access_point": "Jud\u00e9o-espagnol (langue)" - }, - { - "authorized_access_point": "Langues cr\u00e9oles espagnoles" - }, - { - "authorized_access_point": "Manuscrits espagnols" - }, - { - "authorized_access_point": "Mots apparent\u00e9s espagnols" - }, - { - "authorized_access_point": "N tild\u00e9 (la lettre espagnole)" - }, - { - "authorized_access_point": "Noms de personnes espagnols" - }, - { - "authorized_access_point": "Noms propres espagnols" - }, - { - "authorized_access_point": "P\u00e9riodiques espagnols" - }, - { - "authorized_access_point": "Philologie espagnole" - }, - { - "authorized_access_point": "Phon\u00e9tique compar\u00e9e - Espagnol (langue)" - }, - { - "authorized_access_point": "Professeurs d'espagnol" - }, - { - "authorized_access_point": "Traduction en espagnol" - }, + "identifiedBy": [ { - "authorized_access_point": "Traductions espagnoles" + "type": "uri", + "value": "http://www.idref.fr/027225798", + "source": "IDREF" }, { - "authorized_access_point": "Versions espagnoles" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119313952", + "source": "BNF" }, { - "authorized_access_point": "Vocabulaires et manuels de conversation espagnols" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11931395" + } + ], + "note": [ { - "authorized_access_point": "Cantiques espagnols" - }, + "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": "Chansons espagnoles" + "authorized_access_point": "Discrimination sexuelle" }, { - "authorized_access_point": "Citations espagnoles" + "authorized_access_point": "Femmes - Statut juridique" }, { - "authorized_access_point": "Correspondance espagnole" + "authorized_access_point": "Journ\u00e9e internationale de la femme" }, { - "authorized_access_point": "Litt\u00e9rature hispanophone" - }, + "authorized_access_point": "Prix Simone de Beauvoir pour la libert\u00e9 des femmes" + } + ], + "narrower": [ { - "authorized_access_point": "Manuels pour locuteurs de l'espagnol" + "authorized_access_point": "Antif\u00e9minisme" }, { - "authorized_access_point": "M\u00e9lodies espagnoles" + "authorized_access_point": "\u00c9galit\u00e9 des sexes" }, { - "authorized_access_point": "Paraphrases espagnoles" + "authorized_access_point": "F\u00e9minisme" }, { - "authorized_access_point": "Synopses espagnoles" + "authorized_access_point": "Femmes - Droit de vote" }, { - "authorized_access_point": "Virelangues espagnols" - }, + "authorized_access_point": "Syndicats - Attitude envers la condition f\u00e9minine" + } + ], + "broader": [ { - "authorized_access_point": "Pays de langue espagnole" + "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": "06299dff5ef1568b84da6566f7bab6c8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "R\u00e9alisme socialiste", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Espagnol (langue) - Argot" - }, + "classification": [ { - "authorized_access_point": "Espagnol (langue) - Dialectes" + "type": "bf:ClassificationDdc", + "classificationPortion": "100", + "name": "Philosophie" }, { - "authorized_access_point": "Espagnol (langue) - Avant 1500" + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" }, { - "authorized_access_point": "Espagnol (langue) - 1500-1700 (P\u00e9riode classique)" + "type": "bf:ClassificationDdc", + "classificationPortion": "700", + "name": "Arts (sauf litt\u00e9rature)" }, { - "authorized_access_point": "Que\u00edsmo" + "type": "bf:ClassificationDdc", + "classificationPortion": "801", + "name": "Litt\u00e9rature g\u00e9n\u00e9rale" } ], "closeMatch": [ { + "authorized_access_point": "Socialist realism", "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/sh85124145", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Espagnol (Langue)" + "authorized_access_point": "R\u00e9alisme socialiste", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027224430", + "value": "http://www.idref.fr/027242250", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119312813", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119327288", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932728" } ], - "variant_access_point": [ - "Castellano (langue)", - "Castillan (langue)" - ], - "authorized_access_point": "Espagnol (langue)" - }, - { - "md5": "ed787193323d3cfadbd708b5809d29ce", - "pid": "027227219", "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 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" + "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": "Alg\u00e9riens d'origine fran\u00e7aise" + "authorized_access_point": "R\u00e9alisme socialiste (art)" }, { - "authorized_access_point": "Allemands d'origine fran\u00e7aise" + "authorized_access_point": "R\u00e9alisme socialiste (litt\u00e9rature)" }, { - "authorized_access_point": "Am\u00e9ricains d'origine fran\u00e7aise" - }, + "authorized_access_point": "R\u00e9alisme socialiste (musique)" + } + ], + "broader": [ { - "authorized_access_point": "Britanniques d'origine fran\u00e7aise" + "authorized_access_point": "Esth\u00e9tique communiste" }, { - "authorized_access_point": "Canadiens francophones" + "authorized_access_point": "Esth\u00e9tique marxiste" + } + ], + "md5": "49c29ae694de3ceb7a3c73a1e995a168" + }, + { + "type": "bf:Topic", + "authorized_access_point": "P\u00e9dagogie", + "bnf_type": "sujet Rameau", + "classification": [ + { + "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/sh85040989", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Roumains d'origine fran\u00e7aise" + "authorized_access_point": "Teaching", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85133052", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "France" + "authorized_access_point": "P\u00e9dagogie", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", - "narrower": [ + "identifiedBy": [ { - "authorized_access_point": "Agriculteurs fran\u00e7ais" + "type": "uri", + "value": "http://www.idref.fr/027246159", + "source": "IDREF" }, { - "authorized_access_point": "Agronomes fran\u00e7ais" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12063646c", + "source": "BNF" }, { - "authorized_access_point": "Alpinistes fran\u00e7ais" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12098750q", + "source": "BNF" }, { - "authorized_access_point": "Anarchistes fran\u00e7ais" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933049j", + "source": "BNF" }, { - "authorized_access_point": "Animateurs socioculturels fran\u00e7ais" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12063646" }, { - "authorized_access_point": "Arch\u00e9ologues fran\u00e7ais" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12098750" }, { - "authorized_access_point": "Artistes fran\u00e7ais" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933049" + } + ], + "note": [ { - "authorized_access_point": "Biblioth\u00e9caires fran\u00e7ais" - }, + "noteType": "general", + "label": [ + "S'emploie \u00e9galement en subdivision" + ] + } + ], + "pid": "027246159", + "related": [ { - "authorized_access_point": "Catholiques fran\u00e7ais" + "authorized_access_point": "Apprentissage transformationnel" }, { - "authorized_access_point": "Chirurgiens fran\u00e7ais" + "authorized_access_point": "\u00c9ducation positive" }, { - "authorized_access_point": "Commer\u00e7ants fran\u00e7ais" + "authorized_access_point": "Enseignement" }, { - "authorized_access_point": "Communistes fran\u00e7ais" + "authorized_access_point": "\u00c9tude et enseignement" }, { - "authorized_access_point": "D\u00e9port\u00e9s fran\u00e7ais" + "authorized_access_point": "Hautes \u00e9coles p\u00e9dagogiques (syst\u00e8me \u00e9ducatif suisse)" }, { - "authorized_access_point": "Diplomates fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogues" }, { - "authorized_access_point": "\u00c9crivains fran\u00e7ais" - }, + "authorized_access_point": "Psychologie de l'\u00e9ducation" + } + ], + "narrower": [ { - "authorized_access_point": "\u00c9diteurs fran\u00e7ais" + "authorized_access_point": "Apprentissage contextualis\u00e9" }, { - "authorized_access_point": "\u00c9gyptologues fran\u00e7ais" + "authorized_access_point": "Conception universelle de l'apprentissage" }, { - "authorized_access_point": "Employ\u00e9s de maison fran\u00e7ais" + "authorized_access_point": "Didactique" }, { - "authorized_access_point": "Enseignants fran\u00e7ais" + "authorized_access_point": "Dispositifs p\u00e9dagogiques" }, { - "authorized_access_point": "Ethnologues fran\u00e7ais" + "authorized_access_point": "\u00c9ducation - Langage" }, { - "authorized_access_point": "\u00c9tudiants fran\u00e7ais" + "authorized_access_point": "\u00c9ducation fonctionnelle" }, { - "authorized_access_point": "Explorateurs fran\u00e7ais" + "authorized_access_point": "\u00c9ducation par le territoire" }, { - "authorized_access_point": "Fran\u00e7aises" + "authorized_access_point": "Enseignants - Formation" }, { - "authorized_access_point": "G\u00e9ographes fran\u00e7ais" + "authorized_access_point": "Enseignants - Orientation p\u00e9dagogique" }, { - "authorized_access_point": "Historiens fran\u00e7ais" + "authorized_access_point": "Enseignement - M\u00e9thode des projets" }, { - "authorized_access_point": "Hommes d'affaires fran\u00e7ais" + "authorized_access_point": "Enseignement - M\u00e9thodes actives" }, { - "authorized_access_point": "Humanistes fran\u00e7ais" + "authorized_access_point": "Enseignement acc\u00e9l\u00e9r\u00e9" }, { - "authorized_access_point": "Ing\u00e9nieurs fran\u00e7ais" + "authorized_access_point": "Enseignement explicite" }, { - "authorized_access_point": "Ing\u00e9nieurs militaires fran\u00e7ais" + "authorized_access_point": "Enseignement magistral" }, { - "authorized_access_point": "Intellectuels fran\u00e7ais" + "authorized_access_point": "Entretiens en \u00e9ducation" }, { - "authorized_access_point": "Joueurs de basket-ball fran\u00e7ais" + "authorized_access_point": "Herbartianisme" }, { - "authorized_access_point": "Joueurs de football fran\u00e7ais" + "authorized_access_point": "Hypnop\u00e9die" }, { - "authorized_access_point": "Journalistes fran\u00e7ais" + "authorized_access_point": "Lesson study" }, { - "authorized_access_point": "Juifs fran\u00e7ais" + "authorized_access_point": "Math\u00e9tique" }, { - "authorized_access_point": "Marins fran\u00e7ais" + "authorized_access_point": "M\u00e9thode critique (p\u00e9dagogie)" }, { - "authorized_access_point": "M\u00e9decins fran\u00e7ais" + "authorized_access_point": "M\u00e9thode de Bell et Lancaster" }, { - "authorized_access_point": "Militaires fran\u00e7ais" + "authorized_access_point": "M\u00e9thode des cas" }, { - "authorized_access_point": "Mormons fran\u00e7ais" + "authorized_access_point": "M\u00e9thode Montessori" }, { - "authorized_access_point": "Otages fran\u00e7ais" + "authorized_access_point": "M\u00e9thode Ramain" }, { - "authorized_access_point": "Pharmaciens fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogie critique" }, { - "authorized_access_point": "Pilotes militaires fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogie culturellement adapt\u00e9e" }, { - "authorized_access_point": "Pirates fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogie de soutien" }, { - "authorized_access_point": "Prisonniers fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogie du corps" }, { - "authorized_access_point": "Protestants fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogie exp\u00e9rimentale" }, { - "authorized_access_point": "R\u00e9fugi\u00e9s fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogie Germaine Tortel" }, { - "authorized_access_point": "Religieux fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogie mus\u00e9ale" }, { - "authorized_access_point": "Restaurateurs (alimentation) fran\u00e7ais" + "authorized_access_point": "P\u00e9dagogie sociale" }, { - "authorized_access_point": "Royalistes fran\u00e7ais" + "authorized_access_point": "R\u00e9citation" }, { - "authorized_access_point": "Savants fran\u00e7ais" + "authorized_access_point": "Suggestop\u00e9die" }, { - "authorized_access_point": "Scientifiques fran\u00e7ais" + "authorized_access_point": "Technologie \u00e9ducative" }, { - "authorized_access_point": "Travailleurs \u00e9trangers fran\u00e7ais" + "authorized_access_point": "Dict\u00e9es" }, { - "authorized_access_point": "Viticulteurs 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": "691681ab16442fa4f21bc11c99a43e6f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Syst\u00e8mes informatiques - Mesures de s\u00fbret\u00e9", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Voyageurs fran\u00e7ais" + "type": "bf:ClassificationDdc", + "classificationPortion": "621" } ], "closeMatch": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85051757", - "source": "LCSH" - }, - "authorized_access_point": "French" + "authorized_access_point": "Internet--S\u00e9curit\u00e9--Mesures", + "source": "RVMLaval" }, { - "source": "RVMLaval", - "authorized_access_point": "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" + } + ] } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027227219", + "value": "http://www.idref.fr/027248062", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb133183184", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318381w", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318381" } ], - "authorized_access_point": "Fran\u00e7ais" - }, - { - "md5": "4a137d0e50b4305a51ba4e4a370a1d9e", - "pid": "027235548", "note": [ { + "noteType": "general", "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" - }, - { - "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" + "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" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "027248062", + "related": [ { - "authorized_access_point": "Asc\u00e8se" + "authorized_access_point": "Confiance num\u00e9rique" }, { - "authorized_access_point": "Asc\u00e9tisme" - } - ], - "related": [ + "authorized_access_point": "Cyberd\u00e9fense" + }, { - "authorized_access_point": "Car\u00eame" + "authorized_access_point": "Hacking" }, { - "authorized_access_point": "Di\u00e8te" + "authorized_access_point": "Microordinateurs - Acc\u00e8s - Contr\u00f4le" }, { - "authorized_access_point": "Gr\u00e8ves de la faim" + "authorized_access_point": "Ordinateurs - Acc\u00e8s - Contr\u00f4le" }, { - "authorized_access_point": "P\u00e9nitence" + "authorized_access_point": "Syst\u00e8mes informatiques - Mesures de s\u00fbret\u00e9 - Examens" }, { - "authorized_access_point": "Vrata" + "authorized_access_point": "Virus informatiques" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Je\u00fbne - Islam" + "authorized_access_point": "Gestion des droits num\u00e9riques" }, { - "authorized_access_point": "Je\u00fbne f\u00e9d\u00e9ral" + "authorized_access_point": "Contrats intelligents" }, { - "authorized_access_point": "Respirianisme" - } - ], - "closeMatch": [ + "authorized_access_point": "AltaRica (m\u00e9thode formelle)" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85047403", - "source": "LCSH" - }, - "authorized_access_point": "Fasting" + "authorized_access_point": "Antivirus (logiciels)" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2003003108", - "source": "LCSH" - }, - "authorized_access_point": "Fasting -- Religious aspects" + "authorized_access_point": "Blockchains" }, { - "source": "RVMLaval", - "authorized_access_point": "Je\u00fbne" + "authorized_access_point": "Captcha" }, { - "source": "RVMLaval", - "authorized_access_point": "Je\u00fbne -- Aspect religieux" - } - ], - "identifiedBy": [ + "authorized_access_point": "D\u00e9tection des anomalies (informatique)" + }, { - "type": "uri", - "value": "http://www.idref.fr/027235548", - "source": "IDREF" + "authorized_access_point": "Infrastructures \u00e0 cl\u00e9s publiques" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119321545", - "source": "BNF" + "authorized_access_point": "Protection de l'information (informatique)" + }, + { + "authorized_access_point": "R\u00e9seaux d'ordinateurs - Mesures de s\u00fbret\u00e9" } ], - "classification": [ + "broader": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "authorized_access_point": "Cybercriminalit\u00e9" } ], "variant_access_point": [ - "Je\u00fbne - Aspect religieux", - "Je\u00fbne religieux" + "Cybers\u00e9curit\u00e9", + "Informatique - Mesures de s\u00fbret\u00e9", + "S\u00e9curit\u00e9 informatique", + "S\u00fbret\u00e9 des syst\u00e8mes d'information" ], - "authorized_access_point": "Je\u00fbne" + "md5": "9c5f6b72def8492b2c17106090dd122b" }, { - "md5": "ed278d06425b22322bab28cde431bee3", - "pid": "027236226", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Vannerie", + "bnf_type": "sujet Rameau", + "classification": [ { - "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" + "type": "bf:ClassificationDdc", + "classificationPortion": "740", + "name": "Dessin, arts d\u00e9coratifs, artisanat d'art" }, { - "label": [ - "Processus de perception et de production du langage chez l'enfant" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "793", + "name": "Jeux" } ], - "type": "bf:Topic", - "broader": [ + "closeMatch": [ { - "authorized_access_point": "Biolinguistique" + "authorized_access_point": "Basket making", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012110", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Neurolinguistique" + "authorized_access_point": "Basketwork", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012127", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Psycholinguistique" + "authorized_access_point": "Grass weaving", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85056513", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Psychologie de l'apprentissage" + "authorized_access_point": "Vannerie", + "source": "RVMLaval" } ], - "related": [ - { - "authorized_access_point": "Acquisition linguistique" - }, + "identifiedBy": [ { - "authorized_access_point": "Enfants - Langage" + "type": "uri", + "value": "http://www.idref.fr/027255468", + "source": "IDREF" }, { - "authorized_access_point": "Langage" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13516282t", + "source": "BNF" }, { - "authorized_access_point": "Langage - Compr\u00e9hension" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13516282" } ], - "bnf_type": "sujet Rameau", - "narrower": [ + "note": [ { - "authorized_access_point": "Inn\u00e9isme (linguistique)" - }, + "noteType": "dataSource", + "label": [ + "Nouveau petit Robert 1993", + "Tr\u00e9sor de la langue fran\u00e7aise", + "Dict. des termes d'art / G. Janneau, 1980" + ] + }, { - "authorized_access_point": "Reconnaissance des mots" + "noteType": "general", + "label": [ + "Art de fabriquer des objets tress\u00e9s avec des fibres v\u00e9g\u00e9tales ou des tiges" + ] }, { - "authorized_access_point": "Tableaux d'\u00e9locution" + "noteType": "seeReference", + "label": [ + "Voir aussi les vedettes du type Vannerie [adjectif ethnique]" + ] } ], - "closeMatch": [ + "pid": "027255468", + "narrower": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85074511", - "source": "LCSH" - }, - "authorized_access_point": "Language acquisition" + "authorized_access_point": "Meubles en rotin" }, { - "source": "RVMLaval", - "authorized_access_point": "Langage -- Acquisition" - } - ], - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/027236226", - "source": "IDREF" + "authorized_access_point": "Objets en \u00e9corces" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11932215j", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Paniers" + }, { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "authorized_access_point": "Travail de l'osier" }, { - "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" - }, - { - "md5": "e063396caed42ca1b11fdc3957dafad3", - "pid": "027243087", - "note": [ + "authorized_access_point": "Travail de la paille" + }, { - "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" + "authorized_access_point": "Travail des feuilles de vaquois" }, { - "label": [ - "S'emploie \u00e9galement en subdivision. Cette subdivision s'applique aux langues vivantes, par ex. : Fran\u00e7ais (langue) -- Rythme" - ], - "noteType": "general" + "authorized_access_point": "Travail des palmes" }, { - "label": [ - "Voir aussi la subdivision M\u00e9trique et rythmique aux langues anciennes, par ex. : Grec (langue) -- M\u00e9trique et rythmique" - ], - "noteType": "seeReference" + "authorized_access_point": "Travail du raphia" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Esth\u00e9tique" - }, - { - "authorized_access_point": "Po\u00e9tique" + "authorized_access_point": "Artisanat de nature" }, { - "authorized_access_point": "Prosodie (linguistique)" + "authorized_access_point": "Arts d\u00e9coratifs" } ], - "related": [ - { - "authorized_access_point": "M\u00e9trique et rythmique" - }, - { - "authorized_access_point": "Mouvement (esth\u00e9tique)" - }, - { - "authorized_access_point": "Musique - Mesure et rythme" - }, + "variant_access_point": [ + "Croiserie", + "Joncerie", + "Lacerie", + "Lasserie", + "Mandrerie" + ], + "md5": "8740963d02d11084f82110a110e1bd3f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Volont\u00e9", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "R\u00e9p\u00e9tition (esth\u00e9tique)" + "type": "bf:ClassificationDdc", + "classificationPortion": "100", + "name": "Philosophie" }, { - "authorized_access_point": "Versification" + "type": "bf:ClassificationDdc", + "classificationPortion": "150", + "name": "Psychologie, psychanalyse" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Will", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85074534", - "source": "LCSH" - }, - "authorized_access_point": "Language and languages--Rhythm" + "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/sh00007545", - "source": "LCSH" - }, - "authorized_access_point": "Rhythm" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006003161", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Langage et langues--Rythme" + "authorized_access_point": "Volont\u00e9", + "source": "RVMLaval" }, { - "source": "RVMLaval", - "authorized_access_point": "Rythme" + "authorized_access_point": "Acrasie", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027243087", + "value": "http://www.idref.fr/027256138", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11932811t", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933815f", "source": "BNF" - } - ], - "classification": [ - { - "name": "Philosophie", - "type": "bf:ClassificationDdc", - "classificationPortion": "100" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" }, { - "name": "Arts", - "type": "bf:ClassificationDdc", - "classificationPortion": "700" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13609085" }, { - "name": "Po\u00e9sie", - "type": "bf:ClassificationDdc", - "classificationPortion": "801" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933815" } ], - "variant_access_point": [ - "Rythmanalyse", - "Rythme (esth\u00e9tique)", - "Rythme (linguistique)", - "Rythme (po\u00e9tique)", - "Rythmique" - ], - "authorized_access_point": "Rythme" - }, - { - "md5": "d6f62c7c5e68e1af29b37017fe8f3651", - "pid": "027246655", "note": [ { + "noteType": "dataSource", "label": [ "Les notions philosophiques / S. Auroux, 1990", - "Encycl. de la philosophie, 2002", + "Vocabulaire technique et critique de la philosophie / A. Lalande, 1997", "Grand dict. de la philosophie / M. Blay, 2003", - "Dict. de philosophie / C. Godin, 2004" - ], - "noteType": "dataSource" + "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": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Philosophie - 20e si\u00e8cle" + "Sous cette vedette, on trouve les documents sur les concepts philosophiques ou psychologiques de volont\u00e9 et d'absence de volont\u00e9" + ] } ], + "pid": "027256138", "related": [ { - "authorized_access_point": "Anthropologie ph\u00e9nom\u00e9nologique" + "authorized_access_point": "Assentiment (philosophie)" }, { - "authorized_access_point": "Chair (philosophie)" + "authorized_access_point": "Procrastination" }, { - "authorized_access_point": "Ph\u00e9nom\u00e9nologie de l'art" + "authorized_access_point": "Volontarisme doxastique" }, { - "authorized_access_point": "Ph\u00e9nom\u00e9nologie et litt\u00e9rature" + "authorized_access_point": "Autonomie (philosophie)" }, { - "authorized_access_point": "Ph\u00e9nom\u00e9nologie et musique" + "authorized_access_point": "Dieu - Volont\u00e9" }, { - "authorized_access_point": "Psychologie ph\u00e9nom\u00e9nologique" + "authorized_access_point": "Faiblesse (psychologie)" }, { - "authorized_access_point": "Sociologie et ph\u00e9nom\u00e9nologie" + "authorized_access_point": "Hek\u1e53n (le mot grec)" + }, + { + "authorized_access_point": "Inhibition" + }, + { + "authorized_access_point": "Intention" + }, + { + "authorized_access_point": "Libre arbitre" + }, + { + "authorized_access_point": "Prise de d\u00e9cision" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "broader": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85046373", - "source": "LCSH" - }, - "authorized_access_point": "Existential phenomenology" + "authorized_access_point": "Morale" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85100683", - "source": "LCSH" - }, - "authorized_access_point": "Phenomenology" + "authorized_access_point": "Personnalit\u00e9" }, { - "source": "RVMLaval", - "authorized_access_point": "Ph\u00e9nom\u00e9nologie" + "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": "02672446ffed501172268a50f071ca64" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - France - 1852-1870", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027246655", + "value": "http://www.idref.fr/027257045", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933094c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933876n", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Philosophie", - "type": "bf:ClassificationDdc", - "classificationPortion": "100" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933876" } ], - "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" - }, + "Laval RVM, 1983" + ] + } + ], + "pid": "027257045", + "narrower": [ { - "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" + "authorized_access_point": "Plombi\u00e8res, Entrevue de (1858)" } ], + "md5": "2e4e8e6798fccaa6b67332e917cf10aa" + }, + { "type": "bf:Topic", - "broader": [ + "authorized_access_point": "V\u00e9disme", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Philosophie hindoue" + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" } ], - "related": [ + "identifiedBy": [ { - "authorized_access_point": "Christianisme et yoga" + "type": "uri", + "value": "http://www.idref.fr/027268284", + "source": "IDREF" }, { - "authorized_access_point": "M\u00e9ditation - Hindouisme" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11934684z", + "source": "BNF" }, { - "authorized_access_point": "Yogis" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11934684" } ], - "bnf_type": "sujet Rameau", - "narrower": [ + "note": [ { - "authorized_access_point": "Hatha-yoga" + "noteType": "dataSource", + "label": [ + "Dict. des religions / P. Poupard, 1984" + ] }, { - "authorized_access_point": "J\u00f1\u0101na-yoga" - }, + "noteType": "general", + "label": [ + "S'emploie \u00e9galement en subdivision. Cette subdivision s'applique aux sujets religieux" + ] + } + ], + "pid": "027268284", + "related": [ { - "authorized_access_point": "Karma-yoga" + "authorized_access_point": "Brahmanisme" }, { - "authorized_access_point": "Kriy\u0101-yoga" + "authorized_access_point": "Hindouisme" }, { - "authorized_access_point": "Laya-yoga" - }, + "authorized_access_point": "Veda et sciences" + } + ], + "narrower": [ { - "authorized_access_point": "R\u0101ja-yoga" + "authorized_access_point": "V\u00e9disme - Rites et c\u00e9r\u00e9monies" }, { - "authorized_access_point": "Siddha Yoga" + "authorized_access_point": "Cosmogonie v\u00e9dique" }, { - "authorized_access_point": "Swara-yoga" + "authorized_access_point": "Apsar\u0101" }, { - "authorized_access_point": "Yoga nidra" + "authorized_access_point": "Asura" }, { - "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" + "authorized_access_point": "Dieux v\u00e9diques" }, { - "source": "RVMLaval", - "authorized_access_point": "Yoga" - } - ], - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/027256251", - "source": "IDREF" + "authorized_access_point": "Morale v\u00e9dique" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933824d", - "source": "BNF" + "authorized_access_point": "Symbolisme v\u00e9dique" } ], - "classification": [ - { - "name": "Philosophie", - "type": "bf:ClassificationDdc", - "classificationPortion": "100" - }, + "broader": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "authorized_access_point": "Religions" } ], "variant_access_point": [ - "Yoga - Aspect religieux" + "Hindouisme ancien", + "Religion v\u00e9dique" ], - "authorized_access_point": "Yoga" + "md5": "9c313c0bc5fd11fa017f909419d47d44" }, { - "md5": "7f61058f216df78b1cc41c9e52ec2471", - "pid": "027287289", - "note": [ - { - "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" - } - ], "type": "bf:Topic", - "related": [ - { - "authorized_access_point": "Mariage" - } - ], + "authorized_access_point": "Encomiendas", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Conciliation (divorce)" - }, - { - "authorized_access_point": "Divorc\u00e9s" - }, - { - "authorized_access_point": "Enfants de divorc\u00e9s" - }, + "classification": [ { - "authorized_access_point": "Remariage" + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" }, { - "authorized_access_point": "R\u00e9pudiation" + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" } ], "closeMatch": [ { + "authorized_access_point": "Encomiendas (Latin America)", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85038616", - "source": "LCSH" - }, - "authorized_access_point": "Divorce" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042989", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Divorce" + "authorized_access_point": "Encomiendas", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027287289", + "value": "http://www.idref.fr/027274144", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11936233f", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11935180f", "source": "BNF" - } - ], - "classification": [ - { - "name": "Sciences sociales", - "type": "bf:ClassificationDdc", - "classificationPortion": "300" }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11935180" } ], - "variant_access_point": [ - "D\u00e9mariage", - "Dissolution du mariage", - "Mariage - Dissolution" - ], - "authorized_access_point": "Divorce" - }, - { - "md5": "c36ae06c89d379f470125bd7b1dc8cf7", - "pid": "027294358", "note": [ { + "noteType": "dataSource", "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" + "GLU", + "Encomiendas (se subd. g\u00e9ogr.) ; Laval RVM (en ligne), 2003-07-02" + ] + }, + { + "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" + ] } ], - "type": "bf:Topic", + "pid": "027274144", "broader": [ { - "authorized_access_point": "Contre-culture" - }, - { - "authorized_access_point": "Mouvements litt\u00e9raires - \u00c9tats-Unis" + "authorized_access_point": "Colonies espagnoles" }, { - "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine - 1945-2000" + "authorized_access_point": "Travail forc\u00e9" } ], "related": [ { - "authorized_access_point": "Cut-up" - }, - { - "authorized_access_point": "Psych\u00e9d\u00e9lisme" - }, - { - "authorized_access_point": "Spoken word (po\u00e9sie)" + "authorized_access_point": "Travailleurs autochtones" } ], + "variant_access_point": [ + "Encomienda", + "Repartimiento", + "Repartimientos" + ], + "md5": "f12f3c09390c62798694773b3ff03dac" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations internationales - 1933-1945", "bnf_type": "sujet Rameau", - "closeMatch": [ + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh88007452", - "source": "LCSH" - }, - "authorized_access_point": "Beat generation" + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" }, { - "source": "RVMLaval", - "authorized_access_point": "Beat generation" + "type": "bf:ClassificationDdc", + "classificationPortion": "900", + "name": "Histoire" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027294358", + "value": "http://www.idref.fr/02727991X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11936777f", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11935652k", "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": "FRBNF11935652" } ], - "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" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Discours (linguistique)" + "Grand Larousse universel" + ] }, { - "authorized_access_point": "Pragmatique" + "noteType": "general", + "label": [ + "30 janvier 1933 : A. Hitler acc\u00e8de au pouvoir. 2 septembre 1945 : fin de la seconde guerre mondiale" + ] } ], - "related": [ - { - "authorized_access_point": "Actes de langage" - }, + "pid": "02727991X", + "narrower": [ { - "authorized_access_point": "Actualisation (linguistique)" + "authorized_access_point": "Amsterdam-Pleyel, Mouvement" }, { - "authorized_access_point": "Deixis" + "authorized_access_point": "Guerre mondiale (1939-1945) - Histoire diplomatique" } ], + "variant_access_point": [ + "Politique mondiale - 1933-1945" + ], + "md5": "9be1710085daf488e6a2197721c7742d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Shiva\u00efsme", "bnf_type": "sujet Rameau", - "narrower": [ + "classification": [ { - "authorized_access_point": "Consignes (\u00e9ducation)" + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" } ], "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "\u00c9nonciation (linguistique)" + "authorized_access_point": "?aivism", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85123051", + "source": "LCSH" + } + ] } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02730440X", + "value": "http://www.idref.fr/02728607X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11937549w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11936126w", "source": "BNF" - } - ], - "classification": [ + }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11936126" } ], - "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": [ + "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)" + ] + }, { - "authorized_access_point": "Lecture - \u00c9tude et enseignement" + "noteType": "general", + "label": [ + "S'emploie \u00e9galement en subdivision. Cette subdivision s'applique aux sujets religieux" + ] } ], + "pid": "02728607X", "related": [ { - "authorized_access_point": "Lecture - Enseignement assist\u00e9 par ordinateur" + "authorized_access_point": "Shiva\u00eftes" }, { - "authorized_access_point": "Lecture - \u00c9tude et enseignement (primaire)" - }, - { - "authorized_access_point": "Tableaux d'\u00e9locution" + "authorized_access_point": "Hymnes shiva\u00eftes" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Lecture - M\u00e9thode analytique" + "authorized_access_point": "Li\u1e45ga (hindouisme)" }, { - "authorized_access_point": "Lecture - M\u00e9thode mixte" + "authorized_access_point": "Aghor\u012b" }, { - "authorized_access_point": "Lecture - M\u00e9thode synth\u00e9tique" + "authorized_access_point": "K\u0101p\u0101lika" }, { - "authorized_access_point": "Jeux de lecture" - } - ], - "closeMatch": [ + "authorized_access_point": "Li\u1e45g\u0101yat" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85111662", - "source": "LCSH" - }, - "authorized_access_point": "Reading" + "authorized_access_point": "\u015aaiva Siddh\u0101nta" }, { - "source": "RVMLaval", - "authorized_access_point": "Lecture" - } - ], - "identifiedBy": [ + "authorized_access_point": "\u015aaktisme" + }, { - "type": "uri", - "value": "http://www.idref.fr/027328295", - "source": "IDREF" + "authorized_access_point": "Shivar\u0101tri" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11939438f", - "source": "BNF" + "authorized_access_point": "Shiva\u00efsme du Cachemire" } ], - "classification": [ + "broader": [ { - "name": "Education et enseignement", - "type": "bf:ClassificationDdc", - "classificationPortion": "370" + "authorized_access_point": "Hindouisme" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "authorized_access_point": "Sectes hindoues" } ], "variant_access_point": [ - "M\u00e9thodes d'apprentissage de la lecture", - "M\u00e9thodes de lecture" + "\u00c7iva\u00efsme", + "Shava\u00efsme", + "Siva\u00efsme" ], - "authorized_access_point": "Lecture - M\u00e9thodes d'apprentissage" + "md5": "8278015a48cd6e19f50bb7dfabb2098b" }, { - "md5": "4af248718ed5499456ada7e538b2e087", - "pid": "027354431", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "D\u00e9sarmement nucl\u00e9aire", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "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" + "type": "uri", + "value": "http://www.idref.fr/027292916", + "source": "IDREF" }, { - "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" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "M\u00e9taphysique" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119366713", + "source": "BNF" }, { - "authorized_access_point": "Philosophie de l'homme" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11936671" } ], + "pid": "027292916", "related": [ { - "authorized_access_point": "Chair (philosophie)" - }, - { - "authorized_access_point": "Corps (philosophie)" - }, - { - "authorized_access_point": "Esprit" - }, - { - "authorized_access_point": "Gu\u00e9rison par l'esprit" - }, - { - "authorized_access_point": "M\u00e9decine holistique" - }, - { - "authorized_access_point": "M\u00e9decine psychosomatique" - }, - { - "authorized_access_point": "Occasionnalisme" - }, - { - "authorized_access_point": "Parapsychologie" + "authorized_access_point": "Armes nucl\u00e9aires" }, { - "authorized_access_point": "Philosophie de l'esprit" + "authorized_access_point": "Course aux armements" }, { - "authorized_access_point": "Phr\u00e9nologie" - }, + "authorized_access_point": "Non-prolif\u00e9ration nucl\u00e9aire" + } + ], + "narrower": [ { - "authorized_access_point": "Psychiatrie biologique" + "authorized_access_point": "Mouvement antinucl\u00e9aire" }, { - "authorized_access_point": "Psychophysiologie" + "authorized_access_point": "Plan Rapacki" }, { - "authorized_access_point": "Spiritualisme" + "authorized_access_point": "Zones exemptes d'armes nucl\u00e9aires" } ], - "bnf_type": "sujet Rameau", - "narrower": [ + "broader": [ { - "authorized_access_point": "Esprit et cerveau" + "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": "a6851a1692e9e3a40e52ee0e2c62bc57" + }, + { + "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/sh85085488", - "source": "LCSH" - }, - "authorized_access_point": "Mind and body" + "type": "bf:ClassificationDdc", + "classificationPortion": "370", + "name": "Education et enseignement" }, { - "source": "RVMLaval", - "authorized_access_point": "Esprit et corps" + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027354431", + "value": "http://www.idref.fr/027302148", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11941447p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11937378x", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11937378" } ], - "classification": [ + "pid": "027302148", + "related": [ { - "name": "Philosophie", - "type": "bf:ClassificationDdc", - "classificationPortion": "100" + "authorized_access_point": "Internat (m\u00e9decine)" } ], - "variant_access_point": [ - "\u00c2me et corps", - "Corps et \u00e2me", - "Corps et esprit" - ], - "authorized_access_point": "Esprit et corps" - }, - { - "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\u00efsme / G. Wigoder, 1993" - ], - "noteType": "dataSource" - }, + "narrower": [ { - "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" + "authorized_access_point": "Tests de concordance de script" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Sectes juives" + "authorized_access_point": "Questions d'examens" } ], - "related": [ + "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": "c72763f14f046fdca3b2df8cf26e2e11" + }, + { + "type": "bf:Topic", + "authorized_access_point": "V\u00e9rit\u00e9", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Hassidim" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "100", + "name": "Philosophie" + } + ], + "closeMatch": [ { - "authorized_access_point": "Hassidisme m\u00e9di\u00e9val" + "authorized_access_point": "Truth", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85138279", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Juda\u00efsme ultra-orthodoxe" - }, + "authorized_access_point": "V\u00e9rit\u00e9", + "source": "RVMLaval" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Mitnagdim" + "type": "uri", + "value": "http://www.idref.fr/027308359", + "source": "IDREF" }, { - "authorized_access_point": "Mystique - Juda\u00efsme" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119378816", + "source": "BNF" }, { - "authorized_access_point": "L\u00e9gendes hassidiques" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11937881" + } + ], + "note": [ { - "authorized_access_point": "Litt\u00e9rature hassidique" + "noteType": "dataSource", + "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" + ] }, { - "authorized_access_point": "Nigunim" + "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" + ] } ], - "bnf_type": "sujet Rameau", - "narrower": [ + "pid": "027308359", + "related": [ { - "authorized_access_point": "Dix-neuf de Kislev" + "authorized_access_point": "Certitude" }, { - "authorized_access_point": "Habad" + "authorized_access_point": "Objectivit\u00e9" }, { - "authorized_access_point": "Hassidim de Bobova" + "authorized_access_point": "Preuve (philosophie)" }, { - "authorized_access_point": "Hassidim de Bratslav" + "authorized_access_point": "Th\u00e9orie de la fiction" }, { - "authorized_access_point": "Hassidim de Gour" + "authorized_access_point": "V\u00e9ridiction" }, { - "authorized_access_point": "Hassidim de Grodzisk" + "authorized_access_point": "V\u00e9rit\u00e9 et mensonge" }, { - "authorized_access_point": "Hassidim de Karlin" + "authorized_access_point": "Vraisemblance" }, { - "authorized_access_point": "Hassidim de Kotzk" + "authorized_access_point": "Crit\u00e8re de v\u00e9rit\u00e9" }, { - "authorized_access_point": "Hassidim de Pshiskha" + "authorized_access_point": "Droit \u00e0 la v\u00e9rit\u00e9 (droit international)" }, { - "authorized_access_point": "Hassidim de Ropshits-Dzik\u00f3w" + "authorized_access_point": "Erreur" }, { - "authorized_access_point": "Hassidim de Ruzhin" + "authorized_access_point": "\u00c9vidence" }, { - "authorized_access_point": "Hassidim de Sadigura" + "authorized_access_point": "Faillibilisme" }, { - "authorized_access_point": "Hassidim de Satmar" + "authorized_access_point": "Faux (philosophie)" }, { - "authorized_access_point": "Hassidim de Skvira" + "authorized_access_point": "Logique al\u00e9thique" }, { - "authorized_access_point": "Hassidim de Tchernobyl" - }, + "authorized_access_point": "Logique \u00e9pist\u00e9mique" + } + ], + "narrower": [ { - "authorized_access_point": "Hassidim de Zanz" + "authorized_access_point": "V\u00e9rit\u00e9 comme coh\u00e9rence" }, { - "authorized_access_point": "Hassidim de Zolochev" + "authorized_access_point": "V\u00e9rit\u00e9 comme consensus" }, { - "authorized_access_point": "Saddikim" - }, + "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": "ed241013d147d9868fd0ba5da8ca245a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Guerre de Trente Ans (1618-1648)", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Shomer Emunim" + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)" } ], "closeMatch": [ { + "authorized_access_point": "Thirty Years' War, 1618-1648", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85059241", - "source": "LCSH" - }, - "authorized_access_point": "Hasidism" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85134910", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Hassidisme" + "authorized_access_point": "Guerre de Trente Ans, 1618-1648", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027366669", + "value": "http://www.idref.fr/027317145", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119423798", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119385761", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11938576" } ], - "variant_access_point": [ - "Chassidisme", - "Dynasties hassidiques", - "H\u0332asidout", - "Hassidisme moderne", - "Mouvement hassidique" - ], - "authorized_access_point": "Hassidisme" - }, - { - "md5": "fdec54c0472a9b570efc188c04de5351", - "pid": "027389782", "note": [ { + "noteType": "dataSource", "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" + "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" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "027317145", + "related": [ { - "authorized_access_point": "Mer et civilisation" + "authorized_access_point": "D\u00e9fenestration de Prague (1618)" }, { - "authorized_access_point": "M\u00e9tiers" - } - ], - "related": [ - { - "authorized_access_point": "Mer" + "authorized_access_point": "Guerre franco-espagnole (1635-1659)" }, { - "authorized_access_point": "Plongeurs sous-marins" + "authorized_access_point": "Sainte ligue allemande (1609)" }, { - "authorized_access_point": "Ressources marines" + "authorized_access_point": "Allemagne - 1618-1648" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Armateurs" - }, - { - "authorized_access_point": "Charpentiers de marine" - }, - { - "authorized_access_point": "Gardiens de phare" + "authorized_access_point": "Guerre dano-su\u00e9doise (1643-1645)" }, { - "authorized_access_point": "Go\u00e9moniers" + "authorized_access_point": "Guerre de la Valteline (1620-1626)" }, { - "authorized_access_point": "Marins" - }, + "authorized_access_point": "Guerre de Trente Ans (1618-1648) - Op\u00e9rations militaires" + } + ], + "broader": [ { - "authorized_access_point": "Oc\u00e9anographes" + "authorized_access_point": "Contre-R\u00e9forme" }, { - "authorized_access_point": "Paludiers" - }, + "authorized_access_point": "Europe - 1517-1648" + } + ], + "variant_access_point": [ + "Trente ans, Guerre de (1618-1648)" + ], + "md5": "3b275bbe6d86b7dd7f0a65e93bdd8ab3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Gnosticisme", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "P\u00eacheurs" + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" }, { - "authorized_access_point": "Prud'homies de p\u00eache" + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Pr\u00e9histoire et histoire ancienne" } ], "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "M\u00e9tiers de la mer" + "authorized_access_point": "Gnosticism", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85055466", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Gnosticisme", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027389782", + "value": "http://www.idref.fr/027323552", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119442304", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11939057m", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11939057" } ], - "variant_access_point": [ - "Mer, M\u00e9tiers de la", - "Ressources marines - Orientation professionnelle", - "Travailleurs de la mer" - ], - "authorized_access_point": "M\u00e9tiers de la mer" - }, - { - "md5": "2f7b62eb1d92a80d9aad031883361398", - "pid": "027430162", "note": [ { + "noteType": "dataSource", "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": "Compr\u00e9hension" + "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" + ] }, { - "authorized_access_point": "Psycholinguistique" + "noteType": "general", + "label": [ + "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" + ] } ], + "pid": "027323552", "related": [ { - "authorized_access_point": "Consignes (\u00e9ducation)" + "authorized_access_point": "Christianisme - Relations - Gnosticisme" + }, + { + "authorized_access_point": "Encratisme" }, { - "authorized_access_point": "Acquisition du langage" + "authorized_access_point": "Gnose" }, { - "authorized_access_point": "Langage" + "authorized_access_point": "Gn\u014dstik\u00f3s (le mot grec)" }, { - "authorized_access_point": "S\u00e9mantique et psychologie" + "authorized_access_point": "Interpr\u00e9tations gnostiques" + }, + { + "authorized_access_point": "N\u00e9oplatonisme" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Intercompr\u00e9hension (linguistique)" + "authorized_access_point": "\u00c9on (philosophie)" }, { - "authorized_access_point": "Reconnaissance des mots" - } - ], - "closeMatch": [ + "authorized_access_point": "Mand\u00e9isme" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85126440", - "source": "LCSH" - }, - "authorized_access_point": "Speech, Intelligibility of" + "authorized_access_point": "Manuscrits de Medinet Madi" }, { - "source": "RVMLaval", - "authorized_access_point": "Langage--Intelligibilit\u00e9" - } - ], - "identifiedBy": [ + "authorized_access_point": "Manuscrits de Nag Hammadi" + }, { - "type": "uri", - "value": "http://www.idref.fr/027430162", - "source": "IDREF" + "authorized_access_point": "Naass\u00e9niens" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11947331g", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Ophites" + }, { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "authorized_access_point": "Sagesse - Gnosticisme" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "authorized_access_point": "S\u00e9thiens" + }, + { + "authorized_access_point": "Valentiniens" + }, + { + "authorized_access_point": "Litt\u00e9rature gnostique" + } + ], + "broader": [ + { + "authorized_access_point": "H\u00e9r\u00e9sies chr\u00e9tiennes - 30-600 (\u00c9glise primitive)" } ], "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" + "Gnostiques" ], - "authorized_access_point": "Langage - Compr\u00e9hension" + "md5": "6c50eed41c0e33b309f36fa3a4fd1dcd" }, { - "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": "Litt\u00e9rature - Esth\u00e9tique", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Incarnation (christianisme)" + "type": "bf:ClassificationDdc", + "classificationPortion": "100", + "name": "Philosophie" }, { - "authorized_access_point": "P\u00e9richor\u00e8se" + "type": "bf:ClassificationDdc", + "classificationPortion": "801", + "name": "Po\u00e9sie" } ], - "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" + "authorized_access_point": "Litt\u00e9rature -- Esth\u00e9tique", + "source": "RVMLaval" }, { - "source": "RVMLaval", - "authorized_access_point": "Union hypostatique" + "authorized_access_point": "Literature--Aesthetics", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85077509", + "source": "LCSH" + } + ] } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027488462", + "value": "http://www.idref.fr/027328589", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11951728f", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11939457q", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11939457" } ], - "classification": [ + "note": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" - } - ], - "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": "general", + "label": [ + "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": [ - "S'emploie \u00e9galement en subdivision" - ], - "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": "Documentation technique" + "authorized_access_point": "Litt\u00e9rature - Philosophie" }, { - "authorized_access_point": "Machines" + "authorized_access_point": "Mouvements litt\u00e9raires" }, { - "authorized_access_point": "Produits industriels" + "authorized_access_point": "Th\u00e9orie litt\u00e9raire" }, { - "authorized_access_point": "Propri\u00e9t\u00e9 industrielle" + "authorized_access_point": "Litt\u00e9rature" } ], - "related": [ + "narrower": [ { - "authorized_access_point": "Concurrence d\u00e9loyale" + "authorized_access_point": "All\u00e9gorie (litt\u00e9rature)" }, { - "authorized_access_point": "Dessins et mod\u00e8les" + "authorized_access_point": "Baroque litt\u00e9raire" }, { - "authorized_access_point": "Inventions" + "authorized_access_point": "Biedermeier (litt\u00e9rature)" }, { - "authorized_access_point": "Savoir-faire industriel" - } - ], - "bnf_type": "genre/forme Rameau", - "narrower": [ + "authorized_access_point": "Burlesque (litt\u00e9rature)" + }, { - "authorized_access_point": "\u00c9changes de brevets d'invention et d'information technique" + "authorized_access_point": "Canons litt\u00e9raires" }, { - "authorized_access_point": "Marques de commerce" + "authorized_access_point": "Carnavalesque" }, { - "authorized_access_point": "Obtentions v\u00e9g\u00e9tales (droit)" - } - ], - "closeMatch": [ + "authorized_access_point": "Classicisme (litt\u00e9rature)" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85098655", - "source": "LCSH" - }, - "authorized_access_point": "Patents" + "authorized_access_point": "Comique (litt\u00e9rature)" }, { - "source": "RVMLaval", - "authorized_access_point": "Brevets d'invention" - } - ], - "identifiedBy": [ + "authorized_access_point": "Cr\u00e9ation litt\u00e9raire" + }, { - "type": "uri", - "value": "http://www.idref.fr/02750610X", - "source": "IDREF" + "authorized_access_point": "D\u00e9cadentisme" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13318750q", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Description (litt\u00e9rature)" + }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" - } - ], - "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": [ + "authorized_access_point": "Dialogisme" + }, { - "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": "\u00c9pique (esth\u00e9tique)" + }, { - "authorized_access_point": "Antiquit\u00e9s pr\u00e9historiques" + "authorized_access_point": "Fantastique (litt\u00e9rature)" }, { - "authorized_access_point": "Art pr\u00e9historique" + "authorized_access_point": "Fragment (litt\u00e9rature)" }, { - "authorized_access_point": "Bijoux" - } - ], - "related": [ + "authorized_access_point": "Grotesque (litt\u00e9rature)" + }, { - "authorized_access_point": "Orf\u00e8vrerie pr\u00e9historique" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Herm\u00e9tisme (litt\u00e9rature)" + }, { - "authorized_access_point": "Bracelets pr\u00e9historiques" + "authorized_access_point": "Illusion (litt\u00e9rature)" }, { - "authorized_access_point": "Fibules" + "authorized_access_point": "Imitation (litt\u00e9rature)" }, { - "authorized_access_point": "Torques" - } - ], - "closeMatch": [ + "authorized_access_point": "Impressionnisme (litt\u00e9rature)" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85070226", - "source": "LCSH" - }, - "authorized_access_point": "Jewelry, Prehistoric" + "authorized_access_point": "Intimisme" }, { - "source": "RVMLaval", - "authorized_access_point": "Bijoux pr\u00e9historiques" - } - ], - "identifiedBy": [ + "authorized_access_point": "Lyrisme (litt\u00e9rature)" + }, { - "type": "uri", - "value": "http://www.idref.fr/027510387", - "source": "IDREF" + "authorized_access_point": "Mani\u00e9risme (litt\u00e9rature)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119534539", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Merveilleux (litt\u00e9rature)" + }, { - "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", - "type": "bf:ClassificationDdc", - "classificationPortion": "740" + "authorized_access_point": "Minimalisme (litt\u00e9rature)" }, { - "name": "Pr\u00e9histoire et histoire ancienne", - "type": "bf:ClassificationDdc", - "classificationPortion": "930" - } - ], - "variant_access_point": [ - "Bijoux - Pr\u00e9histoire", - "Bijoux de la pr\u00e9histoire", - "Parures pr\u00e9historiques", - "Pendeloques pr\u00e9historiques" - ], - "authorized_access_point": "Bijoux pr\u00e9historiques" - }, - { - "md5": "2c8e61ff74e0200b11c2a97449bb2a93", - "pid": "027599701", - "note": [ + "authorized_access_point": "Modernisme (litt\u00e9rature)" + }, { - "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": "N\u00e9o-classicisme (litt\u00e9rature)" }, { - "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" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "N\u00e9o-r\u00e9alisme (litt\u00e9rature)" + }, { - "authorized_access_point": "M\u00e9dias audiovisuels" + "authorized_access_point": "Neue Sachlichkeit (litt\u00e9rature)" }, { - "authorized_access_point": "T\u00e9l\u00e9communications" - } - ], - "related": [ + "authorized_access_point": "Orientalisme (litt\u00e9rature)" + }, { - "authorized_access_point": "Femmes dans l'industrie de la radiodiffusion" + "authorized_access_point": "Path\u00e9tique (litt\u00e9rature)" }, { - "authorized_access_point": "Journalisme radiophonique" + "authorized_access_point": "Po\u00e9sie - Esth\u00e9tique" }, { - "authorized_access_point": "Politique de la radiodiffusion" + "authorized_access_point": "Polyphonie (litt\u00e9rature)" }, { - "authorized_access_point": "Radiodiffusion des d\u00e9bats" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Popliteratur" + }, { - "authorized_access_point": "Publicit\u00e9 radiophonique" + "authorized_access_point": "Postmodernisme et litt\u00e9rature" }, { - "authorized_access_point": "Radio" + "authorized_access_point": "Primitivisme (litt\u00e9rature)" }, { - "authorized_access_point": "Radio - \u00c9metteurs et transmission" + "authorized_access_point": "R\u00e9alisme magique (litt\u00e9rature)" }, { - "authorized_access_point": "Radio num\u00e9rique" + "authorized_access_point": "R\u00e9alisme socialiste (litt\u00e9rature)" }, { - "authorized_access_point": "Radiodiffusion en modulation de fr\u00e9quence" + "authorized_access_point": "R\u00e9gionalisme (litt\u00e9rature)" }, { - "authorized_access_point": "Radiodiffusion en ondes d\u00e9cam\u00e9triques" + "authorized_access_point": "Repr\u00e9sentation (litt\u00e9rature)" }, { - "authorized_access_point": "Radiodiffusion internationale" + "authorized_access_point": "Rh\u00e9torique" }, { - "authorized_access_point": "Radiofr\u00e9quences" + "authorized_access_point": "Rococo (litt\u00e9rature)" }, { - "authorized_access_point": "T\u00e9l\u00e9vision" - } - ], - "closeMatch": [ + "authorized_access_point": "Roman - Esth\u00e9tique" + }, { - "source": "RVMLaval", - "authorized_access_point": "Radiodiffusion" + "authorized_access_point": "Romantisme (litt\u00e9rature)" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85110448", - "source": "LCSH" - }, - "authorized_access_point": "Radio broadcasting" - } - ], - "identifiedBy": [ + "authorized_access_point": "Style litt\u00e9raire" + }, { - "type": "uri", - "value": "http://www.idref.fr/027599701", - "source": "IDREF" + "authorized_access_point": "Stylistique" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119604993", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Sublime (litt\u00e9rature)" + }, { - "name": "Sciences de l'information", - "type": "bf:ClassificationDdc", - "classificationPortion": "020" + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) - Esth\u00e9tique" }, { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" + "authorized_access_point": "Tragi-comique (litt\u00e9rature)" }, { - "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": "Tragique (litt\u00e9rature)" + }, { - "label": [ - "Grand Robert de la langue fran\u00e7aise, 2001", - "Tr\u00e9sor de la langue fran\u00e7aise" - ], - "noteType": "dataSource" + "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" } ], - "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Patronnage (couture)" + "authorized_access_point": "Esth\u00e9tique" } ], - "related": [ - { - "authorized_access_point": "V\u00eatements - Coupe" - } + "variant_access_point": [ + "Doctrines litt\u00e9raires", + "Esth\u00e9tique litt\u00e9raire" ], - "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" - }, + "md5": "6fc197d6b32eb7dfbb79e8d1a03f0c1c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "BASIC (langage de programmation)", + "bnf_type": "sujet Rameau", + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Couture (Profession) -- Mod\u00e8les" + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027652254", + "value": "http://www.idref.fr/027330176", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119648697", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11939574k", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11939574" } ], - "classification": [ + "pid": "027330176", + "narrower": [ { - "name": "Sciences appliqu\u00e9es", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "authorized_access_point": "Access Basic (langage de programmation)" }, { - "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": "BASICA (langage de programmation)" + }, { - "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": "PICK/BASIC (langage de programmation)" + }, { - "authorized_access_point": "Philosophie de l'homme" + "authorized_access_point": "STOS Basic (langage de programmation)" }, { - "authorized_access_point": "Philosophie de la nature" - } - ], - "related": [ + "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": "\u00c2me" + "authorized_access_point": "GFA BASIC (langage de programmation)" }, { - "authorized_access_point": "Corps" + "authorized_access_point": "BASIC-PLUS (langage de programmation)" }, { - "authorized_access_point": "Corps humain" + "authorized_access_point": "AmigaBASIC (langage de programmation)" }, { - "authorized_access_point": "D\u00e9sir (philosophie)" + "authorized_access_point": "AppleSoft BASIC (langage de programmation)" }, { - "authorized_access_point": "Esprit et corps" + "authorized_access_point": "Microsoft Visual BASIC (langage de programmation)" + } + ], + "broader": [ + { + "authorized_access_point": "Langages de programmation" } ], + "variant_access_point": [ + "Beginner's All-Purpose Symbolic Instruction Code (langage de programmation)" + ], + "md5": "68d2e8abf8807c92d2bd99cb98bfe5dd" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Temps r\u00e9el (informatique)", "bnf_type": "sujet Rameau", - "narrower": [ + "classification": [ { - "authorized_access_point": "Chair (philosophie)" + "type": "bf:ClassificationDdc", + "classificationPortion": "621" } ], "closeMatch": [ { + "authorized_access_point": "Real-time data processing", "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://id.loc.gov/authorities/subjects/sh85111765", + "source": "LCSH" + } + ] } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027661504", + "value": "http://www.idref.fr/027333930", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11965587k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119398403", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Philosophie", - "type": "bf:ClassificationDdc", - "classificationPortion": "100" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11939840" } ], - "variant_access_point": [ - "Corps - Philosophie", - "Corps humain - Philosophie", - "Corps humain (philosophie)" - ], - "authorized_access_point": "Corps (philosophie)" - }, - { - "md5": "47bcc613c99f4492a0b818ddb15e7007", - "pid": "027675823", "note": [ { + "noteType": "seeReference", "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" - }, - { - "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" + "Voir aussi aux applications, langages de programmation, syst\u00e8mes, etc. temps r\u00e9el" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "027333930", + "related": [ + { + "authorized_access_point": "FlexRay (bus)" + }, { - "authorized_access_point": "Dialectes franciques" + "authorized_access_point": "Syst\u00e8mes en ligne" } ], - "related": [ + "narrower": [ + { + "authorized_access_point": "Ordonnancement dynamique" + }, { - "authorized_access_point": "Dictionnaires luxembourgeois" + "authorized_access_point": "Commande en temps r\u00e9el" }, { - "authorized_access_point": "Francique mosellan (dialecte)" + "authorized_access_point": "Programmation en temps r\u00e9el" }, { - "authorized_access_point": "Chansons luxambourgeoises" + "authorized_access_point": "Projet SCEPTRE" }, { - "authorized_access_point": "Litt\u00e9rature luxembourgeoise" + "authorized_access_point": "R\u00e9servations" + }, + { + "authorized_access_point": "Syst\u00e8mes transactionnels" + } + ], + "broader": [ + { + "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": "e181f1abb2ac66b952f4b3f5ba292239" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations internationales - 1945-1955", "bnf_type": "sujet Rameau", - "closeMatch": [ + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2003005414", - "source": "LCSH" - }, - "authorized_access_point": "Luxembourgish language" + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" }, { - "source": "RVMLaval", - "authorized_access_point": "Luxembourgeois (langue)" + "type": "bf:ClassificationDdc", + "classificationPortion": "900", + "name": "Histoire" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027675823", + "value": "http://www.idref.fr/027336913", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119667950", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11940078m", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11940078" } ], - "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": "dataSource", "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Commerce ext\u00e9rieur - Droit" - }, - { - "authorized_access_point": "Concurrence internationale" - }, - { - "authorized_access_point": "Politique commerciale" + "Grand Larousse universel", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" + ] }, { - "authorized_access_point": "Trait\u00e9s" + "noteType": "general", + "label": [ + "2 septembre 1945 : fin de la seconde guerre mondiale. 1955 : conf\u00e9rences de Bandung (avril) et de Gen\u00e8ve (juillet)" + ] } ], - "related": [ - { - "authorized_access_point": "Commerce" - }, + "pid": "027336913", + "narrower": [ { - "authorized_access_point": "R\u00e9ciprocit\u00e9 (droit)" + "authorized_access_point": "DC 3 su\u00e9dois, Affaire du (1952)" } ], + "variant_access_point": [ + "Politique mondiale - 1945-1955" + ], + "md5": "a1c921b650f9259b4a1906e0ca364ea2" + }, + { + "type": "bf:Topic", + "authorized_access_point": "H\u00e9breu (langue) biblique", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Accords commerciaux pr\u00e9f\u00e9rentiels" - }, - { - "authorized_access_point": "Accords internationaux sur les licences" - }, + "classification": [ { - "authorized_access_point": "Clause de la nation la plus favoris\u00e9e" + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" }, { - "authorized_access_point": "Traitement national (droit international)" + "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/sh99001405", - "source": "LCSH" - }, - "authorized_access_point": "Commercial treaties" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Accords commerciaux" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85059867", + "source": "LCSH" + } + ] } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027688739", + "value": "http://www.idref.fr/027345203", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119677659", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11940722x", "source": "BNF" - } - ], - "classification": [ - { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11940722" } ], - "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": [ { + "noteType": "dataSource", "label": [ - "Sous cette vedette, on trouve les recueils de litt\u00e9rature aram\u00e9enne de divers genres" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Litt\u00e9rature s\u00e9mitique" + "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": "Aram\u00e9en (langue)" + "authorized_access_point": "H\u00e9breu (langue) mishna\u00efque" }, { - "authorized_access_point": "Philologie aram\u00e9enne" + "authorized_access_point": "Po\u00e9sie h\u00e9bra\u00efque biblique" } ], - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "Litt\u00e9rature populaire aram\u00e9enne" - }, - { - "authorized_access_point": "Litt\u00e9rature syriaque" - }, + "broader": [ { - "authorized_access_point": "Po\u00e9sie aram\u00e9enne" + "authorized_access_point": "H\u00e9breu (langue)" } ], + "variant_access_point": [ + "H\u00e9breu (langue) ancien", + "H\u00e9breu (langue) classique", + "H\u00e9breu ancien (langue)", + "H\u00e9breu biblique (langue)", + "H\u00e9breu classique (langue)" + ], + "md5": "38bb217a4d88d19a86632a403d055268" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Particules (physique)", + "bnf_type": "sujet Rameau", "closeMatch": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85006406", - "source": "LCSH" - }, - "authorized_access_point": "Aramaic literature" + "authorized_access_point": "Particules (physique nucl\u00e9aire)", + "source": "RVMLaval" }, { - "source": "RVMLaval", - "authorized_access_point": "Litt\u00e9rature aram\u00e9enne" + "authorized_access_point": "Particles (Nuclear physics)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85098374", + "source": "LCSH" + } + ] } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027699870", + "value": "http://www.idref.fr/027355152", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11968617d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119415082", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11941508" } ], - "authorized_access_point": "Litt\u00e9rature aram\u00e9enne" - }, - { - "md5": "bbd11b5f4fb23abfec48cd81c8b9598c", - "pid": "02770940X", "note": [ { + "noteType": "seeReference", "label": [ - "Grand Larousse universel", - "Nouveau petit Robert 2008" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Bijoux" + "Voir aussi aux noms des particules et antiparticules" + ] } ], + "pid": "027355152", "related": [ { - "authorized_access_point": "Montres-bracelets" + "authorized_access_point": "Acc\u00e9l\u00e9rateurs de particules" + }, + { + "authorized_access_point": "Collisions (physique nucl\u00e9aire)" + }, + { + "authorized_access_point": "Lois d'\u00e9chelle (physique)" + }, + { + "authorized_access_point": "Matrices de m\u00e9langes" + }, + { + "authorized_access_point": "Physique des hautes \u00e9nergies" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Bracelets br\u00e9siliens" + "authorized_access_point": "Antinucl\u00e9ons" }, { - "authorized_access_point": "Bracelets pr\u00e9historiques" - } - ], - "closeMatch": [ + "authorized_access_point": "Anyons" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85016233", - "source": "LCSH" - }, - "authorized_access_point": "Bracelets" + "authorized_access_point": "Bethe-Salpeter, \u00c9quation de" }, { - "source": "RVMLaval", - "authorized_access_point": "Bracelets" - } - ], - "identifiedBy": [ + "authorized_access_point": "Bootstrap, Th\u00e9orie du (physique nucl\u00e9aire)" + }, { - "type": "uri", - "value": "http://www.idref.fr/02770940X", - "source": "IDREF" + "authorized_access_point": "Bosons" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11969386n", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Chromodynamique quantique" + }, { - "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", - "type": "bf:ClassificationDdc", - "classificationPortion": "740" - } - ], - "authorized_access_point": "Bracelets (bijoux)" - }, - { - "md5": "28eb1ee05b8e00d06f2d9cf3f851ed01", - "pid": "027741060", - "note": [ + "authorized_access_point": "C\u00f4nes de lumi\u00e8re" + }, { - "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" + "authorized_access_point": "Constantes de couplage" }, { - "label": [ - "Acte par lequel un organe transf\u00e8re une partie de ses comp\u00e9tences \u00e0 un autre organe" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "D\u00e9sint\u00e9gration semileptonique" + }, { - "authorized_access_point": "Droit administratif" + "authorized_access_point": "Effet tunnel" }, { - "authorized_access_point": "Droit constitutionnel" + "authorized_access_point": "Faisceaux de particules" }, { - "authorized_access_point": "Science politique" - } - ], - "related": [ + "authorized_access_point": "Fonctions de structure" + }, { - "authorized_access_point": "Missi dominici" + "authorized_access_point": "Forces nucl\u00e9aires (physique)" }, { - "authorized_access_point": "S\u00e9paration des pouvoirs" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Gluons" + }, { - "authorized_access_point": "D\u00e9l\u00e9gation l\u00e9gislative" + "authorized_access_point": "Lois d'\u00e9chelle (physique)" }, { - "authorized_access_point": "Pouvoirs exceptionnels" - } - ], - "closeMatch": [ + "authorized_access_point": "Mandelstam, Repr\u00e9sentation de" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85036563", - "source": "LCSH" - }, - "authorized_access_point": "Delegation of powers" + "authorized_access_point": "Matrices densit\u00e9" }, { - "source": "RVMLaval", - "authorized_access_point": "D\u00e9l\u00e9gation des pouvoirs (Droit administratif)" - } - ], - "identifiedBy": [ + "authorized_access_point": "Moment angulaire (physique nucl\u00e9aire)" + }, { - "type": "uri", - "value": "http://www.idref.fr/027741060", - "source": "IDREF" + "authorized_access_point": "Muographie" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb133189868", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Neutralinos" + }, { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" + "authorized_access_point": "Nucl\u00e9ons" }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" - } - ], - "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": [ + "authorized_access_point": "Particules \u00e9tranges" + }, { - "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" + "authorized_access_point": "Particules lourdes (physique)" }, { - "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Particules relativistes" + }, { - "authorized_access_point": "Hommes d'\u00c9tat" + "authorized_access_point": "Partons" }, { - "authorized_access_point": "Hommes politiques - Responsabilit\u00e9 p\u00e9nale" - } - ], - "related": [ + "authorized_access_point": "Pions (particules)" + }, + { + "authorized_access_point": "Polarisation (physique nucl\u00e9aire)" + }, + { + "authorized_access_point": "Pomerons" + }, + { + "authorized_access_point": "Pouvoir d'arr\u00eat (physique nucl\u00e9aire)" + }, + { + "authorized_access_point": "Quasi-particules" + }, + { + "authorized_access_point": "Rayonnement synchrotron" + }, + { + "authorized_access_point": "R\u00e9actions d'annihilation" + }, + { + "authorized_access_point": "Regge, Trajectoires de" + }, + { + "authorized_access_point": "R\u00e8gles de somme (physique)" + }, + { + "authorized_access_point": "Schr\u00f6dinger, \u00c9quation de" + }, + { + "authorized_access_point": "Supersym\u00e9trie" + }, + { + "authorized_access_point": "Sym\u00e9trie unitaire" + }, { - "authorized_access_point": "Crimes et d\u00e9lits politiques" + "authorized_access_point": "Tachyons" }, { - "authorized_access_point": "Parlements (tribunaux)" + "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)" } ], - "bnf_type": "sujet Rameau", - "narrower": [ + "broader": [ { - "authorized_access_point": "R\u00e9vocation populaire" + "authorized_access_point": "Physique nucl\u00e9aire" } ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85064607", - "source": "LCSH" - }, - "authorized_access_point": "Impeachments" - }, + "variant_access_point": [ + "Anti-particules (physique)", + "Antiparticules (physique)", + "Particules \u00e9l\u00e9mentaires (physique)", + "Particules fondamentales", + "Particules nucl\u00e9aires", + "Physique des particules" + ], + "md5": "dc43fe30e750c0c8299669f8568ba97d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "PASCAL (langage de programmation)", + "bnf_type": "sujet Rameau", + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Destitution, Proc\u00e9dure de" + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027741125", + "value": "http://www.idref.fr/027355578", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119719121", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11941547z", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11941547" } ], - "classification": [ + "pid": "027355578", + "narrower": [ { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" + "authorized_access_point": "MikroPascal (langage de programmation)" }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "authorized_access_point": "WEB (langage de programmation)" + }, + { + "authorized_access_point": "PasRo (syst\u00e8me informatique)" + }, + { + "authorized_access_point": "UCSD p-System" } ], - "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" + "broader": [ + { + "authorized_access_point": "Langages de programmation" + } ], - "authorized_access_point": "Destitution" + "md5": "62dd97c2d8529ae7d048155c9aaf4655" }, { - "md5": "320771ddc84efd97e99ddacbc4d1c197", - "pid": "027765369", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Jos\u00e9phisme", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "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" + "type": "uri", + "value": "http://www.idref.fr/027355985", + "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119415814", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11941581" + } + ], + "note": [ + { + "noteType": "general", "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 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": "Ruth\u00e8nes" + "authorized_access_point": "\u00c9glise et \u00c9tat - Autriche" + }, + { + "authorized_access_point": "Catholicisme antiromain" + }, + { + "authorized_access_point": "Despotisme \u00e9clair\u00e9" } ], - "related": [ + "variant_access_point": [ + "Jos\u00e9phinisme" + ], + "md5": "ee40159bf5755eb5b4e3af9468ef74f7" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Langages de 4e g\u00e9n\u00e9ration", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Trombita" + "type": "bf:ClassificationDdc", + "classificationPortion": "621" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "Houtsoules" + "authorized_access_point": "Langages de 4e g\u00e9n\u00e9ration", + "source": "RVMLaval" }, { + "authorized_access_point": "Programming languages (Electronic computers)", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85062771", - "source": "LCSH" - }, - "authorized_access_point": "Hutsuls" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107313", + "source": "LCSH" + } + ] } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027765369", + "value": "http://www.idref.fr/027356493", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119737855", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11941625x", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11941625" } ], - "variant_access_point": [ - "Goutsoules", - "Guculs", - "Gutsules", - "Gutsuls", - "Gutzuls", - "Hootzools", - "Houtzoules", - "Hucules", - "Huculs", - "Hutsules", - "Hutsuls", - "Hutzules", - "Hutzuls", - "Huzulen", - "Huzules", - "Huzuls" - ], - "authorized_access_point": "Houtsoules" - }, - { - "md5": "09a9aaccee376b61eda9a6d6bdc16363", - "pid": "027785084", - "note": [ + "pid": "027356493", + "narrower": [ { - "label": [ - "Grand Larousse universel", - "Tr\u00e9sor de la langue fran\u00e7aise", - "Nouveau petit Robert 2009" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "ABAP (langage de programmation)" + }, { - "authorized_access_point": "Expression" + "authorized_access_point": "AppleScript (langage de programmation)" }, { - "authorized_access_point": "Parole" + "authorized_access_point": "NOMAD (langage de programmation)" } ], - "related": [ - { - "authorized_access_point": "Culture vocale" - }, + "broader": [ { - "authorized_access_point": "Diction" + "authorized_access_point": "Langages de programmation" }, { - "authorized_access_point": "Prononciation" + "authorized_access_point": "Progiciels" }, { - "authorized_access_point": "Tableaux d'\u00e9locution" + "authorized_access_point": "Logiciels" } ], + "variant_access_point": [ + "Infocentres (informatique)", + "Info-centres (informatique)", + "Langages de quatri\u00e8me g\u00e9n\u00e9ration", + "L4G" + ], + "md5": "878d354026c64257435fd56e9490ea92" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Magn\u00e9toth\u00e9rapie", "bnf_type": "sujet Rameau", - "narrower": [ + "classification": [ { - "authorized_access_point": "Ventriloquie" + "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/sh85042633", - "source": "LCSH" - }, - "authorized_access_point": "Elocution" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85079761", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Magnetic Field Therapy", + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M0522057", + "source": "MeSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "\u00c9locution" + "authorized_access_point": "Magn\u00e9toth\u00e9rapie", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027785084", + "value": "http://www.idref.fr/027365697", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11975298m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11942308r", "source": "BNF" - } - ], - "classification": [ + }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11942308" } ], - "variant_access_point": [ - "Articulation (\u00e9locution)", - "D\u00e9bit (\u00e9locution)" - ], - "authorized_access_point": "\u00c9locution" - }, - { - "md5": "a6b4ae4c7dc1b32374309573a4a0a2b7", - "pid": "027793974", "note": [ { + "noteType": "dataSource", "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" + "Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-05-31)", + "Le nouveau dict. m\u00e9dical, 2018" + ] + }, + { + "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" + ] } ], - "type": "bf:Temporal", + "pid": "027365697", "related": [ { - "authorized_access_point": "Litt\u00e9rature allemande - 1050-1350 (moyen haut-allemand)" + "authorized_access_point": "Magn\u00e9tisme animal" + }, + { + "authorized_access_point": "M\u00e9decine magn\u00e9tique" + } + ], + "broader": [ + { + "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": "f7c371a4bd787c4044d6dbffb007c5b3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Investitures, Querelle des", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027793974", + "value": "http://www.idref.fr/027368661", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119759945", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119425476", "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": "FRBNF11942547" } ], - "authorized_access_point": "1050-1350(moyen haut-allemand)" - }, - { - "md5": "f59538c5b5ed1bd32fcefb584c635c70", - "pid": "027794016", "note": [ { + "noteType": "dataSource", "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" + "Mourre, 1986" + ] + } + ], + "pid": "027368661", + "narrower": [ + { + "authorized_access_point": "Canossa, Entrevue de (1077)" + } + ], + "broader": [ + { + "authorized_access_point": "Investiture (droit canonique)" + }, + { + "authorized_access_point": "Papaut\u00e9 - 1054-1309" } ], - "type": "bf:Temporal", "related": [ { - "authorized_access_point": "Anglais (langue) - +* 1100......- 1500......+:1100-1500: (moyen anglais)" + "authorized_access_point": "Saint Empire romain germanique - 1056-1106 (Henri IV)" }, { - "authorized_access_point": "Litt\u00e9rature anglaise - 1100-1500 (moyen anglais)" + "authorized_access_point": "Saint Empire romain germanique - 1106-1125 (Henri V)" } ], + "variant_access_point": [ + "Querelle des investitures", + "\u00c9glise et \u00c9tat - Saint Empire romain germanique - 1076-1122" + ], + "md5": "f3b131816c4684efd48c35aa55e1e0ee" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Canadiana (objets de collection)", "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Canadiana (objets de collection)", + "source": "RVMLaval" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027794016", + "value": "http://www.idref.fr/027374351", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11975996v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11942987j", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11942987" } ], - "authorized_access_point": "1100-1500(moyen anglais)" - }, - { - "md5": "4c3f92fdb4c60044f15ccad2b451fe8a", - "pid": "027794687", "note": [ { + "noteType": "general", "label": [ - "Dict. encyclop\u00e9dique 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\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" + "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:Temporal", + "pid": "027374351", "broader": [ { - "authorized_access_point": "20e si\u00e8cle" + "authorized_access_point": "Canada - Histoire" } ], - "related": [ + "md5": "3b5de954c104c6d0b8d5eb394d803e1c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Blocus continental", + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "authorized_access_point": "1870-1914" + "authorized_access_point": "Continental System (Economic blockade)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85031555", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Histoire universelle - 1914-1945" + "authorized_access_point": "Blocus continental", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027794687", + "value": "http://www.idref.fr/027376982", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11976044c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119431898", "source": "BNF" - } - ], - "relation_pid": { - "type": "redirect_from", - "value": "028658531" - }, - "classification": [ + }, { - "name": "Histoire", - "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11943189" } ], - "variant_access_point": [ - "1900-1945 (subdivision)" - ], - "authorized_access_point": "1900-1945" - }, - { - "md5": "05a59d3956c22ff4cc21f6b8f4e0056e", - "pid": "027794903", "note": [ { + "noteType": "general", "label": [ - "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Laval RVM (en ligne), 2012-10-16" - ], - "noteType": "dataNotFound" - }, - { - "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" + "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:Temporal", + "pid": "027376982", "broader": [ { - "authorized_access_point": "1800-...." - } - ], - "related": [ - { - "authorized_access_point": "19e si\u00e8cle" - }, - { - "authorized_access_point": "1900-1945" + "authorized_access_point": "Politique et gouvernement - Europe - 1789-1815" }, { - "authorized_access_point": "Histoire universelle - 1870-1914" + "authorized_access_point": "Blocus" }, { - "authorized_access_point": "Litt\u00e9rature fran\u00e7aise - 1870-1914" + "authorized_access_point": "France - 1799-1815 (Consulat et Empire)" } ], + "md5": "b60e9197ecbde0666cb31b35a82ebbe9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Circuits int\u00e9gr\u00e9s - Masques", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027794903", + "value": "http://www.idref.fr/027391396", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119760629", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11944384b", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11944384" } ], - "relation_pid": { - "type": "redirect_from", - "value": "086114468" - }, - "classification": [ + "pid": "027391396", + "broader": [ { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", - "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "authorized_access_point": "Masques (\u00e9lectronique)" } ], - "variant_access_point": [ - "1870-1914 (subdivision)" - ], - "authorized_access_point": "1870-1914" + "md5": "6c8c578c5f061c0abcb2564893befefb" }, { - "md5": "470fa238803b41a0a61e324ac3ddaf63", - "pid": "027794954", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Annonciation", + "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": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ + { + "authorized_access_point": "Mary, Blessed Virgin, Saint--Annunciation", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85081693", + "source": "LCSH" + } + ] + }, { - "authorized_access_point": "Cin\u00e9ma - 1929-1945" + "authorized_access_point": "Marie, Sainte Vierge -- Annonciation", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027794954", + "value": "http://www.idref.fr/027396924", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11976066p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11944811h", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Audiovisuel", - "type": "bf:ClassificationDdc", - "classificationPortion": "791" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11944811" } ], - "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", + "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" + ] } ], - "type": "bf:Temporal", + "pid": "027396924", "related": [ { - "authorized_access_point": "Cin\u00e9ma - 1945-1960" + "authorized_access_point": "Christ-Emmanuel" } ], - "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" - } + "variant_access_point": [ + "Annonce faite \u00e0 Marie", + "Annonciation \u00e0 la Vierge Marie" ], + "md5": "2b17ebf508735924f8b855d7c134f65e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Psychologie du temps", + "bnf_type": "sujet Rameau", "classification": [ { - "name": "Audiovisuel", "type": "bf:ClassificationDdc", - "classificationPortion": "791" + "classificationPortion": "150", + "name": "Psychologie, psychanalyse" } ], - "authorized_access_point": "1945-1960" - }, - { - "md5": "85718db3c11c62080dfa28e992460878", - "pid": "027794970", - "note": [ + "closeMatch": [ { - "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": [ + "authorized_access_point": "Time--Psychological aspects", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008112897", + "source": "LCSH" + } + ] + }, { - "authorized_access_point": "Cin\u00e9ma - 1960-1990" + "authorized_access_point": "Temps -- Aspect psychologique", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027794970", + "value": "http://www.idref.fr/02739770X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11976068c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119448674", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11944867" } ], - "classification": [ + "pid": "02739770X", + "related": [ { - "name": "Audiovisuel", - "type": "bf:ClassificationDdc", - "classificationPortion": "791" + "authorized_access_point": "Attente" + }, + { + "authorized_access_point": "Temps (psychanalyse)" } ], - "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": "Flux (psychologie)" + }, + { + "authorized_access_point": "Perception du temps" + }, + { + "authorized_access_point": "Perspective temporelle" + }, + { + "authorized_access_point": "Anticipation (psychologie)" } ], - "type": "bf:Temporal", - "related": [ + "variant_access_point": [ + "Temps - Psychologie", + "Temps - Aspect psychologique" + ], + "md5": "8d6022be3f46abd3b24dc819f994608b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Tenriky\u014d", + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature polonaise - 1918-1945" + "authorized_access_point": "Tenrikyo", + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n50072712", + "source": "LCA" + } + ] } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027795926", + "value": "http://www.idref.fr/027415252", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15521981p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11946162z", "source": "BNF" - } - ], - "relation_pid": { - "type": "redirect_from", - "value": "113932618" - }, - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11946162" } ], - "authorized_access_point": "1918-1945" - }, - { - "md5": "18506a976f437cbb613506de2668b4b1", - "pid": "027796817", "note": [ { + "noteType": "dataSource", "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" + "Dict. encycl. des religions, 1993" + ] } ], - "type": "bf:Temporal", + "pid": "027415252", "related": [ { - "authorized_access_point": "Espagnol (langue) - +* 1500......- 1700......+:1500-1700: (P\u00e9riode classique)" - }, + "authorized_access_point": "Teodori" + } + ], + "broader": [ { - "authorized_access_point": "Litt\u00e9rature espagnole - 1500-1700 (P\u00e9riode classique)" + "authorized_access_point": "Sectes shinto\u00efstes" + } + ], + "md5": "487f2a0a470bd97ea6fa524cd92a4f54" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Pr\u00e9romantisme", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "700", + "name": "Arts (sauf litt\u00e9rature)" }, { - "authorized_access_point": "Litt\u00e9rature portugaise - 1500-1700 (P\u00e9riode classique)" + "type": "bf:ClassificationDdc", + "classificationPortion": "801", + "name": "Litt\u00e9rature g\u00e9n\u00e9rale" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Pr\u00e9romantisme", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027796817", + "value": "http://www.idref.fr/02743141X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11976189m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11947424g", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11947424" } ], - "authorized_access_point": "1500-1700(P\u00e9riode classique)" - }, - { - "md5": "215ab160a48f287a88affd57b670874c", - "pid": "027796930", "note": [ { + "noteType": "dataSource", "label": [ - "Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1918-1939" - ], - "noteType": "seeReference" + "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" + ] } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.182452+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "pid": "02743141X", + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/027796930", - "source": "IDREF" - } - ], - "authorized_access_point": "1918-1939" - }, - { - "md5": "b267858a4b6e93d997eea036808ce5f1", - "pid": "027797619", - "note": [ + "authorized_access_point": "Civilisation - Europe - 18e si\u00e8cle" + }, { - "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" + "authorized_access_point": "Romantisme" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.276336+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/027797619", - "source": "IDREF" + "authorized_access_point": "Sturm und Drang" } ], - "authorized_access_point": "476-1492" + "variant_access_point": [ + "Mouvement pr\u00e9romantique", + "Pr\u00e9-romantisme" + ], + "md5": "caa1430697c308041bd748f72e8fb521" }, { - "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", - "deleted": "2023-08-08T14:28:41.375163+00:00", + "type": "bf:Topic", + "authorized_access_point": "Psychologie de la pri\u00e8re", "bnf_type": "sujet Rameau", - "identifiedBy": [ + "classification": [ { - "type": "uri", - "value": "http://www.idref.fr/027798461", - "source": "IDREF" + "type": "bf:ClassificationDdc", + "classificationPortion": "150", + "name": "Psychologie, psychanalyse" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" } ], - "authorized_access_point": "1889-1930" - }, - { - "md5": "586f85a7c97edcb275b65af8dd17bad3", - "pid": "027798682", - "note": [ + "closeMatch": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 1500-1800, Histoire -- 1500-1800 ou les vedettes construites comprenant la subdivision 1648-1789" - ], - "noteType": "seeReference" + "authorized_access_point": "Prayer -- Psychology", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85106118", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Pri\u00e8re -- Psychologie", + "source": "RVMLaval" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.485675+00:00", - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027798682", + "value": "http://www.idref.fr/027431444", "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11947427h", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11947427" } ], - "authorized_access_point": "1648-1789" - }, - { - "md5": "9a9a27a84296352ad601e8fa30b87766", - "pid": "027799395", - "note": [ + "pid": "027431444", + "related": [ { - "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": "Mystique - Psychologie" + }, + { + "authorized_access_point": "Pri\u00e8re" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.593466+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/027799395", - "source": "IDREF" + "authorized_access_point": "Psychologie religieuse" } ], - "authorized_access_point": "1918-1933 (r\u00e9publique de weimar)" + "variant_access_point": [ + "Pri\u00e8re - Aspect psychologique", + "Pri\u00e8re - Psychologie" + ], + "md5": "3d00cfb24cbb5764ef4ae2787526a531" }, { - "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", - "deleted": "2023-08-08T14:28:41.670485+00:00", + "type": "bf:Topic", + "authorized_access_point": "Servage", "bnf_type": "sujet Rameau", - "identifiedBy": [ + "classification": [ { - "type": "uri", - "value": "http://www.idref.fr/027799409", - "source": "IDREF" + "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" } ], - "authorized_access_point": "1918-1938" - }, - { - "md5": "9ddfc6e3ee5f77824ea9c9d4591b51d8", - "pid": "027799425", - "note": [ + "closeMatch": [ { - "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": "Serfdom", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120215", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Servage", + "source": "RVMLaval" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.752508+00:00", - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027799425", + "value": "http://www.idref.fr/027436683", "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119478388", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11947838" } ], - "authorized_access_point": "1939-1975 (f. Franco)" - }, - { - "md5": "b1f7ce2f37b1374dee20a426f797bb2f", - "pid": "027799433", "note": [ { + "noteType": "dataSource", "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures espagnoles, catalanes et galiciennes" - ], - "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": "Litt\u00e9rature catalane - 1939-1975" + "authorized_access_point": "Conditions rurales" }, { - "authorized_access_point": "Litt\u00e9rature espagnole - 1939-1975" + "authorized_access_point": "Travail forc\u00e9" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "related": [ { - "type": "uri", - "value": "http://www.idref.fr/027799433", - "source": "IDREF" + "authorized_access_point": "Esclavage" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15586264m", - "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" } ], - "relation_pid": { - "type": "redirect_from", - "value": "120074303" - }, - "classification": [ + "narrower": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Colonat" } ], - "authorized_access_point": "1939-1975" + "variant_access_point": [ + "Condition servile", + "Questalit\u00e9" + ], + "md5": "1480846bbd255c77d2a26661fac04ce2" }, { - "md5": "c59a35e4d5f82b6152804d9e3ee04676", - "pid": "027804038", - "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 - 1895-1929" + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027804038", + "value": "http://www.idref.fr/027455092", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11976743z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11949245c", "source": "BNF" - } - ], - "classification": [ - { - "name": "Audiovisuel", - "type": "bf:ClassificationDdc", - "classificationPortion": "791" - } - ], - "authorized_access_point": "1895-1929" - }, - { - "md5": "d1e1ba8c5e56e22cbec9ee6a29ed03bf", - "pid": "027804186", - "note": [ + }, { - "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" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11949245" } ], - "type": "bf:Temporal", + "pid": "027455092", "related": [ { - "authorized_access_point": "Litt\u00e9rature catalane - 1975-...." + "authorized_access_point": "Enfants - Statut juridique" }, { - "authorized_access_point": "Litt\u00e9rature espagnole - 1975-...." + "authorized_access_point": "Protection de l'enfance" }, { - "authorized_access_point": "Litt\u00e9rature vietnamienne - 1975-...." + "authorized_access_point": "Traite des enfants" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/027804186", - "source": "IDREF" + "authorized_access_point": "Relations personnelles (droits de l'enfant)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119767569", - "source": "BNF" + "authorized_access_point": "Aide juridique aux enfants" + }, + { + "authorized_access_point": "Conseils municipaux d'enfants" } ], - "classification": [ + "broader": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Droits de l'homme" } ], - "authorized_access_point": "1975-...." + "variant_access_point": [ + "Droits de l'enfant", + "Droits des enfants", + "Droits des mineurs" + ], + "md5": "8bf3f256b0f00a2d3bb89ca5bc95d848" }, { - "md5": "f38ef2f44cc52cccd0f6f614d0a0b79a", - "pid": "027804232", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Manuscrits mexicains pr\u00e9colombiens", + "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": "020", + "name": "Sciences de l'information" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Arch\u00e9ologie. Histoire ancienne" + } + ], + "closeMatch": [ + { + "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": "Manuscrits mexicains pr\u00e9colombiens", + "source": "RVMLaval" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:46.891848+00:00", - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027804232", + "value": "http://www.idref.fr/027461599", "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119497374", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11949737" } ], - "authorized_access_point": "1939-1945" - }, - { - "md5": "af23c8c245e4895254ebbd4861882789", - "pid": "027804380", - "note": [ + "pid": "027461599", + "related": [ { - "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": "\u00c9criture pictographique indienne d'Am\u00e9rique" } ], - "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": "Manuscrits mexicains" } ], - "authorized_access_point": "1849-1870" + "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": "2dbbe9c4bcaa44d8cafe80715f2fcde7" }, { - "md5": "624b2dfc22b718da6f2b81728defb981", - "pid": "027805158", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Twrah (le mot h\u00e9breu)", + "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": "400", + "name": "Langues et linguistique" + } + ], + "closeMatch": [ + { + "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.984200+00:00", - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027805158", + "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": "1837-1901" - }, - { - "md5": "075f81db93526ddcf819cde9a136500c", - "pid": "027805220", "note": [ { + "noteType": "dataSource", "label": [ - "Encycl. universalis - http://www.universalis-edu.com (2018-03-21)", - "Encycl. of African-American culture and history / C. A. Palmer, 2005" - ], - "noteType": "dataSource" + "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": [ - "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" - }, - { - "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" + "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:Topic", + "pid": "027478033", "broader": [ { - "authorized_access_point": "Ethnologie - \u00c9tats-Unis" - }, - { - "authorized_access_point": "Noirs" + "authorized_access_point": "H\u00e9breu (langue) - Vocabulaire" } ], - "related": [ - { - "authorized_access_point": "Africains" - }, + "variant_access_point": [ + "Thora (le mot h\u00e9breu)", + "Torah (le mot h\u00e9breu)" + ], + "md5": "ef1ed63b529db0b814aaa6aff05c0bb0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Syndicalisme", + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "authorized_access_point": "Allemands d'origine noire am\u00e9ricaine" + "authorized_access_point": "Syndicalisme", + "source": "RVMLaval" }, { - "authorized_access_point": "Cuisine noire am\u00e9ricaine" - }, + "authorized_access_point": "Syndicalism", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85131626", + "source": "LCSH" + } + ] + } + ], + "identifiedBy": [ { - "authorized_access_point": "Danse noire am\u00e9ricaine" + "type": "uri", + "value": "http://www.idref.fr/027481352", + "source": "IDREF" }, { - "authorized_access_point": "Et les noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318723t", + "source": "BNF" }, { - "authorized_access_point": "Fonds sp\u00e9ciaux - Noirs am\u00e9ricains" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318723" + } + ], + "pid": "027481352", + "related": [ { - "authorized_access_point": "Franc-ma\u00e7onnerie noire am\u00e9ricaine" + "authorized_access_point": "Travailleurs" }, { - "authorized_access_point": "Humour noir am\u00e9ricain" + "authorized_access_point": "Coordinations" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Conditions sociales" - }, + "authorized_access_point": "Militantisme" + } + ], + "narrower": [ { - "authorized_access_point": "Noirs am\u00e9ricains - Droits" + "authorized_access_point": "Action directe" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Histoire" + "authorized_access_point": "Bourses du travail" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Identit\u00e9 collective" + "authorized_access_point": "Syndicalisation" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Langues" + "authorized_access_point": "Syndicalisme r\u00e9volutionnaire" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Politique et gouvernement" + "authorized_access_point": "Syndicalistes" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Et les Africains" - }, + "authorized_access_point": "Anarcho-syndicalisme" + } + ], + "broader": [ { - "authorized_access_point": "Noirs am\u00e9ricains - Et les Indiens d'Am\u00e9rique" + "authorized_access_point": "Mouvement ouvrier" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Et les Juifs" - }, - { - "authorized_access_point": "Noirs am\u00e9ricains - Religion" - }, - { - "authorized_access_point": "Noirs am\u00e9ricains dans la culture populaire" - }, - { - "authorized_access_point": "Philosophie noire am\u00e9ricaine" - }, - { - "authorized_access_point": "Presse noire am\u00e9ricaine" - }, - { - "authorized_access_point": "Universit\u00e9s noires am\u00e9ricaines" - }, - { - "authorized_access_point": "Contes noirs am\u00e9ricains" + "authorized_access_point": "Syndicats" } ], + "variant_access_point": [ + "Action syndicale", + "Activit\u00e9s syndicales", + "Mouvement syndical" + ], + "md5": "fb2d195e5f72cff866f89ab4802ab4dc" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Gouvernement f\u00e9d\u00e9ral - Canada", "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": "Anciens combattants noirs am\u00e9ricains" - }, - { - "authorized_access_point": "Anthropologues noirs am\u00e9ricains" - }, + "classification": [ { - "authorized_access_point": "Artistes noirs am\u00e9ricains" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "closeMatch": [ { - "authorized_access_point": "Athl\u00e8tes noirs am\u00e9ricains" + "authorized_access_point": "Federal government--Canada", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008103642", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Biblioth\u00e9caires noirs am\u00e9ricains" - }, + "authorized_access_point": "Gouvernement f\u00e9d\u00e9ral -- Canada", + "source": "RVMLaval" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Boxeurs noirs am\u00e9ricains" + "type": "uri", + "value": "http://www.idref.fr/027486753", + "source": "IDREF" }, { - "authorized_access_point": "Cadres noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318731f", + "source": "BNF" }, { - "authorized_access_point": "Catholiques noirs am\u00e9ricains" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318731" + } + ], + "note": [ { - "authorized_access_point": "Clerg\u00e9 noir am\u00e9ricain" - }, + "noteType": "general", + "label": [ + "Peut se subdiviser par le nom des provinces" + ] + } + ], + "pid": "027486753", + "narrower": [ { - "authorized_access_point": "Coiffeurs noirs am\u00e9ricains" - }, + "authorized_access_point": "Relations fiscales intergouvernementales - Canada" + } + ], + "variant_access_point": [ + "Relations f\u00e9d\u00e9rales-provinciales (Canada)" + ], + "md5": "2c7d51935d740c38537a0635397e00e2" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Hydrologie urbaine - Informatique", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "authorized_access_point": "Communistes noirs am\u00e9ricains" + "type": "uri", + "value": "http://www.idref.fr/027493032", + "source": "IDREF" }, { - "authorized_access_point": "Consommateurs noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11952058p", + "source": "BNF" }, { - "authorized_access_point": "Courtepointiers noirs am\u00e9ricains" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11952058" + } + ], + "note": [ { - "authorized_access_point": "Criminels noirs am\u00e9ricains" - }, + "noteType": "dataNotFound", + "label": [ + "LCSH, 1994-03. - Laval RVM, 1994-02" + ] + } + ], + "pid": "027493032", + "md5": "e75fd588e765a76b5355d5d3fa931ae9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Dragonnades", + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "authorized_access_point": "Diplomates noirs am\u00e9ricains" - }, + "authorized_access_point": "Dragonnades", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85039286", + "source": "LCSH" + } + ] + } + ], + "identifiedBy": [ { - "authorized_access_point": "\u00c9conomistes noirs am\u00e9ricains" + "type": "uri", + "value": "http://www.idref.fr/027495213", + "source": "IDREF" }, { - "authorized_access_point": "\u00c9crivains noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11952229n", + "source": "BNF" }, { - "authorized_access_point": "Enfants noirs am\u00e9ricains" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11952229" + } + ], + "pid": "027495213", + "broader": [ { - "authorized_access_point": "Enseignants noirs am\u00e9ricains" + "authorized_access_point": "Protestants - Pers\u00e9cutions" }, { - "authorized_access_point": "\u00c9piscopaliens noirs am\u00e9ricains" - }, + "authorized_access_point": "France - 1643-1715 (Louis XIV)" + } + ], + "md5": "29b2a03b8be63ab3ed0653ad6389229e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Int\u00e9gration \u00e9conomique - Europe de l'Ouest", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "\u00c9tudiants noirs am\u00e9ricains" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Familles noires am\u00e9ricaines" + "type": "uri", + "value": "http://www.idref.fr/027495922", + "source": "IDREF" }, { - "authorized_access_point": "Gullahs" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119522796", + "source": "BNF" }, { - "authorized_access_point": "Historiens noirs am\u00e9ricains" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11952279" + } + ], + "pid": "027495922", + "narrower": [ { - "authorized_access_point": "Hommes d'affaires noirs am\u00e9ricains" + "authorized_access_point": "Politique \u00e9conomique - Pays de l'Union europ\u00e9enne" }, { - "authorized_access_point": "Hommes politiques noirs am\u00e9ricains" + "authorized_access_point": "Plan Schuman" }, { - "authorized_access_point": "Homosexuels noirs am\u00e9ricains" - }, + "authorized_access_point": "Politique agricole - Pays de l'Union europ\u00e9enne" + } + ], + "broader": [ { - "authorized_access_point": "Intellectuels noirs am\u00e9ricains" - }, + "authorized_access_point": "Int\u00e9gration \u00e9conomique - Europe" + } + ], + "related": [ { - "authorized_access_point": "Inventeurs noirs am\u00e9ricains" - }, + "authorized_access_point": "Europe de l'Ouest" + } + ], + "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": "55c49aa78719bee232102745b78e17ec" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Phylog\u00e9nie", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Jeunesse noire am\u00e9ricaine" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" + } + ], + "closeMatch": [ { - "authorized_access_point": "Joueurs de basket-ball noirs am\u00e9ricains" - }, + "authorized_access_point": "Phylogeny", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85101498", + "source": "LCSH" + } + ] + } + ], + "identifiedBy": [ { - "authorized_access_point": "Journalistes noirs am\u00e9ricains" + "type": "uri", + "value": "http://www.idref.fr/02750333X", + "source": "IDREF" }, { - "authorized_access_point": "Juges noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11952878h", + "source": "BNF" }, { - "authorized_access_point": "Juifs noirs am\u00e9ricains" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11952878" + } + ], + "note": [ { - "authorized_access_point": "Marins noirs am\u00e9ricains" + "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": "M\u00e9decins noirs am\u00e9ricains" - }, + "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": "M\u00e9thodistes noirs am\u00e9ricains" + "authorized_access_point": "Analyse cladistique" }, { - "authorized_access_point": "Militaires noirs am\u00e9ricains" + "authorized_access_point": "\u00c9volution" }, { - "authorized_access_point": "Militants politiques noirs am\u00e9ricains" + "authorized_access_point": "\u00c9volution (biologie)" }, { - "authorized_access_point": "Mineurs de charbon noirs am\u00e9ricains" + "authorized_access_point": "G\u00e9n\u00e9alogie" }, { - "authorized_access_point": "Missionnaires noirs am\u00e9ricains" + "authorized_access_point": "Homologie (biologie)" }, { - "authorized_access_point": "Mormons noirs am\u00e9ricains" + "authorized_access_point": "Loi biog\u00e9n\u00e9tique fondamentale" }, { - "authorized_access_point": "Noires am\u00e9ricaines" + "authorized_access_point": "Ontogen\u00e8se" }, { - "authorized_access_point": "Noirs am\u00e9ricains dans la fonction publique" + "authorized_access_point": "Parent\u00e9" }, { - "authorized_access_point": "Noirs am\u00e9ricains dans les arts du spectacle" - }, + "authorized_access_point": "Phylog\u00e9nie mol\u00e9culaire" + } + ], + "broader": [ { - "authorized_access_point": "Noirs am\u00e9ricains dans les syndicats" - }, + "authorized_access_point": "Sciences naturelles - Classification" + } + ], + "variant_access_point": [ + "Arbres g\u00e9n\u00e9alogiques", + "Arbres phylog\u00e9n\u00e9tiques", + "Lign\u00e9e", + "Phylogen\u00e8se", + "Phylum" + ], + "md5": "281ccf045ec2a92174475e95d09bc23d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Civilisation - France", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Noirs am\u00e9ricains en milieu urbain" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "944", + "name": "Histoire de la France (depuis 486)" + } + ], + "closeMatch": [ { - "authorized_access_point": "P\u00eacheurs noirs am\u00e9ricains" + "authorized_access_point": "France--Civilization", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051184", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Pentec\u00f4tistes noirs am\u00e9ricains" - }, + "authorized_access_point": "France--Civilisation", + "source": "RVMLaval" + } + ], + "identifiedBy": [ { - "authorized_access_point": "P\u00e8res noirs am\u00e9ricains" + "type": "uri", + "value": "http://www.idref.fr/027506762", + "source": "IDREF" }, { - "authorized_access_point": "Pilotes de navire noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11953151s", + "source": "BNF" }, { - "authorized_access_point": "Pionniers noirs am\u00e9ricains" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11953151" + } + ], + "note": [ { - "authorized_access_point": "Policiers noirs am\u00e9ricains" - }, + "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": "Politologues noirs am\u00e9ricains" + "authorized_access_point": "\u00c9quipements culturels fran\u00e7ais" }, { - "authorized_access_point": "Prisonniers noirs am\u00e9ricains" - }, + "authorized_access_point": "Influence fran\u00e7aise" + } + ], + "narrower": [ { - "authorized_access_point": "Propri\u00e9taires fonciers noirs am\u00e9ricains" + "authorized_access_point": "Art - France" }, { - "authorized_access_point": "Propri\u00e9taires noirs am\u00e9ricains d'esclaves" + "authorized_access_point": "Cuisine fran\u00e7aise" }, { - "authorized_access_point": "Scientifiques noirs am\u00e9ricains" + "authorized_access_point": "Droit - Influence fran\u00e7aise" }, { - "authorized_access_point": "S\u00e9minoles noirs" + "authorized_access_point": "Francit\u00e9" }, { - "authorized_access_point": "Sociologues noirs am\u00e9ricains" + "authorized_access_point": "Vin de France" }, { - "authorized_access_point": "Th\u00e9ologiens noirs am\u00e9ricains" + "authorized_access_point": "Litt\u00e9rature fran\u00e7aise" }, { - "authorized_access_point": "Travailleurs sociaux noirs am\u00e9ricains" + "authorized_access_point": "Musique traditionnelle - France" } ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85001932", - "source": "LCSH" - }, - "authorized_access_point": "African Americans" - }, + "variant_access_point": [ + "Civilisation fran\u00e7aise", + "Culture fran\u00e7aise" + ], + "md5": "2de33619d211cd9901424b101512fc13" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Encycliques sociales", + "bnf_type": "sujet Rameau", + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Noirs am\u00e9ricains" + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027805220", + "value": "http://www.idref.fr/027516652", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119768348", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11954008m", "source": "BNF" - } - ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "305" }, { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11954008" } ], - "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" - ], - "authorized_access_point": "Noirs am\u00e9ricains" - }, - { - "md5": "cfdd035b80013146fa412d11612f239e", - "pid": "027805301", "note": [ { + "noteType": "dataSource", "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", - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/027805301", - "source": "IDREF" - } - ], - "authorized_access_point": "1815-1870" - }, - { - "md5": "eabcfa699c405c06c2d4c9fe80069b0a", - "pid": "027805824", - "note": [ + "Th\u00e9o, 1989" + ] + }, { + "noteType": "dataNotFound", "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" + "LCSH, 2000-03. - Laval RVM, 2000-01" + ] } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:42.243305+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "pid": "027516652", + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/027805824", - "source": "IDREF" + "authorized_access_point": "\u00c9glise catholique - Doctrine sociale" } ], - "authorized_access_point": "1815-1848" + "md5": "6fba34101a31f9e419d611df243e755f" }, { - "md5": "39b70358da38a4a4770ea903851963a0", - "pid": "027809773", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Orient, Question d' (Asie centrale)", + "bnf_type": "sujet Rameau", + "classification": [ { - "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" + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature italienne - Avant 1400" + "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": "Litt\u00e9rature tch\u00e8que - Avant 1400" + "authorized_access_point": "Orient, Question d' (Asie centrale)", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027809773", + "value": "http://www.idref.fr/027519546", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11977185g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11954245c", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11954245" } ], - "authorized_access_point": "Avant 1400" - }, - { - "md5": "26e0692915bef6faeca25bf2dc4fd931", - "pid": "027809781", - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Litt\u00e9rature italienne" - } - ], - "related": [ - { - "authorized_access_point": "Po\u00e8tes italiens" - }, + "note": [ { - "authorized_access_point": "Chansons italiennes" + "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": "Madrigaux (musique) italiens" - }, + "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": "M\u00e9lodies italiennes" + "authorized_access_point": "Relations ext\u00e9rieures - Russie - 1801-1917" }, { - "authorized_access_point": "Prose italienne" + "authorized_access_point": "Asie centrale - 19e si\u00e8cle" } ], - "bnf_type": "genre/forme Rameau", "narrower": [ { - "authorized_access_point": "Cr\u00e9puscularisme" + "authorized_access_point": "Guerre anglo-afghane (1839-1842)" }, { - "authorized_access_point": "Po\u00e9sie de circonstance italienne" - }, + "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": "536474cf4190f0bf2b1349b7543039e3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Mouvements pacifistes", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Ballades italiennes" + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" }, { - "authorized_access_point": "Disperata" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Sciences politiques" + } + ], + "closeMatch": [ { - "authorized_access_point": "\u00c9pigrammes italiennes" + "authorized_access_point": "Peace movements", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85098950", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "\u00c9pop\u00e9es italiennes" + "authorized_access_point": "Peace -- Societies, etc", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85098945", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Frottole (litt\u00e9rature)" + "authorized_access_point": "Mouvements pacifistes", + "source": "RVMLaval" }, { - "authorized_access_point": "Po\u00e8mes en prose italiens" - }, + "authorized_access_point": "Paix -- Associations", + "source": "RVMLaval" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Po\u00e9sie d'amour italienne" + "type": "uri", + "value": "http://www.idref.fr/027519686", + "source": "IDREF" }, { - "authorized_access_point": "Po\u00e9sie dialectale italienne" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119542530", + "source": "BNF" }, { - "authorized_access_point": "Po\u00e9sie didactique italienne" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11954253" + } + ], + "note": [ { - "authorized_access_point": "Po\u00e9sie \u00e9logieuse italienne" + "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": "Po\u00e9sie exp\u00e9rimentale italienne" - }, + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Mouvements contestataires aux guerres" + ] + } + ], + "pid": "027519686", + "related": [ { - "authorized_access_point": "Po\u00e9sie historique italienne" + "authorized_access_point": "Droit \u00e0 la paix" }, { - "authorized_access_point": "Po\u00e9sie italienne - Avant 1400" + "authorized_access_point": "Mouvements contestataires" }, { - "authorized_access_point": "Po\u00e9sie lyrique italienne" - }, + "authorized_access_point": "Pacifistes" + } + ], + "narrower": [ { - "authorized_access_point": "Po\u00e9sie narrative italienne" + "authorized_access_point": "Amsterdam-Pleyel, Mouvement" }, { - "authorized_access_point": "Po\u00e9sie pastorale italienne" + "authorized_access_point": "Copperheads (\u00c9tats-Unis, 1861-1865)" }, { - "authorized_access_point": "Po\u00e9sie politique italienne" - }, + "authorized_access_point": "Zimmerwald, Mouvement de" + } + ], + "broader": [ { - "authorized_access_point": "Po\u00e9sie populaire italienne" + "authorized_access_point": "Mouvements sociaux" }, { - "authorized_access_point": "Po\u00e9sie religieuse italienne" - }, + "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": "a8c629ec11ae93dd0c1dfdd5cb19b0da" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Patron et client", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Po\u00e9sie satirique italienne" + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" }, { - "authorized_access_point": "Po\u00e9sie visuelle italienne" + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" }, { - "authorized_access_point": "Sonnets italiens" + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Arch\u00e9ologie. Histoire ancienne" } ], "closeMatch": [ { + "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": "Patron and client", "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/sh85098771", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie italienne" + "authorized_access_point": "Patron et client", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027809781", + "value": "http://www.idref.fr/027528820", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11977186t", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11954979m", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11954979" } ], - "authorized_access_point": "Po\u00e9sie italienne" - }, - { - "md5": "292f04c6fb961445ffbb7c9a15b82c0a", - "pid": "027811611", - "type": "bf:Topic", - "broader": [ + "note": [ { - "authorized_access_point": "Litt\u00e9rature espagnole" + "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": "Po\u00e9sie hispanophone" + "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": "Po\u00e8tes espagnols" + "authorized_access_point": "Affranchis (droit romain)" }, { - "authorized_access_point": "Chansons espagnoles" + "authorized_access_point": "Client\u00e9lisme" }, { - "authorized_access_point": "M\u00e9lodies espagnoles" + "authorized_access_point": "Patriciens (Rome)" }, { - "authorized_access_point": "Prose espagnole" + "authorized_access_point": "Pl\u00e8be (Rome)" } ], - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "La otra sentimentalidad" - }, - { - "authorized_access_point": "Nov\u00edsimos" - }, - { - "authorized_access_point": "Silva" - }, - { - "authorized_access_point": "\u00c9pigrammes espagnoles" - }, - { - "authorized_access_point": "\u00c9p\u00eetres en vers espagnoles" - }, - { - "authorized_access_point": "\u00c9pop\u00e9es espagnoles" - }, - { - "authorized_access_point": "Ha\u00efkus espagnols" - }, - { - "authorized_access_point": "Po\u00e8mes en prose espagnols" - }, - { - "authorized_access_point": "Po\u00e9sie contestataire espagnole" - }, - { - "authorized_access_point": "Po\u00e9sie d'amour espagnole" - }, - { - "authorized_access_point": "Po\u00e9sie de circonstance espagnole" - }, - { - "authorized_access_point": "Po\u00e9sie dialectale espagnole" - }, - { - "authorized_access_point": "Po\u00e9sie didactique espagnole" - }, - { - "authorized_access_point": "Po\u00e9sie \u00e9logieuse espagnole" - }, - { - "authorized_access_point": "Po\u00e9sie espagnole - Avant 1500" - }, - { - "authorized_access_point": "Po\u00e9sie espagnole - 1500-1700 (P\u00e9riode classique)" - }, - { - "authorized_access_point": "Po\u00e9sie espagnole pour la jeunesse" - }, - { - "authorized_access_point": "Po\u00e9sie exp\u00e9rimentale espagnole" - }, - { - "authorized_access_point": "Po\u00e9sie humoristique espagnole" - }, - { - "authorized_access_point": "Po\u00e9sie lyrique espagnole" - }, - { - "authorized_access_point": "Po\u00e9sie pastorale espagnole" - }, - { - "authorized_access_point": "Po\u00e9sie politique espagnole" - }, - { - "authorized_access_point": "Po\u00e9sie populaire espagnole" - }, - { - "authorized_access_point": "Po\u00e9sie religieuse espagnole" - }, - { - "authorized_access_point": "Po\u00e9sie satirique espagnole" - }, - { - "authorized_access_point": "Po\u00e9sie visuelle espagnole" - }, + "broader": [ { - "authorized_access_point": "Romanceros" - }, + "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": "493cd89dd06aca4ab733e0ff7d30a903" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Mystique - Psychologie", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Sonnets espagnols" + "type": "bf:ClassificationDdc", + "classificationPortion": "150", + "name": "Psychologie, psychanalyse" }, { - "authorized_access_point": "Villancicos (litt\u00e9rature)" + "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/sh85126289", - "source": "LCSH" - }, - "authorized_access_point": "Spanish poetry" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie espagnole" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008108167", + "source": "LCSH" + } + ] } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027811611", + "value": "http://www.idref.fr/027532488", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11977339v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11955279x", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11955279" } ], - "authorized_access_point": "Po\u00e9sie espagnole" - }, - { - "md5": "cae57d83a68be8c607265ff469a2a8f1", - "pid": "027812596", - "note": [ + "pid": "027532488", + "related": [ { - "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" + "authorized_access_point": "Mystique" + }, + { + "authorized_access_point": "Psychologie de la pri\u00e8re" + }, + { + "authorized_access_point": "Psychologie de la foi" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:43.978364+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/027812596", - "source": "IDREF" + "authorized_access_point": "Psychologie religieuse" } ], - "authorized_access_point": "1918-1960" + "variant_access_point": [ + "Mystique - Aspect psychologique", + "Mystiques - Psychologie" + ], + "md5": "07f44847a7c2163d85f88ad1c1b3330e" }, { - "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", - "deleted": "2023-08-08T14:28:44.061768+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/02781341X", - "source": "IDREF" + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" } ], - "authorized_access_point": "1981" - }, - { - "md5": "da2b7c67fbfab0ab7c20fee6e18cb08a", - "pid": "027813533", - "note": [ + "closeMatch": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1917-1948" - ], - "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:44.848459+00:00", - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027813533", + "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": "1917-1948" - }, - { - "md5": "719b2f3daf75b9f31a58689787701a59", - "pid": "027825280", "note": [ { + "noteType": "dataSource", "label": [ - "Vocabulaire juridique / G. Cornu, 2003 (art. : R\u00e9vision)", - "Dict. constitutionnel / O. Duhamel, Y. M\u00e9ny, 1992 : r\u00e9vision" - ], - "noteType": "dataSource" + "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": [ - "Processus de r\u00e9vision (ou d'amendement) des constitutions et modifications qui en r\u00e9sultent", - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" + "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:Topic", + "pid": "027545822", "broader": [ { - "authorized_access_point": "Droit constitutionnel" - }, - { - "authorized_access_point": "Histoire constitutionnelle" - } - ], - "related": [ - { - "authorized_access_point": "Amendements" + "authorized_access_point": "Relations ext\u00e9rieures - Iran - 1979-1997" }, { - "authorized_access_point": "Pouvoir constituant" + "authorized_access_point": "Relations ext\u00e9rieures - \u00c9tats-Unis - 1977-1981" }, { - "authorized_access_point": "Transition constitutionnelle" + "authorized_access_point": "Politique et gouvernement - Iran - 1979-...." }, { - "authorized_access_point": "Constitutions" + "authorized_access_point": "Otages - Iran" } ], + "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)" + ], + "md5": "06f91328d1ab9e1c89aa990133cda311" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Destin et fatalisme", "bnf_type": "sujet Rameau", - "narrower": [ + "classification": [ { - "authorized_access_point": "Conventions constitutionnelles" + "type": "bf:ClassificationDdc", + "classificationPortion": "100", + "name": "Philosophie" } ], "closeMatch": [ { + "authorized_access_point": "Fate and fatalism", "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/sh85047439", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Constitutions -- Amendements" + "authorized_access_point": "Destin et fatalisme", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027825280", + "value": "http://www.idref.fr/027564878", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11978381w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11957809w", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11957809" } ], - "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" - }, - { - "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" + "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" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "027564878", + "related": [ { - "authorized_access_point": "Droit constitutionnel" + "authorized_access_point": "Roue de Fortune (all\u00e9gorie)" }, { - "authorized_access_point": "Droit p\u00e9nal" + "authorized_access_point": "A\u00ee\u0313sa (le mot grec)" }, { - "authorized_access_point": "R\u00e9duction de peine" - } - ], - "related": [ + "authorized_access_point": "Contingence" + }, + { + "authorized_access_point": "D\u00e9terminisme (philosophie)" + }, + { + "authorized_access_point": "\u00c9ternel retour" + }, { - "authorized_access_point": "Amnistie" + "authorized_access_point": "Hasard" }, { - "authorized_access_point": "Cl\u00e9mence (droit)" + "authorized_access_point": "Libre arbitre" }, { - "authorized_access_point": "Lib\u00e9ration conditionnelle" + "authorized_access_point": "Mo\u00eera (le mot grec)" }, { - "authorized_access_point": "Pardon" + "authorized_access_point": "N\u00e9cessit\u00e9" }, { - "authorized_access_point": "Pouvoir ex\u00e9cutif" + "authorized_access_point": "Pr\u00e9destination" }, { - "authorized_access_point": "R\u00e9habilitation" + "authorized_access_point": "Tragique (philosophie)" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "broader": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2002006184", - "source": "LCSH" - }, - "authorized_access_point": "Pardon" + "authorized_access_point": "Philosophie de l'action" }, { + "authorized_access_point": "Philosophie de l'homme" + } + ], + "variant_access_point": [ + "Destin\u00e9e", + "Fatalisme", + "Fatalit\u00e9", + "Fatum", + "Sort" + ], + "md5": "515b70822e523a87420c4c17c052d971" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Prescription m\u00e9dicamenteuse", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "615" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Drugs--Prescribing", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85097972", - "source": "LCSH" - }, - "authorized_access_point": "Pardon" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85039743", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Gr\u00e2ce (droit)" + "authorized_access_point": "M\u00e9dicaments--Prescription", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027832953", + "value": "http://www.idref.fr/027578747", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11978966n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119588768", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11958876" } ], - "classification": [ + "note": [ { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "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" + ] } ], - "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" - ], - "authorized_access_point": "Gr\u00e2ce (droit)" - }, - { - "md5": "51ebb6eaaba72d5d004f2186b53ac544", - "pid": "027838919", - "type": "bf:Topic", - "broader": [ + "pid": "027578747", + "related": [ + { + "authorized_access_point": "D\u00e9prescription m\u00e9dicamenteuse" + }, + { + "authorized_access_point": "Bilan partag\u00e9 de m\u00e9dication" + }, + { + "authorized_access_point": "Chimioth\u00e9rapie" + }, { - "authorized_access_point": "D\u00e9mocratie directe" + "authorized_access_point": "Erreurs m\u00e9dicamenteuses" }, { - "authorized_access_point": "Droit constitutionnel" + "authorized_access_point": "M\u00e9dicaments - Modes d'administration" }, { - "authorized_access_point": "\u00c9lections" + "authorized_access_point": "M\u00e9dicaments - Usage" }, { - "authorized_access_point": "R\u00e9gimes repr\u00e9sentatifs" + "authorized_access_point": "Recommandations sur le bon usage des m\u00e9dicaments" } ], - "related": [ + "narrower": [ { - "authorized_access_point": "Campagnes de votation (Suisse)" - }, + "authorized_access_point": "Auto-prescription m\u00e9dicamenteuse" + } + ], + "broader": [ { - "authorized_access_point": "R\u00e9f\u00e9rendum professionnel" + "authorized_access_point": "Prescription m\u00e9dicale" }, { - "authorized_access_point": "Pl\u00e9biscite" + "authorized_access_point": "Ordonnances m\u00e9dicales" } ], + "variant_access_point": [ + "M\u00e9dicaments - Prescription", + "M\u00e9dicaments - Prescription m\u00e9dicale", + "Prescription des m\u00e9dicaments", + "Prescription pharmaceutique" + ], + "md5": "64b615f5e836bbf6425073ed59e5c314" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Iroquois (Indiens)", "bnf_type": "sujet Rameau", - "narrower": [ + "classification": [ { - "authorized_access_point": "R\u00e9f\u00e9rendum local" + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" } ], "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "R\u00e9f\u00e9rendum" + "authorized_access_point": "Iroquois (Indiens)", + "source": "RVMLaval" }, { + "authorized_access_point": "Iroquois Indians", "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/sh85068260", + "source": "LCSH" + } + ] } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027838919", + "value": "http://www.idref.fr/02758254X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13319148r", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318833d", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13318833" } ], - "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)" - ], - "authorized_access_point": "R\u00e9f\u00e9rendum" - }, - { - "md5": "07a8bb67227350d7b0fb04767855f71a", - "pid": "02784532X", "note": [ { + "noteType": "dataSource", "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" + "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" + ] }, { + "noteType": "general", "label": [ - "Le Soi ; \u00e2me ; principe spirituel" - ], - "noteType": "general" + "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" + ] } ], - "type": "bf:Topic", - "broader": [ + "pid": "02758254X", + "related": [ + { + "authorized_access_point": "Art iroquois" + }, { - "authorized_access_point": "Hindouisme - Doctrines" + "authorized_access_point": "L\u00e9gendes iroquoises" } ], - "related": [ + "narrower": [ + { + "authorized_access_point": "Iroquoises" + }, { - "authorized_access_point": "An\u0101tman" + "authorized_access_point": "Mohawk (Indiens)" }, { - "authorized_access_point": "J\u00f1\u0101na-yoga" + "authorized_access_point": "Oneida (Indiens)" + }, + { + "authorized_access_point": "Onondaga (Indiens)" + }, + { + "authorized_access_point": "Seneca (Indiens)" + }, + { + "authorized_access_point": "Tuscarora (Indiens)" + } + ], + "broader": [ + { + "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": "4590db116ed44617e466f50bad7ae120" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Rod\u00e9os", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "790", + "name": "Arts du spectacle" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "793", + "name": "Sports" + } + ], "closeMatch": [ { + "authorized_access_point": "Rodeos", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85009269", - "source": "LCSH" - }, - "authorized_access_point": "\u0100tman" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85114811", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "\u0100tman" + "authorized_access_point": "Rod\u00e9os", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02784532X", + "value": "http://www.idref.fr/027613275", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119799348", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11961559c", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11961559" } ], - "classification": [ + "note": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "noteType": "dataSource", + "label": [ + "Tr\u00e9sor de la langue fran\u00e7aise", + "Nouveau petit Robert 1993" + ] } ], - "authorized_access_point": "\u0100tman" - }, - { - "md5": "b0e6fe06b3d156e584c94d00a30f3f08", - "pid": "027852547", - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Litt\u00e9rature grecque" - }, + "pid": "027613275", + "related": [ { - "authorized_access_point": "Roman antique" + "authorized_access_point": "Cow-boys" } ], - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "Roman d'amour grec" - }, + "broader": [ { - "authorized_access_point": "Roman \u00e9pistolaire grec" + "authorized_access_point": "Comp\u00e9titions \u00e9questres" }, { - "authorized_access_point": "Roman grec hell\u00e9nistique" - }, + "authorized_access_point": "Spectacles et divertissements" + } + ], + "md5": "a9885a9ad1960474cbb881b5e1fd0e2d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Int\u00e9gration scolaire", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Roman policier grec" + "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/sh85057147", - "source": "LCSH" - }, - "authorized_access_point": "Greek fiction" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85079929", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Roman grec" + "authorized_access_point": "Int\u00e9gration scolaire", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027852547", + "value": "http://www.idref.fr/027616908", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11980545v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11961876s", "source": "BNF" - } - ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" }, { - "name": "Pr\u00e9histoire et histoire ancienne", - "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11961876" } ], - "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": [ + "note": [ { - "authorized_access_point": "\u00c9lectronique num\u00e9rique" + "noteType": "dataSource", + "label": [ + "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)" + ] }, { - "authorized_access_point": "Audiovisuel num\u00e9rique" + "noteType": "general", + "label": [ + "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" + ] } ], + "pid": "027616908", "related": [ { - "authorized_access_point": "Graveurs de c\u00e9d\u00e9roms" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Adaptation scolaire" + }, { - "authorized_access_point": "Boucles (musique)" + "authorized_access_point": "Ateliers relais" }, { - "authorized_access_point": "Compression audio" + "authorized_access_point": "Classes relais" }, { - "authorized_access_point": "Disques compacts" + "authorized_access_point": "Conception universelle de l'apprentissage" }, { - "authorized_access_point": "DVD audio" + "authorized_access_point": "Discrimination en \u00e9ducation" }, { - "authorized_access_point": "Super Audio CD" - } - ], - "closeMatch": [ + "authorized_access_point": "Enfants appartenant \u00e0 des minorit\u00e9s" + }, { - "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": "Enfants difficiles - \u00c9ducation" }, { - "source": "RVMLaval", - "authorized_access_point": "Son -- Enregistrement et reproduction -- Techniques num\u00e9riques" - } - ], - "identifiedBy": [ + "authorized_access_point": "Enfants handicap\u00e9s - \u00c9ducation" + }, { - "type": "uri", - "value": "http://www.idref.fr/028004698", - "source": "IDREF" + "authorized_access_point": "Enfants inadapt\u00e9s - \u00c9ducation" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11992743d", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Enfants surdou\u00e9s" + }, { - "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": "Enseignements g\u00e9n\u00e9raux et professionnels adapt\u00e9s" + }, + { + "authorized_access_point": "Objectifs d'int\u00e9gration (\u00e9ducation)" + }, { - "authorized_access_point": "Ethnologie - [Localisations g\u00e9ographiques]" + "authorized_access_point": "S\u00e9gr\u00e9gation en \u00e9ducation" + }, + { + "authorized_access_point": "Sociologie de l'\u00e9ducation" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Lemkoviens" + "authorized_access_point": "Besoins \u00e9ducatifs particuliers" }, { - "authorized_access_point": "Ruth\u00e8nes" + "authorized_access_point": "Certificat d'aptitude aux actions p\u00e9dagogiques sp\u00e9cialis\u00e9es de l'adaptation et de l'int\u00e9gration scolaires" }, { - "authorized_access_point": "Slovaques" + "authorized_access_point": "P\u00e9dagogie culturellement adapt\u00e9e" }, { - "authorized_access_point": "Slovaques d'origine hongroise" + "authorized_access_point": "Services d'\u00e9ducation sp\u00e9cialis\u00e9e et de soins \u00e0 domicile" }, { - "authorized_access_point": "Tch\u00e9coslovaques" + "authorized_access_point": "Unit\u00e9s localis\u00e9es pour l'inclusion scolaire" } ], - "closeMatch": [ + "broader": [ { - "source": "RVMLaval", - "authorized_access_point": "Ethnologie -- Slovaquie" + "authorized_access_point": "\u00c9ducation sp\u00e9ciale" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh93003751", - "source": "LCSH" - }, - "authorized_access_point": "Ethnology--Slovakia" + "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": "1e2bbe3bdb53be721a197e64ef9314d5" + }, + { + "type": "bf:Topic", + "authorized_access_point": "R\u00e9f\u00e9rences bibliographiques", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028244494", + "value": "http://www.idref.fr/027636461", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120120186", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11963535v", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11963535" } ], - "classification": [ + "pid": "027636461", + "related": [ { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "authorized_access_point": "Notes (paratexte)" + } + ], + "narrower": [ + { + "authorized_access_point": "Recherche documentaire" + } + ], + "broader": [ + { + "authorized_access_point": "Bibliographie - M\u00e9thodologie" + }, + { + "authorized_access_point": "Bibliographie" } ], - "authorized_access_point": "Ethnologie - Slovaquie" + "variant_access_point": [ + "Citations bibliographiques", + "Information bibliographique", + "Informations bibliographiques", + "Notices bibliographiques", + "Renseignements bibliographiques" + ], + "md5": "4de1d5ac84b50f3082a3396150cbc9ac" }, { - "md5": "98f42691805fb509d0cf783d756b56a8", - "pid": "028283678", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Minitel (terminal vid\u00e9otex)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "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" + "type": "uri", + "value": "http://www.idref.fr/027674118", + "source": "IDREF" }, { - "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": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11966659v", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11966659" } ], - "type": "bf:Topic", + "pid": "027674118", "broader": [ { - "authorized_access_point": "Proc\u00e9dure parlementaire" + "authorized_access_point": "T\u00e9l\u00e9tel (service t\u00e9l\u00e9matique)" }, { - "authorized_access_point": "Projets de loi" + "authorized_access_point": "Terminaux \u00e0 \u00e9cran de visualisation" } ], "related": [ { - "authorized_access_point": "Amendements" + "authorized_access_point": "Annuaires t\u00e9l\u00e9phoniques \u00e9lectroniques" } ], + "md5": "d079f2248c5dfedf30e9dc85dad12fdb" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Structure mol\u00e9culaire", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "540", + "name": "Chimie, min\u00e9ralogie, cristallographie" + } + ], "closeMatch": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85004212", - "source": "LCSH" - }, - "authorized_access_point": "Legislative amendments" + "authorized_access_point": "Structure mol\u00e9culaire", + "source": "RVMLaval" }, { - "source": "RVMLaval", - "authorized_access_point": "Amendements (Proc\u00e9dure parlementaire)" + "authorized_access_point": "Molecular structure", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85086594", + "source": "LCSH" + } + ] } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028283678", + "value": "http://www.idref.fr/027674150", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12015117v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11966661d", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11966661" } ], - "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" - }, + "note": [ { - "authorized_access_point": "Nouvelles hispanophones" + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Structure aux produits chimiques" + ] } ], + "pid": "027674150", "related": [ { - "authorized_access_point": "Contes litt\u00e9raires espagnols" + "authorized_access_point": "Structure" } ], - "bnf_type": "genre/forme Rameau", "narrower": [ { - "authorized_access_point": "Micronouvelles espagnoles" + "authorized_access_point": "G-quadruplexes" }, { - "authorized_access_point": "Nouvelles de science-fiction espagnoles" + "authorized_access_point": "Aromaticit\u00e9" }, { - "authorized_access_point": "Nouvelles \u00e9rotiques espagnoles" + "authorized_access_point": "M\u00e9thodes ab initio (chimie quantique)" }, { - "authorized_access_point": "Nouvelles fantastiques espagnoles" + "authorized_access_point": "Spectroscopie mol\u00e9culaire" }, { - "authorized_access_point": "Nouvelles polici\u00e8res espagnoles" - } - ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85121942", - "source": "LCSH" - }, - "authorized_access_point": "Short stories, Spanish" + "authorized_access_point": "Structure atomique" }, { - "source": "RVMLaval", - "authorized_access_point": "Nouvelles espagnoles" + "authorized_access_point": "Structure \u00e9lectronique" } ], - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/028354559", - "source": "IDREF" + "authorized_access_point": "Mol\u00e9cules" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12020709w", - "source": "BNF" + "authorized_access_point": "Structure chimique" } ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } + "variant_access_point": [ + "Mol\u00e9cules - Structure" ], - "authorized_access_point": "Nouvelles espagnoles" + "md5": "7e20a24a3cf6f0cec3f8f26b33ab4fd3" }, { - "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" - } - ], "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Palestiniens - Politique et gouvernement - 1948-....", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Litt\u00e9rature luxembourgeoise" + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" }, { - "authorized_access_point": "Po\u00e9sie dialectale allemande" - } - ], - "related": [ - { - "authorized_access_point": "Chansons luxambourgeoises" + "type": "bf:ClassificationDdc", + "classificationPortion": "950", + "name": "Histoire du reste du monde" } ], - "bnf_type": "genre/forme Rameau", "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie luxembourgeoise" + "authorized_access_point": "Palestinian Arabs--Politics and government", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001009475", + "source": "LCSH" + } + ] } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028359070", + "value": "http://www.idref.fr/027682226", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12021056q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119672904", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11967290" } ], - "authorized_access_point": "Po\u00e9sie luxembourgeoise" - }, - { - "md5": "b8d7b6b99801b50b43b78ec2b61bc6e0", - "pid": "028701755", "note": [ { + "noteType": "dataSource", "label": [ - "Grand Larousse universel", - "Petit Robert 1, 1993" - ], - "noteType": "dataSource" + "Palestiniens -- Politique et gouvernement ; Laval RVM, 2001-07" + ] }, { + "noteType": "seeReference", "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" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Ethnologie - Syrie" + "Voir aussi aux noms des organisations palestiniennes, par ex. : Organisation de lib\u00e9ration de la Palestine" + ] } ], + "pid": "027682226", "related": [ { - "authorized_access_point": "Am\u00e9ricains d'origine syrienne" - }, - { - "authorized_access_point": "Br\u00e9siliens d'origine syrienne" + "authorized_access_point": "Palestiniens" }, { - "authorized_access_point": "Auteurs d'origine syrienne" - }, - { - "authorized_access_point": "Syrie" + "authorized_access_point": "Conflit isra\u00e9lo-arabe" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Juifs syriens" + "authorized_access_point": "Fedayin" }, { - "authorized_access_point": "R\u00e9fugi\u00e9s syriens" - }, + "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": "3f9af523b435cb448fe74ad6f7595290" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Syst\u00e8mes d'affichage", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Syriennes" + "type": "bf:ClassificationDdc", + "classificationPortion": "621" }, { - "authorized_access_point": "Travailleurs \u00e9trangers syriens" + "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/sh85131719", - "source": "LCSH" - }, - "authorized_access_point": "Syrians" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Syriens" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85066140", + "source": "LCSH" + } + ] } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028701755", + "value": "http://www.idref.fr/027688836", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12048392h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11967772k", "source": "BNF" - } - ], - "classification": [ - { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" - } - ], - "authorized_access_point": "Syriens" - }, - { - "md5": "152a3170f3390535cf0468b7382e6c94", - "pid": "028910044", - "type": "bf:Topic", - "broader": [ + }, { - "authorized_access_point": "Ethnologie - [Localisations g\u00e9ographiques]" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11967772" } ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Allemands de Petite Lituanie" - }, + "pid": "027688836", + "related": [ { - "authorized_access_point": "Boikos" + "authorized_access_point": "Appareils enregistreurs" }, { - "authorized_access_point": "Juifs - Pologne" + "authorized_access_point": "Dispositifs opto\u00e9lectroniques" }, { - "authorized_access_point": "Kachoubes" + "authorized_access_point": "Dispositifs photo\u00e9lectroniques" }, { - "authorized_access_point": "Lemkoviens" + "authorized_access_point": "Gestion \u00e9lectronique de documents" }, { - "authorized_access_point": "Polonais" + "authorized_access_point": "Ordinateurs - \u00c9quipement d'entr\u00e9e-sortie" }, { - "authorized_access_point": "Ruth\u00e8nes" + "authorized_access_point": "Ordinateurs - \u00c9quipement optique" }, { - "authorized_access_point": "Sil\u00e9siens" + "authorized_access_point": "Traitement optique de l'information" } ], - "closeMatch": [ + "narrower": [ { - "source": "RVMLaval", - "authorized_access_point": "Ethnologie -- Pologne" + "authorized_access_point": "\u00c9crans radioluminescents \u00e0 m\u00e9moire" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85045360", - "source": "LCSH" - }, - "authorized_access_point": "Ethnology--Poland" - } - ], - "identifiedBy": [ + "authorized_access_point": "\u00c9crans tactiles" + }, { - "type": "uri", - "value": "http://www.idref.fr/028910044", - "source": "IDREF" + "authorized_access_point": "Tubes \u00e0 rayons cathodiques" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12064823h", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Affichage par \u00e9lectroluminescence" + }, { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" - } - ], - "authorized_access_point": "Ethnologie - Pologne" - }, - { - "md5": "a88a56b05bb606e5087980c6cc1e5d81", - "pid": "028962389", - "note": [ + "authorized_access_point": "Casques de visualisation" + }, { - "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" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Affichage sur \u00e9cran de t\u00e9l\u00e9vision" + }, { - "authorized_access_point": "Surdit\u00e9" + "authorized_access_point": "\u00c9crans plats" }, { - "authorized_access_point": "Troubles de la perception auditive" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Amplificateurs de luminance" + }, { - "authorized_access_point": "Usher, Syndrome d'" - } - ], - "closeMatch": [ + "authorized_access_point": "Collimateurs de pilotage" + }, { - "source": "MeSH", - "authorized_access_point": "Hearing Loss, Sensorineural" + "authorized_access_point": "Dispositifs \u00e9lectrochromiques" }, { - "source": "RVMLaval", - "authorized_access_point": "Surdit\u00e9 de perception" - } - ], - "identifiedBy": [ + "authorized_access_point": "Imagerie quadridimensionnelle" + }, { - "type": "uri", - "value": "http://www.idref.fr/028962389", - "source": "IDREF" + "authorized_access_point": "Imagerie tridimensionnelle" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12068935r", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Syst\u00e8mes d'affichage \u00e0 cristaux liquides" + }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "authorized_access_point": "Terminaux \u00e0 \u00e9cran de visualisation" } ], "variant_access_point": [ - "Surdit\u00e9 neurosensorielle" - ], - "authorized_access_point": "Surdit\u00e9 de perception" + "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": "0dae31e85ba705fac05b78b832f10569" }, { - "md5": "136777aea5c646be2b89479051fd1a91", - "pid": "02897297X", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Macintosh (ordinateur)", + "bnf_type": "sujet Rameau", + "classification": [ { - "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" + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" } ], - "type": "bf:Topic", - "broader": [ + "identifiedBy": [ { - "authorized_access_point": "Civilisation - Espagne - 20e si\u00e8cle" + "type": "uri", + "value": "http://www.idref.fr/027694852", + "source": "IDREF" }, { - "authorized_access_point": "Litt\u00e9rature espagnole" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11968218n", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11968218" } ], + "pid": "027694852", "related": [ { - "authorized_access_point": "Litt\u00e9rature espagnole - 1870-1914" - }, - { - "authorized_access_point": "Litt\u00e9rature espagnole - 1975-...." + "authorized_access_point": "PowerMac (ordinateur)" } ], - "bnf_type": "genre/forme Rameau", "narrower": [ { - "authorized_access_point": "La otra sentimentalidad" + "authorized_access_point": "AppleTalk (syst\u00e8me de r\u00e9seau local)" }, { - "authorized_access_point": "Nov\u00edsimos" + "authorized_access_point": "Macintosh Classic (ordinateur)" }, { - "authorized_access_point": "Litt\u00e9rature espagnole - 1900-1939" - }, + "authorized_access_point": "Macintosh PowerBook (bloc-notes)" + } + ], + "broader": [ + { + "authorized_access_point": "Apple (ordinateurs)" + } + ], + "variant_access_point": [ + "Apple Macintosh (ordinateur)" + ], + "md5": "95d93a059c417c9d1c818e28e243f7d7" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Convertisseurs \u00e9lectriques", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Litt\u00e9rature espagnole - 1939-1975" + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" } ], "closeMatch": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85126273", - "source": "LCSH" - }, - "authorized_access_point": "Spanish literature -- 20th century" + "authorized_access_point": "Convertisseurs \u00e9lectriques", + "source": "RVMLaval" }, { - "source": "RVMLaval", - "authorized_access_point": "Litt\u00e9rature espagnole -- 20e si\u00e8cle" + "authorized_access_point": "Electric current converters", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85041637", + "source": "LCSH" + } + ] } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02897297X", + "value": "http://www.idref.fr/027710025", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12069760n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119694309", "source": "BNF" - } - ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "variant_access_point": [ - "Litt\u00e9rature espagnole du 20e si\u00e8cle" - ], - "authorized_access_point": "Litt\u00e9rature espagnole - 20e si\u00e8cle" - }, - { - "md5": "0ee9ef6b3704f492c04d916cb205a00d", - "pid": "029241693", - "note": [ - { - "label": [ - "Les antiquit\u00e9s \u00e9gyptiennes : guide du visiteur / Mus\u00e9e du Louvre, D\u00e9partement des antiquit\u00e9s \u00e9gyptiennes, 1997" - ], - "noteType": "dataSource" }, { - "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." + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11969430" } ], + "pid": "027710025", "related": [ { - "authorized_access_point": "Art \u00e9gyptien" - }, - { - "authorized_access_point": "Antiquit\u00e9s - \u00c9gypte" + "authorized_access_point": "Commutation (\u00e9lectricit\u00e9)" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Amulettes \u00e9gyptiennes" - }, - { - "authorized_access_point": "Bijoux \u00e9gyptiens" - }, - { - "authorized_access_point": "C\u00e9ramique \u00e9gyptienne" - }, - { - "authorized_access_point": "Flabellums" - }, - { - "authorized_access_point": "Inscriptions \u00e9gyptiennes" + "authorized_access_point": "Redresseurs int\u00e9gr\u00e9s" }, { - "authorized_access_point": "Lampes \u00e9gyptiennes" + "authorized_access_point": "Convertisseurs multiniveaux" }, { - "authorized_access_point": "Mastabas" + "authorized_access_point": "Changeurs de fr\u00e9quence" }, { - "authorized_access_point": "Meubles \u00e9gyptiens" + "authorized_access_point": "Convertisseurs \u00e0 thyristors" }, { - "authorized_access_point": "Objets d'art \u00e9gyptiens" + "authorized_access_point": "Convertisseurs continu-continu" }, { - "authorized_access_point": "Poids et mesures \u00e9gyptiens" + "authorized_access_point": "Hacheurs (\u00e9lectricit\u00e9)" }, { - "authorized_access_point": "Sarcophages \u00e9gyptiens" + "authorized_access_point": "Klystrons" }, { - "authorized_access_point": "Shaouabtis" - }, - { - "authorized_access_point": "Temples \u00e9gyptiens" - }, - { - "authorized_access_point": "Textiles et tissus \u00e9gyptiens" - }, - { - "authorized_access_point": "Vases \u00e9gyptiens" + "authorized_access_point": "Onduleurs (\u00e9lectricit\u00e9)" } ], - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/029241693", - "source": "IDREF" + "authorized_access_point": "Alimentations (\u00e9lectricit\u00e9)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12090894p", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "\u00c9lectronique de puissance" + }, { - "name": "Pr\u00e9histoire et histoire ancienne", - "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "authorized_access_point": "Machines \u00e9lectriques" } ], "variant_access_point": [ - "Arch\u00e9ologie de l'\u00c9gypte ancienne" + "Conversion de courant (\u00e9lectricit\u00e9)", + "Convertisseurs \u00e9lectroniques", + "Courants \u00e9lectriques - Convertisseurs" ], - "authorized_access_point": "Antiquit\u00e9s \u00e9gyptiennes" + "md5": "2cb17d696df5f36b0255c7a92b571a09" }, { - "md5": "24a9c7e85a7f89578763dda36ee4954d", - "pid": "029260892", - "note": [ + "type": "bf:Topic", + "authorized_access_point": "Anticommunisme", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "GDEL: Juin 1940 (appel du 18)" - ], - "noteType": "dataNotFound" + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" } ], - "type": "bf:Topic", - "deleted": "2022-08-25T10:47:31.610056+00:00", - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029260892", + "value": "http://www.idref.fr/027727327", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12092565r", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11970825v", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11970825" } ], - "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": [ { + "noteType": "dataSource", "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" + "Grand Larousse universel", + "Grand Robert de la langue fran\u00e7aise, 2001" + ] } ], - "type": "bf:Temporal", + "pid": "027727327", "related": [ { - "authorized_access_point": "\u00c9glise catholique - 1965-...." + "authorized_access_point": "Communisme" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/029531411", - "source": "IDREF" + "authorized_access_point": "Maccarthysme" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb121138342", - "source": "BNF" + "authorized_access_point": "Op\u00e9ration Zypresse (1944)" + }, + { + "authorized_access_point": "Propagande anticommuniste" } ], - "relation_pid": { - "type": "redirect_from", - "value": "08582898X" - }, + "variant_access_point": [ + "Anti-communisme", + "Communisme - Mouvements d'opposition", + "Mouvements anti-communistes", + "Mouvements anticommunistes", + "Opposition au communisme", + "R\u00e9sistance contre le communisme" + ], + "md5": "24e37612ed60ed2f8b07af5dabf3f68d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Noirs am\u00e9ricains - Politique et gouvernement", + "bnf_type": "sujet Rameau", "classification": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "classificationPortion": "320", + "name": "Science politique" }, { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", "type": "bf:ClassificationDdc", - "classificationPortion": "900" - } - ], - "authorized_access_point": "1965-...." - }, - { - "md5": "4e0ecdf71a2ea0fc4547416754fe58fc", - "pid": "029560020", - "note": [ - { - "label": [ - "S'emploie uniquement en subdivision" - ], - "noteType": "general" + "classificationPortion": "390", + "name": "Ethnologie" } ], - "type": "bf:Topic", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Hommes politiques" + "authorized_access_point": "African Americans--Politics and government", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95010593", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Constitutions" + "authorized_access_point": "Noirs am\u00e9ricains -- Politique et gouvernement", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029560020", + "value": "http://www.idref.fr/027727521", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb121160279", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119708413", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11970841" } ], - "classification": [ + "pid": "027727521", + "related": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "305" + "authorized_access_point": "Noirs am\u00e9ricains" }, { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" + "authorized_access_point": "Noirs am\u00e9ricains - Droits" + } + ], + "narrower": [ + { + "authorized_access_point": "Leadership noir am\u00e9ricain" }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "authorized_access_point": "Nationalisme noir - \u00c9tats-Unis" } ], "variant_access_point": [ - "R\u00e9dacteurs" + "Noirs am\u00e9ricains - Activit\u00e9 politique" ], - "authorized_access_point": "R\u00e9dacteurs (droit)" + "md5": "b8eee0abfc5fd32b90d371ce09830c18" }, { - "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": "Proconsuls (Rome)", + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "authorized_access_point": "Sciences cognitives" + "authorized_access_point": "Proconsuls, Roman", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107160", + "source": "LCSH" + } + ] } ], - "related": [ + "identifiedBy": [ { - "authorized_access_point": "Consignes (\u00e9ducation)" + "type": "uri", + "value": "http://www.idref.fr/027729044", + "source": "IDREF" }, { - "authorized_access_point": "Cognition" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119709792", + "source": "BNF" }, { - "authorized_access_point": "Tests de concordance de script" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11970979" } ], - "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 \u00e9crite - Aspect cognitif" - }, - { - "authorized_access_point": "Connexionnisme" - }, - { - "authorized_access_point": "Distracteurs (psychologie)" - }, - { - "authorized_access_point": "Double t\u00e2che (psychologie)" - }, - { - "authorized_access_point": "Effet Zeigarnik" - }, - { - "authorized_access_point": "Imagerie (psychologie)" - }, + "note": [ { - "authorized_access_point": "Intelligences multiples" - }, + "noteType": "dataSource", + "label": [ + "Mourre", + "GLU" + ] + } + ], + "pid": "027729044", + "broader": [ { - "authorized_access_point": "Protocoles verbaux" + "authorized_access_point": "Consuls (Rome)" }, { - "authorized_access_point": "Rapport au savoir" + "authorized_access_point": "Magistrats (Rome)" }, { - "authorized_access_point": "Repr\u00e9sentation mentale" - }, + "authorized_access_point": "Provinces romaines" + } + ], + "variant_access_point": [ + "Proconsulat (Rome)", + "Proconsuls romains" + ], + "md5": "0e38441fe871b86757b8ed73aff7eb90" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Transpac (r\u00e9seau de transmission de donn\u00e9es)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "authorized_access_point": "R\u00e9solution de probl\u00e8me" + "type": "uri", + "value": "http://www.idref.fr/027735893", + "source": "IDREF" }, { - "authorized_access_point": "Sch\u00e9ma narratif" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11971521w", + "source": "BNF" }, { - "authorized_access_point": "Th\u00e9orie de l'esprit (psychologie)" - }, + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11971521" + } + ], + "note": [ { - "authorized_access_point": "Transfert d'apprentissage" - }, + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027735893", + "broader": [ { - "authorized_access_point": "Typicalit\u00e9" + "authorized_access_point": "Commutation de paquets" }, { - "authorized_access_point": "Vicariance (psychologie)" + "authorized_access_point": "T\u00e9l\u00e9communications - France" } ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh87007652", - "source": "LCSH" - }, - "authorized_access_point": "Cognitive psychology" - }, + "variant_access_point": [ + "R\u00e9seau Transpac" + ], + "md5": "d2f2fd808af1c7ca75810fc95527eedd" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Sunna", + "bnf_type": "sujet Rameau", + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Psychologie cognitive" + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029563321", + "value": "http://www.idref.fr/027756580", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12116308v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11973106c", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11973106" } ], - "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. : 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" + ] + }, + { + "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" + ] } ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Ethnologie - Pologne" - }, + "pid": "027756580", + "related": [ { - "authorized_access_point": "Ethnologie - Roumanie" + "authorized_access_point": "Sunnisme" }, { - "authorized_access_point": "Ethnologie - Slovaquie" - }, + "authorized_access_point": "Litt\u00e9rature islamique" + } + ], + "broader": [ { - "authorized_access_point": "Ethnologie - Ukraine" + "authorized_access_point": "Islam" } ], + "variant_access_point": [ + "Sunna\u1e97", + "\u0633\u0646\u0651\u0629", + "Sunnah", + "Al- sunna\u1e97", + "\u0627\u0644\u0633\u0646\u0651\u0629", + "Tradition (islam)" + ], + "md5": "999940958772c71cf96030c7491d707d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Tuiles", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Boikos" - }, + "classification": [ { - "authorized_access_point": "Houtsoules" + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" }, { - "authorized_access_point": "Lemkoviens" + "type": "bf:ClassificationDdc", + "classificationPortion": "690", + "name": "B\u00e2timent" } ], "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "Ruth\u00e8nes" - }, - { + "authorized_access_point": "Tiles, Roofing", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh94005758", - "source": "LCSH" - }, - "authorized_access_point": "Carpatho-Rusyns" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85135357", + "source": "LCSH" + } + ] }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85116084", - "source": "LCSH" - }, - "authorized_access_point": "Ruthenians" + "authorized_access_point": "Tuiles", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029910609", + "value": "http://www.idref.fr/027756653", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12143605j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119731129", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11973112" } ], - "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" - ], - "authorized_access_point": "Ruth\u00e8nes" - }, - { - "md5": "8badf8e100384b57c3ccef62c2f6445a", - "pid": "030714451", "note": [ { + "noteType": "dataSource", "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" - }, - { - "label": [ - "Voir aussi les vedettes de musique comprenant les mots alto ou altos" - ], - "noteType": "seeReference" + "Grand Robert de la langue fran\u00e7aise, 2001", + "Dicobat 10 : dict. g\u00e9n\u00e9ral du b\u00e2timent / J. de Vigan, 2011" + ] } ], - "type": "bf:Topic", + "pid": "027756653", "related": [ { - "authorized_access_point": "Alto (instrument de musique)" + "authorized_access_point": "Construction en tuiles" }, { - "authorized_access_point": "Musique \u00e9lectroacoustique mixte (alto)" - } - ], - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "Arabesques (alto)" + "authorized_access_point": "Toits en tuiles" }, { - "authorized_access_point": "Chaconnes (alto)" + "authorized_access_point": "Tuileries" }, { - "authorized_access_point": "\u00c9tudes (alto)" - }, + "authorized_access_point": "Tuiles - Industrie et commerce" + } + ], + "narrower": [ { - "authorized_access_point": "Pr\u00e9ludes (alto)" + "authorized_access_point": "Tuiles \u00e0 embo\u00eetement" }, { - "authorized_access_point": "Sonates (alto)" + "authorized_access_point": "Tuiles antiques" }, { - "authorized_access_point": "Suites (alto)" + "authorized_access_point": "Tuiles en b\u00e9ton" }, { - "authorized_access_point": "Variations (alto)" - } - ], - "closeMatch": [ + "authorized_access_point": "Tuiles m\u00e9di\u00e9vales" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85143486", - "source": "LCSH" - }, - "authorized_access_point": "Viola music" + "authorized_access_point": "Tuiles photovolta\u00efques" }, { - "source": "RVMLaval", - "authorized_access_point": "Alto, Musique d'" + "authorized_access_point": "Tuiles verniss\u00e9es" } ], - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/030714451", - "source": "IDREF" + "authorized_access_point": "Construction - Mat\u00e9riaux" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12207487g", - "source": "BNF" - } - ], - "classification": [ - { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "authorized_access_point": "Couverture (construction)" } ], "variant_access_point": [ - "Musique d'alto", - "Musique pour alto" + "Couverture en tuiles" ], - "authorized_access_point": "Alto, Musique d'" + "md5": "4f5fc72af0f2bbe017483483c78e8ea4" }, { - "md5": "fbbc45d779bffc769213e823f501344c", - "pid": "030763762", - "note": [ - { - "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" - } - ], "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Cartes \u00e0 m\u00e9moire", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Boissons alcoolis\u00e9es" + "type": "bf:ClassificationDdc", + "classificationPortion": "621" }, { - "authorized_access_point": "Produits du riz" + "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/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" + "authorized_access_point": "Cartes \u00e0 m\u00e9moire", + "source": "RVMLaval" }, { + "authorized_access_point": "Smart cards", "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" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Vin de riz" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85123621", + "source": "LCSH" + } + ] } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/030763762", + "value": "http://www.idref.fr/027759547", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb122114230", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119733403", "source": "BNF" - } - ], - "classification": [ - { - "name": "Agriculture, \u00e9levage", - "type": "bf:ClassificationDdc", - "classificationPortion": "630" }, { - "name": "Economie domestique, h\u00f4tellerie", - "type": "bf:ClassificationDdc", - "classificationPortion": "640" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11973340" } ], - "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": [ + "pid": "027759547", + "related": [ { - "authorized_access_point": "Ethnologie - [Localisations g\u00e9ographiques]" + "authorized_access_point": "Cartes de cr\u00e9dit" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Allemands de Bucovine" + "authorized_access_point": "Cartes professionnelles de sant\u00e9" }, { - "authorized_access_point": "Allemands de Transylvanie" + "authorized_access_point": "Cartes de t\u00e9l\u00e9phone" }, { - "authorized_access_point": "Allemands du Banat" + "authorized_access_point": "Cartes de sant\u00e9" }, { - "authorized_access_point": "Allemands du Danube" - }, - { - "authorized_access_point": "Daces" - }, + "authorized_access_point": "Porte-monnaie \u00e9lectronique" + } + ], + "broader": [ { - "authorized_access_point": "G\u00e9pides" + "authorized_access_point": "Identification automatique" }, { - "authorized_access_point": "Roumains" + "authorized_access_point": "Microprocesseurs" }, { - "authorized_access_point": "Roumains d'origine fran\u00e7aise" + "authorized_access_point": "Monnaie \u00e9lectronique" }, { - "authorized_access_point": "Roumains d'origine hongroise" + "authorized_access_point": "Ordinateurs - M\u00e9moires" }, { - "authorized_access_point": "Ruth\u00e8nes" + "authorized_access_point": "Syst\u00e8mes de s\u00e9curit\u00e9" } ], - "closeMatch": [ + "variant_access_point": [ + "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" + ], + "md5": "8ec0ee711f19d791032c3d27459e3227" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Soci\u00e9t\u00e9s de services en ing\u00e9nierie informatique", + "bnf_type": "sujet Rameau", + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85045365", - "source": "LCSH" - }, - "authorized_access_point": "Ethnology--Romania" + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "Economie" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" }, { - "source": "RVMLaval", - "authorized_access_point": "Ethnologie--Roumanie" + "type": "bf:ClassificationDdc", + "classificationPortion": "650", + "name": "Gestion et organisation de l'entreprise" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/030767806", + "value": "http://www.idref.fr/027789551", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12211770b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11975653r", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11975653" } ], - "authorized_access_point": "Ethnologie - Roumanie" - }, - { - "md5": "a713f3716ced9f6a5d616aa5c2c92a3f", - "pid": "030860466", "note": [ { + "noteType": "dataSource", "label": [ - "Japanese Literary History - http://www.jlit.net (2018-08-30)" - ], - "noteType": "dataSource" + "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)" + ] }, { + "noteType": "general", "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" + "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)" + ] } ], - "type": "bf:Temporal", + "pid": "027789551", "related": [ { - "authorized_access_point": "Litt\u00e9rature japonaise - 1600-1868 (\u00c9poque d'Edo)" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Centres de traitement informatique" + }, { - "type": "uri", - "value": "http://www.idref.fr/030860466", - "source": "IDREF" + "authorized_access_point": "Infog\u00e9rance" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb122191473", - "source": "BNF" + "authorized_access_point": "Informaticiens-conseils" } ], - "classification": [ + "narrower": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Soci\u00e9t\u00e9s de services en logiciels libres" } ], - "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": [ - { - "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" - } - ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Litt\u00e9rature bi\u00e9lorusse - Avant 1700" - }, - { - "authorized_access_point": "Litt\u00e9rature \u00e9cossaise - Avant 1700" - }, - { - "authorized_access_point": "Litt\u00e9rature lituanienne - Avant 1700" - }, - { - "authorized_access_point": "Litt\u00e9rature russe - Avant 1700" - }, - { - "authorized_access_point": "Litt\u00e9rature serbe - Avant 1700" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/031022219", - "source": "IDREF" + "authorized_access_point": "Informatique - Industrie et commerce" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12232063s", - "source": "BNF" - } - ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Soci\u00e9t\u00e9s de conseil" } ], - "authorized_access_point": "Avant 1700" + "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": "4c40e3a6fc978c3c8fbad518692ff53c" }, { - "md5": "bf2bd884be0b8b78dadbc5d961d31e00", - "pid": "03116207X", "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Femmes enceintes - Examens m\u00e9dicaux" - }, + "authorized_access_point": "Tableurs", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Diagnostic pr\u00e9natal" + "type": "bf:ClassificationDdc", + "classificationPortion": "621" } ], - "related": [ + "closeMatch": [ { - "authorized_access_point": "Accouchement - Complications (m\u00e9decine) -- Diagnostic" + "authorized_access_point": "Tableurs", + "source": "RVMLaval" }, { - "authorized_access_point": "Grossesse - Signes et diagnostic" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Imagerie pour le diagnostic en obst\u00e9trique" + "authorized_access_point": "Electronic spreadsheets", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042371", + "source": "LCSH" + } + ] } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/03116207X", + "value": "http://www.idref.fr/027793575", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12243064k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119759647", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11975964" } ], - "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": [ { + "noteType": "dataSource", "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" - }, - { - "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Langues - \u00c9tude et enseignement" + "GDEL" + ] } ], + "pid": "027793575", "related": [ { - "authorized_access_point": "Fautes de langage - Analyse (enseignement des langues)" + "authorized_access_point": "Grapheurs" }, { - "authorized_access_point": "Faux amis (linguistique)" - }, - { - "authorized_access_point": "Normalisation linguistique" - }, - { - "authorized_access_point": "Purisme (linguistique)" - }, - { - "authorized_access_point": "Usage" + "authorized_access_point": "Solveurs (logiciels)" } ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Fautes d'orthographe" - }, - { - "authorized_access_point": "Lapsus" - }, - { - "authorized_access_point": "Perles de langage" - }, + "broader": [ { - "authorized_access_point": "Que\u00edsmo" + "authorized_access_point": "Logiciels" } ], - "closeMatch": [ - { - "source": "RVMLaval", - "authorized_access_point": "Fautes de langage" - }, + "variant_access_point": [ + "Chiffriers \u00e9lectroniques", + "Feuilles de calcul \u00e9lectroniques" + ], + "md5": "03cf88cceacf2bac9127c1ab2f8d9020" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Personnel - Droits", + "bnf_type": "sujet Rameau", + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85126446", - "source": "LCSH" - }, - "authorized_access_point": "Speech errors" + "type": "bf:ClassificationDdc", + "classificationPortion": "340", + "name": "Droit" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/031474284", + "value": "http://www.idref.fr/027808394", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12268317h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11977077k", "source": "BNF" - } - ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" }, { - "name": "Po\u00e9sie", - "type": "bf:ClassificationDdc", - "classificationPortion": "801" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977077" } ], - "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": [ { + "noteType": "dataSource", "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": "Cognition" - }, - { - "authorized_access_point": "Lecture - Aspect psychologique" - }, - { - "authorized_access_point": "Linguistique cognitive" + "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" + ] } ], + "pid": "027808394", "related": [ { - "authorized_access_point": "Communication \u00e9crite - Aspect cognitif" + "authorized_access_point": "Personnel" }, { - "authorized_access_point": "Consignes (\u00e9ducation)" + "authorized_access_point": "Religion en milieu de travail" }, { - "authorized_access_point": "\u00c9criture - Aspect cognitif" - }, - { - "authorized_access_point": "Test de closure" + "authorized_access_point": "R\u00e8glement int\u00e9rieur" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "D\u00e9nomination rapide automatis\u00e9e" + "authorized_access_point": "Bases de donn\u00e9es \u00e9conomiques et sociales (relations industrielles)" }, { - "authorized_access_point": "Lecture - Difficult\u00e9s" - } - ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85111686", - "source": "LCSH" - }, - "authorized_access_point": "Reading comprehension" + "authorized_access_point": "Communication en direction du personnel" }, { - "source": "RVMLaval", - "authorized_access_point": "Compr\u00e9hension de la lecture" - } - ], - "identifiedBy": [ + "authorized_access_point": "Droit de gr\u00e8ve" + }, { - "type": "uri", - "value": "http://www.idref.fr/031911056", - "source": "IDREF" + "authorized_access_point": "Expression des salari\u00e9s" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12303769k", - "source": "BNF" + "authorized_access_point": "Repr\u00e9sentation du personnel" } ], - "classification": [ + "broader": [ { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "authorized_access_point": "Droit du travail" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "authorized_access_point": "Droits \u00e9conomiques et sociaux" } ], "variant_access_point": [ - "Cognition et lecture", - "Lecture - Compr\u00e9hension", - "Lecture et cognition", - "Psychologie cognitive de la lecture" + "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": "Lecture - Aspect cognitif" + "md5": "b43807ab0b1a5343da8df6c638fb317b" }, { - "md5": "c24aa7d62b52901dd8ea61246aa5d8fe", - "pid": "031937667", - "note": [ - { - "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:Temporal", - "related": [ - { - "authorized_access_point": "Catalan (langue) - +* 1500......- 1799......+:16e-18e si\u00e8cles: (D\u00e9cadence)" - }, - { - "authorized_access_point": "Litt\u00e9rature catalane - 16e-18e si\u00e8cles (D\u00e9cadence)" - } - ], + "type": "bf:Topic", + "authorized_access_point": "Universit\u00e9s - Administration", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/031937667", + "value": "http://www.idref.fr/027808629", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123061282", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11977092g", "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11977092" } ], - "classification": [ + "pid": "027808629", + "related": [ { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "authorized_access_point": "Recteurs d'acad\u00e9mie" }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "16e-18e si\u00e8cles(D\u00e9cadence)" - }, - { - "md5": "69fe495cc96d63eb48ed1ba046dc18d2", - "pid": "031992234", - "note": [ + "authorized_access_point": "Enseignement sup\u00e9rieur - R\u00e9forme" + }, { - "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": "Autonomie universitaire" } ], - "type": "bf:Topic", - "bnf_type": "genre/forme Rameau", "narrower": [ { - "authorized_access_point": "Concertos (saxophone)" + "authorized_access_point": "\u00c9tudiants - Participation \u00e0 la gestion de l'administration" }, { - "authorized_access_point": "Po\u00e8mes symphoniques (saxophone et orchestre)" + "authorized_access_point": "Coop\u00e9ration universitaire" }, { - "authorized_access_point": "Rhapsodies (saxophone et orchestre)" + "authorized_access_point": "Pr\u00e9sidents et recteurs d'universit\u00e9" }, { - "authorized_access_point": "Saxophone et orchestre \u00e0 cordes" + "authorized_access_point": "Enseignants - Participation \u00e0 la gestion de l'administration" }, { - "authorized_access_point": "Saxophone et orchestre \u00e0 vent" + "authorized_access_point": "Doyens (enseignement sup\u00e9rieur)" }, { - "authorized_access_point": "Saxophone et orchestre d'harmonie" - }, - { - "authorized_access_point": "Saxophone et orchestre de chambre" - }, + "authorized_access_point": "Biblioth\u00e9caires d'universit\u00e9 - Rang de professeur" + } + ], + "variant_access_point": [ + "Administration universitaire" + ], + "md5": "b57c72553c6cb2cad1cd82a4c7ab3704" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Zaydites", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Saxophone et orchestre de jazz" + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" }, { - "authorized_access_point": "Suites (saxophone et orchestre)" + "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/sh85149552", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Zayd\u012byah", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85117865", - "source": "LCSH" - }, - "authorized_access_point": "Saxophone with orchestra" + "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": "Saxophone et orchestre" + "authorized_access_point": "Zaydisme", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/031992234", + "value": "http://www.idref.fr/027826171", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123105743", + "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" } ], - "authorized_access_point": "Saxophone et orchestre" - }, - { - "md5": "97231932656ef4e97017c1d12f804177", - "pid": "03212743X", "note": [ { + "noteType": "dataSource", "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" + "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": "Trios ([distributions instrumentales])" - } - ], - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "S\u00e9r\u00e9nades (fl\u00fbte, 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\u00fbte, violon, alto)" - } - ], - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/03212743X", - "source": "IDREF" + "authorized_access_point": "Chiites" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12321733h", - "source": "BNF" + "authorized_access_point": "Sectes islamiques" } ], - "classification": [ - { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" - } + "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" ], - "authorized_access_point": "Trios (fl\u00fbte, violon, alto)" + "md5": "5f3e030e0d6c18aa6915806132f935b4" }, { - "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": "Idiotismes" - } - ], - "related": [ - { - "authorized_access_point": "Espagnol (langue)" - }, + "authorized_access_point": "Grec (langue) - Vocabulaire", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Que\u00edsmo" + "type": "bf:ClassificationDdc", + "classificationPortion": "400", + "name": "Langues et linguistique" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { + "authorized_access_point": "Greek language--Etymology", "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/sh85057154", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Hispanismes (idiotismes)" + "authorized_access_point": "Grec (Langue)--\u00c9tymologie", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/032187130", + "value": "http://www.idref.fr/027845214", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12326636g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb133191671", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF13319167" } ], - "variant_access_point": [ - "Espagnol (langue) - Idiotismes" - ], - "authorized_access_point": "Hispanismes (idiotismes)" - }, - { - "md5": "a50327d852627ff3411ac9ebe9cb6978", - "pid": "032563507", - "type": "bf:Topic", - "broader": [ + "pid": "027845214", + "narrower": [ { - "authorized_access_point": "Litt\u00e9rature n\u00e9erlandaise" - } - ], - "related": [ + "authorized_access_point": "Ai\u0313d\u1e53s (le mot grec)" + }, { - "authorized_access_point": "Po\u00e8tes n\u00e9erlandais" + "authorized_access_point": "Ai\u0313\u1e53n (le mot grec)" }, { - "authorized_access_point": "Chansons n\u00e9erlandaises" + "authorized_access_point": "A\u00ee\u0313sa (le mot grec)" }, { - "authorized_access_point": "M\u00e9lodies n\u00e9erlandaises" + "authorized_access_point": "Au\u0313t\u00f3s (le mot grec)" }, { - "authorized_access_point": "Prose n\u00e9erlandaise" - } - ], - "bnf_type": "genre/forme Rameau", - "narrower": [ + "authorized_access_point": "Ch\u00e1ris (le mot grec)" + }, { - "authorized_access_point": "\u00c9pop\u00e9es n\u00e9erlandaises" + "authorized_access_point": "Charop\u00f3s (le mot grec)" }, { - "authorized_access_point": "Po\u00e8mes en prose n\u00e9erlandais" + "authorized_access_point": "Ch\u1e53ra (le mot grec)" }, { - "authorized_access_point": "Po\u00e9sie didactique n\u00e9erlandaise" + "authorized_access_point": "Chre\u00eda (le mot grec)" }, { - "authorized_access_point": "Po\u00e9sie \u00e9logieuse n\u00e9erlandaise" + "authorized_access_point": "Da\u00edm\u014dn (le mot grec)" }, { - "authorized_access_point": "Po\u00e9sie \u00e9rotique n\u00e9erlandaise" + "authorized_access_point": "Diakon\u00eda (le mot grec)" }, { - "authorized_access_point": "Po\u00e9sie n\u00e9erlandaise pour la jeunesse" + "authorized_access_point": "Did\u00e1skalos (le mot grec)" }, { - "authorized_access_point": "Po\u00e9sie pastorale n\u00e9erlandaise" + "authorized_access_point": "D\u00ee\u0304mos (le mot grec)" }, { - "authorized_access_point": "Po\u00e9sie politique n\u00e9erlandaise" + "authorized_access_point": "Do\u00fblos (le mot grec)" }, { - "authorized_access_point": "Po\u00e9sie religieuse n\u00e9erlandaise" + "authorized_access_point": "Dr\u00f3sos (le mot grec)" }, { - "authorized_access_point": "Po\u00e9sie visuelle n\u00e9erlandaise" + "authorized_access_point": "D\u00fdnamis (le mot grec)" }, { - "authorized_access_point": "Sonnets n\u00e9erlandais" - } + "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": "08ec483680287accd1fd2294227c2cdd" + }, + { + "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" + } + ] + } + ], + "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": "619b0959fdf0c9d847477987010eb2d6" + }, + { + "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" + } + ] + } + ], + "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": "cf49ca161cd32b90db5e16b5074f5604" + }, + { + "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" + } + ] + } + ], + "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": "914a7ac129d046355cfd1a322686a435" + }, + { + "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" + } + ] + } + ], + "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": "f88b62d244c042ad478ef6b74f9725e4" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Bulles pontificales", + "bnf_type": "sujet Rameau", + "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": "83488a1613db55f2c0d9fb9d5ac3844a" + }, + { + "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" + } + ], + "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": "4aeac83d7cacb0a8163a14816e533a6a" + }, + { + "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" + } + ], + "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": "0790e90108923c9653ba2aa1180d360f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "\u00c9glise et \u00c9tat - Italie - 19e si\u00e8cle", + "bnf_type": "sujet Rameau", + "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": "6561f89359d444e331059f55a5a97871" + }, + { + "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" + } + ] + } + ], + "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": "4a2e25ed4e3f81be355cf8a2e6b24b72" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Guerre mondiale (1939-1945) - Trait\u00e9s", + "bnf_type": "sujet Rameau", + "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": "d419e719229fcc3e7eb80dbae0f4460c" + }, + { + "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" + } + ] + } + ], + "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": "8029e91088e60f5e470a8602622e654c" + }, + { + "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" + } + ] + } + ], + "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": "aa423c37e0ffa38fc54b694d062fa376" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Histoire religieuse - Autriche - 18e si\u00e8cle", + "bnf_type": "sujet Rameau", + "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": "1f7285475914ab59b6b33efe8bd23032" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Sinclair QL (ordinateur)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "908f3873184fca80ed4b6b7883471b66" + }, + { + "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" + } + ] + } + ], + "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": "48109fd893f7304637e8f070dda43a84" + }, + { + "type": "bf:Topic", + "authorized_access_point": "MSX (ordinateurs)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "7944903a5cede28a065e437b3b26aad4" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Vinnitsa, Massacres de (1937-1939)", + "bnf_type": "sujet Rameau", + "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": "2134689cbcf10dc213077546cacd3333" + }, + { + "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" + } + ], + "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": "665b2b470d2678c9e003fec5c215558a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Amstrad (ordinateurs)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "d36ee163a1bb7465262df8b004724b4a" + }, + { + "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" + } + ] + } + ], + "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": "ed1fb189c81cc6cc3fd1702e7a119455" + }, + { + "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" + } + ], + "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": "f9c5d51070f392325b690b830d968966" + }, + { + "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" + } + ], + "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": "28df58b3d9d4f69fb7b8e3265bca9939" + }, + { + "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" + } + ] + } + ], + "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": "7587866b7bd0978ffeebfe1ca17dc0e3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Micral (ordinateur)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "6cfdc0f4e11ea7fa54cf16931078a142" + }, + { + "type": "bf:Topic", + "authorized_access_point": "MERISE, M\u00e9thode", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "6b30d1c13344cf72448d6111891a25d5" + }, + { + "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" + } + ], + "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": "54d958b2000b33b78d170d791bf44a49" + }, + { + "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" + } + ], + "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": "426353e0f9f8bccbb022543184e3fe60" + }, + { + "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" + } + ], + "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": "39b0731bf2701818dd9bb22140a86fb4" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Histoire religieuse - Allemagne - 17e si\u00e8cle", + "bnf_type": "sujet Rameau", + "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": "c99eebbd23f691320878c3a2cfe0287b" + }, + { + "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" + } + ], + "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": "aeeb0070bd8ca742b19d0a14f8313df3" + }, + { + "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" + } + ], + "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": "20ea9b4371ae27917765bb46d6d78c18" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Dessins et mod\u00e8les (droit international)", + "bnf_type": "sujet Rameau", + "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": "e4e534f76bc1439d37dbc884f491ae49" + }, + { + "type": "bf:Topic", + "authorized_access_point": "DMS, Mod\u00e8le", + "bnf_type": "sujet Rameau", + "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": "9cb4f76a78c36d03b893b2fec0ee445c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Histoire religieuse - Allemagne - 18e si\u00e8cle", + "bnf_type": "sujet Rameau", + "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": "5b093b16752c5feb9ef2276f1058dc7a" + }, + { + "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" + } + ] + } + ], + "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": "ca013bceb63fc3d083da8bf64b73a1a1" + }, + { + "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" + } + ] + } + ], + "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": "8299d03c95c77c87682f1f1f35a58715" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Droit du travail (droit europ\u00e9en)", + "bnf_type": "sujet Rameau", + "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": "4afbe4c341cf2f948774a3ec98fd2bad" + }, + { + "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" + } + ], + "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": "b0fd0a2976e70cae008c8c3dbda24104" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Politique et gouvernement - Moyen-Orient - 1945-1979", + "bnf_type": "sujet Rameau", + "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": "e279915c50278b70022fe5606bf8e79a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Fronti\u00e8res - Pays de l'Union europ\u00e9enne", + "bnf_type": "sujet Rameau", + "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": "f9f4a55abc34bc73048289ba6e930389" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Politique et gouvernement - Am\u00e9rique du Sud - 20e si\u00e8cle", + "bnf_type": "sujet Rameau", + "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": "ff3da54271a35c1a7e6867eadb5d70a3" + }, + { + "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" + } + ] + } + ], + "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": "cc37a28537c1298037272c9aecf98613" + }, + { + "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" + } + ] + } + ], + "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": "161a467a1dcc5c8c02dd25a4c128ed95" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - Allemagne - 1933-1945", + "bnf_type": "sujet Rameau", + "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": "785b23a1ade13e504e944047842591de" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - URSS - 1917-1945", + "bnf_type": "sujet Rameau", + "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": "35dcce59ec476b9d88676bed1989b9af" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Microsoft Windows (logiciels)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "236ab39b299e34c6d702a3c6ad121141" + }, + { + "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" + } + ], + "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": "c7fa967c6d8defc11bf74e6805797839" + }, + { + "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" + } + ], + "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": "9840f7951ee8a0b73b9622588986167b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "New Deal", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "New Deal", + "source": "RVMLaval" + } + ], + "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": "bbf3b0db8d51ad03c15971a52dce0ea4" + }, + { + "type": "bf:Topic", + "authorized_access_point": "M\u00c9D\u00c9E, M\u00e9thode", + "bnf_type": "sujet Rameau", + "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": "eb1f42946bd4d2f726471d6331dac2d7" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - France - 1914-1940", + "bnf_type": "sujet Rameau", + "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": "e19043d188103b412b7ac3459cabaa93" + }, + { + "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" + } + ] + } + ], + "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": "10fc0121ebf53e9197ee76271c3705fe" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Politique et gouvernement - Grande-Bretagne - 1837-1901", + "bnf_type": "sujet Rameau", + "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": "b02e209c974cba1c952c49b1c7fb29da" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Histoire religieuse - France - 18e si\u00e8cle", + "bnf_type": "sujet Rameau", + "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": "c0b51d4c7bb31831235819aed0c4916c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Bataille de Valmy (1792)", + "bnf_type": "sujet Rameau", + "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": "eb23498b7633c38fcf6425b2e9b52404" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Politique et gouvernement - Europe de l'Est - 1945-1989", + "bnf_type": "sujet Rameau", + "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": "879d44842bd0af91693be24da740ed8e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - Italie - 1922-1945", + "bnf_type": "sujet Rameau", + "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": "28869ffe87c0aaea11070e47852eff5f" + }, + { + "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" + } + ], + "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": "e6c9726ec8550e1d5262bc33c675e599" + }, + { + "type": "bf:Topic", + "authorized_access_point": "\u00c9glise et \u00c9tat - Italie - 20e si\u00e8cle", + "bnf_type": "sujet Rameau", + "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": "e0cb35fa3c34126924dc60a21d417fdd" + }, + { + "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" + } + ], + "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": "5da17d674c2fe8a5a9d7b404e887f4bf" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Politique et gouvernement - Europe - 1789-1815", + "bnf_type": "sujet Rameau", + "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": "1c9a7bbc89a14dc208b15845e2f6834b" + }, + { + "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" + } + ], + "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": "524db13e1f5200790c7d4ad1bb221be6" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Politique sociale - Pays de l'Union europ\u00e9enne", + "bnf_type": "sujet Rameau", + "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": "8230a9f31d43cc0a88bb76bd6f420c52" + }, + { + "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" + } + ], + "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": "813e283d0e1972cf238d0c00b4c92307" + }, + { + "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" + } + ] + } + ], + "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": "4a9ca06a2c9e6773b5f38290e8d32133" + }, + { + "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" + } + ], + "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": "b33bc659fc896ba9b92f9373fb7624cb" + }, + { + "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" + } + ], + "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": "241dccc1bbb94d57ec95436035fd36c3" + }, + { + "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" + } + ], + "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": "f790b3fc4dc754d97065d922f1ac2ed7" + }, + { + "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" + } + ], + "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": "ee53b80d1e117f54fb184246e00d859a" + }, + { + "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" + } + ], + "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": "b220f35e623e2b8d7b3cb2cb8938b782" + }, + { + "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" + } + ], + "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": "b4602c10d5b890f77f8c992bb6fc5de2" + }, + { + "type": "bf:Topic", + "authorized_access_point": "V\u00eatements - Industrie et commerce - Logiciels", + "bnf_type": "sujet Rameau", + "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": "1d04c80d28e62597b0fd1e086416fa03" + }, + { + "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" + } + ] + } + ], + "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": "fc6d3086640f057ae8306902fbb04df8" + }, + { + "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" + } + ] + } + ], + "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": "851bf3d71c0ffe5dd23af6f4e4d5fea9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Bataille des Alpes (France ; 1944-1945)", + "bnf_type": "sujet Rameau", + "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": "f724cd0c28e1126ac688f41c01046fa6" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Histoire religieuse - Portugal", + "bnf_type": "sujet Rameau", + "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": "ba6aff83f903e7fc988fedcd5c0b2396" + }, + { + "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" + } + ] + } + ], + "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": "aaab1a5f43eb34a4f611f32c349b342f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - Autriche - 1789-1900", + "bnf_type": "sujet Rameau", + "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": "d82698e36a2f0cffa94f99a2c3189894" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Oracle (syst\u00e8me informatique)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "431447a9e1dda4d884a49ffcc233d666" + }, + { + "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" + } + ], + "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": "48b9587017f55b36cdaa3b45faef917d" + }, + { + "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" + } + ] + } + ], + "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": "54c7b4d0eef27d8cd50a133c9a592d29" + }, + { + "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" + } + ], + "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": "bbfdc7a1b098e03582e4d8d6af311334" + }, + { + "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" + } + ], + "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": "182952c69278d776ba8b33ef2530aa30" + }, + { + "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" + } + ] + } + ], + "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": "86abe49116e342aa4ac72864353cd1e5" + }, + { + "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" + } + ], + "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": "92f075c134e207251023e81b0ae76e78" + }, + { + "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" + } + ], + "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": "dfc378166899db0a6ffa8da1b585b70b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Lavoisier, Loi de", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "540", + "name": "Chimie" + } + ], + "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": "ea2f047be6e858d44e1f990158feca63" + }, + { + "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" + } + ], + "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": "ec0b2fe6c71994681d5222071d02d1e5" + }, + { + "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" + } + ], + "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": "21e4edf6a08aae402efa7e68399c1dfd" + }, + { + "type": "bf:Topic", + "authorized_access_point": "IBM (microordinateurs)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "c103967303b5e72acce9a3d99a1bf00e" + }, + { + "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" + } + ], + "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": "6c690ed15e35ce3017123d17c2f18739" + }, + { + "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" + } + ], + "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": "ebfc0ead9523eef86c7f309fc4a58e8a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Antiquit\u00e9s - Rh\u00f4ne (France)", + "bnf_type": "sujet Rameau", + "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": "b26d4d54f40f8bc448e52e939a6fc289" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Irr\u00e9dentisme - Italie", + "bnf_type": "sujet Rameau", + "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": "231aa1f0c73934f2b1783f18ec4fc3a5" + }, + { + "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" + } + ] + } + ], + "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": "0396f80fd4e49ec2b31675dd37ec1831" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - Japon - 1912-1945", + "bnf_type": "sujet Rameau", + "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": "6d16526160aec9ba855c5419aa449d32" + }, + { + "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" + } + ] + } + ], + "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": "78dc9d103c2f3c22c9c7a0b5c60a3a04" + }, + { + "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" + } + ] + } + ], + "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": "04c75263ae9fad51b5967881c1c629db" + }, + { + "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" + } + ], + "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": "05010074c558415fd75c80ab6f697c4c" + }, + { + "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" + } + ], + "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": "d134a5a0b660d451559b7e0032b03dbd" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Int\u00e9gration \u00e9conomique - Am\u00e9rique du Sud", + "bnf_type": "sujet Rameau", + "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": "740eab7c6bf8eef571e4e574afdcee68" + }, + { + "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" + } + ] + } + ], + "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": "aa3167d411ba7fdf0617c60c283ec4cb" + }, + { + "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" + } + ] + } + ], + "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": "9fe02cc51bec18b1cfb9c3540ad9379d" + }, + { + "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" + } + ], + "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": "f1a3789d7a8e531c7ce9bee688f006bd" + }, + { + "type": "bf:Topic", + "authorized_access_point": "M\u00e8res de la place de Mai (Argentine)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "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": "6b1ff49aa341559724497320a884a581" + }, + { + "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" + } + ] + } + ], + "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": "8bac85a40f70aa47aa68e7ed935c83c1" + }, + { + "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" + } + ], + "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": "26e6370f25ac716a1473c7bdff2ca35f" + }, + { + "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" + } + ], + "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": "1e48e8890fcf4608a99d2f2e05974064" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Affaire des blouses blanches (1953)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "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": "1c782acaf2d5b97213153254a033e66e" + }, + { + "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" + } + ] + } + ], + "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": "b9b8301185dab741b9e87cee879b47af" + }, + { + "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" + } + ] + } + ], + "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": "d276d745ca8f5e5ddbc1828b54166240" + }, + { + "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" + } + ], + "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": "bc7d737f68fb9e6031c1aa25c77a81f5" + }, + { + "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" + } + ], + "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": "3afbb785c0bcac70aa36f8da3bcebe8d" + }, + { + "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" + } + ] + } + ], + "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": "68f5ed3bec39b308963680c19a78004d" + }, + { + "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" + } + ], + "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": "ada6580f81ff9c100bb7d11a7c26b085" + }, + { + "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" + } + ] + } + ], + "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": "0a5e4fc2147b4847124c7ba4cfb4f719" + }, + { + "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" + } + ] + } + ], + "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": "d7ee864da852018c34673a6d6047bf42" + }, + { + "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" + } + ], + "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": "e4f6f5df2afcb6ebf23caef713fb6109" + }, + { + "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" + } + ] + } + ], + "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": "979af81daa1edaadfae0940563218251" + }, + { + "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)" + } + ], + "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": "f9f0966b4ae387b8eec161d6f48b29b2" + }, + { + "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" + } + ], + "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": "1b59eba661d2091035079a4d2f35b030" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Piagnoni (Mouvement de Savonarole)", + "bnf_type": "sujet Rameau", + "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": "f1b6a68abff9c9802fdeffcef7c89766" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Disques durs - Gestion", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "4c58e2aaff24ee6479720cf74796fadf" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations ext\u00e9rieures - \u00c9quateur", + "bnf_type": "sujet Rameau", + "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": "91f0cc7747968df89a223d6efcd4338c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Discours argumentatif", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "401", + "name": "Linguistique g\u00e9n\u00e9rale" + } + ], + "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": "ac0e0749f3c1b28908190ccf2ed4fc48" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Personnel - Direction -- Logiciels", + "bnf_type": "sujet Rameau", + "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": "04a5b715ef7a253d9dda65cefae655ff" + }, + { + "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" + } + ], + "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": "457fd7d5ab7397ede1cea7eaad9e7cf2" + }, + { + "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" + } + ] + } + ], + "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": "83d38b69798cf49e1b9de278fefae7e9" + }, + { + "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" + } + ], + "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": "8cc1ef1083cb73e8e0674815f0a71fa6" + }, + { + "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" + } + ] + } + ], + "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": "c732927d75abe4c730fb370ea9ce4f00" + }, + { + "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" + } + ], + "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": "cfd52a933a54976ba29c09b75ae64f8b" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Partis politiques - Bangladesh", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "authorized_access_point": "Partis politiques -- Bangladesh", + "source": "RVMLaval" + } + ], + "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": "50a3aaf31e9bed8695fc5e94ccdabcea" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Commodore (ordinateurs)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "c4bfb6efdaa63260836fad77fdf433a6" + }, + { + "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" + } + ], + "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": "294adb4f7b86056fb89bd0eb619eae8b" + }, + { + "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" + } + ] + } + ], + "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": "28eec5e36ee58ae05cc42df8058cce37" + }, + { + "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" + } + ], + "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": "c4d6ad8217b5e14d0cce2969cec7f05c" + }, + { + "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" + } + ] + } + ], + "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": "7668aa6f04bb336efd49e36ea0447dd0" + }, + { + "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" + } + ] + } + ], + "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": "dfe72b87f92f90e9fd70b4766dbcc195" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Whitewater, Affaire (1992-....)", + "bnf_type": "sujet Rameau", + "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": "84eac5467af05e268121a351d9cee1a3" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Microsoft Network (serveur)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "27267f75ad0e525f0b5a814569ea5fd9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Microsoft BackOffice (logiciels)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "ce3fafe09df93a9de04e1fc157fce8f6" + }, + { + "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" + } + ], + "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": "41969421ea6c6e1e7a3b3cf076baa287" + }, + { + "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" + } + ] + } + ], + "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": "2985f0c6dc49ecbaa4ffd274c5450015" + }, + { + "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" + } + ], + "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": "a325964297b402b36678a2edab7b6cdc" + }, + { + "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" + } + ] + } + ], + "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": "51fc1f55646d56be7bf67d61ed98fbaa" + }, + { + "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" + } + ] + } + ], + "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": "06d05db1e469e596611e71ef246e02da" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Convergence (\u00e9conomie politique)", + "bnf_type": "sujet Rameau", + "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": "85594be59908671abf387f6ae27e8208" + }, + { + "type": "bf:Topic", + "authorized_access_point": "VBScript (langage de programmation)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "44b6a18703cc487e9713642d4cdd9775" + }, + { + "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" + } + ] + } + ], + "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": "f1dfb4bf5aa3aa58b5a63bd1ee1c7308" + }, + { + "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" + } + ] + } + ], + "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": "84dbef8285748075ddc581317d811ae8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "XML (langage de balisage)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "9e6979fa568b890b3ddc3bc58fa339aa" + }, + { + "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" + } + ] + } + ], + "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": "479c5fc237047f79260f50ce5112687f" + }, + { + "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" + } + ] + } + ], + "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": "54bf2ab618c2866d9227904e43e815f8" + }, + { + "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" + } + ] + } + ], + "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": "caf7786845a48e1740dd328183fdfbad" + }, + { + "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" + } + ] + } + ], + "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": "d1ae0e11d0c7ef7a189278f3f14c6013" + }, + { + "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" + } + ] + } + ], + "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": "93717e9b30d7edfb0a31bcc1d8832ff0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "XFree86 (syst\u00e8me informatique)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "e6c1bb45a76c06e87fea3a36bd13dd39" + }, + { + "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" + } + ], + "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": "d45d0e7d686f0d1c8badcd6113da2e07" + }, + { + "type": "bf:Topic", + "authorized_access_point": "PalmPilot (ordinateur)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "bea101c0a4995826368d49b683cd703b" + }, + { + "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" + } + ] + } + ], + "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": "d4b345caf2b4d52668e640bda0e8863a" + }, + { + "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" + } + ] + } + ], + "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": "7ec5d99acc63919313ddb6f2e7af1261" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Active Server Pages", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "4d0ee0a21fdda16c55d37910971e0a09" + }, + { + "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" + } + ] + } + ], + "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": "cec8f09ad757fe93469ec5771990f4b8" + }, + { + "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" + } + ] + } + ], + "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": "ffea02a7ee64b395c3963a5d0033b1b1" + }, + { + "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" + } + ], + "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": "96033410f7171cf0c053dc81e72c8d35" + }, + { + "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" + } + ], + "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": "80abdbeb8702acc09d2ce3b1a16d09f5" + }, + { + "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" + } + ] + } + ], + "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": "705985faf1557042304ca9e38992f4f2" + }, + { + "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" + } + ], + "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": "8d0faeac6b12d2a2b4e64aede6fa2bac" + }, + { + "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" + } + ], + "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": "fd6a1614c191cb0c5b805a2f32d3b14b" + }, + { + "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" + } + ], + "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": "742d00956ec29114facf53988f974230" + }, + { + "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" + } + ], + "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": "6b33f4f9742dfc24684516f9f764d327" + }, + { + "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" + } + ] + } + ], + "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": "47c4d828d552a1fdf254f342477ee82f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Microsoft Windows DNA", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "096e042bace2ef488f7f8e83fd164b46" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Linux (logiciels)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "ca5dae4a99dce00cc656894fea876e05" + }, + { + "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" + } + ], + "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": "b9451672ea725480444efe58899e9e13" + }, + { + "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" + } + ] + } + ], + "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": "9c6b398da4cc2c123822e8e17cd05dc9" + }, + { + "type": "bf:Topic", + "authorized_access_point": "PDF (format)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "51e032f045ffa1039bdca19bbf27fb2e" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Qt (logiciels)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "53e77232540d041d60738a2f30eb25c0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "GTK+", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "54e797e99c646af8e9368bfff9c45c89" + }, + { + "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" + } + ] + } + ], + "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": "2d9d8132a49e97e801eb0f19cba075cb" + }, + { + "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" + } + ] + } + ], + "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": "94244b715360190c08bd21be54b2139f" + }, + { + "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" + } + ] + } + ], + "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": "7842508ba473ed71b023f491ab5f32e5" + }, + { + "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" + } + ] + } + ], + "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": "e3255938338d451080c250331a634334" + }, + { + "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" + } + ] + } + ], + "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": "f5936ea57d54f8d3a6c016a508a3f0dc" + }, + { + "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" + } + ], + "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": "d29821559ac03f24e03b923d3e289bd8" + }, + { + "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" + } + ], + "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": "5381f7fb07ee911583230d3cb37d1481" + }, + { + "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" + } + ] + } + ], + "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": "26b5fb56fb5211817ba5adebeb65fe67" + }, + { + "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" + } + ], + "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": "5cd7101110399a12db67ec896960c68f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Pierrot gourmand (confiserie)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "640", + "name": "Economie domestique, h\u00f4tellerie" + } + ], + "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": "ef274e65c4ceb3c07879e855a09cacc2" + }, + { + "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" + } + ], + "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": "34cfa90b92e87ac377dfd26459242dc6" + }, + { + "type": "bf:Topic", + "authorized_access_point": "SVG (langage de balisage)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "c3ceeb0a2f2b4096dfcf3d6f80c2b7aa" + }, + { + "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" + } + ], + "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": "874083f561ebce49461a4a645aca4b5a" + }, + { + "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" + } + ], + "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": "e0651822ce05d80f2a796a3313915cf7" + }, + { + "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" + } + ] + } + ], + "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": "aa550733004286a56576039b84ceda1c" + }, + { + "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" + } + ], + "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": "6252e98a9abaaee7c99d19dca014a500" + }, + { + "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" + } + ], + "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": "a0eab7cb8d0c23d83594ac6540ade81d" + }, + { + "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" + } + ], + "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": "c685afdebfcd6b2f5b45618113a3f5b0" + }, + { + "type": "bf:Topic", + "authorized_access_point": "R\u00e9volution conservatrice (Allemagne)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "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": "a4ad8c3b5874cc92dd0c0ec3ea155450" + }, + { + "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" + } + ], + "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": "ac3f76df5c25573b7f03741a4b33ae3d" + }, + { + "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" + } + ], + "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": "d18a574ec953ee6d6699d3f7e2b873a7" + }, + { + "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" + } + ] + } + ], + "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": "4f12241c0bbe64a672fcdc5914057517" + }, + { + "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" + } + ] + } + ], + "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": "5104d8f0ec00ce7ac20ebcd4a2c5dc84" + }, + { + "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" + } + ], + "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": "7aa436ac78b5d1489a236427e2268017" + }, + { + "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" + } + ], + "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": "3401692823518567129cf0b0135e1175" + }, + { + "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" + } + ], + "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": "f9a471d4de371baac18ae6ab7131b37e" + }, + { + "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" + } + ], + "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": "487251673f1cfc015f2d2e82725afb92" + }, + { + "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" + } + ], + "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": "821e4f194d96101c86cabec7f20a7572" + }, + { + "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" + } + ], + "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": "1efa9237678b07f63bcf074002967cde" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Normes comptables internationales", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "650", + "name": "Gestion" + } + ], + "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": "366bf058b4053baf0aa9693ab3b0925a" + }, + { + "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" + } + ], + "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": "029a4267d140e8983a53566ae1bc2d75" + }, + { + "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" + } + ], + "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": "94218416ae080ddb928f9b8adcdfb6e6" + }, + { + "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)" + } + ], + "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": "8fa7a14c6bb40736607ec8465637bfc5" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Montagnes - Protection", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "577", + "name": "\u00c9cologie" + } + ], + "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": "874dbff54992efb647a1f52d31aafa25" + }, + { + "type": "bf:Topic", + "authorized_access_point": "ABAP (langage de programmation)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "3c62bdfe1d40890d4d0e8f32c1a46129" + }, + { + "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" + } + ] + } + ], + "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": "f89691b29983d32a5a4a167541fd7de5" + }, + { + "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" + } + ], + "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": "1d5aad65dffd6432ec2f1fa0f0fd9932" + }, + { + "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" + } + ] + } + ], + "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": "e997e3efce12b3746b0a715ea590218c" + }, + { + "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" + } + ] + } + ], + "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": "b552542e2c3765cab7795043ea867f77" + }, + { + "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" + } + ], + "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": "47ccbfea60495aa96897c114f3278736" + }, + { + "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" + } + ], + "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": "b02353c1c476bf89cd90b154ef3caa32" + }, + { + "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" + } + ], + "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": "9e245296dee80c6cfdd35b8419bae43d" + }, + { + "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" + } + ] + } + ], + "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": "b8d669690c7fcc676c28be46f37c009b" + }, + { + "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" + } + ], + "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": "3d22ab57af0860dd29167146362ccfcf" + }, + { + "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)" + } + ], + "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": "1970e76aeb35d44956441095949c9329" + }, + { + "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" + } + ], + "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": "b0b9b5750b51efdf376b604c29f54091" + }, + { + "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" + } + ], + "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": "b2c0b40e4a83fdcaf424860a2ec1f9ce" + }, + { + "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" + } + ], + "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": "f7b34ef4830c3b0a5b6d6fa15114729f" + }, + { + "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" + } + ] + } + ], + "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": "a8843d8019d78bdf02759060b2cd1755" + }, + { + "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" + } + ], + "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": "96a7bdfc071f1db4578e9ee81b468462" + }, + { + "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" + } + ], + "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": "681e79b20069a1c7fb976a3dbc394e43" + }, + { + "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" + } + ] + } + ], + "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": "c2efb824295a0e726a211e8af84fd38c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "VMware (logiciels)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "bf069e8fd5cf8ca041ea1cc006e2903f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Apple iPad (ordinateur)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "e6c2a4b96827bc8e29699b6bf4ec883f" + }, + { + "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" + } + ], + "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": "96d8f79a5250b87c4c3700e0b7987610" + }, + { + "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" + } + ], + "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": "575ec0f83b3d0a3f4f01272eb44f23c6" + }, + { + "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" + } + ], + "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": "f09db67dbaef4b4f97f431e645eb1499" + }, + { + "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" + } + ], + "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": "ec3207fc0e52086f00cb72d98d16abc7" + }, + { + "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" + } + ] + } + ], + "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": "19ce83a049337ac2affc436dd25081d4" + }, + { + "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" + } + ], + "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": "3aff89321bb874d1eb2ffbb078c76e8b" + }, + { + "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" + } + ], + "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": "6923b7fa9fcc240de53821ce3bf162b4" + }, + { + "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" + } + ], + "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": "4dc9f3b9fb7b2e050e5f0fb3e7b8fbaa" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Art - Kazakhstan", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "700", + "name": "Arts (sauf litt\u00e9rature)" + } + ], + "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": "e4dd038bee08a84de6449ef7216b413c" + }, + { + "type": "bf:Topic", + "authorized_access_point": "NoSQL", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "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": "90cf9ae3fa8bae175a3ca84acec6bdf8" + }, + { + "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" + } + ], + "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": "fab65aba87115a2584f6a99fef4e2827" + }, + { + "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" + } + ], + "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": "feda2451907f2ab4db81dde20d4a4250" + }, + { + "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" + } + ], + "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": "a308af870b685bceceb34f492115562d" + }, + { + "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" + } + ], + "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": "5b4fea04ccd23f969ef7f60fa6c07fa0" + }, + { + "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" + } + ], + "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": "f104c8692db95561fda68eea5a58d3e8" + }, + { + "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" + } + ], + "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": "d8822c4636ad758cd2c7fe30c3d1c5ad" + }, + { + "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" + } + ], + "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": "c4cb418473cb8544dd82c857ce40350b" + }, + { + "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" + } + ], + "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": "09b8548f643963087757203cf61096dc" + }, + { + "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" + } + ], + "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": "b8213d2912e6ca8bed70df7b197bc366" + }, + { + "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" + } + ], + "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": "f9b9d60f4560e81a56e813238fbb20fb" + }, + { + "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" + } + ], + "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": "a7d725634dfea4769b53f183707fc6c3" + }, + { + "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" + } + ], + "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": "5d33c42bf690b23814192be41c47da69" + }, + { + "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" + } + ] + } + ], + "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": "d0aabb8c53fced44ef8b576ca8f323b8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "AngularJS (langage de programmation)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "9ade28729ef9b6b5ab912b63c65b3b8f" + }, + { + "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" + } + ], + "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": "9f8279872edf6274276ca347415a8170" + }, + { + "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" + } + ], + "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": "7c5b1c7d2ba5048ccac44d8a75683538" + }, + { + "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" + } + ], + "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": "362a8ceff5927e8df0b0e40ef6490cc5" + }, + { + "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" + } + ], + "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": "ad40900a12f6ac64d498fd54ea290f74" + }, + { + "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" + } + ] + } + ], + "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": "6ed3a8d1fde65ffd650e63ed0dcd453f" + }, + { + "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" + } + ], + "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": "e39333079ad40734ed26c12f0c3dd7ce" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Assistants personnels intelligents (logiciels)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621", + "name": "Physique appliqu\u00e9e" + } + ], + "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": "da3d469ac48d64726e0a3e5037cca0de" + }, + { + "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)" + } + ], + "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": "a46ed8ceb98d0d5857ca5ab78aa716a5" + }, + { + "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)" + } + ], + "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": "5ba79d6481bfaa65bfb27de642a57742" + }, + { + "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" + } + ], + "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": "b461064fb15af4a6907b499f909e6733" + }, + { + "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" + } + ] + } + ], + "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": "afcf7dd23dc4231a9eefcc7305dc78c4" + }, + { + "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" + } + ] + } + ], + "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": "d322a3994fd1b8f6b9c0b4b5c97232d6" + }, + { + "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" + } + ], + "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": "39d89397fa48b1c38e63f75ba38a5a14" + }, + { + "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" + } + ], + "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": "f131d1671c85deb87a4a1dd5fe730937" + }, + { + "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" + } + ], + "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": "5b7f622589cdf192978f2c30d42f0813" + }, + { + "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" + } + ], + "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": "e25603cb8a21a2eb00a604d5c81efbcc" + }, + { + "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" + } + ], + "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": "95b06843d26858441c5d947ca088d45e" + }, + { + "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" + } + ] + } + ], + "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": "afc303246e5a385fd884c9c7b5a12510" + }, + { + "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" + } + ], + "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": "5b72184c7432ff0e3ec90abd7c9136f8" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Mouvement v\u00f6lkisch", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "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": "f8836328524ec117f76aac15e41632ae" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Relations Sud-Sud", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" + } + ], + "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": "52433090b89ae3721c358338e3b52648" + }, + { + "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" + } + ] + } + ], + "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": "b63d4ad8482140f526e8b282d7ed8727" + }, + { + "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" + } + ], + "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": "36add1130792f974295d5ed37166b35b" + }, + { + "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" + } + ] + } + ], + "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": "823d5cb2b22e5999266c5d4228382d78" + }, + { + "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" + } + ] + } + ], + "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": "4f6c09038b245b073eba977f1117517f" + }, + { + "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)" + } + ], + "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": "599cac508e72b8972e21284983ac30aa" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Et Alexandrie", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "915" + } + ], + "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": "0b0eac7dad6927431ea57d2822ee6c09" + }, + { + "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)" + } + ], + "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": "15df1110b08037a7ce2e49e306bf8379" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Colonies australiennes", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "915" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "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": "2c44e3f88d870785bdc5333c14aaff5d" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Zainichi", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + } + ], + "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": "5e0439aa928204e51e8eccef084ea386" + }, + { + "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" + } + ], + "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": "242a265e438b7af9e59e05047655ac28" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Bergamasques", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + } + ], + "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": "e2ecb16cee56f32967197276f6d4fb63" + }, + { + "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" + } + ], + "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": "03421b86a63dfce10e2019cf73216294" + }, + { + "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" + } + ], + "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": "41ab63afa002aba90cf12ea9e579e799" + }, + { + "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" + } + ], + "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": "96be15fb7d9605a68393dbc569c45352" + }, + { + "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" + } + ] + } + ], + "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": "ff602362ff27a613903ffe491d4c274a" + }, + { + "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" + } + ], + "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": "e464072f8389db0b2749bdd403b24204" + }, + { + "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" + } + ], + "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": "3b72a1ee21c2535c70699170c7e03ef7" + }, + { + "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" + } + ], + "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": "a11e38f080397d23eb4aeb100520481c" + }, + { + "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" + } + ], + "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": "17e8ef34711edc869322fa24a9d4a609" + }, + { + "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" + } + ], + "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": "315d0723cf7c012b1227ebd40571ff10" + }, + { + "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" + } + ], + "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": "133a8af7a26c3eeb20e99aa8a6695f19" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Gouttelettes lipidiques", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" + } + ], + "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": "6d11126fd50c56d86c7906911cbf2e71" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Polyphonie (litt\u00e9rature)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "801", + "name": "Po\u00e9sie" + } + ], + "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": "170b9def51b6b887cd5e1a73c7a36ce2" + }, + { + "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" + } + ], + "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": "b36f45e106bc27ece4c84488113e1937" + }, + { + "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" + } + ], + "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": "fffc11e497e207e1a5434483a5787372" + }, + { + "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" + } + ], + "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": "335217f5082e088b37a025c9f0fd1f01" + }, + { + "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" + } + ], + "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": "dca0c4254cd84053c076afa7b920f75b" + }, + { + "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" + } + ], + "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": "a00cd33807bcc96689f99e75317008fe" + }, + { + "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" + } + ], + "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": "5b350f90fdccf698ff150b32acafb5c6" + }, + { + "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" + } + ], + "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": "5d07f550938e6ac786d7fa8b10f5c797" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Roman choral", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "801", + "name": "Po\u00e9sie" + } + ], + "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": "1a1e961f275d24ce90fd25b04a7bc891" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Durotaxie", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" + } + ], + "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": "8742a0db926d05a9b77d918e5c354dda" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Cellules souches pluripotentes", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" + } + ], + "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": "e5b67d4873d90ecb8eb02c9d84a3c89d" + }, + { + "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" + } + ] + } + ], + "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": "0cc0f4e7e2f9c75cbf9bc43ee019ed52" + }, + { + "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" + } + ], + "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": "0191aabc86572389a539a297fefb9d74" + }, + { + "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" + } + ], + "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": "a33c09f93294f9035ebb86772e22403e" + }, + { + "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" + } + ], + "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": "f10970493d6f041e925220503c5f8edc" + }, + { + "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" + } + ], + "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": "817e80734ba3dc7ec42a95550f87bc8f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Co-exposition", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "570", + "name": "Sciences de la vie" + } + ], + "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": "3fee2d2cad9eb89b508fd6a4bf5151a5" + }, + { + "type": "bf:Topic", + "authorized_access_point": "\u00c9lastopathies", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "610", + "name": "Sciences m\u00e9dicales et param\u00e9dicales" + } + ], + "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": "6e42b216e39e702d3022c25a85b82836" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Ypsolophidae", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "590", + "name": "Zoologie" + } + ], + "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": "c714b6374083c4162445275e350b1556" + }, + { + "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" + } + ], + "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": "fa60935572e7367bb0e8b38e6cae52e0" + }, + { + "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" + } + ], + "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": "88ebd36a4b5de05e2dc8f7b7d6dd6652" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Ing\u00e9nierie de prompt", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "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": "e8e9c028edb3cb0e60ecce28bcdbb6a1" + }, + { + "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" + } + ] + } + ], + "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": "c5569c6f91058583a185b8cc202c0068" + }, + { + "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" + } + ], + "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": "de3845d301c083df208a300fd55d2f78" + }, + { + "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" + } + ], + "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": "946078f6f153d864ad27d0d8ffe36116" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Norme ISO 80369", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "600", + "name": "Sciences appliqu\u00e9es" + } + ], + "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": "8640b0a6f1a2b05383187755441a8b53" + }, + { + "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" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279035241", + "source": "IDREF" + }, + { + "type": "uri", + "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": "d60726b9655956024986957000b7764f" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Homosexualit\u00e9 et art", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "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" + } + ], + "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" + } + ], + "narrower": [ + { + "authorized_access_point": "Homosexualit\u00e9 et architecture" + }, + { + "authorized_access_point": "Homosexualit\u00e9 et mode" + } + ], + "variant_access_point": [ + "Art et homosexualit\u00e9" + ], + "md5": "c757e9d6f89a61b2583e52ae6ef681ea" + }, + { + "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" + } + ], + "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": [ + "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": "5eced68b2a10186bfb541846d2c9f240" + }, + { + "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" + } + ] + }, + { + "authorized_access_point": "Sexualit\u00e9", + "source": "RVMLaval" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027248720", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933266p", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF12043632" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933266" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Grand Robert de la langue fran\u00e7aise, 2001" + ] + }, + { + "noteType": "general", + "label": [ + "S'emploie \u00e9galement en subdivision. Cette subdivision s'applique aux cat\u00e9gories de personnes, groupes ethniques et personnes" + ] + } + ], + "pid": "027248720", + "related": [ + { + "authorized_access_point": "Assistance sexuelle aux handicap\u00e9s" + }, + { + "authorized_access_point": "Communisme et sexualit\u00e9" + }, + { + "authorized_access_point": "\u00c9ducation sexuelle" + }, + { + "authorized_access_point": "\u00c9rotisme" + }, + { + "authorized_access_point": "Fascisme et sexualit\u00e9" + }, + { + "authorized_access_point": "G\u00e9ographie des sexualit\u00e9s" + }, + { + "authorized_access_point": "Industries du sexe" + }, + { + "authorized_access_point": "Minorit\u00e9s sexuelles" + }, + { + "authorized_access_point": "Musique et sexualit\u00e9" + }, + { + "authorized_access_point": "National-socialisme et sexualit\u00e9" + }, + { + "authorized_access_point": "Objets \u00e9rotiques" + }, + { + "authorized_access_point": "Relations amoureuses" + }, + { + "authorized_access_point": "Sexologie" + }, + { + "authorized_access_point": "Sexualit\u00e9 (biologie)" + }, + { + "authorized_access_point": "Sexualit\u00e9 (psychologie)" + }, + { + "authorized_access_point": "Sexualit\u00e9 - Aspect symbolique" + }, + { + "authorized_access_point": "Sexualit\u00e9 - Dans la litt\u00e9rature" + }, + { + "authorized_access_point": "Sexualit\u00e9 - Droit" + }, + { + "authorized_access_point": "Sexualit\u00e9 - Religion" + }, + { + "authorized_access_point": "Sexualit\u00e9 dans les arts du spectacle" + }, + { + "authorized_access_point": "Sorcellerie et sexualit\u00e9" + }, + { + "authorized_access_point": "Sports et sexualit\u00e9" + }, + { + "authorized_access_point": "Vie sexuelle" + } + ], + "narrower": [ + { + "authorized_access_point": "Abstinence sexuelle" + }, + { + "authorized_access_point": "Adolescents - Sexualit\u00e9" + }, + { + "authorized_access_point": "Alcooliques - Sexualit\u00e9" + }, + { + "authorized_access_point": "Asexualit\u00e9" + }, + { + "authorized_access_point": "Comportement sexuel des animaux" + }, + { + "authorized_access_point": "Consentement sexuel" + }, + { + "authorized_access_point": "Cybersexe" + }, + { + "authorized_access_point": "Enfants - Sexualit\u00e9" + }, + { + "authorized_access_point": "Exhibitionnisme" + }, + { + "authorized_access_point": "H\u00e9t\u00e9rosexualit\u00e9" + }, + { + "authorized_access_point": "Homosexualit\u00e9" + }, + { + "authorized_access_point": "Hygi\u00e8ne sexuelle" + }, + { + "authorized_access_point": "Instinct sexuel" + }, + { + "authorized_access_point": "Masturbation" + }, + { + "authorized_access_point": "Parapl\u00e9giques - Sexualit\u00e9" + }, + { + "authorized_access_point": "Perversion sexuelle" + }, + { + "authorized_access_point": "Polyamour" + }, + { + "authorized_access_point": "Prisonniers - Sexualit\u00e9" + }, + { + "authorized_access_point": "Relations sexuelles" + }, + { + "authorized_access_point": "Sexualit\u00e9 dans le mariage" + }, + { + "authorized_access_point": "Sexualit\u00e9 dans les r\u00eaves" + }, + { + "authorized_access_point": "Sexualit\u00e9 de groupe" + }, + { + "authorized_access_point": "Sexualit\u00e9 f\u00e9minine" + }, + { + "authorized_access_point": "Sexualit\u00e9 masculine" + }, + { + "authorized_access_point": "Sexualit\u00e9 pr\u00e9maritale" + }, + { + "authorized_access_point": "Travestisme" + }, + { + "authorized_access_point": "Troubles sexuels" + }, + { + "authorized_access_point": "Voyeurisme" + } + ], + "relation_pid": { + "value": "02864297X", + "type": "redirect_from" + }, + "variant_access_point": [ + "Comportement sexuel", + "Pratiques sexuelles", + "Sexe", + "Sexualit\u00e9 humaine" + ], + "md5": "4996187ac5eda32bb7435dbb71d0b0ff" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Verrerie", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "730", + "name": "Arts plastiques, sculpture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "740", + "name": "Dessin, arts d\u00e9coratifs, artisanat d'art" + } ], "closeMatch": [ { + "authorized_access_point": "Glassware", "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85040126", - "source": "LCSH" - }, - "authorized_access_point": "Dutch poetry" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85055188", + "source": "LCSH" + } + ] }, { - "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie n\u00e9erlandaise" + "authorized_access_point": "Verrerie", + "source": "RVMLaval" } ], "identifiedBy": [ { - "type": "uri", - "value": "http://www.idref.fr/032563507", - "source": "IDREF" + "type": "uri", + "value": "http://www.idref.fr/027255522", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119337751", + "source": "BNF" + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933775" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Nouveau petit Robert 2010", + "Nouveau Littr\u00e9 2006", + "Tr\u00e9sor de la langue fran\u00e7aise" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi les vedettes du type Verrerie [adjectif de civilisation, ethnique, de nationalit\u00e9 ou d'origine g\u00e9ographique]" + ] + } + ], + "pid": "027255522", + "related": [ + { + "authorized_access_point": "Marques de verriers" + }, + { + "authorized_access_point": "Verre - Fabrication" + }, + { + "authorized_access_point": "Verre - Industrie et commerce" + }, + { + "authorized_access_point": "Verreries" + } + ], + "narrower": [ + { + "authorized_access_point": "Bijoux en verre" + }, + { + "authorized_access_point": "Boules \u00e0 neige" + }, + { + "authorized_access_point": "Bouteilles \u00e0 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\u00e9e" + }, + { + "authorized_access_point": "Verrerie antique" + }, + { + "authorized_access_point": "Verrerie de la Renaissance" + }, + { + "authorized_access_point": "Verrerie de Murano" + }, + { + "authorized_access_point": "Verrerie m\u00e9di\u00e9vale" + }, + { + "authorized_access_point": "Verrerie pr\u00e9historique" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123569227", - "source": "BNF" + "authorized_access_point": "Verres fil\u00e9s" } ], - "classification": [ + "broader": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Art du verre" } ], "variant_access_point": [ - "Po\u00e9sie flamande - Avant 1830", - "Po\u00e9sie hollandaise" + "Objets en verre", + "Verre, Objets en", + "Verroterie" ], - "authorized_access_point": "Po\u00e9sie n\u00e9erlandaise" + "md5": "7f44c703b98ed54dadeed0c75658aef7" }, { - "md5": "faa5106feb3ec6f918adb83d81f00ea1", - "pid": "032972938", "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Famille", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Femmes enceintes - Examens m\u00e9dicaux" + "type": "bf:ClassificationDdc", + "classificationPortion": "300", + "name": "Sciences sociales" } ], - "related": [ + "closeMatch": [ { - "authorized_access_point": "Grossesse - Complications (m\u00e9decine) -- Diagnostic" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Family", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00005743", + "source": "LCSH" + } + ] + }, + { + "authorized_access_point": "Famille", + "source": "RVMLaval" + }, + { + "authorized_access_point": "Family relationships", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99005369", + "source": "LCSH" + } + ] + }, { - "authorized_access_point": "Imagerie pour le diagnostic en obst\u00e9trique" + "authorized_access_point": "Relations familiales", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/032972938", + "value": "http://www.idref.fr/027258556", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123892668", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119339867", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11933986" } ], - "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": [ { + "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": [ - "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" + "Voir aussi les vedettes du type Familles [adjectif ethnique], par ex. : Familles juives" + ] } ], - "type": "bf:Temporal", + "pid": "027258556", "related": [ { - "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine - 1600-1775 (p\u00e9riode coloniale)" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Archives familiales" + }, { - "type": "uri", - "value": "http://www.idref.fr/033070202", - "source": "IDREF" + "authorized_access_point": "Biblioth\u00e8ques et famille" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123973877", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "D\u00e9mographie de la famille" + }, { - "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": "Entraide familiale" + }, { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures su\u00e9doises" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "authorized_access_point": "Entreprises familiales" + }, { - "authorized_access_point": "Su\u00e9dois (langue) - 1525-1732" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Famille - Anthropologie" + }, { - "type": "uri", - "value": "http://www.idref.fr/033297746", - "source": "IDREF" + "authorized_access_point": "Famille - Loisirs" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12417795g", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Famille - Vie religieuse" + }, { - "name": "Langues", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" - } - ], - "authorized_access_point": "1525-1732" - }, - { - "md5": "c8dd3a54dc03d0d882de40daa121b1c0", - "pid": "033466300", - "note": [ + "authorized_access_point": "Famille et \u00e9cole" + }, { - "label": [ - "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" - ], - "noteType": "dataSource" + "authorized_access_point": "Family office" }, { - "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": "F\u00eates de famille" + }, { - "authorized_access_point": "1970-...." - } - ], - "related": [ + "authorized_access_point": "Formation parentale" + }, + { + "authorized_access_point": "G\u00e9n\u00e9alogie" + }, + { + "authorized_access_point": "Mariage" + }, + { + "authorized_access_point": "M\u00e9dias et famille" + }, + { + "authorized_access_point": "M\u00e9diation familiale" + }, + { + "authorized_access_point": "M\u00e9nages" + }, + { + "authorized_access_point": "Ordinateurs et famille" + }, + { + "authorized_access_point": "Parent\u00e9" + }, + { + "authorized_access_point": "Pastorale des familles" + }, + { + "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": "2000-...." + "authorized_access_point": "Photographie de famille" }, { - "authorized_access_point": "Histoire universelle - 1990-...." + "authorized_access_point": "Roman familial (litt\u00e9rature)" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/033466300", - "source": "IDREF" + "authorized_access_point": "Arri\u00e8re-grands-parents" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12432924q", - "source": "BNF" + "authorized_access_point": "Brus" + }, + { + "authorized_access_point": "Chefs de famille" + }, + { + "authorized_access_point": "\u00c9ducation familiale" + }, + { + "authorized_access_point": "Enfants" + }, + { + "authorized_access_point": "Famille inadapt\u00e9e" + }, + { + "authorized_access_point": "Famille monoparentale" + }, + { + "authorized_access_point": "Famille recompos\u00e9e" + }, + { + "authorized_access_point": "Famille rurale" + }, + { + "authorized_access_point": "Familles \u00e0 double carri\u00e8re" + }, + { + "authorized_access_point": "Familles choisies" + }, + { + "authorized_access_point": "Familles d'accueil" + }, + { + "authorized_access_point": "Familles immigr\u00e9es" + }, + { + "authorized_access_point": "Familles issues de maisons royales" + }, + { + "authorized_access_point": "Familles mixtes" + }, + { + "authorized_access_point": "Familles ouvri\u00e8res" + }, + { + "authorized_access_point": "Familles transnationales" + }, + { + "authorized_access_point": "Fr\u00e8res 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" } ], - "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": "d53c6c9fd1b0171dc8a66765938ab695" }, { - "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" } ], "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": "d5ff025fdd0855b4c5a2a33e6fc43982" + }, + { + "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" } ], "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": "d611a691a1854acac4412be4e67f8bae" + }, + { + "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" } ], "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": "742ad4eace2ec54c896650a20a8bc5e5" }, { - "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", "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": "6e5b2e8345204b1f6240b2ee5e58ff50" }, { - "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", "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": "cf62e83e4bdd6c38d80b076abd50e321" + }, + { + "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", "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": "e9890918c9073e6ea21f7ae4cd03ee31" }, { - "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", "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": "31e0f11578d8fb5e027a90ed39da39bf" }, { - "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", "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": "a196599d659413b462972e82928b8c90" }, { - "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", "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": "b65edcdfae717c7a02993d101fcc9494" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Conditions \u00e9conomiques - Afrique du Nord - 1960-....", "bnf_type": "sujet Rameau", "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": "ee14bab503242e51c3203d001e415ef6" }, { - "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", "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": "99038009dfdcc8001491f3fd3f5c4b69" + }, + { + "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", "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": "b4e21ead7cd9dfd73d397d3df8db1f00" }, { - "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", "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": "7e3b68f45e79e71061c365e00330413f" }, { - "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", "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": "21d25644592b37de7619e82e822e0841" }, { - "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", "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": "7815af1a0078ea121c6a11b7a03c9ba1" }, { - "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", "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": "919fadd91ed811a57dfe763c712ea21f" }, { - "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", "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": "fb0169a93b2d09af64ecd6646c18cf21" }, { - "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", "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": "cda1ec910a3f8e89c9f08612c48d67de" + }, + { + "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", "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": "dae166cf551827c530b42ad7c4ebc4fd" }, { - "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", "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": "eb820b3f3164a773667255374c0f831a" + }, + { + "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" + } + ] + } + ], "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": "b1b59ea1c0109481e2a83242a98494a8" }, { - "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", "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": "0d5c42e39a47211a9a3e9568823ff66d" }, { - "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", "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": "b55466ba1f1522e8a24845780a974069" + }, + { + "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" } ], "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": "d654131ba2e6a9e22901bbff4e53eb03" }, { - "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", "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": "2df02eb20d3a130ac80cc18679ddff35" + }, + { + "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": [ + "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": "380d8a5be2e2f51f522c1b866f292c42" + }, + { + "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" } ], "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": "d53b3d89e2bc06c119ad43d42063866d" + }, + { + "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" + } + ], "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": "e84a690ed4c98a8252d9aa14998f833a" + }, + { + "type": "bf:Topic", + "authorized_access_point": "Iraniens d'origine africaine", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + } + ], "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": "f56031d448105ba6174fd6bfcd784e70" + }, + { + "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" } ], "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": "efd44e39f339e1b6afe5819a6774c7a5" + }, + { + "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", "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": "38381d3d1dc24562614937fce03a501b" + }, + { + "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" + } + ], "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": "b17ec25324a6b06d659de47e1ed7e752" + }, + { + "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" + } + ], "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": "18f07ea99f1fd24ffd110084d15a9c8b" + }, + { + "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" } ], "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": "5b5d293ec9c95d2bec63bf659e7be5df" + }, + { + "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" } ], "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": "aaa6161b26eacea28dc2f7aeb50db80b" }, { - "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", "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": "eb5236400bfa052a9aaa9788bec4ce38" + }, + { "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" + } + ], "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": "569eaf1e040e78a15ef513107733ae66" + }, + { + "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" } ], "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": "42c45343b02e91dfb8a311db571f38c3" }, { - "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", "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": "e0ad4eb740e775b957265e9101a7f34b" }, { - "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", "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": "ba6a80f7745afd535fb1fc2a9125c76b" }, { - "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", "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": "cee82cd39201749c09f1b34fa1e7deff" }, { - "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", "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": "9b2f6aa18a4939d1a6eb6099eebf43b0" }, { - "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", "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": "cebc8ea337be0469624c98e14718681b" }, { - "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", "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": "5bf027716bbf2f9a715b2aabce45fdf4" + }, + { + "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" + } + ] } ], "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": "dad5de1bd7db50552ea06034298e3ed0" + }, + { + "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", "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": "624fef37141fb9687ad59e8015e16dbf" + }, + { + "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" } ], "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": "7e2902f11c241ea0e1f8cfce67bb6a43" }, { - "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", "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": "7c26ba7fce25d81f0da6a595c8f58c2d" }, { - "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", "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": "41349bfb141625a8e81df9a958903069" + }, + { + "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" } ], "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": "7890d1c5aad6d10ca21672978fba06aa" + }, + { + "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" } ], "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": "0beef821ed2bc9b63f4e8b634248fa1a" }, { - "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", "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": "83a0484c68c00cf5d1df429712ea2645" + }, + { + "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" } ], "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": "4ee6247377d5ca16a5fa5eb57cbbd4dd" }, { - "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", "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": "dde5602675fdcc92bfe37885c05dd149" + }, + { + "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" } ], "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": "6d7b9a2c98294f7e14f09197d445ded6" }, { - "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", "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": "7fc4d9191dca4e023f01d26199a28050" + }, + { + "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" + } + ] } ], "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": "25fb882fe58f5329dc23ff22a90b619f" + }, + { "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" } ], "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": "f689eda9d7d5d850d0433cc940471845" }, { - "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", "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": "4c37d4a5137e0d363ace919267cdac9a" + }, + { + "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" + } + ] } ], "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": "c151d9584e3037869db339c8b1fb387b" }, { - "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", "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": "4ec4498bd3745f175daf5dc66954daf9" }, { - "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" } ], "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": "b9df34441a3ac3718439a88c79ee422b" + }, + { + "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" } ], "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": "19495c6ffabc304640ca0ee562ee256a" }, { - "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", "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": "c37df3ad430aeca2e75f4a0da9b8a6b1" }, { - "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" + } + ] } ], "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": "b09f9c7bbe6774d7cf63854f38e21ee2" }, { - "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" } ], "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": "835e4a4943ddc520ed2c27001f00b3e1" }, { - "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", "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": "da39819a7365594def98b3272d50c736" + }, + { "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" + } + ] } ], "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": "ac1b79a576bcf40367d77179cbaff032" }, { - "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Belgian drama (French)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051793", + "source": "LCSH" + } + ] } ], - "type": "bf:Topic", - "bnf_type": "sujet Rameau", "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": "804e2a0e147ea852824ba25dd8e5583b" }, { - "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" + } + ] } ], "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": "c39c7ef05be8ffd35233707dee3317ba" }, { - "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" } ], "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": "394213a0c05d1601f9b372424240c404" + }, + { + "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" + } + ] } ], "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": "3c51e645defa7e0d2b5c05aedc514866" }, { - "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", "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": "c312e98beaf0dc595b28b93b69e79359" }, { - "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Autobiographical fiction, Arabic", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95009760", + "source": "LCSH" + } + ] } ], - "bnf_type": "genre/forme Rameau", "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": "83ed31d4353b28d65c652cb2eec82311" }, { - "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Songs, Finnish", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://authorities.loc", + "source": "LCSH" + } + ] } ], - "bnf_type": "genre/forme Rameau", "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": "129caa0ca7a8abffbb651b6a794a6f1a" }, { - "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" + } + ], + "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" } ], - "bnf_type": "sujet Rameau", "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": "10708fb22e322305221b88aae9679cc7" }, { - "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", "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": "931d0fc3b6dec95094ce23eff52a7285" }, { - "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" - }, + "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": "73a0006594c2c57b99b0e086f6b33984" + }, + { + "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", "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": "6e825d9d108548d15eba60e1ed742e3a" }, { - "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" + } + ], + "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": "d8a342230d76f2586e0309df71f3c1bc" + }, + { + "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", "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": "027114afbea2b62abe8292f139522ff5" + }, + { "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", "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": "73fb4c850629fb861791aed80b74c4f1" }, { - "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" + } + ], + "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": "29c710f36d18cfc928897748cd91824d" + }, + { + "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", "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": "7f3154a87336a1783eece2f8b45bc3ee" }, { - "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", "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": "21fa05e4beab38c36b7ba5fd3b9d1612" }, { - "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": [ + "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": "afda38899704f4ea8fd5374deded51f2" + }, + { + "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" } ], "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": "0a4bf556928d97ee71b27a6d67075a3d" }, { - "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" } ], "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": "e1a1d55c7cd3ea5a0d62695da91dd0e2" }, { - "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", "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": "869bf740c1d472cbfcc1c0d8efbbb32b" + }, + { + "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", "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": "fc2eb32b4dde73eb8d8108abf48c5af7" }, { - "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" } ], "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": "84e8b34a74670dcc39928a7c7a1947df" }, { - "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", "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": "da8b060ef6594b0aade2909909d46b6b" }, { - "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", "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": "d05f729d8e7946838bd0a35f0dd43ba3" }, { - "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", "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": "eeadd847244c13d79859930e74be5496" }, { - "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", "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": "26a687868dad2bdad100691a833ce755" }, { - "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" } ], "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": "d4ba77736e34e888a46b30866795a162" }, { - "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", "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": "a517f79566453d72842ba6092863f3fe" + }, + { + "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" } ], "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": "aeec90e5df3a1df7c3f59c9f820747e3" + }, + { + "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" + } + ], + "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": "cf4c8be0e8ced0e99f7e5e776d146a93" + }, + { + "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" } ], "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": "a8da2696d1bbd0d7939bb4468d942aef" + }, + { + "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" + } + ], + "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": "613bde2a3d6f73ee24472f0095eefbdf" }, { - "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" } ], "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": "6fabf89a9335394b7d0f447143db04ce" }, { - "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", "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": "46ca6b28b31d9dc8050f506a879f6b4d" + }, + { + "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", "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": "4372416c60eeaa8cf0ea894d4d75c015" + }, + { + "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" } ], "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": "515cd3b4953a0250eb90fd7f55a63de9" + }, + { "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", "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": "bc711de906c7b2f3fc63f30c67974c53" }, { - "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" + } + ], + "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": "46a293a5a59bfaab076233d257abdefb" + }, + { + "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", "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": "53b6d71095072384454390ee7be877e3" }, { - "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", "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": "7b35c525e4b00ae097c088822b6f380e" }, { - "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" } ], "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": "57c7a63142038db34d3c5beb28cf4838" }, { - "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", "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": "f9aa4e2583625e8bb903c12ee3a4ee53" }, { - "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", "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": "f8fdfec1062cbadc6535ce016a24596e" + }, + { "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", "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": "c8b78eaea81c4a3af3504fc34fb3b9d0" }, { - "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" } ], "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": "89b5aba3511ec9b81e43f31312c8bd1f" }, { - "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", "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": "92e04af0771c86f7702308e1e63d4c25" }, { - "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" } ], "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": "6fe4e760eceafb062855943dfd7d210b" }, { - "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" } ], "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": "aeb48bb63b16eecdf3021b325e700507" + }, + { + "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", "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": "fc746e1061326183b757e45b326b69f8" }, { - "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", "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": "c1541d50a8ef7dbfdbdf095140f0d98a" + }, + { + "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" + } + ] } ], "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": "7e33c6d471bf089390a16fdb13182237" }, { - "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", "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": "9c5e18eafc1ca88ec019bc5732458a34" }, { - "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", "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": "529f0fb6c0a33458097e63851e0cafc5" }, { - "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", "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": "4449cdb5237fbb1fabea0fc202453d4a" }, { - "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", "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": "81a8e25eef39b9bb80f93b0eef05a18b" + }, + { + "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" } ], "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": "ca9b02b8c91a75ceeabc3bf9513b6812" }, { - "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", "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": "a19822bd260cf4fbea774299bc47482d" + }, + { + "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" } ], "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": "d39ceba75755c74efd477c78b3622fe3" }, { - "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", "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": "5a79a1bcd1b94bae6c4beba430bd61ef" }, { - "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", "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": "f496ddee3004bfcc89f50a9f859e1b6e" }, { - "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" } ], "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": "dc87ca4f72e10f72b7ac867884ec2a28" }, { - "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" } ], "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": "613b09abea43dbbace3533c316aead8d" + }, + { + "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" } ], "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": "e779d1299ed64746bbb5d45c3cc3a322" + }, + { + "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" + } + ] } ], "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": "089ae533798d535f9756d3fcb6da69b2" }, { - "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": [ + "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": "2e1fcbce669e3ad6c309f33ed89472fc" + }, + { + "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" } ], "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": "98f2b57ede1ad9ab924eea46aa2ade8f" }, { - "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" + } + ] + } + ], + "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": "d5a36dd46b6d95bde51685661d705e7d" + }, + { + "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", "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": "e4df2a3ec11f5c2698592851563b8d63" }, { - "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", "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": "53123327ce99334639e5dcfed6ae16f6" + }, + { + "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" + } + ], + "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": "269c66bbb9f9da25163684456443295f" + }, + { + "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" } ], "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": "0791b71176ba22124a40662a162009a9" }, { - "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" + } + ] + } + ], + "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": "e1ab5d45734db66af0536e7208afeec7" + }, + { + "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", "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": "46a8cac946148fc195e0ed202f255406" } ] \ No newline at end of file diff --git a/data/cidref_metadata.csv b/data/cidref_metadata.csv index 9b870ac3..c9d1f471 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-07-30 15:25:23.732339 2024-07-30 15:25:23.732342 111d371c-93e5-49aa-923b-31498c21c2bf {"md5": "06299dff5ef1568b84da6566f7bab6c8", "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"}], "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-07-30 15:25:23.83565 2024-07-30 15:25:23.835653 9c013228-87fa-4390-a667-b3f1f9f2e676 {"md5": "49c29ae694de3ceb7a3c73a1e995a168", "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"}], "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-07-30 15:25:23.888986 2024-07-30 15:25:23.888989 e82338d3-db72-428d-a165-dbd67020fdd7 {"md5": "691681ab16442fa4f21bc11c99a43e6f", "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"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027246159", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12063646c", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12098750q", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933049j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12063646", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12098750", "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-07-30 15:25:23.982463 2024-07-30 15:25:23.982472 1f6a7576-a2be-4727-98ac-160994c6a3df {"md5": "9c5f6b72def8492b2c17106090dd122b", "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"}], "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-07-30 15:25:24.069103 2024-07-30 15:25:24.069111 31627713-6ee5-42fc-afa4-31494a15b78b {"md5": "8740963d02d11084f82110a110e1bd3f", "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"}], "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-07-30 15:25:24.587837 2024-07-30 15:25:24.587845 3c496a51-a572-4118-a468-c014ac1e04ec {"md5": "8278015a48cd6e19f50bb7dfabb2098b", "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"}], "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-07-30 15:25:24.164193 2024-07-30 15:25:24.164198 c97d7b90-dbe4-4095-ad8e-5b1345608be0 {"md5": "02672446ffed501172268a50f071ca64", "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"}], "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": "FRBNF13609085", "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-07-30 15:25:24.221145 2024-07-30 15:25:24.221152 5b1e7a0e-f9b1-4482-9733-cf42afd75ea3 {"md5": "2e4e8e6798fccaa6b67332e917cf10aa", "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)"}], "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-07-30 15:25:24.308649 2024-07-30 15:25:24.308659 b343c3a7-5e8d-40cd-8edb-061ab6a5a04d {"md5": "9c313c0bc5fd11fa017f909419d47d44", "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"}], "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-07-30 15:25:24.404546 2024-07-30 15:25:24.404559 f618048b-ba24-4692-81b4-1f11341bb105 {"md5": "f12f3c09390c62798694773b3ff03dac", "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"}], "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-07-30 15:25:24.496269 2024-07-30 15:25:24.496278 f064c496-8c4e-435c-a71d-464a30909695 {"md5": "9be1710085daf488e6a2197721c7742d", "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"}], "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-07-30 15:25:24.670291 2024-07-30 15:25:24.670299 76e314ab-2ec3-45af-9856-ea32fca4d236 {"md5": "a6851a1692e9e3a40e52ee0e2c62bc57", "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"}], "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-07-30 15:25:24.747089 2024-07-30 15:25:24.747097 36eccc17-c8ce-49de-a6ae-66c78612837d {"md5": "c72763f14f046fdca3b2df8cf26e2e11", "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"}], "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-07-30 15:25:24.839413 2024-07-30 15:25:24.839422 5521714f-4ce0-4985-bef3-d11a349dfc27 {"md5": "ed241013d147d9868fd0ba5da8ca245a", "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é"}], "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-07-30 15:25:24.93218 2024-07-30 15:25:24.932191 a268904e-47c2-4294-b886-8ffe2bb5d2c9 {"md5": "3b275bbe6d86b7dd7f0a65e93bdd8ab3", "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"}], "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-07-30 15:25:25.026757 2024-07-30 15:25:25.026764 7ad997f1-8bf1-4913-ac72-be3a2619c431 {"md5": "6c50eed41c0e33b309f36fa3a4fd1dcd", "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"}], "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-07-30 15:25:25.133362 2024-07-30 15:25:25.133372 c13c5458-317e-4abe-98ff-885b7b6573b4 {"md5": "6fc197d6b32eb7dfbb79e8d1a03f0c1c", "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"}], "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-07-30 15:25:25.228924 2024-07-30 15:25:25.228927 d186b0de-0801-4038-b7dc-b873917364ea {"md5": "68d2e8abf8807c92d2bd99cb98bfe5dd", "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)"}], "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-07-30 15:25:25.318811 2024-07-30 15:25:25.318815 48d0855b-2553-41fe-9490-71bff4f4ef06 {"md5": "e181f1abb2ac66b952f4b3f5ba292239", "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"}], "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-07-30 15:25:25.388004 2024-07-30 15:25:25.388012 af3dd42e-1c95-451c-bd31-c035dd7f719c {"md5": "a1c921b650f9259b4a1906e0ca364ea2", "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)"}], "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-07-30 15:25:25.478861 2024-07-30 15:25:25.478869 128b51c5-27ab-4709-b0e1-23941d476a6b {"md5": "38bb217a4d88d19a86632a403d055268", "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"}], "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-07-30 15:25:26.516431 2024-07-30 15:25:26.516439 8eff7037-fc5f-4620-a5a8-f663efffb443 {"md5": "487f2a0a470bd97ea6fa524cd92a4f54", "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"}], "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-07-30 15:25:25.578451 2024-07-30 15:25:25.578461 709e586b-e34a-43fb-b118-7949ecfe8dd1 {"md5": "dc43fe30e750c0c8299669f8568ba97d", "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)"}], "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-07-30 15:25:25.691998 2024-07-30 15:25:25.692008 43f173b4-19ab-43d5-a362-823bb477ca4e {"md5": "62dd97c2d8529ae7d048155c9aaf4655", "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"}], "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-07-30 15:25:25.783505 2024-07-30 15:25:25.783514 9baef12a-4e4d-4294-b806-c2ed4805d37c {"md5": "ee40159bf5755eb5b4e3af9468ef74f7", "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", "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-07-30 15:25:25.882383 2024-07-30 15:25:25.882393 2ca60807-c66d-4573-85cd-023865d9ed4b {"md5": "878d354026c64257435fd56e9490ea92", "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)"}], "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-07-30 15:25:25.970172 2024-07-30 15:25:25.970176 fac959cc-7231-4cbe-912b-320b27103fdc {"md5": "f7c371a4bd787c4044d6dbffb007c5b3", "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"}], "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-07-30 15:25:32.107605 2024-07-30 15:25:32.107613 c5502b42-1035-47f8-8541-d791d4dba76d {"md5": "1f7285475914ab59b6b33efe8bd23032", "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", "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-07-30 15:25:26.063421 2024-07-30 15:25:26.063428 c161ecc6-393a-4b2f-9ba1-aa2028155514 {"md5": "f3b131816c4684efd48c35aa55e1e0ee", "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)"}], "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-07-30 15:25:26.14047 2024-07-30 15:25:26.140486 0b49e536-774a-45a9-846e-fcce349549fd {"md5": "3b5de954c104c6d0b8d5eb394d803e1c", "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)"}], "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-07-30 15:25:26.209033 2024-07-30 15:25:26.209037 c06552bc-c7e9-44f8-b283-55c2cf825d79 {"md5": "b60e9197ecbde0666cb31b35a82ebbe9", "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"}], "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-07-30 15:25:26.264596 2024-07-30 15:25:26.264599 babd7275-a680-477c-8b82-4ebdc40d5d84 {"md5": "6c8c578c5f061c0abcb2564893befefb", "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", "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-07-30 15:25:26.346385 2024-07-30 15:25:26.346394 b65b3438-23b2-482f-8aed-98692daefd37 {"md5": "2b17ebf508735924f8b855d7c134f65e", "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"}], "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-07-30 15:25:26.434254 2024-07-30 15:25:26.434263 86b94631-7734-4b1b-81b9-ced42ee557ac {"md5": "8d6022be3f46abd3b24dc819f994608b", "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"}], "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-07-30 15:25:26.606385 2024-07-30 15:25:26.606395 5bc6ec5e-6f92-4f8e-865c-a50b592d5f43 {"md5": "caa1430697c308041bd748f72e8fb521", "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"}], "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-07-30 15:25:26.706968 2024-07-30 15:25:26.706976 47766db0-fb1f-4af6-91f6-e8531909c4b0 {"md5": "3d00cfb24cbb5764ef4ae2787526a531", "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"}], "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-07-30 15:25:26.812361 2024-07-30 15:25:26.812369 a834ed78-3732-45bf-8c01-527eefcc19f8 {"md5": "1480846bbd255c77d2a26661fac04ce2", "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"}], "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-07-30 15:25:26.903896 2024-07-30 15:25:26.903904 910cd757-142e-44c6-a132-33b065e0056c {"md5": "8bf3f256b0f00a2d3bb89ca5bc95d848", "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"}], "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-07-30 15:25:27.006685 2024-07-30 15:25:27.006694 f0ce2e89-2226-4d37-9be1-c57be935ab02 {"md5": "2dbbe9c4bcaa44d8cafe80715f2fcde7", "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"}], "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-07-30 15:25:27.096255 2024-07-30 15:25:27.096265 9c3a3f6b-fa17-45f3-a944-5d13627d0863 {"md5": "ef1ed63b529db0b814aaa6aff05c0bb0", "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)"}], "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-07-30 15:25:27.192404 2024-07-30 15:25:27.192417 6ffb775e-d0bf-47ca-918c-f2f1340a4b14 {"md5": "fb2d195e5f72cff866f89ab4802ab4dc", "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"}], "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-07-30 15:25:27.276952 2024-07-30 15:25:27.276955 f721e7c2-3dc8-4b75-81a8-a59cc9617af6 {"md5": "2c7d51935d740c38537a0635397e00e2", "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"}], "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-07-30 15:25:27.349743 2024-07-30 15:25:27.349752 c2664555-2d96-4b70-88bd-b1790fd6db59 {"md5": "e75fd588e765a76b5355d5d3fa931ae9", "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", "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-07-30 15:25:27.429759 2024-07-30 15:25:27.429768 8c5cbd91-ef16-42e2-89d8-1cfc2647a8e0 {"md5": "29b2a03b8be63ab3ed0653ad6389229e", "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"}], "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-07-30 15:25:27.536094 2024-07-30 15:25:27.536104 a3086bde-e8a6-4a78-af89-5a24c6ccbd88 {"md5": "55c49aa78719bee232102745b78e17ec", "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"}], "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-07-30 15:25:27.656785 2024-07-30 15:25:27.656795 83a938c7-6c4f-4c5e-9aac-8599f69d70ea {"md5": "281ccf045ec2a92174475e95d09bc23d", "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"}], "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-07-30 15:25:27.817979 2024-07-30 15:25:27.817989 5d711f96-e836-4083-ae58-993a35984700 {"md5": "2de33619d211cd9901424b101512fc13", "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"}], "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-07-30 15:25:27.944953 2024-07-30 15:25:27.944964 96aa18d4-a8ee-41dc-853d-897f28bf1bc9 {"md5": "6fba34101a31f9e419d611df243e755f", "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", "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-07-30 15:25:28.044274 2024-07-30 15:25:28.044282 662236b7-f94f-4ba1-b3f4-cbe26fc0c2b9 {"md5": "536474cf4190f0bf2b1349b7543039e3", "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)"}], "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-07-30 15:25:28.152668 2024-07-30 15:25:28.152677 cbf35688-ef5c-419b-8f0a-434e09937191 {"md5": "a8c629ec11ae93dd0c1dfdd5cb19b0da", "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"}], "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-07-30 15:25:28.258818 2024-07-30 15:25:28.258828 502afb27-b197-4fac-b3c8-34cdeada6619 {"md5": "493cd89dd06aca4ab733e0ff7d30a903", "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"}], "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-07-30 15:25:28.336087 2024-07-30 15:25:28.336092 f59b7a82-9164-4b76-9e5b-a267d9d6bc7c {"md5": "07f44847a7c2163d85f88ad1c1b3330e", "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"}], "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-07-30 15:25:28.43754 2024-07-30 15:25:28.437551 82e5a0a7-1774-4f1c-8b33-80e8caf902c7 {"md5": "06f91328d1ab9e1c89aa990133cda311", "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"}], "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-07-30 15:25:28.544413 2024-07-30 15:25:28.544422 8352327d-d95f-48c4-b393-ab8e72c1475c {"md5": "515b70822e523a87420c4c17c052d971", "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"}], "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-07-30 15:25:28.653851 2024-07-30 15:25:28.653864 7102826e-2873-42a8-8993-1908d8a8ed6d {"md5": "64b615f5e836bbf6425073ed59e5c314", "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"}], "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-07-30 15:25:28.758568 2024-07-30 15:25:28.758578 788f2706-8b03-41c8-a0be-323529c67530 {"md5": "4590db116ed44617e466f50bad7ae120", "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"}], "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-07-30 15:25:28.849834 2024-07-30 15:25:28.849837 e1bd19d4-588a-465c-9e5c-7270d3227fda {"md5": "a9885a9ad1960474cbb881b5e1fd0e2d", "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"}], "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-07-30 15:25:28.97435 2024-07-30 15:25:28.974355 30c7d85b-5506-4a6a-a02b-90ed67ecc8e7 {"md5": "1e2bbe3bdb53be721a197e64ef9314d5", "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"}], "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-07-30 15:25:29.054793 2024-07-30 15:25:29.054802 331ec6e9-2e4b-4d69-a1d8-ea62ec78bc22 {"md5": "4de1d5ac84b50f3082a3396150cbc9ac", "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"}], "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-07-30 15:25:29.144861 2024-07-30 15:25:29.144871 5486aabd-2952-40e0-9f8c-01a9146c2e8c {"md5": "d079f2248c5dfedf30e9dc85dad12fdb", "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", "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-07-30 15:25:29.240623 2024-07-30 15:25:29.240632 4acb3e17-cc63-46bb-a3b9-986e65a72445 {"md5": "7e20a24a3cf6f0cec3f8f26b33ab4fd3", "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"}], "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-07-30 15:25:33.454259 2024-07-30 15:25:33.454262 4c0a5d14-b2c3-4df2-948b-b422d73d6cf2 {"md5": "c99eebbd23f691320878c3a2cfe0287b", "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", "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-07-30 15:25:29.330173 2024-07-30 15:25:29.330176 a4648470-c182-4819-b55a-9f3bfb946f43 {"md5": "3f9af523b435cb448fe74ad6f7595290", "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"}], "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-07-30 15:25:29.417769 2024-07-30 15:25:29.41778 17f2c105-4213-4caa-8046-43bc0175bd66 {"md5": "0dae31e85ba705fac05b78b832f10569", "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"}], "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-07-30 15:25:29.510629 2024-07-30 15:25:29.510638 b962fb31-bd3c-4798-92cc-f54431704ead {"md5": "95d93a059c417c9d1c818e28e243f7d7", "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)"}], "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-07-30 15:25:29.593693 2024-07-30 15:25:29.593702 f7b562e3-e312-47b6-8c9b-e7f29adfcb57 {"md5": "2cb17d696df5f36b0255c7a92b571a09", "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"}], "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-07-30 15:25:29.694938 2024-07-30 15:25:29.694952 59be2f34-4eb2-4ca7-838c-5b566fe4e59c {"md5": "24e37612ed60ed2f8b07af5dabf3f68d", "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"}], "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-07-30 15:25:32.209737 2024-07-30 15:25:32.209748 21651584-9108-488b-b309-17d1cc5d5124 {"md5": "908f3873184fca80ed4b6b7883471b66", "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", "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-07-30 15:25:29.802125 2024-07-30 15:25:29.802136 c62c3c93-a120-4f16-abb1-efd0265cbb58 {"md5": "b8eee0abfc5fd32b90d371ce09830c18", "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"}], "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-07-30 15:25:29.899109 2024-07-30 15:25:29.899119 fe4e6c86-1ba3-4988-afc4-e549de7a111a {"md5": "0e38441fe871b86757b8ed73aff7eb90", "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"}], "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-07-30 15:25:29.992854 2024-07-30 15:25:29.992861 dc210967-66b9-430b-8201-8a0be29acbf4 {"md5": "d2f2fd808af1c7ca75810fc95527eedd", "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", "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-07-30 15:25:30.078213 2024-07-30 15:25:30.078222 089cd352-470b-4a5c-9058-ad1a595b5ec7 {"md5": "999940958772c71cf96030c7491d707d", "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", "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-07-30 15:25:30.16686 2024-07-30 15:25:30.166872 7df39301-2ade-4ba1-82db-1c779b0123c1 {"md5": "4f5fc72af0f2bbe017483483c78e8ea4", "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"}], "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-07-30 15:25:30.278087 2024-07-30 15:25:30.278096 88e9bd20-2423-4eb9-9a49-97b7e958d960 {"md5": "8ec0ee711f19d791032c3d27459e3227", "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"}], "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-07-30 15:25:30.373314 2024-07-30 15:25:30.373318 c2cf5393-3bcc-44ac-b535-bceed091dae3 {"md5": "4c40e3a6fc978c3c8fbad518692ff53c", "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"}], "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-07-30 15:25:30.470372 2024-07-30 15:25:30.470382 399c209a-5ac7-4b75-b5e3-02aa817352d5 {"md5": "03cf88cceacf2bac9127c1ab2f8d9020", "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"}], "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-07-30 15:25:30.560761 2024-07-30 15:25:30.560771 74aff20b-432c-43ed-813a-cb3b5184b309 {"md5": "b43807ab0b1a5343da8df6c638fb317b", "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"}], "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-07-30 15:25:30.652226 2024-07-30 15:25:30.652237 0e1bb1b5-8916-4e83-a30e-72d0e3f460d3 {"md5": "b57c72553c6cb2cad1cd82a4c7ab3704", "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"}], "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-07-30 15:25:30.756138 2024-07-30 15:25:30.756149 ecb285a3-361a-4d57-8fdf-657ab38ad034 {"md5": "5f3e030e0d6c18aa6915806132f935b4", "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"}], "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-07-30 15:25:30.871749 2024-07-30 15:25:30.871761 78d1f152-b062-4853-b32c-4ff2aabd6ca8 {"md5": "08ec483680287accd1fd2294227c2cdd", "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"}], "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-07-30 15:25:35.745778 2024-07-30 15:25:35.745787 6bf5a3f1-b986-4cca-a645-2aeb3d2ecc53 {"md5": "e6c9726ec8550e1d5262bc33c675e599", "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", "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-07-30 15:25:30.990652 2024-07-30 15:25:30.990659 147a8102-0fd7-49c4-8bda-d810f3e90940 {"md5": "619b0959fdf0c9d847477987010eb2d6", "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"}], "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-07-30 15:25:31.068323 2024-07-30 15:25:31.068331 373835ff-895f-4ebe-9468-37b5d23f6a99 {"md5": "cf49ca161cd32b90db5e16b5074f5604", "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"}], "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-07-30 15:25:31.168267 2024-07-30 15:25:31.16827 65ee6d5f-701d-4e72-84a3-c0657f83d192 {"md5": "914a7ac129d046355cfd1a322686a435", "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"}], "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-07-30 15:25:31.262991 2024-07-30 15:25:31.263002 a1e3dd2a-8ee8-4936-bd14-e2d2a0bf456b {"md5": "f88b62d244c042ad478ef6b74f9725e4", "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"}], "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-07-30 15:25:31.365855 2024-07-30 15:25:31.365864 54ef51bc-1b4e-4d71-8566-a477512f8836 {"md5": "83488a1613db55f2c0d9fb9d5ac3844a", "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", "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-07-30 15:25:32.892731 2024-07-30 15:25:32.892742 6c0e9e25-b9bd-4bbe-8f57-068f4dbbea2c {"md5": "28df58b3d9d4f69fb7b8e3265bca9939", "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)"}], "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-07-30 15:25:31.443459 2024-07-30 15:25:31.443465 4f5e9375-5385-4ac9-832c-6756aea76909 {"md5": "4aeac83d7cacb0a8163a14816e533a6a", "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"}], "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-07-30 15:25:31.530435 2024-07-30 15:25:31.530444 ab6df434-0ce8-4c0b-9ccb-e86528eb1fd5 {"md5": "0790e90108923c9653ba2aa1180d360f", "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", "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-07-30 15:25:31.629616 2024-07-30 15:25:31.629631 0ac7bffe-b32e-4af3-8057-f58ca1126c90 {"md5": "6561f89359d444e331059f55a5a97871", "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"}], "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-07-30 15:25:31.740407 2024-07-30 15:25:31.740416 38aaa645-0f19-463f-a4f5-c6459bbcc53a {"md5": "4a2e25ed4e3f81be355cf8a2e6b24b72", "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"}], "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-07-30 15:25:31.825983 2024-07-30 15:25:31.825996 21059c8e-add3-4a32-af35-eba2583a73e2 {"md5": "d419e719229fcc3e7eb80dbae0f4460c", "pid": "027883094", "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/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-07-30 15:25:31.917439 2024-07-30 15:25:31.917452 502d1c9c-ed70-4a93-a3d2-86cd7fcb6367 {"md5": "8029e91088e60f5e470a8602622e654c", "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"}], "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-07-30 15:25:32.019583 2024-07-30 15:25:32.019593 3a01890b-4757-4863-a3a5-62f938215a49 {"md5": "aa423c37e0ffa38fc54b694d062fa376", "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"}], "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-07-30 15:25:32.314249 2024-07-30 15:25:32.314258 d25e3722-1e17-4ece-a8b7-eb4297b03188 {"md5": "48109fd893f7304637e8f070dda43a84", "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"}], "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-07-30 15:25:32.404652 2024-07-30 15:25:32.404657 b6fa3922-1c40-4c22-b5d7-2532756a9da3 {"md5": "7944903a5cede28a065e437b3b26aad4", "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", "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-07-30 15:25:32.46389 2024-07-30 15:25:32.463898 4c654a0c-b2fa-404d-a81f-71c45fb32cf5 {"md5": "2134689cbcf10dc213077546cacd3333", "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", "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-07-30 15:25:32.544488 2024-07-30 15:25:32.544497 64c87b25-ca54-4af8-92e4-bd58450ed0c7 {"md5": "665b2b470d2678c9e003fec5c215558a", "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"}], "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-07-30 15:25:32.61955 2024-07-30 15:25:32.619559 69a1e76f-472d-4b39-ae06-aa1f3af7005d {"md5": "d36ee163a1bb7465262df8b004724b4a", "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", "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-07-30 15:25:32.710525 2024-07-30 15:25:32.710535 1c7a146c-071b-4104-9dcd-e2b73ff1f760 {"md5": "ed1fb189c81cc6cc3fd1702e7a119455", "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"}], "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-07-30 15:25:32.802797 2024-07-30 15:25:32.802803 2ee157b9-0b9e-466d-93d6-9653dbe66241 {"md5": "f9c5d51070f392325b690b830d968966", "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"}], "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-07-30 15:25:32.97765 2024-07-30 15:25:32.977659 04cd3ecb-e2f2-41e0-8859-0fd3f8257325 {"md5": "7587866b7bd0978ffeebfe1ca17dc0e3", "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"}], "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-07-30 15:25:33.059028 2024-07-30 15:25:33.059036 dc5b2c1b-bbf1-43ea-bf98-e5725ef42e62 {"md5": "6cfdc0f4e11ea7fa54cf16931078a142", "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", "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-07-30 15:25:33.150804 2024-07-30 15:25:33.150813 db60da73-4b99-42dd-baf0-948ab9ff371a {"md5": "6b30d1c13344cf72448d6111891a25d5", "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", "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-07-30 15:25:33.230361 2024-07-30 15:25:33.230369 cb7b8d13-858f-40a5-8445-f03b5cccae1b {"md5": "54d958b2000b33b78d170d791bf44a49", "pid": "02810160X", "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/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-07-30 15:25:33.3002 2024-07-30 15:25:33.300208 97f3feb9-c21d-49c4-a635-17caa3747891 {"md5": "426353e0f9f8bccbb022543184e3fe60", "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"}], "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-07-30 15:25:33.387979 2024-07-30 15:25:33.387987 90e280e5-8bfb-4aa3-b7d0-a9e7db2a039a {"md5": "39b0731bf2701818dd9bb22140a86fb4", "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)"}], "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-07-30 15:25:33.526875 2024-07-30 15:25:33.52688 8fd4d0dc-4fe4-4c35-b3e8-2f75326cc4b4 {"md5": "aeeb0070bd8ca742b19d0a14f8313df3", "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"}], "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-07-30 15:25:33.600853 2024-07-30 15:25:33.600862 adae490a-0055-441f-9351-c8774b20874d {"md5": "20ea9b4371ae27917765bb46d6d78c18", "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"}], "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-07-30 15:25:33.689778 2024-07-30 15:25:33.689787 85bf7526-3cc8-424e-9a7c-372d9729c9d8 {"md5": "e4e534f76bc1439d37dbc884f491ae49", "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", "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-07-30 15:25:33.765552 2024-07-30 15:25:33.765562 95d0db28-8fb8-4359-900d-ce0293507e67 {"md5": "9cb4f76a78c36d03b893b2fec0ee445c", "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", "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-07-30 15:25:33.841842 2024-07-30 15:25:33.84185 b7fa50a6-5622-4112-ad8c-dfe0ff213f28 {"md5": "5b093b16752c5feb9ef2276f1058dc7a", "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", "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-07-30 15:25:33.923035 2024-07-30 15:25:33.923045 ecc24097-667e-4d2c-80e2-9ac963708a5c {"md5": "ca013bceb63fc3d083da8bf64b73a1a1", "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"}], "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-07-30 15:25:34.001113 2024-07-30 15:25:34.001122 a87dec4b-bed3-45fc-8dae-c80aab32e5bf {"md5": "8299d03c95c77c87682f1f1f35a58715", "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"}], "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-07-30 15:25:34.080196 2024-07-30 15:25:34.080205 69094fa9-3306-45bf-9dda-049e0d294a89 {"md5": "4afbe4c341cf2f948774a3ec98fd2bad", "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"}], "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-07-30 15:25:34.160625 2024-07-30 15:25:34.160633 7d80ce3a-ec3e-4561-8df3-77acd0940288 {"md5": "b0fd0a2976e70cae008c8c3dbda24104", "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"}], "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-07-30 15:25:34.239832 2024-07-30 15:25:34.239841 e0e86252-667d-4850-8a63-2011cde363c8 {"md5": "e279915c50278b70022fe5606bf8e79a", "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", "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-07-30 15:25:34.335236 2024-07-30 15:25:34.335247 8b2eb360-695f-44ae-813d-d06fe87f55e1 {"md5": "f9f4a55abc34bc73048289ba6e930389", "pid": "02852019X", "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/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-07-30 15:25:34.412122 2024-07-30 15:25:34.412131 376eec2f-22c1-4947-932b-794365a645e3 {"md5": "ff3da54271a35c1a7e6867eadb5d70a3", "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"}], "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-07-30 15:25:34.500572 2024-07-30 15:25:34.500576 e0eaaee9-540f-494c-96ca-99e7aaca7efa {"md5": "cc37a28537c1298037272c9aecf98613", "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"}], "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-07-30 15:25:35.057515 2024-07-30 15:25:35.057526 7f851841-708b-4d56-a62b-871bae07bc6a {"md5": "bbf3b0db8d51ad03c15971a52dce0ea4", "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"}], "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-07-30 15:25:34.575 2024-07-30 15:25:34.575008 003f8a99-d8c8-4d0b-b231-5f013c014c77 {"md5": "161a467a1dcc5c8c02dd25a4c128ed95", "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"}], "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-07-30 15:25:34.648478 2024-07-30 15:25:34.648488 dac18a0c-cf1a-4fe3-bdfc-e0eb3e7f9552 {"md5": "785b23a1ade13e504e944047842591de", "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", "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-07-30 15:25:34.722743 2024-07-30 15:25:34.72275 270ab6a7-997f-42dd-b984-4a84ddd7d0c5 {"md5": "35dcce59ec476b9d88676bed1989b9af", "pid": "028676661", "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/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-07-30 15:25:34.812491 2024-07-30 15:25:34.812501 3d80a029-55fd-4266-ac2b-c46691395e20 {"md5": "236ab39b299e34c6d702a3c6ad121141", "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)"}], "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-07-30 15:25:34.894643 2024-07-30 15:25:34.894652 80d30230-d6fa-486f-9176-0aba590582e4 {"md5": "c7fa967c6d8defc11bf74e6805797839", "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-...."}], "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-07-30 15:25:34.979976 2024-07-30 15:25:34.979987 0e2fac75-20ce-43df-b48e-26ad90a8f351 {"md5": "9840f7951ee8a0b73b9622588986167b", "pid": "028700139", "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/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-07-30 15:25:35.821504 2024-07-30 15:25:35.821512 2506f084-ac06-4c90-ba44-a25fcc0262cd {"md5": "e0cb35fa3c34126924dc60a21d417fdd", "pid": "029042046", "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/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-07-30 15:25:35.147456 2024-07-30 15:25:35.147466 8a80544f-7fdf-456f-a0f1-584aa9494050 {"md5": "eb1f42946bd4d2f726471d6331dac2d7", "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", "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-07-30 15:25:35.220602 2024-07-30 15:25:35.220611 3936e573-da64-4ac3-9e76-11c186f3690b {"md5": "e19043d188103b412b7ac3459cabaa93", "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", "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-07-30 15:25:35.312516 2024-07-30 15:25:35.312525 4b5bca0e-53e3-4f68-92c2-ab43f1182634 {"md5": "10fc0121ebf53e9197ee76271c3705fe", "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"}], "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-07-30 15:25:35.397855 2024-07-30 15:25:35.397864 334b6dac-c75a-45c7-b6b4-7f5af5a27269 {"md5": "b02e209c974cba1c952c49b1c7fb29da", "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", "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-07-30 15:25:35.481328 2024-07-30 15:25:35.481337 c256ba88-9b1b-4b38-a512-253139efea25 {"md5": "c0b51d4c7bb31831235819aed0c4916c", "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"}], "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-07-30 15:25:35.544669 2024-07-30 15:25:35.544673 780f3394-185d-479f-b9b7-7fbaf82d6069 {"md5": "eb23498b7633c38fcf6425b2e9b52404", "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", "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-07-30 15:25:35.617167 2024-07-30 15:25:35.617172 493ec5e0-0525-4346-8cdc-84a454099cd2 {"md5": "879d44842bd0af91693be24da740ed8e", "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", "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-07-30 15:25:35.678412 2024-07-30 15:25:35.678417 00d09fdf-016f-45af-828b-efc1d72ebdec {"md5": "28869ffe87c0aaea11070e47852eff5f", "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", "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-07-30 15:25:35.897042 2024-07-30 15:25:35.89705 8dcc56d6-f6f5-4b14-b29c-e622e5f4679b {"md5": "5da17d674c2fe8a5a9d7b404e887f4bf", "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"}], "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-07-30 15:25:35.97559 2024-07-30 15:25:35.975598 23cb43b6-2186-4791-8910-50676f0cca03 {"md5": "1c9a7bbc89a14dc208b15845e2f6834b", "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"}], "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-07-30 15:25:36.055288 2024-07-30 15:25:36.055296 53f6b72c-4880-40b8-9d01-808974ed9c58 {"md5": "524db13e1f5200790c7d4ad1bb221be6", "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"}], "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-07-30 15:25:36.134601 2024-07-30 15:25:36.134612 5b180764-eff0-4377-b731-f60e7d1e4326 {"md5": "8230a9f31d43cc0a88bb76bd6f420c52", "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", "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-07-30 15:25:36.225102 2024-07-30 15:25:36.22511 e969febe-3ffd-4284-8bae-ee709acf3518 {"md5": "813e283d0e1972cf238d0c00b4c92307", "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", "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-07-30 15:25:36.296504 2024-07-30 15:25:36.296511 cc699676-1649-461d-8aa1-20225e400ed0 {"md5": "4a9ca06a2c9e6773b5f38290e8d32133", "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"}], "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-07-30 15:25:36.374746 2024-07-30 15:25:36.374753 1fc5c17c-c540-413f-9146-25e47cfd1584 {"md5": "b33bc659fc896ba9b92f9373fb7624cb", "pid": "029347254", "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/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-07-30 15:25:36.44594 2024-07-30 15:25:36.445948 8d037b66-d372-4dd6-8881-bebf72ad365f {"md5": "241dccc1bbb94d57ec95436035fd36c3", "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", "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-07-30 15:25:36.521172 2024-07-30 15:25:36.521176 2c1358cb-23ca-4ff5-a836-54af82246c31 {"md5": "f790b3fc4dc754d97065d922f1ac2ed7", "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"}], "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-07-30 15:25:36.570144 2024-07-30 15:25:36.570152 b1314403-2ead-4152-9ca0-79c9c0250b3d {"md5": "ee53b80d1e117f54fb184246e00d859a", "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"}], "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-07-30 15:25:36.642099 2024-07-30 15:25:36.642103 7bd2cfb7-5f08-4e1c-9dbd-872bb9ca3c5e {"md5": "b220f35e623e2b8d7b3cb2cb8938b782", "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"}], "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-07-30 15:25:36.715749 2024-07-30 15:25:36.715759 5ae6b4e3-a4aa-4d56-8d72-ab72d0b5beda {"md5": "b4602c10d5b890f77f8c992bb6fc5de2", "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", "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-07-30 15:25:36.791446 2024-07-30 15:25:36.791451 acd81796-1065-4bd4-a004-0c9006600fa8 {"md5": "1d04c80d28e62597b0fd1e086416fa03", "pid": "029726190", "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/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-07-30 15:25:36.866087 2024-07-30 15:25:36.866095 8e2bacb2-fc29-4774-b7c8-f669d37ff3b4 {"md5": "fc6d3086640f057ae8306902fbb04df8", "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"}], "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-07-30 15:25:36.951118 2024-07-30 15:25:36.951128 9311b57d-4feb-4009-9476-e6ff4f376b3c {"md5": "851bf3d71c0ffe5dd23af6f4e4d5fea9", "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"}], "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-07-30 15:25:37.032338 2024-07-30 15:25:37.032341 508e982e-e3f7-4309-9998-fe8c0ecc82bc {"md5": "f724cd0c28e1126ac688f41c01046fa6", "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", "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-07-30 15:25:37.088232 2024-07-30 15:25:37.08824 5d2b30b2-9598-46d0-b49e-03c3ae1eafbc {"md5": "ba6aff83f903e7fc988fedcd5c0b2396", "pid": "029888026", "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/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-07-30 15:25:37.170865 2024-07-30 15:25:37.170873 a255cb3c-1e82-427e-b337-7b1470f7ee89 {"md5": "aaab1a5f43eb34a4f611f32c349b342f", "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"}], "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-07-30 15:25:37.249588 2024-07-30 15:25:37.249597 7c260641-cf4c-4840-be9f-0ee8b9909fd0 {"md5": "d82698e36a2f0cffa94f99a2c3189894", "pid": "029933730", "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/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-07-30 15:25:37.315445 2024-07-30 15:25:37.315453 f28bd38d-3202-4a61-81d2-6564f859d727 {"md5": "431447a9e1dda4d884a49ffcc233d666", "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", "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-07-30 15:25:37.388162 2024-07-30 15:25:37.388223 4ae9022e-262b-4fb7-80a1-66e004ed4029 {"md5": "48b9587017f55b36cdaa3b45faef917d", "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"}], "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-07-30 15:25:37.472153 2024-07-30 15:25:37.472162 1901b92f-779d-471f-8e30-073ea0e73558 {"md5": "54c7b4d0eef27d8cd50a133c9a592d29", "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"}], "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-07-30 15:25:37.553064 2024-07-30 15:25:37.553067 6b3d573d-64f3-4c0c-81a1-b4e1d0b2c9db {"md5": "bbfdc7a1b098e03582e4d8d6af311334", "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", "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-07-30 15:25:37.603163 2024-07-30 15:25:37.603234 34867833-c441-4126-88b0-5b191b6126ed {"md5": "182952c69278d776ba8b33ef2530aa30", "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", "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-07-30 15:25:37.666599 2024-07-30 15:25:37.666607 a9722ebd-b28e-457e-afbf-cfc94c93e517 {"md5": "86abe49116e342aa4ac72864353cd1e5", "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"}], "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-07-30 15:25:37.741635 2024-07-30 15:25:37.741644 b677a498-7045-4859-9b51-cc05f232a594 {"md5": "92f075c134e207251023e81b0ae76e78", "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)"}], "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-07-30 15:25:41.157801 2024-07-30 15:25:41.157898 9c0f4ab0-c645-44c7-ac4f-d24458852262 {"md5": "91f0cc7747968df89a223d6efcd4338c", "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", "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-07-30 15:25:37.897058 2024-07-30 15:25:37.897067 3c814e36-b98a-4145-9068-851abc6546f3 {"md5": "dfc378166899db0a6ffa8da1b585b70b", "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"}], "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-07-30 15:25:37.994877 2024-07-30 15:25:37.994884 568cb3eb-8fab-4d60-80f6-882fad2b5379 {"md5": "ea2f047be6e858d44e1f990158feca63", "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", "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-07-30 15:25:38.097272 2024-07-30 15:25:38.097282 1e35b48d-760f-4baf-9de5-9caf049d96fb {"md5": "ec0b2fe6c71994681d5222071d02d1e5", "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)"}], "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-07-30 15:25:38.183336 2024-07-30 15:25:38.183344 0ff31c9f-d33e-4e5c-8788-e8ff922f36b4 {"md5": "21e4edf6a08aae402efa7e68399c1dfd", "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"}], "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-07-30 15:25:38.272505 2024-07-30 15:25:38.272513 0c39ba03-1ebb-4846-bc86-224d3081ffd6 {"md5": "c103967303b5e72acce9a3d99a1bf00e", "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)"}], "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-07-30 15:25:38.383996 2024-07-30 15:25:38.384007 998d86b9-8aae-4679-9645-a1b9dc4e743b {"md5": "6c690ed15e35ce3017123d17c2f18739", "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-....)"}], "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-07-30 15:25:38.465963 2024-07-30 15:25:38.465971 f84be5d3-ce89-4840-91c8-6750e26d31f3 {"md5": "ebfc0ead9523eef86c7f309fc4a58e8a", "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"}], "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-07-30 15:25:38.556244 2024-07-30 15:25:38.556257 fab1918c-941c-40f5-a2cc-462f44558ff3 {"md5": "b26d4d54f40f8bc448e52e939a6fc289", "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"}], "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-07-30 15:25:38.617856 2024-07-30 15:25:38.617861 e873034e-29b6-46d7-a3cc-b2a6d36050a0 {"md5": "231aa1f0c73934f2b1783f18ec4fc3a5", "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", "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-07-30 15:25:38.692784 2024-07-30 15:25:38.692793 05f78512-2feb-49bc-9ff1-efca0ffe14b7 {"md5": "0396f80fd4e49ec2b31675dd37ec1831", "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"}], "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-07-30 15:25:38.786648 2024-07-30 15:25:38.786655 df6c0549-915f-4e6b-a988-48174d4fe309 {"md5": "6d16526160aec9ba855c5419aa449d32", "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)"}], "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-07-30 15:25:38.874864 2024-07-30 15:25:38.874874 68fd3b8a-a116-4699-a518-e94144ef8fdb {"md5": "78dc9d103c2f3c22c9c7a0b5c60a3a04", "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"}], "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-07-30 15:25:39.392978 2024-07-30 15:25:39.392987 69d03d0e-9382-4ebf-bd42-ec898112e7b4 {"md5": "9fe02cc51bec18b1cfb9c3540ad9379d", "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"}], "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-07-30 15:25:38.958191 2024-07-30 15:25:38.958224 4b4685fa-4b02-428b-8414-05790fc296a4 {"md5": "04c75263ae9fad51b5967881c1c629db", "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"}], "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-07-30 15:25:39.059708 2024-07-30 15:25:39.059717 2b2531fe-80d5-4c65-aba7-cd044a5f142a {"md5": "05010074c558415fd75c80ab6f697c4c", "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"}], "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-07-30 15:25:39.14799 2024-07-30 15:25:39.147997 894a87b6-e59a-4b7b-acc3-1cc3a1e43b08 {"md5": "d134a5a0b660d451559b7e0032b03dbd", "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"}], "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-07-30 15:25:39.230115 2024-07-30 15:25:39.230123 4716d90f-51f6-4276-aa62-ecd47248a099 {"md5": "740eab7c6bf8eef571e4e574afdcee68", "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", "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-07-30 15:25:39.308881 2024-07-30 15:25:39.308889 781a1b6c-18c8-423b-877d-05d33a92f5c7 {"md5": "aa3167d411ba7fdf0617c60c283ec4cb", "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)"}], "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-07-30 15:25:39.471607 2024-07-30 15:25:39.471615 7212af4e-5192-4566-9252-bc1955f8d1c9 {"md5": "f1a3789d7a8e531c7ce9bee688f006bd", "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", "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-07-30 15:25:39.5533 2024-07-30 15:25:39.553309 d231d960-616c-4fd8-9e95-19a772d05b11 {"md5": "6b1ff49aa341559724497320a884a581", "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", "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-07-30 15:25:39.635849 2024-07-30 15:25:39.635854 8b3b2d7d-be0d-4715-95e2-fbdf54297bac {"md5": "8bac85a40f70aa47aa68e7ed935c83c1", "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"}], "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-07-30 15:25:39.722732 2024-07-30 15:25:39.722739 58f1b85d-2fd4-4c3b-855c-ea0490cf87bf {"md5": "26e6370f25ac716a1473c7bdff2ca35f", "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"}], "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-07-30 15:25:39.818669 2024-07-30 15:25:39.818678 fbcde980-89a9-4601-9b48-1b40cc77a200 {"md5": "1e48e8890fcf4608a99d2f2e05974064", "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"}], "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-07-30 15:25:39.903126 2024-07-30 15:25:39.903134 a5567eb1-16c2-4695-8deb-688300636bf1 {"md5": "1c782acaf2d5b97213153254a033e66e", "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", "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-07-30 15:25:40.458637 2024-07-30 15:25:40.458645 b0e798c5-ce61-41ae-a851-459d9292e7fa {"md5": "0a5e4fc2147b4847124c7ba4cfb4f719", "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"}], "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-07-30 15:25:39.988633 2024-07-30 15:25:39.988642 8d98e4c3-ca53-4c70-b1b5-e6fcfe1331b6 {"md5": "b9b8301185dab741b9e87cee879b47af", "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)"}], "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-07-30 15:25:40.065786 2024-07-30 15:25:40.065794 0bd19e03-826c-4f1c-b72e-00fbc84510af {"md5": "d276d745ca8f5e5ddbc1828b54166240", "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"}], "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-07-30 15:25:40.148828 2024-07-30 15:25:40.148841 28e5f3a3-8e0e-4fb7-b78e-4712b55d0a11 {"md5": "bc7d737f68fb9e6031c1aa25c77a81f5", "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", "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-07-30 15:25:40.22513 2024-07-30 15:25:40.225137 d86ddd2e-587a-493f-bb2f-ee119c415b21 {"md5": "3afbb785c0bcac70aa36f8da3bcebe8d", "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", "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-07-30 15:25:40.315719 2024-07-30 15:25:40.315727 a2afc23f-8f09-4fd9-afc8-94a8563c4867 {"md5": "68f5ed3bec39b308963680c19a78004d", "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)"}], "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-07-30 15:25:40.385695 2024-07-30 15:25:40.385702 06be1c6f-0327-4bd2-9051-3787810508e1 {"md5": "ada6580f81ff9c100bb7d11a7c26b085", "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", "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-07-30 15:25:40.550897 2024-07-30 15:25:40.550906 24033e44-0243-42cd-b5d3-817afea0ce3c {"md5": "d7ee864da852018c34673a6d6047bf42", "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"}], "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-07-30 15:25:40.635052 2024-07-30 15:25:40.635061 fd18d830-ff4a-4474-900a-da21bd334db2 {"md5": "e4f6f5df2afcb6ebf23caef713fb6109", "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", "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-07-30 15:25:40.71943 2024-07-30 15:25:40.719438 954a7a5d-1366-497d-8695-49d369f0968e {"md5": "979af81daa1edaadfae0940563218251", "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)"}], "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-07-30 15:25:40.805184 2024-07-30 15:25:40.805192 9e6d661e-9f8f-45a0-a986-5088f26e4bc9 {"md5": "f9f0966b4ae387b8eec161d6f48b29b2", "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"}], "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-07-30 15:25:40.896707 2024-07-30 15:25:40.896716 3f34084a-bbe4-4547-b0cb-886590b9ffc6 {"md5": "1b59eba661d2091035079a4d2f35b030", "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", "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-07-30 15:25:40.979811 2024-07-30 15:25:40.979822 156d2654-8609-43e7-89ae-06e3a84c0de2 {"md5": "f1b6a68abff9c9802fdeffcef7c89766", "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", "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-07-30 15:25:41.06855 2024-07-30 15:25:41.068558 66ba8ef6-3cd2-4356-b91f-85d72a87dd92 {"md5": "4c58e2aaff24ee6479720cf74796fadf", "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", "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-07-30 15:25:41.232346 2024-07-30 15:25:41.232356 f1090b06-47a0-491f-9bd3-23be00ba521f {"md5": "ac0e0749f3c1b28908190ccf2ed4fc48", "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", "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-07-30 15:25:41.311199 2024-07-30 15:25:41.311206 f7dbb438-fc7f-47fd-a9e6-415d1057f09d {"md5": "04a5b715ef7a253d9dda65cefae655ff", "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", "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-07-30 15:25:41.400154 2024-07-30 15:25:41.400162 bf8b464b-e6cf-4fd6-add9-89c42c69a09f {"md5": "457fd7d5ab7397ede1cea7eaad9e7cf2", "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"}], "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-07-30 15:25:41.50156 2024-07-30 15:25:41.50199 ab3e662d-efe8-434d-9521-ba2014423f62 {"md5": "83d38b69798cf49e1b9de278fefae7e9", "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"}], "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-07-30 15:25:41.585578 2024-07-30 15:25:41.585585 9e981b85-a398-4f78-9750-e5b4b68d8bcb {"md5": "8cc1ef1083cb73e8e0674815f0a71fa6", "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"}], "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-07-30 15:25:41.663373 2024-07-30 15:25:41.663377 dd38f3f2-c7b0-4f6d-88d7-2a1d860daae0 {"md5": "c732927d75abe4c730fb370ea9ce4f00", "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"}], "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-07-30 15:25:41.729989 2024-07-30 15:25:41.729992 ce178a05-cd23-45a2-9667-3ba71cd76c82 {"md5": "cfd52a933a54976ba29c09b75ae64f8b", "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", "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-07-30 15:25:41.824843 2024-07-30 15:25:41.82485 8be05870-a8a3-467c-9256-e46d14e4f69a {"md5": "50a3aaf31e9bed8695fc5e94ccdabcea", "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"}], "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-07-30 15:25:41.913328 2024-07-30 15:25:41.913336 e8316426-a6b8-4381-a33c-56e9e7ab47a0 {"md5": "c4bfb6efdaa63260836fad77fdf433a6", "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)"}], "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-07-30 15:25:41.99192 2024-07-30 15:25:41.991928 372cc4c5-0217-406c-ab58-508547094975 {"md5": "294adb4f7b86056fb89bd0eb619eae8b", "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"}], "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-07-30 15:25:42.082099 2024-07-30 15:25:42.08211 d00e70ca-a2f8-42d9-a57c-1b5512c19539 {"md5": "28eec5e36ee58ae05cc42df8058cce37", "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"}], "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-07-30 15:25:42.172694 2024-07-30 15:25:42.172699 dce08c0c-38c0-4768-bff8-863fa8226631 {"md5": "c4d6ad8217b5e14d0cce2969cec7f05c", "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"}], "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-07-30 15:25:42.241329 2024-07-30 15:25:42.241335 b4e1cc00-fe8b-4c7f-ad8f-9ef6437f85cc {"md5": "7668aa6f04bb336efd49e36ea0447dd0", "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"}], "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-07-30 15:25:42.320065 2024-07-30 15:25:42.320072 cadcc454-03fa-414c-a8cb-e1b39f558fe1 {"md5": "dfe72b87f92f90e9fd70b4766dbcc195", "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"}], "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-07-30 15:25:42.398437 2024-07-30 15:25:42.398445 b947aee5-3874-428e-b3eb-243f36cc3257 {"md5": "84eac5467af05e268121a351d9cee1a3", "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", "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-07-30 15:25:42.480136 2024-07-30 15:25:42.480145 2da91095-b715-4e79-baa5-8e3b0d1dacc6 {"md5": "27267f75ad0e525f0b5a814569ea5fd9", "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", "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-07-30 15:25:42.55863 2024-07-30 15:25:42.558639 97a5be84-4c03-4d74-91df-decea657d1fd {"md5": "ce3fafe09df93a9de04e1fc157fce8f6", "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", "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-07-30 15:25:52.128895 2024-07-30 15:25:52.128903 922f7458-efb3-4323-b74a-b3d81c8e0ebf {"md5": "f104c8692db95561fda68eea5a58d3e8", "pid": "17939360X", "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/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-07-30 15:25:42.640244 2024-07-30 15:25:42.640256 147a9d72-db2e-465f-83e3-3419e8309a82 {"md5": "41969421ea6c6e1e7a3b3cf076baa287", "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", "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-07-30 15:25:42.721223 2024-07-30 15:25:42.721225 f31a0a4c-2013-4126-a484-79fc8b435126 {"md5": "2985f0c6dc49ecbaa4ffd274c5450015", "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)"}], "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-07-30 15:25:42.811405 2024-07-30 15:25:42.811413 3f9d12af-0ec1-4259-9ef9-16ae8251e3fd {"md5": "a325964297b402b36678a2edab7b6cdc", "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", "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-07-30 15:25:42.905551 2024-07-30 15:25:42.905556 7b8dbb69-a85a-4018-ba44-ce83199ff459 {"md5": "51fc1f55646d56be7bf67d61ed98fbaa", "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"}], "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-07-30 15:25:43.027062 2024-07-30 15:25:43.027082 66825811-fa9b-4634-8d24-06d5382eb803 {"md5": "06d05db1e469e596611e71ef246e02da", "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"}], "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-07-30 15:25:43.124156 2024-07-30 15:25:43.124159 e197e87a-a42d-458b-9f32-190b31ca3c7d {"md5": "85594be59908671abf387f6ae27e8208", "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", "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-07-30 15:25:43.204512 2024-07-30 15:25:43.204519 05df272d-4bbe-4448-9c93-f5354654b4e2 {"md5": "44b6a18703cc487e9713642d4cdd9775", "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", "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-07-30 15:25:43.313487 2024-07-30 15:25:43.313497 0bcd57f6-2351-4f30-8be4-1c796fb08203 {"md5": "f1dfb4bf5aa3aa58b5a63bd1ee1c7308", "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"}], "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-07-30 15:25:43.422908 2024-07-30 15:25:43.422918 3f7cd0a4-fa95-4435-ac1b-308a8560c846 {"md5": "84dbef8285748075ddc581317d811ae8", "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"}], "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-07-30 15:25:43.523081 2024-07-30 15:25:43.523091 e76d641a-6a8a-4be3-be68-7280a0ba1e55 {"md5": "9e6979fa568b890b3ddc3bc58fa339aa", "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)"}], "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-07-30 15:25:44.028992 2024-07-30 15:25:44.028999 e4af5c68-e121-4d25-82f0-807d5f6f8466 {"md5": "e6c1bb45a76c06e87fea3a36bd13dd39", "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", "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-07-30 15:25:43.6069 2024-07-30 15:25:43.606907 c5997ac8-f642-4d92-9dd7-7719ec5e3fff {"md5": "479c5fc237047f79260f50ce5112687f", "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"}], "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-07-30 15:25:43.694764 2024-07-30 15:25:43.694771 7654406e-cb91-40ad-af27-46e08b53c1ad {"md5": "54bf2ab618c2866d9227904e43e815f8", "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"}], "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-07-30 15:25:43.768745 2024-07-30 15:25:43.768749 7b1ac99f-5b4b-4649-8a90-0e82950c5518 {"md5": "caf7786845a48e1740dd328183fdfbad", "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"}], "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-07-30 15:25:43.855601 2024-07-30 15:25:43.855609 437e3d39-ce9f-4393-8be8-f8f40f15ef1d {"md5": "d1ae0e11d0c7ef7a189278f3f14c6013", "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)"}], "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-07-30 15:25:43.937451 2024-07-30 15:25:43.93746 e63e23b9-aa3b-4e9a-a4b6-3f864c6a3ef0 {"md5": "93717e9b30d7edfb0a31bcc1d8832ff0", "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"}], "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-07-30 15:25:44.133263 2024-07-30 15:25:44.133273 496f8bff-a844-4f2a-8982-c9407c7b8e8e {"md5": "d45d0e7d686f0d1c8badcd6113da2e07", "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", "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-07-30 15:25:44.215226 2024-07-30 15:25:44.215235 12d000b8-6608-4961-b545-6be1d46600db {"md5": "bea101c0a4995826368d49b683cd703b", "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", "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-07-30 15:25:44.297695 2024-07-30 15:25:44.297703 61f61b9b-9714-4d79-b30a-3d09972f83f8 {"md5": "d4b345caf2b4d52668e640bda0e8863a", "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"}], "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-07-30 15:25:44.408424 2024-07-30 15:25:44.408432 a938e510-ecac-4938-b475-af1794a414d7 {"md5": "7ec5d99acc63919313ddb6f2e7af1261", "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)"}], "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-07-30 15:25:44.499264 2024-07-30 15:25:44.499275 06a774d3-012f-451c-bb58-85b7cfd3a2df {"md5": "4d0ee0a21fdda16c55d37910971e0a09", "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", "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-07-30 15:25:44.585072 2024-07-30 15:25:44.585079 9ede07e1-d8e8-48b8-abc1-5f0ad33a64e2 {"md5": "cec8f09ad757fe93469ec5771990f4b8", "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"}], "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-07-30 15:25:44.669278 2024-07-30 15:25:44.669286 3977dbd3-2cd6-4313-93a1-a1b6266b9a9a {"md5": "ffea02a7ee64b395c3963a5d0033b1b1", "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"}], "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-07-30 15:25:44.760827 2024-07-30 15:25:44.760837 00c1666b-2e61-4525-b2c8-5915f372d246 {"md5": "96033410f7171cf0c053dc81e72c8d35", "pid": "050516760", "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/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-07-30 15:25:44.840342 2024-07-30 15:25:44.840351 77972218-b78b-4019-a378-15acf5bca508 {"md5": "80abdbeb8702acc09d2ce3b1a16d09f5", "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", "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-07-30 15:25:44.943554 2024-07-30 15:25:44.943641 025e5f47-dff8-4c38-8469-19762f6972d2 {"md5": "705985faf1557042304ca9e38992f4f2", "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)"}], "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-07-30 15:25:45.030737 2024-07-30 15:25:45.030747 e09c8480-0469-437c-bd97-7ee3ff566040 {"md5": "8d0faeac6b12d2a2b4e64aede6fa2bac", "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", "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-07-30 15:25:45.121159 2024-07-30 15:25:45.121169 4ed7c352-950a-4bfb-b3b7-73fcde994e08 {"md5": "fd6a1614c191cb0c5b805a2f32d3b14b", "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"}], "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-07-30 15:25:46.822021 2024-07-30 15:25:46.822034 ac23cbc1-937b-4bf1-b274-da9df1544103 {"md5": "26b5fb56fb5211817ba5adebeb65fe67", "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"}], "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-07-30 15:25:45.218037 2024-07-30 15:25:45.218379 5530ba0f-1300-4c4e-9352-78894616bc22 {"md5": "742d00956ec29114facf53988f974230", "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"}], "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-07-30 15:25:45.296546 2024-07-30 15:25:45.296554 c7be94e9-5ca0-4024-94b6-dae73eebbcb7 {"md5": "6b33f4f9742dfc24684516f9f764d327", "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"}], "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-07-30 15:25:45.390516 2024-07-30 15:25:45.390523 1ed50490-b35c-4cd9-a1a0-9d82fdfc2ea7 {"md5": "47c4d828d552a1fdf254f342477ee82f", "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)"}], "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-07-30 15:25:45.482509 2024-07-30 15:25:45.482518 c194042d-7d8b-4d05-82f3-27893380c303 {"md5": "096e042bace2ef488f7f8e83fd164b46", "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)"}], "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-07-30 15:25:45.571811 2024-07-30 15:25:45.571821 d3531eb0-d49b-4ee6-b063-28a9b86925bb {"md5": "ca5dae4a99dce00cc656894fea876e05", "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)"}], "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-07-30 15:25:45.660664 2024-07-30 15:25:45.662915 beb76ffd-09c9-40a5-8b17-4812a8003c22 {"md5": "b9451672ea725480444efe58899e9e13", "pid": "050784005", "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/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-07-30 15:25:45.749884 2024-07-30 15:25:45.749893 0d45b037-34b1-4129-9aa7-614375bba615 {"md5": "9c6b398da4cc2c123822e8e17cd05dc9", "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"}], "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-07-30 15:25:45.830323 2024-07-30 15:25:45.830325 bb37ace7-01c2-4a7b-ae0c-a4f8fd50ec6b {"md5": "51e032f045ffa1039bdca19bbf27fb2e", "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", "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-07-30 15:25:45.902032 2024-07-30 15:25:45.902036 07aecff2-2ca3-4b64-825c-c9833dd44c2d {"md5": "53e77232540d041d60738a2f30eb25c0", "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", "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-07-30 15:25:45.995281 2024-07-30 15:25:45.995286 e9116085-cbd2-4ce3-89de-8ffc158ea17a {"md5": "54e797e99c646af8e9368bfff9c45c89", "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", "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-07-30 15:25:46.095856 2024-07-30 15:25:46.095866 03a3ae58-1f49-4c5b-8948-b39a0c02ccdf {"md5": "2d9d8132a49e97e801eb0f19cba075cb", "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"}], "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-07-30 15:25:46.198874 2024-07-30 15:25:46.198882 eaf2c222-0732-410c-a6ab-7d713d25ac1f {"md5": "94244b715360190c08bd21be54b2139f", "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"}], "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-07-30 15:25:46.29841 2024-07-30 15:25:46.298414 98f58552-e5f6-4b3b-9a5c-763b25d85fbe {"md5": "7842508ba473ed71b023f491ab5f32e5", "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"}], "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-07-30 15:25:46.393829 2024-07-30 15:25:46.393839 21c99fa9-e633-48f7-b9e9-dc0cc737df9e {"md5": "e3255938338d451080c250331a634334", "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"}], "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-07-30 15:25:46.489455 2024-07-30 15:25:46.489466 3c9119c0-9638-4744-9d46-4a47e0ce21f0 {"md5": "f5936ea57d54f8d3a6c016a508a3f0dc", "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"}], "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-07-30 15:25:46.590083 2024-07-30 15:25:46.590093 eb3b09e0-4335-4ceb-b688-520e680ecda5 {"md5": "d29821559ac03f24e03b923d3e289bd8", "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)"}], "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-07-30 15:25:46.686514 2024-07-30 15:25:46.686528 46165325-8ee2-4366-af32-377676434673 {"md5": "5381f7fb07ee911583230d3cb37d1481", "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)"}], "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-07-30 15:25:46.890372 2024-07-30 15:25:46.89038 660f077e-a776-4f0e-a0cf-f1f51d2c29a0 {"md5": "5cd7101110399a12db67ec896960c68f", "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"}], "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-07-30 15:25:46.978084 2024-07-30 15:25:46.978094 7342dccd-a986-4e49-a373-8423f51fc4ed {"md5": "ef274e65c4ceb3c07879e855a09cacc2", "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", "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-07-30 15:25:47.082826 2024-07-30 15:25:47.082837 dd421d48-9e8a-43b9-b16c-5f4a8ad8b38d {"md5": "34cfa90b92e87ac377dfd26459242dc6", "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", "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-07-30 15:25:47.174954 2024-07-30 15:25:47.174964 984a9d75-1a8c-4893-8bf1-598a6480f576 {"md5": "c3ceeb0a2f2b4096dfcf3d6f80c2b7aa", "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", "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-07-30 15:25:47.275285 2024-07-30 15:25:47.275292 d9158a70-db52-414a-8077-889ca0e39d17 {"md5": "874083f561ebce49461a4a645aca4b5a", "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", "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-07-30 15:25:47.3834 2024-07-30 15:25:47.383409 a341448e-2f2b-4884-afda-913dad56fe5f {"md5": "e0651822ce05d80f2a796a3313915cf7", "pid": "077091035", "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/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-07-30 15:25:47.455938 2024-07-30 15:25:47.455945 92d8847f-25e3-41b1-9d16-856a00a05433 {"md5": "aa550733004286a56576039b84ceda1c", "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"}], "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-07-30 15:25:47.531412 2024-07-30 15:25:47.531421 03a631ed-6ee6-4c07-ab37-7a206f267fb9 {"md5": "6252e98a9abaaee7c99d19dca014a500", "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"}], "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-07-30 15:25:47.607928 2024-07-30 15:25:47.607936 35a1b59c-46c4-492a-8ce7-e4160f9511b8 {"md5": "a0eab7cb8d0c23d83594ac6540ade81d", "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"}], "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-07-30 15:25:47.684502 2024-07-30 15:25:47.684512 b37639b3-e60d-438d-99dc-4a623598ac0c {"md5": "c685afdebfcd6b2f5b45618113a3f5b0", "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", "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-07-30 15:25:47.775926 2024-07-30 15:25:47.775935 76f0962a-746a-400d-8feb-e0387212badf {"md5": "a4ad8c3b5874cc92dd0c0ec3ea155450", "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", "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-07-30 15:25:47.870417 2024-07-30 15:25:47.870421 9d4f932d-17f8-4515-b037-a191eda78791 {"md5": "ac3f76df5c25573b7f03741a4b33ae3d", "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", "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-07-30 15:25:47.942904 2024-07-30 15:25:47.942907 368c1391-8775-4bf2-b555-c1ce44e5e12e {"md5": "d18a574ec953ee6d6699d3f7e2b873a7", "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", "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-07-30 15:25:48.025885 2024-07-30 15:25:48.025893 838c190c-c06c-4541-a43d-c202ff2478ad {"md5": "4f12241c0bbe64a672fcdc5914057517", "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"}], "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-07-30 15:25:48.117604 2024-07-30 15:25:48.117613 9a2b9184-1506-496b-b56d-01f8440d6946 {"md5": "5104d8f0ec00ce7ac20ebcd4a2c5dc84", "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"}], "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-07-30 15:25:48.206853 2024-07-30 15:25:48.20686 e5c0187b-a751-4779-a629-89160db0a142 {"md5": "7aa436ac78b5d1489a236427e2268017", "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", "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-07-30 15:25:48.285486 2024-07-30 15:25:48.285494 648613fa-f239-410e-b6c1-32d24fa3a2d9 {"md5": "3401692823518567129cf0b0135e1175", "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", "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-07-30 15:25:48.37203 2024-07-30 15:25:48.372037 74b48369-acb6-41ab-bae9-9b5f7954f5c9 {"md5": "f9a471d4de371baac18ae6ab7131b37e", "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"}], "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-07-30 15:25:48.452181 2024-07-30 15:25:48.45219 664bcdc2-8de9-4649-ae8e-2af8bbc494cf {"md5": "487251673f1cfc015f2d2e82725afb92", "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", "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-07-30 15:25:48.548736 2024-07-30 15:25:48.548745 59a33ec2-15fd-4173-a333-dc0233227059 {"md5": "821e4f194d96101c86cabec7f20a7572", "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", "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-07-30 15:25:48.636229 2024-07-30 15:25:48.636239 4d524a5f-468f-4062-bda5-4b53dba6b520 {"md5": "1efa9237678b07f63bcf074002967cde", "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)"}], "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-07-30 15:25:48.717989 2024-07-30 15:25:48.717996 1b848d97-193c-4962-839c-354620524a1a {"md5": "366bf058b4053baf0aa9693ab3b0925a", "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"}], "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-07-30 15:25:48.806447 2024-07-30 15:25:48.806456 83068f00-5c76-435c-a2e2-2c2860fb999a {"md5": "029a4267d140e8983a53566ae1bc2d75", "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", "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-07-30 15:25:48.888642 2024-07-30 15:25:48.888645 bf4cd884-407f-420d-93ba-0f946acd54cf {"md5": "94218416ae080ddb928f9b8adcdfb6e6", "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"}], "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-07-30 15:25:48.972659 2024-07-30 15:25:48.972667 b9eb745f-1624-4d19-a4ae-db55e4649e92 {"md5": "8fa7a14c6bb40736607ec8465637bfc5", "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", "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-07-30 15:25:49.061044 2024-07-30 15:25:49.061052 86fab36e-2733-444c-b334-e24df3fad4c8 {"md5": "874dbff54992efb647a1f52d31aafa25", "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", "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-07-30 15:25:49.15231 2024-07-30 15:25:49.152316 d6476524-d879-4aaa-8869-f42de5809d3a {"md5": "3c62bdfe1d40890d4d0e8f32c1a46129", "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", "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-07-30 15:25:49.225255 2024-07-30 15:25:49.225269 bc59335e-42b9-4f14-af42-9f763483adf1 {"md5": "f89691b29983d32a5a4a167541fd7de5", "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"}], "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-07-30 15:25:49.325731 2024-07-30 15:25:49.325739 8c532e88-17d7-4e09-88c3-55fb1f83a45d {"md5": "1d5aad65dffd6432ec2f1fa0f0fd9932", "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"}], "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-07-30 15:25:49.422762 2024-07-30 15:25:49.422769 8ff04a4a-4764-47d8-9fc0-cc576d768328 {"md5": "e997e3efce12b3746b0a715ea590218c", "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)"}], "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-07-30 15:25:49.509815 2024-07-30 15:25:49.509823 7da62350-b2ea-47e1-b153-312a7651d2a9 {"md5": "b552542e2c3765cab7795043ea867f77", "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)"}], "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-07-30 15:25:50.514109 2024-07-30 15:25:50.51412 84714d51-da97-4215-aa18-3f49bd0894f4 {"md5": "96a7bdfc071f1db4578e9ee81b468462", "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", "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-07-30 15:25:49.589119 2024-07-30 15:25:49.589127 f199a3f7-1edc-4dfa-80f5-c2d88b801d7d {"md5": "47ccbfea60495aa96897c114f3278736", "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", "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-07-30 15:25:49.672603 2024-07-30 15:25:49.672613 a65c1655-cfae-4a74-a5de-415cc40e5431 {"md5": "b02353c1c476bf89cd90b154ef3caa32", "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", "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-07-30 15:25:49.765257 2024-07-30 15:25:49.765266 b31cb2bd-323e-4378-b91d-0e185e9dc7aa {"md5": "9e245296dee80c6cfdd35b8419bae43d", "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)"}], "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-07-30 15:25:49.88411 2024-07-30 15:25:49.884119 750052de-619c-4c51-977a-e0b41329f977 {"md5": "b8d669690c7fcc676c28be46f37c009b", "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"}], "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-07-30 15:25:51.097684 2024-07-30 15:25:51.097695 b604bbb2-b67a-4aa2-bf13-0e6cfd13fbdd {"md5": "f09db67dbaef4b4f97f431e645eb1499", "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", "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-07-30 15:25:49.949971 2024-07-30 15:25:49.949978 98230ede-5f52-40a4-983d-ed087ed04687 {"md5": "3d22ab57af0860dd29167146362ccfcf", "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", "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-07-30 15:25:50.046986 2024-07-30 15:25:50.046995 f78bc771-d5fe-4b28-8475-6918e9cf4770 {"md5": "1970e76aeb35d44956441095949c9329", "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"}], "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-07-30 15:25:50.140315 2024-07-30 15:25:50.140318 b188f34a-d27f-4959-ad67-843e76391ba4 {"md5": "b0b9b5750b51efdf376b604c29f54091", "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", "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-07-30 15:25:50.225076 2024-07-30 15:25:50.225084 88673026-89c7-46ed-a661-de5d8a4e25a1 {"md5": "b2c0b40e4a83fdcaf424860a2ec1f9ce", "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", "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-07-30 15:25:50.304747 2024-07-30 15:25:50.304755 392cf525-9ef1-49eb-b03c-0a0625f8669e {"md5": "f7b34ef4830c3b0a5b6d6fa15114729f", "pid": "135615003", "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/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-07-30 15:25:50.391831 2024-07-30 15:25:50.39184 ddb59768-eb3b-4beb-8363-6b72028521f2 {"md5": "a8843d8019d78bdf02759060b2cd1755", "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"}], "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-07-30 15:25:50.590324 2024-07-30 15:25:50.590332 4030ff31-1974-44ff-b37f-67528dff9b0c {"md5": "681e79b20069a1c7fb976a3dbc394e43", "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", "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-07-30 15:25:50.670353 2024-07-30 15:25:50.670362 6dcfb5c6-0a09-4490-8919-1e9d27d7f526 {"md5": "c2efb824295a0e726a211e8af84fd38c", "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"}], "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-07-30 15:25:50.767801 2024-07-30 15:25:50.76781 2d58edbb-b950-4049-ada8-2f79fe969aa0 {"md5": "bf069e8fd5cf8ca041ea1cc006e2903f", "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", "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-07-30 15:25:50.861267 2024-07-30 15:25:50.861275 803baf5d-27ad-4cdf-9b32-44317af323c4 {"md5": "e6c2a4b96827bc8e29699b6bf4ec883f", "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", "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-07-30 15:25:50.94317 2024-07-30 15:25:50.943173 d63203ce-8b17-4b15-bf39-52c077d1b499 {"md5": "96d8f79a5250b87c4c3700e0b7987610", "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)"}], "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-07-30 15:25:51.016164 2024-07-30 15:25:51.016174 fc81abe1-78f0-41ea-9065-4601ad21c4cd {"md5": "575ec0f83b3d0a3f4f01272eb44f23c6", "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", "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-07-30 15:25:51.186184 2024-07-30 15:25:51.186193 90d6de98-5fdb-499a-9494-7069cfd07ab6 {"md5": "ec3207fc0e52086f00cb72d98d16abc7", "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"}], "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-07-30 15:25:51.277866 2024-07-30 15:25:51.277875 6bfa48b7-e112-48c5-a078-1412348749b7 {"md5": "19ce83a049337ac2affc436dd25081d4", "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"}], "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-07-30 15:25:51.376225 2024-07-30 15:25:51.376233 4920d4c0-f6a9-4465-8cce-a839408690d5 {"md5": "3aff89321bb874d1eb2ffbb078c76e8b", "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", "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-07-30 15:25:51.458029 2024-07-30 15:25:51.458035 f375fa46-50a4-4e3d-84c2-84d07c030f4e {"md5": "6923b7fa9fcc240de53821ce3bf162b4", "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", "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-07-30 15:25:51.557532 2024-07-30 15:25:51.55754 a865f259-d740-4c79-bf1c-ec23601eaeed {"md5": "4dc9f3b9fb7b2e050e5f0fb3e7b8fbaa", "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", "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-07-30 15:25:51.639685 2024-07-30 15:25:51.639693 6f4f5493-27e8-4345-8411-286579f3f69e {"md5": "e4dd038bee08a84de6449ef7216b413c", "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", "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-07-30 15:25:51.738637 2024-07-30 15:25:51.738642 6549eb41-d17e-4fdb-a0e2-8229e7a9b600 {"md5": "90cf9ae3fa8bae175a3ca84acec6bdf8", "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", "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-07-30 15:25:51.831178 2024-07-30 15:25:51.831187 f83254fd-5ccc-4e1f-8a18-ffd3d0ee19fd {"md5": "fab65aba87115a2584f6a99fef4e2827", "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", "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-07-30 15:25:51.932327 2024-07-30 15:25:51.932335 207aa658-bd65-4521-9c50-d2e5bd8a0fde {"md5": "feda2451907f2ab4db81dde20d4a4250", "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", "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-07-30 15:25:51.986149 2024-07-30 15:25:51.986152 56c9cee2-7722-43b1-8be1-44662719969e {"md5": "a308af870b685bceceb34f492115562d", "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"}], "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-07-30 15:25:52.048608 2024-07-30 15:25:52.048613 e0ce105b-6613-47e8-90c8-743e924efa9b {"md5": "5b4fea04ccd23f969ef7f60fa6c07fa0", "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", "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-07-30 15:25:52.21938 2024-07-30 15:25:52.219388 ea606c23-c548-4266-bd80-2753f8add46f {"md5": "d8822c4636ad758cd2c7fe30c3d1c5ad", "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", "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-07-30 15:25:52.302044 2024-07-30 15:25:52.302052 cbbcc472-5a41-477d-92af-72c20cfca5b0 {"md5": "c4cb418473cb8544dd82c857ce40350b", "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", "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-07-30 15:25:52.406633 2024-07-30 15:25:52.406643 6beb778d-c87e-4969-a5c6-c885470f6f65 {"md5": "09b8548f643963087757203cf61096dc", "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", "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-07-30 15:25:52.5051 2024-07-30 15:25:52.505109 d8a10cdb-2f55-497d-821e-e162b592a40b {"md5": "b8213d2912e6ca8bed70df7b197bc366", "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"}], "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-07-30 15:25:52.592127 2024-07-30 15:25:52.592135 f9b347dd-4d07-44e6-867c-b0750c5ccacf {"md5": "f9b9d60f4560e81a56e813238fbb20fb", "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", "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-07-30 15:25:53.223625 2024-07-30 15:25:53.223634 9513dd2b-5efb-4e6f-a07a-79408fc6d6a3 {"md5": "362a8ceff5927e8df0b0e40ef6490cc5", "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", "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-07-30 15:25:52.686199 2024-07-30 15:25:52.686209 307995d2-b608-44ef-bfc3-a7c8793532f7 {"md5": "a7d725634dfea4769b53f183707fc6c3", "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"}], "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-07-30 15:25:52.776347 2024-07-30 15:25:52.77636 c3213d04-ad80-4ddb-9539-48363e991fb9 {"md5": "5d33c42bf690b23814192be41c47da69", "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", "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-07-30 15:25:52.89307 2024-07-30 15:25:52.893079 9ce3f91d-1d88-4811-a078-f5644e024870 {"md5": "d0aabb8c53fced44ef8b576ca8f323b8", "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"}], "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-07-30 15:25:52.983561 2024-07-30 15:25:52.98357 854c123b-2553-4d2c-9c1c-a4267e590194 {"md5": "9ade28729ef9b6b5ab912b63c65b3b8f", "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", "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-07-30 15:25:53.053463 2024-07-30 15:25:53.05347 ae0bbcb0-a079-4a71-ba25-6bed3fce6550 {"md5": "9f8279872edf6274276ca347415a8170", "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", "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-07-30 15:25:53.141768 2024-07-30 15:25:53.141779 2f292f8f-3f0d-41c8-9b0a-bb98b6ab92bd {"md5": "7c5b1c7d2ba5048ccac44d8a75683538", "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", "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-07-30 15:25:53.308807 2024-07-30 15:25:53.308816 8eeda9e4-f355-4f61-ad0f-180cb39d7c8f {"md5": "ad40900a12f6ac64d498fd54ea290f74", "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)"}], "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-07-30 15:25:53.405386 2024-07-30 15:25:53.405394 b8b01d3f-51b0-48c7-ab51-0add55710eef {"md5": "6ed3a8d1fde65ffd650e63ed0dcd453f", "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"}], "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-07-30 15:25:53.498994 2024-07-30 15:25:53.499002 32256d20-997d-4cc4-b2ad-dad3ebc2af1a {"md5": "e39333079ad40734ed26c12f0c3dd7ce", "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", "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-07-30 15:25:53.581165 2024-07-30 15:25:53.581173 6e6091de-d25c-4538-bbdb-74bcffa06530 {"md5": "da3d469ac48d64726e0a3e5037cca0de", "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", "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-07-30 15:25:53.666647 2024-07-30 15:25:53.666657 de6ba32f-0d44-4be6-a432-bd4d0fc22884 {"md5": "a46ed8ceb98d0d5857ca5ab78aa716a5", "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", "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-07-30 15:25:53.748105 2024-07-30 15:25:53.748113 4a171396-e358-42b6-b3f6-55e8a5a73ef9 {"md5": "5ba79d6481bfaa65bfb27de642a57742", "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", "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-07-30 15:25:53.825562 2024-07-30 15:25:53.82557 cabdcfeb-28db-4cae-b587-29ac5a65a7d0 {"md5": "b461064fb15af4a6907b499f909e6733", "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", "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-07-30 15:25:53.908124 2024-07-30 15:25:53.908133 0b4ec242-f598-4f01-b3f3-425e5c8ec683 {"md5": "afcf7dd23dc4231a9eefcc7305dc78c4", "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"}], "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-07-30 15:25:54.011365 2024-07-30 15:25:54.01137 3867218b-6832-4682-8550-1afffc045eaf {"md5": "d322a3994fd1b8f6b9c0b4b5c97232d6", "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"}], "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-07-30 15:25:54.071385 2024-07-30 15:25:54.071393 ccc43863-734c-4dd2-9db1-d1d29e8d926b {"md5": "39d89397fa48b1c38e63f75ba38a5a14", "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", "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-07-30 15:25:54.149234 2024-07-30 15:25:54.149242 0fa0b1cf-5645-4c84-84bd-653fea90cff1 {"md5": "f131d1671c85deb87a4a1dd5fe730937", "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", "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-07-30 15:25:54.235362 2024-07-30 15:25:54.235373 b56d79b0-dfeb-4c22-bdc0-4d6a950ad3fe {"md5": "5b7f622589cdf192978f2c30d42f0813", "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", "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-07-30 15:25:54.333016 2024-07-30 15:25:54.333027 96142c1b-cf9e-41d6-9faa-87a2085edfd4 {"md5": "e25603cb8a21a2eb00a604d5c81efbcc", "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", "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-07-30 15:25:54.424692 2024-07-30 15:25:54.424698 5d794bd4-44ce-40a6-9463-81c6d4d97466 {"md5": "95b06843d26858441c5d947ca088d45e", "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", "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-07-30 15:25:54.500449 2024-07-30 15:25:54.500457 a91ca9a9-4219-4553-ad45-99d07f36d544 {"md5": "afc303246e5a385fd884c9c7b5a12510", "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"}], "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-07-30 15:25:54.97679 2024-07-30 15:25:54.976799 67839ab8-5709-4a50-be17-28a57b65bbaf {"md5": "36add1130792f974295d5ed37166b35b", "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", "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-07-30 15:25:54.586431 2024-07-30 15:25:54.586439 327aff59-b607-487d-94fc-3339c14d8d23 {"md5": "5b72184c7432ff0e3ec90abd7c9136f8", "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", "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-07-30 15:25:54.674639 2024-07-30 15:25:54.674647 c63153cd-3674-4fe8-9121-363737fd73bb {"md5": "f8836328524ec117f76aac15e41632ae", "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", "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-07-30 15:25:54.790241 2024-07-30 15:25:54.790248 4b4fab6a-0ae0-4109-94e6-328f598c097d {"md5": "52433090b89ae3721c358338e3b52648", "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"}], "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-07-30 15:25:54.896637 2024-07-30 15:25:54.896646 edcef286-e2be-43a1-9e74-579db555c0bd {"md5": "b63d4ad8482140f526e8b282d7ed8727", "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"}], "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-07-30 15:26:08.440313 2024-07-30 15:26:08.440321 1bcb7f75-7e60-454d-8946-aafa0ef48724 {"md5": "53b6d71095072384454390ee7be877e3", "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", "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-07-30 15:25:55.054014 2024-07-30 15:25:55.054016 59331986-eda2-4543-940d-e79674da807b {"md5": "823d5cb2b22e5999266c5d4228382d78", "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"}], "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-07-30 15:25:55.130866 2024-07-30 15:25:55.13087 989f2e6f-b250-4e8f-a22a-9cbc3d8aaeec {"md5": "4f6c09038b245b073eba977f1117517f", "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"}], "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-07-30 15:25:55.20961 2024-07-30 15:25:55.209616 66cac22e-84fa-4b35-9d43-9f81e31dd9aa {"md5": "599cac508e72b8972e21284983ac30aa", "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", "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-07-30 15:25:55.302701 2024-07-30 15:25:55.302709 c07625ce-1146-48c1-8c7e-270ac2dd31e9 {"md5": "0b0eac7dad6927431ea57d2822ee6c09", "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", "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-07-30 15:25:55.380526 2024-07-30 15:25:55.380535 802eb8a6-8c48-4b2e-a9b4-f55217c9be02 {"md5": "15df1110b08037a7ce2e49e306bf8379", "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", "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-07-30 15:25:55.471886 2024-07-30 15:25:55.471895 be0bbbdb-d412-4289-9a0f-ec8411442a91 {"md5": "2c44e3f88d870785bdc5333c14aaff5d", "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", "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-07-30 15:25:55.548956 2024-07-30 15:25:55.548966 476f6754-3cad-4fe9-9fbc-5dcb7df12bf9 {"md5": "5e0439aa928204e51e8eccef084ea386", "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", "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-07-30 15:25:55.632921 2024-07-30 15:25:55.63293 e99bd5d6-a84a-4bf7-9e35-708fdddf2e9a {"md5": "242a265e438b7af9e59e05047655ac28", "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"}], "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-07-30 15:25:55.719412 2024-07-30 15:25:55.719421 8ade31b9-a36e-4a12-8f55-a85c8212e95f {"md5": "e2ecb16cee56f32967197276f6d4fb63", "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"}], "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-07-30 15:25:55.81045 2024-07-30 15:25:55.810458 8e52be95-bb6a-47cb-bdb4-66de55275f7d {"md5": "03421b86a63dfce10e2019cf73216294", "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"}], "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-07-30 15:25:55.896653 2024-07-30 15:25:55.896662 ce0cabb1-4df2-4e5d-a691-e9bc00a512fe {"md5": "41ab63afa002aba90cf12ea9e579e799", "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", "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-07-30 15:25:55.975184 2024-07-30 15:25:55.975192 baf1913a-0831-4c6c-b191-193caea4c408 {"md5": "96be15fb7d9605a68393dbc569c45352", "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", "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-07-30 15:25:56.045845 2024-07-30 15:25:56.045848 a57c9c27-35ee-4312-ac96-d63c7bd90459 {"md5": "ff602362ff27a613903ffe491d4c274a", "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"}], "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-07-30 15:25:56.117135 2024-07-30 15:25:56.117143 2ab6fe99-716c-4eef-b356-c396c8e67502 {"md5": "e464072f8389db0b2749bdd403b24204", "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", "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-07-30 15:25:57.893188 2024-07-30 15:25:57.893198 d40da438-d024-4a23-98a1-a188afc62374 {"md5": "f10970493d6f041e925220503c5f8edc", "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", "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-07-30 15:25:56.211431 2024-07-30 15:25:56.21144 63db6f63-1566-4db5-bef6-f005270c0610 {"md5": "3b72a1ee21c2535c70699170c7e03ef7", "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", "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-07-30 15:25:56.297021 2024-07-30 15:25:56.297031 e1e4e944-0a0d-4708-8a55-ba9c3891bde6 {"md5": "a11e38f080397d23eb4aeb100520481c", "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"}], "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-07-30 15:25:56.397176 2024-07-30 15:25:56.397184 9935dcfb-9ad4-4546-9c05-aa5c1e48fbcd {"md5": "17e8ef34711edc869322fa24a9d4a609", "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", "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-07-30 15:25:56.49036 2024-07-30 15:25:56.490367 06bd433b-3eaf-4f97-b7bd-cb3d6573ab5e {"md5": "315d0723cf7c012b1227ebd40571ff10", "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", "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-07-30 15:25:56.574851 2024-07-30 15:25:56.574859 1c3e2da8-226d-487a-a5ae-7c5b0740246a {"md5": "133a8af7a26c3eeb20e99aa8a6695f19", "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", "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-07-30 15:25:56.662636 2024-07-30 15:25:56.662642 8c3fbc84-a33d-417d-b9a0-f240ef7522a1 {"md5": "6d11126fd50c56d86c7906911cbf2e71", "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", "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-07-30 15:25:56.759629 2024-07-30 15:25:56.759637 cb59b26e-1491-45e4-b9a6-1c074e50c3de {"md5": "170b9def51b6b887cd5e1a73c7a36ce2", "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", "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-07-30 15:25:56.846199 2024-07-30 15:25:56.846207 2f5e9ab9-8038-4998-928b-7a4247764d5e {"md5": "b36f45e106bc27ece4c84488113e1937", "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", "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-07-30 15:25:56.93041 2024-07-30 15:25:56.930418 f05e4a4d-a2ac-4065-ae58-76ac1eab395e {"md5": "fffc11e497e207e1a5434483a5787372", "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", "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-07-30 15:25:57.019418 2024-07-30 15:25:57.019428 1ac4a899-b4bb-478d-9f94-903fb36c8238 {"md5": "335217f5082e088b37a025c9f0fd1f01", "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", "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-07-30 15:26:00.055893 2024-07-30 15:26:00.055896 465f586d-2d92-4503-b0e1-91176047b5f7 {"md5": "ee14bab503242e51c3203d001e415ef6", "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", "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-07-30 15:25:57.097976 2024-07-30 15:25:57.097981 5c21ae2c-3ed0-4f95-9f6d-59df2d2dd9f1 {"md5": "dca0c4254cd84053c076afa7b920f75b", "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", "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-07-30 15:25:57.172374 2024-07-30 15:25:57.172379 61120bdb-ecbe-4b62-9b5c-09902af20372 {"md5": "a00cd33807bcc96689f99e75317008fe", "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", "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-07-30 15:25:57.239902 2024-07-30 15:25:57.239909 4d5c26c7-48ff-423d-bb1c-09f4b4a8f86d {"md5": "5b350f90fdccf698ff150b32acafb5c6", "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", "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-07-30 15:25:57.318934 2024-07-30 15:25:57.318942 c00be6b1-458c-470c-beb9-18367d5d6ed3 {"md5": "5d07f550938e6ac786d7fa8b10f5c797", "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"}], "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-07-30 15:25:57.400568 2024-07-30 15:25:57.400576 a832a120-ea38-42ad-a8d1-d1bc01130e98 {"md5": "1a1e961f275d24ce90fd25b04a7bc891", "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", "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-07-30 15:25:57.4722 2024-07-30 15:25:57.472208 c4bb15c5-7b79-417e-803a-82795b6a6846 {"md5": "8742a0db926d05a9b77d918e5c354dda", "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", "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-07-30 15:25:57.548198 2024-07-30 15:25:57.548207 0f6bb1b8-b8ea-45df-919c-9432bc1a4612 {"md5": "e5b67d4873d90ecb8eb02c9d84a3c89d", "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", "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-07-30 15:25:57.622381 2024-07-30 15:25:57.622389 ab9571ff-78d0-463a-af81-1ea58a10a5d3 {"md5": "0cc0f4e7e2f9c75cbf9bc43ee019ed52", "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"}], "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-07-30 15:25:57.721814 2024-07-30 15:25:57.721823 4198ec87-31f8-484f-b5a5-38a715431b77 {"md5": "0191aabc86572389a539a297fefb9d74", "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", "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-07-30 15:25:57.816151 2024-07-30 15:25:57.816156 11fcbf38-dc72-4684-82bb-0b232d74ba53 {"md5": "a33c09f93294f9035ebb86772e22403e", "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", "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-07-30 15:25:57.968255 2024-07-30 15:25:57.968264 80786e0a-88be-4165-a322-9d5785fd9943 {"md5": "817e80734ba3dc7ec42a95550f87bc8f", "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", "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-07-30 15:25:58.054898 2024-07-30 15:25:58.054908 ffd4d9d8-c5a7-40f6-aba5-ff0171bef946 {"md5": "3fee2d2cad9eb89b508fd6a4bf5151a5", "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", "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-07-30 15:25:58.126313 2024-07-30 15:25:58.126321 db4fae13-14a5-43a2-8baa-84bce0320a72 {"md5": "6e42b216e39e702d3022c25a85b82836", "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", "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-07-30 15:25:58.192623 2024-07-30 15:25:58.192631 fe90710c-c82e-4060-8673-d64c9f1b7d5f {"md5": "c714b6374083c4162445275e350b1556", "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", "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-07-30 15:25:58.262738 2024-07-30 15:25:58.262747 8242b262-39f7-468c-ba9f-db6b9e0cfb06 {"md5": "fa60935572e7367bb0e8b38e6cae52e0", "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"}], "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-07-30 15:25:58.337833 2024-07-30 15:25:58.337841 6f5f6e6a-7679-4fe4-8320-fd32a2147712 {"md5": "88ebd36a4b5de05e2dc8f7b7d6dd6652", "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"}], "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-07-30 15:25:58.42668 2024-07-30 15:25:58.426688 abda94b5-8f8d-4170-bf6a-30a61b6fcafe {"md5": "e8e9c028edb3cb0e60ecce28bcdbb6a1", "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", "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-07-30 15:25:58.507724 2024-07-30 15:25:58.507731 06376556-971f-4149-bd9d-cdf6d50956b0 {"md5": "c5569c6f91058583a185b8cc202c0068", "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"}], "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-07-30 15:25:58.583787 2024-07-30 15:25:58.583796 062c3766-6ba9-4c5c-a11f-b71361d595e1 {"md5": "de3845d301c083df208a300fd55d2f78", "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"}], "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-07-30 15:25:58.671807 2024-07-30 15:25:58.671818 bc1bce58-a694-422f-a6f0-5507ec210c1b {"md5": "946078f6f153d864ad27d0d8ffe36116", "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", "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-07-30 15:25:58.751681 2024-07-30 15:25:58.751688 28126654-0803-4fad-95be-792451e85aaf {"md5": "8640b0a6f1a2b05383187755441a8b53", "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", "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-07-30 15:25:58.838467 2024-07-30 15:25:58.838476 92539232-db07-4fa1-9be1-410602904557 {"md5": "d60726b9655956024986957000b7764f", "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"}], "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-07-30 15:25:58.923389 2024-07-30 15:25:58.923397 2fe6fad6-20e8-48e9-b625-dc1353589d2b {"md5": "c757e9d6f89a61b2583e52ae6ef681ea", "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"}], "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-07-30 15:25:59.008364 2024-07-30 15:25:59.008372 a0bfd11a-1a8c-434d-89de-ff1a74d849d0 {"md5": "5eced68b2a10186bfb541846d2c9f240", "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"}], "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-07-30 15:25:59.088363 2024-07-30 15:25:59.088372 6c5c2afc-269a-4c0d-9ea4-0b2dc77ffb40 {"md5": "4996187ac5eda32bb7435dbb71d0b0ff", "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é"}], "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": "FRBNF12043632", "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-07-30 15:25:59.166791 2024-07-30 15:25:59.1668 99eac78f-bf7f-46eb-9d21-5f02f8b9b200 {"md5": "7f44c703b98ed54dadeed0c75658aef7", "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"}], "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-07-30 15:25:59.231931 2024-07-30 15:25:59.231938 49982fea-707e-4890-aa6b-e85bbee2311a {"md5": "d53c6c9fd1b0171dc8a66765938ab695", "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"}], "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-07-30 15:26:01.428113 2024-07-30 15:26:01.428122 230c738a-4f3f-4002-b8a2-7bf4a03715e3 {"md5": "d53b3d89e2bc06c119ad43d42063866d", "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", "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-07-30 15:25:59.313701 2024-07-30 15:25:59.313716 601e0930-8951-4eec-afa6-f839f3288a47 {"md5": "d5ff025fdd0855b4c5a2a33e6fc43982", "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"}], "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-07-30 15:25:59.38869 2024-07-30 15:25:59.388696 560d9710-9591-4c1e-a060-9c7a76409635 {"md5": "d611a691a1854acac4412be4e67f8bae", "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"}], "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-07-30 15:25:59.467506 2024-07-30 15:25:59.46752 db5aa95c-d3fe-4160-98a0-453a512b75d2 {"md5": "742ad4eace2ec54c896650a20a8bc5e5", "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"}], "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-07-30 15:25:59.54638 2024-07-30 15:25:59.546388 749c825c-aad2-477b-bb3f-e38111b544b5 {"md5": "6e5b2e8345204b1f6240b2ee5e58ff50", "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"}], "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-07-30 15:25:59.618943 2024-07-30 15:25:59.61895 090ec8c4-9d41-4267-a28b-e5d8ad098415 {"md5": "cf62e83e4bdd6c38d80b076abd50e321", "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"}], "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-07-30 15:25:59.692436 2024-07-30 15:25:59.692449 eeffc59a-2200-4a36-83a2-773265b7cc0f {"md5": "e9890918c9073e6ea21f7ae4cd03ee31", "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"}], "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-07-30 15:25:59.776807 2024-07-30 15:25:59.776816 c280fca5-91fd-4dcb-8ca0-390256d6ab75 {"md5": "31e0f11578d8fb5e027a90ed39da39bf", "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"}], "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-07-30 15:25:59.867299 2024-07-30 15:25:59.867304 c0249521-f410-43d2-8300-b87a59e39614 {"md5": "a196599d659413b462972e82928b8c90", "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"}], "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-07-30 15:25:59.946613 2024-07-30 15:25:59.946622 9719efea-4d5c-4734-ab68-7b10c0dd2bec {"md5": "b65edcdfae717c7a02993d101fcc9494", "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"}], "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-07-30 15:26:00.119296 2024-07-30 15:26:00.119304 68d60ae4-580c-4a5d-9bee-212a4af3082b {"md5": "99038009dfdcc8001491f3fd3f5c4b69", "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"}], "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-07-30 15:26:00.194928 2024-07-30 15:26:00.194933 3365a170-1946-41fc-b043-44dc5caf7af9 {"md5": "b4e21ead7cd9dfd73d397d3df8db1f00", "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"}], "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-07-30 15:26:00.268808 2024-07-30 15:26:00.268817 4a20a358-58e6-4d99-8b15-c52d634f843f {"md5": "7e3b68f45e79e71061c365e00330413f", "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"}], "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-07-30 15:26:00.35903 2024-07-30 15:26:00.359038 99108e2f-5b41-4c73-ac12-6cfc516bc3a6 {"md5": "21d25644592b37de7619e82e822e0841", "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"}], "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-07-30 15:26:06.022972 2024-07-30 15:26:06.022981 1f26e04b-fc0c-46d3-95b8-8e6205f8e073 {"md5": "d8a342230d76f2586e0309df71f3c1bc", "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", "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-07-30 15:26:00.452212 2024-07-30 15:26:00.452223 b1740d74-1939-4a0b-b0b3-9359d5e5d681 {"md5": "7815af1a0078ea121c6a11b7a03c9ba1", "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"}], "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-07-30 15:26:00.527129 2024-07-30 15:26:00.527139 8dbb1b27-5fcd-4784-a03b-f8aa8501a081 {"md5": "919fadd91ed811a57dfe763c712ea21f", "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"}], "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-07-30 15:26:00.618031 2024-07-30 15:26:00.618042 c2905ffd-d999-4566-b3b5-5104e927aab6 {"md5": "fb0169a93b2d09af64ecd6646c18cf21", "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"}], "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-07-30 15:26:00.724968 2024-07-30 15:26:00.724978 e361a24f-c2a5-4535-8a8a-ad7e5bc76796 {"md5": "cda1ec910a3f8e89c9f08612c48d67de", "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"}], "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-07-30 15:26:00.806948 2024-07-30 15:26:00.806956 776b912d-ddf6-43d3-b672-2f60f04b4759 {"md5": "dae166cf551827c530b42ad7c4ebc4fd", "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", "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-07-30 15:26:00.883593 2024-07-30 15:26:00.883601 1a4aaf13-f51c-45d4-8356-47e4a62b7b3f {"md5": "eb820b3f3164a773667255374c0f831a", "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", "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-07-30 15:26:00.957253 2024-07-30 15:26:00.957261 46e4d063-bb68-42cc-bf02-abb28cff38df {"md5": "b1b59ea1c0109481e2a83242a98494a8", "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"}], "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-07-30 15:26:01.055727 2024-07-30 15:26:01.055732 72b5b3c9-a10d-44cc-99fc-4cf8330ef273 {"md5": "0d5c42e39a47211a9a3e9568823ff66d", "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"}], "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-07-30 15:26:01.141659 2024-07-30 15:26:01.141664 8493aca0-3f00-4826-b3e5-cf9501df147c {"md5": "b55466ba1f1522e8a24845780a974069", "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", "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-07-30 15:26:01.20979 2024-07-30 15:26:01.209793 5ee35c14-5f74-4ae1-b68d-b8a71e1efee6 {"md5": "d654131ba2e6a9e22901bbff4e53eb03", "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", "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-07-30 15:26:01.272453 2024-07-30 15:26:01.272461 0fd768be-6683-4d2c-9636-27739ba59de9 {"md5": "2df02eb20d3a130ac80cc18679ddff35", "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", "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-07-30 15:26:01.345858 2024-07-30 15:26:01.345866 3eed54de-7163-434a-b7f9-94f10c70b135 {"md5": "380d8a5be2e2f51f522c1b866f292c42", "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", "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-07-30 15:26:01.510552 2024-07-30 15:26:01.510559 1c973a0e-0b62-426d-b844-de18c72c39c4 {"md5": "e84a690ed4c98a8252d9aa14998f833a", "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", "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-07-30 15:26:01.601911 2024-07-30 15:26:01.602008 a0b6cdac-a6ce-45f2-a468-e681c09386df {"md5": "f56031d448105ba6174fd6bfcd784e70", "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", "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-07-30 15:26:01.686914 2024-07-30 15:26:01.686919 0216b051-4bca-42b5-a8d4-5f57ce5f00ef {"md5": "efd44e39f339e1b6afe5819a6774c7a5", "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", "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-07-30 15:26:01.754558 2024-07-30 15:26:01.754565 0be182c8-2b34-4201-bebe-e712ec5ba39c {"md5": "38381d3d1dc24562614937fce03a501b", "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", "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-07-30 15:26:01.825795 2024-07-30 15:26:01.825803 83a5974b-7568-4724-a8e5-607846b64fd3 {"md5": "b17ec25324a6b06d659de47e1ed7e752", "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", "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-07-30 15:26:01.906084 2024-07-30 15:26:01.906091 28f664d1-b2d3-4330-82ff-5aad27837a11 {"md5": "18f07ea99f1fd24ffd110084d15a9c8b", "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", "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-07-30 15:26:06.105577 2024-07-30 15:26:06.105586 21dc2629-8ff3-4937-a1e9-27a3eb95fb1c {"md5": "027114afbea2b62abe8292f139522ff5", "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", "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-07-30 15:26:01.998045 2024-07-30 15:26:01.998055 b636be04-d93e-49ef-a97a-af47e1896baf {"md5": "5b5d293ec9c95d2bec63bf659e7be5df", "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", "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-07-30 15:26:02.083627 2024-07-30 15:26:02.083636 6e8ac289-e08b-45b7-8904-05e1f4093a1f {"md5": "aaa6161b26eacea28dc2f7aeb50db80b", "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"}], "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-07-30 15:26:02.171042 2024-07-30 15:26:02.171052 91a2905a-82bb-4664-8919-4bfb0ebc015d {"md5": "eb5236400bfa052a9aaa9788bec4ce38", "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"}], "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-07-30 15:26:02.250245 2024-07-30 15:26:02.25025 80d6fe9b-df0e-4b33-b922-193e4dcc9c55 {"md5": "569eaf1e040e78a15ef513107733ae66", "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", "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-07-30 15:26:02.330651 2024-07-30 15:26:02.330659 bf88674a-9b82-40ad-9d0e-266493958b40 {"md5": "42c45343b02e91dfb8a311db571f38c3", "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", "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-07-30 15:26:02.420587 2024-07-30 15:26:02.420652 a0b39681-68c7-40bc-b138-437b717987dd {"md5": "e0ad4eb740e775b957265e9101a7f34b", "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", "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-07-30 15:26:02.499997 2024-07-30 15:26:02.500007 d495dc8d-c0ec-42a0-bc52-c258c707102c {"md5": "ba6a80f7745afd535fb1fc2a9125c76b", "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"}], "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-07-30 15:26:02.589552 2024-07-30 15:26:02.589561 b0d9e902-fa51-4a33-9200-04b8467d6689 {"md5": "cee82cd39201749c09f1b34fa1e7deff", "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"}], "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-07-30 15:26:02.681522 2024-07-30 15:26:02.681531 3ca51dae-f21e-4c91-9f76-903ee6694592 {"md5": "9b2f6aa18a4939d1a6eb6099eebf43b0", "pid": "279307519", "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/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-07-30 15:26:02.763877 2024-07-30 15:26:02.763886 de618ce9-fa95-4b42-9138-9c2280862667 {"md5": "cebc8ea337be0469624c98e14718681b", "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", "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-07-30 15:26:06.203734 2024-07-30 15:26:06.203743 019c34fe-63b8-4ccf-8c11-89825d2806a0 {"md5": "73fb4c850629fb861791aed80b74c4f1", "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", "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-07-30 15:26:02.858378 2024-07-30 15:26:02.858388 f99fe099-fe29-4c2d-8cd2-60daa1ed53e0 {"md5": "5bf027716bbf2f9a715b2aabce45fdf4", "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"}], "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-07-30 15:26:02.95415 2024-07-30 15:26:02.95416 6a58946b-bc69-45f5-acdb-43b194565612 {"md5": "dad5de1bd7db50552ea06034298e3ed0", "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"}], "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-07-30 15:26:03.055779 2024-07-30 15:26:03.055788 d4b2002a-216e-46cb-a7f6-909262f51040 {"md5": "624fef37141fb9687ad59e8015e16dbf", "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"}], "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-07-30 15:26:03.152503 2024-07-30 15:26:03.152512 f37dbbd3-d36e-45e2-962f-537e53211edb {"md5": "7e2902f11c241ea0e1f8cfce67bb6a43", "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", "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-07-30 15:26:03.234016 2024-07-30 15:26:03.234026 94fbecb2-cea2-4ebc-a296-7111cbb22c42 {"md5": "7c26ba7fce25d81f0da6a595c8f58c2d", "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"}], "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-07-30 15:26:03.297435 2024-07-30 15:26:03.297441 28a9f97b-735d-4b87-b17e-b76219759511 {"md5": "41349bfb141625a8e81df9a958903069", "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"}], "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-07-30 15:26:03.37533 2024-07-30 15:26:03.375337 3c95a413-6cb0-4575-847c-86432c3f4115 {"md5": "7890d1c5aad6d10ca21672978fba06aa", "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", "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-07-30 15:26:03.454916 2024-07-30 15:26:03.454923 830a8aaa-0f7f-4849-9d05-c9ed8649cd69 {"md5": "0beef821ed2bc9b63f4e8b634248fa1a", "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é"}], "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-07-30 15:26:03.54982 2024-07-30 15:26:03.549829 5b2e23d8-df0b-4eed-bf1a-5ef18383c85f {"md5": "83a0484c68c00cf5d1df429712ea2645", "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", "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-07-30 15:26:03.641978 2024-07-30 15:26:03.641986 6d0d6a74-c2d4-4649-91f9-ec6908c1882d {"md5": "4ee6247377d5ca16a5fa5eb57cbbd4dd", "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", "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-07-30 15:26:06.293111 2024-07-30 15:26:06.293119 b0c8ee92-1f82-431a-89bf-b353d806a4cd {"md5": "29c710f36d18cfc928897748cd91824d", "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", "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-07-30 15:26:03.723924 2024-07-30 15:26:03.723932 517dece9-614e-4be0-9fbd-33f6785e04d8 {"md5": "dde5602675fdcc92bfe37885c05dd149", "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)"}], "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-07-30 15:26:03.818446 2024-07-30 15:26:03.818455 b65338f5-0a16-4536-8613-2928ccc7d30d {"md5": "6d7b9a2c98294f7e14f09197d445ded6", "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", "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-07-30 15:26:03.908229 2024-07-30 15:26:03.908239 074bfbb8-61e6-42c2-90e0-5273a576d418 {"md5": "7fc4d9191dca4e023f01d26199a28050", "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", "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-07-30 15:26:03.989292 2024-07-30 15:26:03.9893 2dd23b48-6fdd-4c86-b9e2-81569d6c2dcc {"md5": "25fb882fe58f5329dc23ff22a90b619f", "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"}], "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-07-30 15:26:04.081705 2024-07-30 15:26:04.081714 db5cdb0b-1ae2-4fe8-b402-f0112b5bdcfc {"md5": "f689eda9d7d5d850d0433cc940471845", "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"}], "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-07-30 15:26:04.184294 2024-07-30 15:26:04.184303 b293adec-c0ca-4738-8822-ca334fc17256 {"md5": "4c37d4a5137e0d363ace919267cdac9a", "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"}], "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-07-30 15:26:04.269455 2024-07-30 15:26:04.269458 1c628b36-25b5-4f5c-a9ff-6af641e4b252 {"md5": "c151d9584e3037869db339c8b1fb387b", "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"}], "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-07-30 15:26:04.345503 2024-07-30 15:26:04.345511 dbce483f-db1a-466d-b8db-ac0fc99ce32c {"md5": "4ec4498bd3745f175daf5dc66954daf9", "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"}], "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-07-30 15:26:04.441045 2024-07-30 15:26:04.441054 60851668-b89f-4b28-814e-f60e2235ddcf {"md5": "b9df34441a3ac3718439a88c79ee422b", "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"}], "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-07-30 15:26:04.521757 2024-07-30 15:26:04.521764 fa4c6518-e405-4278-a1a3-f4aebeea2193 {"md5": "19495c6ffabc304640ca0ee562ee256a", "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"}], "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-07-30 15:26:06.347161 2024-07-30 15:26:06.347166 4e6639a7-5964-4716-b6fe-c8460927f84d {"md5": "7f3154a87336a1783eece2f8b45bc3ee", "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", "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-07-30 15:26:04.614284 2024-07-30 15:26:04.614294 dfebc2aa-a786-4de3-af50-e1d84988af5a {"md5": "c37df3ad430aeca2e75f4a0da9b8a6b1", "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"}], "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-07-30 15:26:04.717834 2024-07-30 15:26:04.717842 f492962c-4bad-4228-b3dd-7fa11d72f915 {"md5": "b09f9c7bbe6774d7cf63854f38e21ee2", "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"}], "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-07-30 15:26:04.804319 2024-07-30 15:26:04.804328 7651f5c9-5e7c-4b40-a07d-1ef425443527 {"md5": "835e4a4943ddc520ed2c27001f00b3e1", "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"}], "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-07-30 15:26:04.894437 2024-07-30 15:26:04.894473 ae3072f0-683d-4a76-9e2d-ee437de7e273 {"md5": "da39819a7365594def98b3272d50c736", "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"}], "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-07-30 15:26:04.983017 2024-07-30 15:26:04.983027 f7bb37c8-687f-4efe-86f7-c1d562e1d32a {"md5": "ac1b79a576bcf40367d77179cbaff032", "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"}], "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-07-30 15:26:05.068001 2024-07-30 15:26:05.06801 62d0d0a2-f960-415f-a7cb-f861141bc85a {"md5": "804e2a0e147ea852824ba25dd8e5583b", "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)"}], "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-07-30 15:26:05.166637 2024-07-30 15:26:05.166707 be5ae9e7-23df-476f-bbc6-ad9dcb310b48 {"md5": "c39c7ef05be8ffd35233707dee3317ba", "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"}], "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-07-30 15:26:05.267711 2024-07-30 15:26:05.267716 456ecd81-d5e0-4954-845b-d9658c118b51 {"md5": "394213a0c05d1601f9b372424240c404", "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)"}], "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-07-30 15:26:05.333508 2024-07-30 15:26:05.333512 3b859158-64ad-406b-a792-1fde048864e6 {"md5": "3c51e645defa7e0d2b5c05aedc514866", "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)"}], "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-07-30 15:26:05.409606 2024-07-30 15:26:05.409614 e9dfa9df-3882-433e-8e1a-4640b4579fc7 {"md5": "c312e98beaf0dc595b28b93b69e79359", "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", "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-07-30 15:26:05.49249 2024-07-30 15:26:05.492498 21ecf8d5-f6ff-4f04-949a-38b6d512a20c {"md5": "83ed31d4353b28d65c652cb2eec82311", "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"}], "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-07-30 15:26:05.58075 2024-07-30 15:26:05.580759 1ce376d5-87ab-4972-b822-0221f9a73620 {"md5": "129caa0ca7a8abffbb651b6a794a6f1a", "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"}], "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-07-30 15:26:05.665091 2024-07-30 15:26:05.665099 04ea21c3-613e-4b00-900a-a7285cc8be71 {"md5": "10708fb22e322305221b88aae9679cc7", "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"}], "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-07-30 15:26:05.756402 2024-07-30 15:26:05.75641 85d6aa25-60f3-4523-af14-649bdc816efa {"md5": "931d0fc3b6dec95094ce23eff52a7285", "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", "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-07-30 15:26:05.863523 2024-07-30 15:26:05.863531 0cb8a8af-37bf-4525-85eb-2d3155cccd18 {"md5": "73a0006594c2c57b99b0e086f6b33984", "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", "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-07-30 15:26:05.944383 2024-07-30 15:26:05.944392 c0b418a7-ffd2-4d12-a362-c1853e807f4b {"md5": "6e825d9d108548d15eba60e1ed742e3a", "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", "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-07-30 15:26:06.410996 2024-07-30 15:26:06.411004 b817d2a5-81d3-4509-a7b8-bcadf98f9258 {"md5": "21fa05e4beab38c36b7ba5fd3b9d1612", "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", "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-07-30 15:26:06.493419 2024-07-30 15:26:06.493426 fb63a569-d84b-4407-bdd1-de323031b012 {"md5": "afda38899704f4ea8fd5374deded51f2", "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", "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-07-30 15:26:06.57298 2024-07-30 15:26:06.572987 16266aa1-a004-4819-aec1-188e92c38cde {"md5": "0a4bf556928d97ee71b27a6d67075a3d", "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", "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-07-30 15:26:06.706954 2024-07-30 15:26:06.706957 ff1f6ce4-a99f-4e43-ab89-8b1992740011 {"md5": "e1a1d55c7cd3ea5a0d62695da91dd0e2", "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)"}], "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-07-30 15:26:06.758174 2024-07-30 15:26:06.758177 86d40eba-7953-492a-8cca-7f226814f6d0 {"md5": "869bf740c1d472cbfcc1c0d8efbbb32b", "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", "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-07-30 15:26:06.806513 2024-07-30 15:26:06.806516 8137efd9-e335-4620-987b-50da53f3b341 {"md5": "fc2eb32b4dde73eb8d8108abf48c5af7", "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"}], "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-07-30 15:26:06.870002 2024-07-30 15:26:06.870011 5c29a462-1226-40ed-932e-98efcadcc407 {"md5": "84e8b34a74670dcc39928a7c7a1947df", "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"}], "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-07-30 15:26:06.947902 2024-07-30 15:26:06.947911 f2a6b58d-d526-4ee2-8ee3-cdc594e4e8b8 {"md5": "da8b060ef6594b0aade2909909d46b6b", "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"}], "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-07-30 15:26:07.028752 2024-07-30 15:26:07.02876 dbd5714f-a55c-4ec9-8e2e-b8f6b1e7d69c {"md5": "d05f729d8e7946838bd0a35f0dd43ba3", "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", "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-07-30 15:26:07.136191 2024-07-30 15:26:07.136197 10cb6f77-2bd0-4e4e-9cd4-e1304fde6071 {"md5": "eeadd847244c13d79859930e74be5496", "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", "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-07-30 15:26:07.242115 2024-07-30 15:26:07.242126 9f842218-5416-4b4e-a911-e09fd3ffcd81 {"md5": "26a687868dad2bdad100691a833ce755", "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", "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-07-30 15:26:07.349079 2024-07-30 15:26:07.349083 83f25b6c-1822-4f79-b730-e79c03ee8140 {"md5": "d4ba77736e34e888a46b30866795a162", "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", "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-07-30 15:26:07.428291 2024-07-30 15:26:07.4283 d3f8ab37-af82-4b9d-9440-4e86f5e9f4d6 {"md5": "a517f79566453d72842ba6092863f3fe", "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)"}], "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-07-30 15:26:07.501396 2024-07-30 15:26:07.501405 b2a11909-5b27-486f-95fa-a77bbeef81b5 {"md5": "aeec90e5df3a1df7c3f59c9f820747e3", "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", "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-07-30 15:26:08.381317 2024-07-30 15:26:08.38132 939f8be0-a91f-403e-8b8b-ea6cc6f5982f {"md5": "46a293a5a59bfaab076233d257abdefb", "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", "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-07-30 15:26:07.580956 2024-07-30 15:26:07.580965 f22f55a4-d8f7-477b-8fe7-c6ad6e5d1698 {"md5": "cf4c8be0e8ced0e99f7e5e776d146a93", "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", "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-07-30 15:26:07.688646 2024-07-30 15:26:07.688657 7005aa87-2f5b-493f-ab71-955357409cf8 {"md5": "a8da2696d1bbd0d7939bb4468d942aef", "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", "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-07-30 15:26:07.797934 2024-07-30 15:26:07.797941 9d7ae98b-bc29-425a-b267-03498e159ecb {"md5": "613bde2a3d6f73ee24472f0095eefbdf", "pid": "278747264", "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/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-07-30 15:26:07.949807 2024-07-30 15:26:07.949816 1c04610a-063a-4ef5-ad65-e7f54587a82a {"md5": "6fabf89a9335394b7d0f447143db04ce", "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", "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-07-30 15:26:08.026771 2024-07-30 15:26:08.02678 4f2e7ab0-d7aa-4f62-877b-10aa212524be {"md5": "46ca6b28b31d9dc8050f506a879f6b4d", "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", "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-07-30 15:26:08.102447 2024-07-30 15:26:08.102457 fa15b710-0615-498f-9819-a3a2aeadc3c3 {"md5": "4372416c60eeaa8cf0ea894d4d75c015", "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", "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-07-30 15:26:08.199264 2024-07-30 15:26:08.199273 4990c1c2-600c-43af-a66e-555953197fb9 {"md5": "515cd3b4953a0250eb90fd7f55a63de9", "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", "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-07-30 15:26:08.287574 2024-07-30 15:26:08.287583 69f10e61-e6ff-4c55-8f42-2cb6dc4eeefc {"md5": "bc711de906c7b2f3fc63f30c67974c53", "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", "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-07-30 15:26:08.525337 2024-07-30 15:26:08.525348 bd1ba29b-3aaa-4996-a7da-cb70d65ecc3f {"md5": "7b35c525e4b00ae097c088822b6f380e", "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", "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-07-30 15:26:08.630238 2024-07-30 15:26:08.630246 d1f1cb49-a96e-405e-91f3-947ccc018303 {"md5": "57c7a63142038db34d3c5beb28cf4838", "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", "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-07-30 15:26:08.721682 2024-07-30 15:26:08.721691 832d11bb-6514-4af8-b43c-5ea24b4a04d7 {"md5": "f9aa4e2583625e8bb903c12ee3a4ee53", "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", "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-07-30 15:26:08.804344 2024-07-30 15:26:08.804352 ded8d8d2-0c27-428c-ab4a-6f13b1c95980 {"md5": "f8fdfec1062cbadc6535ce016a24596e", "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"}], "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-07-30 15:26:08.902441 2024-07-30 15:26:08.90245 3d3d52ee-ea7a-4dcd-bf01-b492fb9c0c02 {"md5": "c8b78eaea81c4a3af3504fc34fb3b9d0", "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", "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-07-30 15:26:08.986522 2024-07-30 15:26:08.986531 cc34359a-57ce-4e5b-a989-d627c800da70 {"md5": "89b5aba3511ec9b81e43f31312c8bd1f", "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)"}], "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-07-30 15:26:09.084892 2024-07-30 15:26:09.084902 690dca4d-41e5-4a37-9761-6f80f047f4b7 {"md5": "92e04af0771c86f7702308e1e63d4c25", "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)"}], "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-07-30 15:26:09.1691 2024-07-30 15:26:09.169108 25a13dc8-6f88-49a4-9fa6-c94f9f22356f {"md5": "6fe4e760eceafb062855943dfd7d210b", "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"}], "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-07-30 15:26:09.265117 2024-07-30 15:26:09.265124 9d1feb0f-882a-409b-b8ba-f1607671858a {"md5": "aeb48bb63b16eecdf3021b325e700507", "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"}], "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-07-30 15:26:09.356037 2024-07-30 15:26:09.356044 2432f6b2-7fe1-482e-81c7-353bce9e256d {"md5": "fc746e1061326183b757e45b326b69f8", "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", "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-07-30 15:26:09.455948 2024-07-30 15:26:09.455958 39a13c16-7297-4bf5-b877-885cd7130b4c {"md5": "c1541d50a8ef7dbfdbdf095140f0d98a", "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", "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-07-30 15:26:10.149602 2024-07-30 15:26:10.149612 abc60ef0-c2eb-4ee4-bcb3-68633018bb1a {"md5": "d39ceba75755c74efd477c78b3622fe3", "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", "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-07-30 15:26:09.533095 2024-07-30 15:26:09.533103 a567e6c4-612d-475f-8878-c4f5bc54c088 {"md5": "7e33c6d471bf089390a16fdb13182237", "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"}], "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-07-30 15:26:09.61548 2024-07-30 15:26:09.615489 5bb68700-2029-40bc-92c9-cf5316590509 {"md5": "9c5e18eafc1ca88ec019bc5732458a34", "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)"}], "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-07-30 15:26:09.696333 2024-07-30 15:26:09.696341 92a9b8b9-7e13-4e8e-9cdd-ce413664998e {"md5": "529f0fb6c0a33458097e63851e0cafc5", "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", "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-07-30 15:26:09.786125 2024-07-30 15:26:09.786133 1c1083b3-cbf3-46c3-9f5e-c4083ec56feb {"md5": "4449cdb5237fbb1fabea0fc202453d4a", "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", "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-07-30 15:26:09.881067 2024-07-30 15:26:09.88158 5c842977-d35a-4001-bd56-998828a7fac3 {"md5": "81a8e25eef39b9bb80f93b0eef05a18b", "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", "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-07-30 15:26:09.977391 2024-07-30 15:26:09.977397 e9200162-e4c6-4ea3-9a0c-7755831e07fe {"md5": "ca9b02b8c91a75ceeabc3bf9513b6812", "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", "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-07-30 15:26:10.05455 2024-07-30 15:26:10.054557 4b506c31-5cda-4d03-af54-d391866185e7 {"md5": "a19822bd260cf4fbea774299bc47482d", "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", "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-07-30 15:26:10.25456 2024-07-30 15:26:10.254567 e77fdd83-e3b5-4d38-b744-6af3f19d43fd {"md5": "5a79a1bcd1b94bae6c4beba430bd61ef", "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"}], "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-07-30 15:26:10.339709 2024-07-30 15:26:10.339716 85ac0017-341d-4a75-bbf2-855a55994c22 {"md5": "f496ddee3004bfcc89f50a9f859e1b6e", "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", "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-07-30 15:26:10.422835 2024-07-30 15:26:10.422844 17b87805-2a8b-438e-9ec5-c708b32eed22 {"md5": "dc87ca4f72e10f72b7ac867884ec2a28", "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", "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-07-30 15:26:10.473597 2024-07-30 15:26:10.473605 c6fc3c43-1685-4079-8aa9-862518223887 {"md5": "613b09abea43dbbace3533c316aead8d", "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", "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-07-30 15:26:10.560562 2024-07-30 15:26:10.56057 44bcaf64-0b23-47ca-9390-0a3ce4f34f72 {"md5": "e779d1299ed64746bbb5d45c3cc3a322", "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", "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-07-30 15:26:10.643413 2024-07-30 15:26:10.643424 587d5b3a-58e5-4361-bd31-730bcfe13d80 {"md5": "089ae533798d535f9756d3fcb6da69b2", "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"}], "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-07-30 15:26:10.724433 2024-07-30 15:26:10.724442 ced01398-7043-45b9-83d4-7e9b4debc4c0 {"md5": "2e1fcbce669e3ad6c309f33ed89472fc", "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"}], "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-07-30 15:26:10.818399 2024-07-30 15:26:10.818408 782e1b4d-1fbc-4409-9305-073bc1018361 {"md5": "98f2b57ede1ad9ab924eea46aa2ade8f", "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", "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-07-30 15:26:10.900823 2024-07-30 15:26:10.900832 98a0435a-184f-45bf-85d7-4cacf1983362 {"md5": "d5a36dd46b6d95bde51685661d705e7d", "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"}], "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-07-30 15:26:10.976459 2024-07-30 15:26:10.976467 13e849b9-155d-4ec3-8523-a743339b9d27 {"md5": "e4df2a3ec11f5c2698592851563b8d63", "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", "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-07-30 15:26:11.056887 2024-07-30 15:26:11.056895 065087a9-9cd5-43b1-82fd-f843cd149f81 {"md5": "53123327ce99334639e5dcfed6ae16f6", "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", "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-07-30 15:26:11.14369 2024-07-30 15:26:11.1437 75c3b716-3f12-493e-9445-a0382b06b5be {"md5": "269c66bbb9f9da25163684456443295f", "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", "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-07-30 15:26:11.233997 2024-07-30 15:26:11.234006 59c271b4-bfb4-4950-bc4c-c9e702eaf5d7 {"md5": "0791b71176ba22124a40662a162009a9", "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"}], "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-07-30 15:26:11.327514 2024-07-30 15:26:11.327524 f0794b21-f3ce-442f-b4b3-78e292775e32 {"md5": "e1ab5d45734db66af0536e7208afeec7", "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"}], "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-07-30 15:26:11.419509 2024-07-30 15:26:11.419518 70a1f372-350d-43e3-9b59-68f60f3a0913 {"md5": "46a8cac946148fc195e0ed202f255406", "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"}], "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..6b25e60c 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-07-30 15:25:23.72375 2024-07-30 15:25:23.723755 cidref 027225798 R rec 111d371c-93e5-49aa-923b-31498c21c2bf +2024-07-30 15:25:23.833267 2024-07-30 15:25:23.833273 cidref 027242250 R rec 9c013228-87fa-4390-a667-b3f1f9f2e676 +2024-07-30 15:25:23.886516 2024-07-30 15:25:23.886522 cidref 027246159 R rec e82338d3-db72-428d-a165-dbd67020fdd7 +2024-07-30 15:25:23.976556 2024-07-30 15:25:23.976565 cidref 027248062 R rec 1f6a7576-a2be-4727-98ac-160994c6a3df +2024-07-30 15:25:24.060962 2024-07-30 15:25:24.061005 cidref 027255468 R rec 31627713-6ee5-42fc-afa4-31494a15b78b +2024-07-30 15:25:24.159683 2024-07-30 15:25:24.159693 cidref 027256138 R rec c97d7b90-dbe4-4095-ad8e-5b1345608be0 +2024-07-30 15:25:24.215516 2024-07-30 15:25:24.215527 cidref 027257045 R rec 5b1e7a0e-f9b1-4482-9733-cf42afd75ea3 +2024-07-30 15:25:24.302095 2024-07-30 15:25:24.302105 cidref 027268284 R rec b343c3a7-5e8d-40cd-8edb-061ab6a5a04d +2024-07-30 15:25:24.396651 2024-07-30 15:25:24.396667 cidref 027274144 R rec f618048b-ba24-4692-81b4-1f11341bb105 +2024-07-30 15:25:24.489517 2024-07-30 15:25:24.489532 cidref 02727991X R rec f064c496-8c4e-435c-a71d-464a30909695 +2024-07-30 15:25:24.582202 2024-07-30 15:25:24.582213 cidref 02728607X R rec 3c496a51-a572-4118-a468-c014ac1e04ec +2024-07-30 15:25:24.664609 2024-07-30 15:25:24.664621 cidref 027292916 R rec 76e314ab-2ec3-45af-9856-ea32fca4d236 +2024-07-30 15:25:24.742088 2024-07-30 15:25:24.742098 cidref 027302148 R rec 36eccc17-c8ce-49de-a6ae-66c78612837d +2024-07-30 15:25:24.83378 2024-07-30 15:25:24.833788 cidref 027308359 R rec 5521714f-4ce0-4985-bef3-d11a349dfc27 +2024-07-30 15:25:24.924827 2024-07-30 15:25:24.924842 cidref 027317145 R rec a268904e-47c2-4294-b886-8ffe2bb5d2c9 +2024-07-30 15:25:25.020224 2024-07-30 15:25:25.020239 cidref 027323552 R rec 7ad997f1-8bf1-4913-ac72-be3a2619c431 +2024-07-30 15:25:25.121191 2024-07-30 15:25:25.121201 cidref 027328589 R rec c13c5458-317e-4abe-98ff-885b7b6573b4 +2024-07-30 15:25:25.226627 2024-07-30 15:25:25.226633 cidref 027330176 R rec d186b0de-0801-4038-b7dc-b873917364ea +2024-07-30 15:25:25.310484 2024-07-30 15:25:25.310494 cidref 027333930 R rec 48d0855b-2553-41fe-9490-71bff4f4ef06 +2024-07-30 15:25:25.380333 2024-07-30 15:25:25.380567 cidref 027336913 R rec af3dd42e-1c95-451c-bd31-c035dd7f719c +2024-07-30 15:25:25.473513 2024-07-30 15:25:25.473525 cidref 027345203 R rec 128b51c5-27ab-4709-b0e1-23941d476a6b +2024-07-30 15:25:25.570832 2024-07-30 15:25:25.570844 cidref 027355152 R rec 709e586b-e34a-43fb-b118-7949ecfe8dd1 +2024-07-30 15:25:25.683796 2024-07-30 15:25:25.683808 cidref 027355578 R rec 43f173b4-19ab-43d5-a362-823bb477ca4e +2024-07-30 15:25:25.776857 2024-07-30 15:25:25.776869 cidref 027355985 R rec 9baef12a-4e4d-4294-b806-c2ed4805d37c +2024-07-30 15:25:25.873896 2024-07-30 15:25:25.873906 cidref 027356493 R rec 2ca60807-c66d-4573-85cd-023865d9ed4b +2024-07-30 15:25:25.962104 2024-07-30 15:25:25.962117 cidref 027365697 R rec fac959cc-7231-4cbe-912b-320b27103fdc +2024-07-30 15:25:26.055252 2024-07-30 15:25:26.055263 cidref 027368661 R rec c161ecc6-393a-4b2f-9ba1-aa2028155514 +2024-07-30 15:25:26.130958 2024-07-30 15:25:26.130996 cidref 027374351 R rec 0b49e536-774a-45a9-846e-fcce349549fd +2024-07-30 15:25:26.206107 2024-07-30 15:25:26.206117 cidref 027376982 R rec c06552bc-c7e9-44f8-b283-55c2cf825d79 +2024-07-30 15:25:26.262476 2024-07-30 15:25:26.262482 cidref 027391396 R rec babd7275-a680-477c-8b82-4ebdc40d5d84 +2024-07-30 15:25:26.340547 2024-07-30 15:25:26.340558 cidref 027396924 R rec b65b3438-23b2-482f-8aed-98692daefd37 +2024-07-30 15:25:26.426765 2024-07-30 15:25:26.426775 cidref 02739770X R rec 86b94631-7734-4b1b-81b9-ced42ee557ac +2024-07-30 15:25:26.51104 2024-07-30 15:25:26.511051 cidref 027415252 R rec 8eff7037-fc5f-4620-a5a8-f663efffb443 +2024-07-30 15:25:26.595114 2024-07-30 15:25:26.595124 cidref 02743141X R rec 5bc6ec5e-6f92-4f8e-865c-a50b592d5f43 +2024-07-30 15:25:26.700382 2024-07-30 15:25:26.700395 cidref 027431444 R rec 47766db0-fb1f-4af6-91f6-e8531909c4b0 +2024-07-30 15:25:26.806717 2024-07-30 15:25:26.806728 cidref 027436683 R rec a834ed78-3732-45bf-8c01-527eefcc19f8 +2024-07-30 15:25:26.898582 2024-07-30 15:25:26.898593 cidref 027455092 R rec 910cd757-142e-44c6-a132-33b065e0056c +2024-07-30 15:25:26.998498 2024-07-30 15:25:26.998514 cidref 027461599 R rec f0ce2e89-2226-4d37-9be1-c57be935ab02 +2024-07-30 15:25:27.089219 2024-07-30 15:25:27.089232 cidref 027478033 R rec 9c3a3f6b-fa17-45f3-a944-5d13627d0863 +2024-07-30 15:25:27.182427 2024-07-30 15:25:27.182443 cidref 027481352 R rec 6ffb775e-d0bf-47ca-918c-f2f1340a4b14 +2024-07-30 15:25:27.274392 2024-07-30 15:25:27.274398 cidref 027486753 R rec f721e7c2-3dc8-4b75-81a8-a59cc9617af6 +2024-07-30 15:25:27.343806 2024-07-30 15:25:27.343817 cidref 027493032 R rec c2664555-2d96-4b70-88bd-b1790fd6db59 +2024-07-30 15:25:27.423404 2024-07-30 15:25:27.423419 cidref 027495213 R rec 8c5cbd91-ef16-42e2-89d8-1cfc2647a8e0 +2024-07-30 15:25:27.529466 2024-07-30 15:25:27.529471 cidref 027495922 R rec a3086bde-e8a6-4a78-af89-5a24c6ccbd88 +2024-07-30 15:25:27.650574 2024-07-30 15:25:27.650584 cidref 02750333X R rec 83a938c7-6c4f-4c5e-9aac-8599f69d70ea +2024-07-30 15:25:27.803241 2024-07-30 15:25:27.803254 cidref 027506762 R rec 5d711f96-e836-4083-ae58-993a35984700 +2024-07-30 15:25:27.931682 2024-07-30 15:25:27.931693 cidref 027516652 R rec 96aa18d4-a8ee-41dc-853d-897f28bf1bc9 +2024-07-30 15:25:28.035174 2024-07-30 15:25:28.035184 cidref 027519546 R rec 662236b7-f94f-4ba1-b3f4-cbe26fc0c2b9 +2024-07-30 15:25:28.144286 2024-07-30 15:25:28.144297 cidref 027519686 R rec cbf35688-ef5c-419b-8f0a-434e09937191 +2024-07-30 15:25:28.252364 2024-07-30 15:25:28.252376 cidref 027528820 R rec 502afb27-b197-4fac-b3c8-34cdeada6619 +2024-07-30 15:25:28.332886 2024-07-30 15:25:28.332897 cidref 027532488 R rec f59b7a82-9164-4b76-9e5b-a267d9d6bc7c +2024-07-30 15:25:28.428184 2024-07-30 15:25:28.428195 cidref 027545822 R rec 82e5a0a7-1774-4f1c-8b33-80e8caf902c7 +2024-07-30 15:25:28.53665 2024-07-30 15:25:28.53666 cidref 027564878 R rec 8352327d-d95f-48c4-b393-ab8e72c1475c +2024-07-30 15:25:28.642174 2024-07-30 15:25:28.642187 cidref 027578747 R rec 7102826e-2873-42a8-8993-1908d8a8ed6d +2024-07-30 15:25:28.746055 2024-07-30 15:25:28.746069 cidref 02758254X R rec 788f2706-8b03-41c8-a0be-323529c67530 +2024-07-30 15:25:28.847654 2024-07-30 15:25:28.847659 cidref 027613275 R rec e1bd19d4-588a-465c-9e5c-7270d3227fda +2024-07-30 15:25:28.952838 2024-07-30 15:25:28.952849 cidref 027616908 R rec 30c7d85b-5506-4a6a-a02b-90ed67ecc8e7 +2024-07-30 15:25:29.048755 2024-07-30 15:25:29.048766 cidref 027636461 R rec 331ec6e9-2e4b-4d69-a1d8-ea62ec78bc22 +2024-07-30 15:25:29.137472 2024-07-30 15:25:29.137483 cidref 027674118 R rec 5486aabd-2952-40e0-9f8c-01a9146c2e8c +2024-07-30 15:25:29.22602 2024-07-30 15:25:29.226069 cidref 027674150 R rec 4acb3e17-cc63-46bb-a3b9-986e65a72445 +2024-07-30 15:25:29.32778 2024-07-30 15:25:29.327786 cidref 027682226 R rec a4648470-c182-4819-b55a-9f3bfb946f43 +2024-07-30 15:25:29.409872 2024-07-30 15:25:29.409888 cidref 027688836 R rec 17f2c105-4213-4caa-8046-43bc0175bd66 +2024-07-30 15:25:29.502483 2024-07-30 15:25:29.502496 cidref 027694852 R rec b962fb31-bd3c-4798-92cc-f54431704ead +2024-07-30 15:25:29.581404 2024-07-30 15:25:29.581417 cidref 027710025 R rec f7b562e3-e312-47b6-8c9b-e7f29adfcb57 +2024-07-30 15:25:29.687766 2024-07-30 15:25:29.687782 cidref 027727327 R rec 59be2f34-4eb2-4ca7-838c-5b566fe4e59c +2024-07-30 15:25:29.791419 2024-07-30 15:25:29.791431 cidref 027727521 R rec c62c3c93-a120-4f16-abb1-efd0265cbb58 +2024-07-30 15:25:29.892309 2024-07-30 15:25:29.892322 cidref 027729044 R rec fe4e6c86-1ba3-4988-afc4-e549de7a111a +2024-07-30 15:25:29.988204 2024-07-30 15:25:29.988217 cidref 027735893 R rec dc210967-66b9-430b-8201-8a0be29acbf4 +2024-07-30 15:25:30.070809 2024-07-30 15:25:30.070822 cidref 027756580 R rec 089cd352-470b-4a5c-9058-ad1a595b5ec7 +2024-07-30 15:25:30.157137 2024-07-30 15:25:30.157153 cidref 027756653 R rec 7df39301-2ade-4ba1-82db-1c779b0123c1 +2024-07-30 15:25:30.269124 2024-07-30 15:25:30.269136 cidref 027759547 R rec 88e9bd20-2423-4eb9-9a49-97b7e958d960 +2024-07-30 15:25:30.370987 2024-07-30 15:25:30.370994 cidref 027789551 R rec c2cf5393-3bcc-44ac-b535-bceed091dae3 +2024-07-30 15:25:30.460471 2024-07-30 15:25:30.460487 cidref 027793575 R rec 399c209a-5ac7-4b75-b5e3-02aa817352d5 +2024-07-30 15:25:30.549932 2024-07-30 15:25:30.549947 cidref 027808394 R rec 74aff20b-432c-43ed-813a-cb3b5184b309 +2024-07-30 15:25:30.643634 2024-07-30 15:25:30.64365 cidref 027808629 R rec 0e1bb1b5-8916-4e83-a30e-72d0e3f460d3 +2024-07-30 15:25:30.74533 2024-07-30 15:25:30.745347 cidref 027826171 R rec ecb285a3-361a-4d57-8fdf-657ab38ad034 +2024-07-30 15:25:30.858954 2024-07-30 15:25:30.85897 cidref 027845214 R rec 78d1f152-b062-4853-b32c-4ff2aabd6ca8 +2024-07-30 15:25:30.98202 2024-07-30 15:25:30.982031 cidref 02785082X R rec 147a8102-0fd7-49c4-8bda-d810f3e90940 +2024-07-30 15:25:31.059963 2024-07-30 15:25:31.059973 cidref 027856097 R rec 373835ff-895f-4ebe-9468-37b5d23f6a99 +2024-07-30 15:25:31.165899 2024-07-30 15:25:31.165904 cidref 02785714X R rec 65ee6d5f-701d-4e72-84a3-c0657f83d192 +2024-07-30 15:25:31.254983 2024-07-30 15:25:31.254997 cidref 027867277 R rec a1e3dd2a-8ee8-4936-bd14-e2d2a0bf456b +2024-07-30 15:25:31.358578 2024-07-30 15:25:31.358594 cidref 02786765X R rec 54ef51bc-1b4e-4d71-8566-a477512f8836 +2024-07-30 15:25:31.43906 2024-07-30 15:25:31.439098 cidref 027868338 R rec 4f5e9375-5385-4ac9-832c-6756aea76909 +2024-07-30 15:25:31.524737 2024-07-30 15:25:31.524749 cidref 027870510 R rec ab6df434-0ce8-4c0b-9ccb-e86528eb1fd5 +2024-07-30 15:25:31.619823 2024-07-30 15:25:31.619838 cidref 027873196 R rec 0ac7bffe-b32e-4af3-8057-f58ca1126c90 +2024-07-30 15:25:31.72423 2024-07-30 15:25:31.72424 cidref 02787608X R rec 38aaa645-0f19-463f-a4f5-c6459bbcc53a +2024-07-30 15:25:31.819672 2024-07-30 15:25:31.819685 cidref 027883094 R rec 21059c8e-add3-4a32-af35-eba2583a73e2 +2024-07-30 15:25:31.911 2024-07-30 15:25:31.91101 cidref 02788547X R rec 502d1c9c-ed70-4a93-a3d2-86cd7fcb6367 +2024-07-30 15:25:32.011801 2024-07-30 15:25:32.011815 cidref 027885496 R rec 3a01890b-4757-4863-a3a5-62f938215a49 +2024-07-30 15:25:32.101026 2024-07-30 15:25:32.101038 cidref 027887960 R rec c5502b42-1035-47f8-8541-d791d4dba76d +2024-07-30 15:25:32.200146 2024-07-30 15:25:32.200162 cidref 027908380 R rec 21651584-9108-488b-b309-17d1cc5d5124 +2024-07-30 15:25:32.297176 2024-07-30 15:25:32.297187 cidref 027910210 R rec d25e3722-1e17-4ece-a8b7-eb4297b03188 +2024-07-30 15:25:32.401978 2024-07-30 15:25:32.401989 cidref 027915115 R rec b6fa3922-1c40-4c22-b5d7-2532756a9da3 +2024-07-30 15:25:32.458401 2024-07-30 15:25:32.458412 cidref 027920216 R rec 4c654a0c-b2fa-404d-a81f-71c45fb32cf5 +2024-07-30 15:25:32.538447 2024-07-30 15:25:32.538459 cidref 027940373 R rec 64c87b25-ca54-4af8-92e4-bd58450ed0c7 +2024-07-30 15:25:32.613447 2024-07-30 15:25:32.613461 cidref 027944492 R rec 69a1e76f-472d-4b39-ae06-aa1f3af7005d +2024-07-30 15:25:32.703878 2024-07-30 15:25:32.703894 cidref 027950808 R rec 1c7a146c-071b-4104-9dcd-e2b73ff1f760 +2024-07-30 15:25:32.789746 2024-07-30 15:25:32.789759 cidref 027963675 R rec 2ee157b9-0b9e-466d-93d6-9653dbe66241 +2024-07-30 15:25:32.883216 2024-07-30 15:25:32.883232 cidref 028060563 R rec 6c0e9e25-b9bd-4bbe-8f57-068f4dbbea2c +2024-07-30 15:25:32.97116 2024-07-30 15:25:32.971173 cidref 028071867 R rec 04cd3ecb-e2f2-41e0-8859-0fd3f8257325 +2024-07-30 15:25:33.054338 2024-07-30 15:25:33.054349 cidref 028071964 R rec dc5b2c1b-bbf1-43ea-bf98-e5725ef42e62 +2024-07-30 15:25:33.144801 2024-07-30 15:25:33.144812 cidref 02807842X R rec db60da73-4b99-42dd-baf0-948ab9ff371a +2024-07-30 15:25:33.221795 2024-07-30 15:25:33.221804 cidref 02810160X R rec cb7b8d13-858f-40a5-8445-f03b5cccae1b +2024-07-30 15:25:33.293533 2024-07-30 15:25:33.293543 cidref 028140362 R rec 97f3feb9-c21d-49c4-a635-17caa3747891 +2024-07-30 15:25:33.383527 2024-07-30 15:25:33.383536 cidref 028148800 R rec 90e280e5-8bfb-4aa3-b7d0-a9e7db2a039a +2024-07-30 15:25:33.452258 2024-07-30 15:25:33.452264 cidref 028211162 R rec 4c0a5d14-b2c3-4df2-948b-b422d73d6cf2 +2024-07-30 15:25:33.523592 2024-07-30 15:25:33.523603 cidref 028225090 R rec 8fd4d0dc-4fe4-4c35-b3e8-2f75326cc4b4 +2024-07-30 15:25:33.595042 2024-07-30 15:25:33.595054 cidref 028225767 R rec adae490a-0055-441f-9351-c8774b20874d +2024-07-30 15:25:33.68254 2024-07-30 15:25:33.682551 cidref 028233506 R rec 85bf7526-3cc8-424e-9a7c-372d9729c9d8 +2024-07-30 15:25:33.759675 2024-07-30 15:25:33.759687 cidref 028262220 R rec 95d0db28-8fb8-4359-900d-ce0293507e67 +2024-07-30 15:25:33.835456 2024-07-30 15:25:33.835465 cidref 028287169 R rec b7fa50a6-5622-4112-ad8c-dfe0ff213f28 +2024-07-30 15:25:33.910466 2024-07-30 15:25:33.910477 cidref 028359380 R rec ecc24097-667e-4d2c-80e2-9ac963708a5c +2024-07-30 15:25:33.996006 2024-07-30 15:25:33.996018 cidref 028431855 R rec a87dec4b-bed3-45fc-8dae-c80aab32e5bf +2024-07-30 15:25:34.074441 2024-07-30 15:25:34.074453 cidref 028433890 R rec 69094fa9-3306-45bf-9dda-049e0d294a89 +2024-07-30 15:25:34.155286 2024-07-30 15:25:34.155298 cidref 028497244 R rec 7d80ce3a-ec3e-4561-8df3-77acd0940288 +2024-07-30 15:25:34.234038 2024-07-30 15:25:34.234049 cidref 028517180 R rec e0e86252-667d-4850-8a63-2011cde363c8 +2024-07-30 15:25:34.320025 2024-07-30 15:25:34.320037 cidref 02852019X R rec 8b2eb360-695f-44ae-813d-d06fe87f55e1 +2024-07-30 15:25:34.406198 2024-07-30 15:25:34.406209 cidref 028549082 R rec 376eec2f-22c1-4947-932b-794365a645e3 +2024-07-30 15:25:34.49534 2024-07-30 15:25:34.495349 cidref 028631609 R rec e0eaaee9-540f-494c-96ca-99e7aaca7efa +2024-07-30 15:25:34.567941 2024-07-30 15:25:34.567953 cidref 028637720 R rec 003f8a99-d8c8-4d0b-b231-5f013c014c77 +2024-07-30 15:25:34.642517 2024-07-30 15:25:34.642529 cidref 028675274 R rec dac18a0c-cf1a-4fe3-bdfc-e0eb3e7f9552 +2024-07-30 15:25:34.718243 2024-07-30 15:25:34.718253 cidref 028676661 R rec 270ab6a7-997f-42dd-b984-4a84ddd7d0c5 +2024-07-30 15:25:34.796344 2024-07-30 15:25:34.796356 cidref 02868589X R rec 3d80a029-55fd-4266-ac2b-c46691395e20 +2024-07-30 15:25:34.888755 2024-07-30 15:25:34.888767 cidref 028698703 R rec 80d30230-d6fa-486f-9176-0aba590582e4 +2024-07-30 15:25:34.972086 2024-07-30 15:25:34.972097 cidref 028700139 R rec 0e2fac75-20ce-43df-b48e-26ad90a8f351 +2024-07-30 15:25:35.052102 2024-07-30 15:25:35.052114 cidref 028700171 R rec 7f851841-708b-4d56-a62b-871bae07bc6a +2024-07-30 15:25:35.139967 2024-07-30 15:25:35.139978 cidref 028725387 R rec 8a80544f-7fdf-456f-a0f1-584aa9494050 +2024-07-30 15:25:35.212597 2024-07-30 15:25:35.212608 cidref 028898338 R rec 3936e573-da64-4ac3-9e76-11c186f3690b +2024-07-30 15:25:35.299714 2024-07-30 15:25:35.299724 cidref 028909917 R rec 4b5bca0e-53e3-4f68-92c2-ab43f1182634 +2024-07-30 15:25:35.388811 2024-07-30 15:25:35.388822 cidref 028910737 R rec 334b6dac-c75a-45c7-b6b4-7f5af5a27269 +2024-07-30 15:25:35.475614 2024-07-30 15:25:35.475733 cidref 028912098 R rec c256ba88-9b1b-4b38-a512-253139efea25 +2024-07-30 15:25:35.539615 2024-07-30 15:25:35.539626 cidref 028929098 R rec 780f3394-185d-479f-b9b7-7fbaf82d6069 +2024-07-30 15:25:35.609892 2024-07-30 15:25:35.609902 cidref 028973631 R rec 493ec5e0-0525-4346-8cdc-84a454099cd2 +2024-07-30 15:25:35.672442 2024-07-30 15:25:35.672451 cidref 02900294X R rec 00d09fdf-016f-45af-828b-efc1d72ebdec +2024-07-30 15:25:35.739484 2024-07-30 15:25:35.739494 cidref 02904197X R rec 6bf5a3f1-b986-4cca-a645-2aeb3d2ecc53 +2024-07-30 15:25:35.816762 2024-07-30 15:25:35.816772 cidref 029042046 R rec 2506f084-ac06-4c90-ba44-a25fcc0262cd +2024-07-30 15:25:35.891621 2024-07-30 15:25:35.891631 cidref 029042186 R rec 8dcc56d6-f6f5-4b14-b29c-e622e5f4679b +2024-07-30 15:25:35.970611 2024-07-30 15:25:35.970622 cidref 02905026X R rec 23cb43b6-2186-4791-8910-50676f0cca03 +2024-07-30 15:25:36.050478 2024-07-30 15:25:36.050488 cidref 029182387 R rec 53f6b72c-4880-40b8-9d01-808974ed9c58 +2024-07-30 15:25:36.126838 2024-07-30 15:25:36.126849 cidref 029205794 R rec 5b180764-eff0-4377-b731-f60e7d1e4326 +2024-07-30 15:25:36.219871 2024-07-30 15:25:36.219881 cidref 029342147 R rec e969febe-3ffd-4284-8bae-ee709acf3518 +2024-07-30 15:25:36.289874 2024-07-30 15:25:36.289885 cidref 029344212 R rec cc699676-1649-461d-8aa1-20225e400ed0 +2024-07-30 15:25:36.367886 2024-07-30 15:25:36.367896 cidref 029347254 R rec 1fc5c17c-c540-413f-9146-25e47cfd1584 +2024-07-30 15:25:36.441411 2024-07-30 15:25:36.441421 cidref 029349230 R rec 8d037b66-d372-4dd6-8881-bebf72ad365f +2024-07-30 15:25:36.518497 2024-07-30 15:25:36.518502 cidref 029404614 R rec 2c1358cb-23ca-4ff5-a836-54af82246c31 +2024-07-30 15:25:36.564738 2024-07-30 15:25:36.56475 cidref 029410312 R rec b1314403-2ead-4152-9ca0-79c9c0250b3d +2024-07-30 15:25:36.63682 2024-07-30 15:25:36.636831 cidref 029575168 R rec 7bd2cfb7-5f08-4e1c-9dbd-872bb9ca3c5e +2024-07-30 15:25:36.703795 2024-07-30 15:25:36.703807 cidref 029652308 R rec 5ae6b4e3-a4aa-4d56-8d72-ab72d0b5beda +2024-07-30 15:25:36.785973 2024-07-30 15:25:36.785984 cidref 029726190 R rec acd81796-1065-4bd4-a004-0c9006600fa8 +2024-07-30 15:25:36.859522 2024-07-30 15:25:36.859534 cidref 029753090 R rec 8e2bacb2-fc29-4774-b7c8-f669d37ff3b4 +2024-07-30 15:25:36.941476 2024-07-30 15:25:36.941487 cidref 029755999 R rec 9311b57d-4feb-4009-9476-e6ff4f376b3c +2024-07-30 15:25:37.030069 2024-07-30 15:25:37.030075 cidref 029795826 R rec 508e982e-e3f7-4309-9998-fe8c0ecc82bc +2024-07-30 15:25:37.081193 2024-07-30 15:25:37.081205 cidref 029888026 R rec 5d2b30b2-9598-46d0-b49e-03c3ae1eafbc +2024-07-30 15:25:37.165635 2024-07-30 15:25:37.165647 cidref 029918006 R rec a255cb3c-1e82-427e-b337-7b1470f7ee89 +2024-07-30 15:25:37.244011 2024-07-30 15:25:37.244021 cidref 029933730 R rec 7c260641-cf4c-4840-be9f-0ee8b9909fd0 +2024-07-30 15:25:37.310595 2024-07-30 15:25:37.310604 cidref 029958857 R rec f28bd38d-3202-4a61-81d2-6564f859d727 +2024-07-30 15:25:37.381352 2024-07-30 15:25:37.381365 cidref 03001235X R rec 4ae9022e-262b-4fb7-80a1-66e004ed4029 +2024-07-30 15:25:37.465909 2024-07-30 15:25:37.465921 cidref 030017653 R rec 1901b92f-779d-471f-8e30-073ea0e73558 +2024-07-30 15:25:37.550981 2024-07-30 15:25:37.550987 cidref 030055849 R rec 6b3d573d-64f3-4c0c-81a1-b4e1d0b2c9db +2024-07-30 15:25:37.597406 2024-07-30 15:25:37.597417 cidref 030086469 R rec 34867833-c441-4126-88b0-5b191b6126ed +2024-07-30 15:25:37.661314 2024-07-30 15:25:37.661326 cidref 030128145 R rec a9722ebd-b28e-457e-afbf-cfc94c93e517 +2024-07-30 15:25:37.736124 2024-07-30 15:25:37.736136 cidref 03018729X R rec b677a498-7045-4859-9b51-cc05f232a594 +2024-07-30 15:25:37.887374 2024-07-30 15:25:37.887383 cidref 030219884 R rec 3c814e36-b98a-4145-9068-851abc6546f3 +2024-07-30 15:25:37.988887 2024-07-30 15:25:37.988898 cidref 030336880 R rec 568cb3eb-8fab-4d60-80f6-882fad2b5379 +2024-07-30 15:25:38.085138 2024-07-30 15:25:38.085149 cidref 030423724 R rec 1e35b48d-760f-4baf-9de5-9caf049d96fb +2024-07-30 15:25:38.178814 2024-07-30 15:25:38.178825 cidref 030435056 R rec 0ff31c9f-d33e-4e5c-8788-e8ff922f36b4 +2024-07-30 15:25:38.267606 2024-07-30 15:25:38.267615 cidref 030642841 R rec 0c39ba03-1ebb-4846-bc86-224d3081ffd6 +2024-07-30 15:25:38.376234 2024-07-30 15:25:38.376244 cidref 030768381 R rec 998d86b9-8aae-4679-9645-a1b9dc4e743b +2024-07-30 15:25:38.460449 2024-07-30 15:25:38.460461 cidref 03082401X R rec f84be5d3-ce89-4840-91c8-6750e26d31f3 +2024-07-30 15:25:38.550096 2024-07-30 15:25:38.550108 cidref 030904218 R rec fab1918c-941c-40f5-a2cc-462f44558ff3 +2024-07-30 15:25:38.614705 2024-07-30 15:25:38.614715 cidref 030909120 R rec e873034e-29b6-46d7-a3cc-b2a6d36050a0 +2024-07-30 15:25:38.686462 2024-07-30 15:25:38.686473 cidref 030924987 R rec 05f78512-2feb-49bc-9ff1-efca0ffe14b7 +2024-07-30 15:25:38.782392 2024-07-30 15:25:38.782401 cidref 030975689 R rec df6c0549-915f-4e6b-a988-48174d4fe309 +2024-07-30 15:25:38.868873 2024-07-30 15:25:38.868885 cidref 031018866 R rec 68fd3b8a-a116-4699-a518-e94144ef8fdb +2024-07-30 15:25:38.952401 2024-07-30 15:25:38.952412 cidref 031067956 R rec 4b4685fa-4b02-428b-8414-05790fc296a4 +2024-07-30 15:25:39.051433 2024-07-30 15:25:39.051445 cidref 031208495 R rec 2b2531fe-80d5-4c65-aba7-cd044a5f142a +2024-07-30 15:25:39.142823 2024-07-30 15:25:39.142834 cidref 031380107 R rec 894a87b6-e59a-4b7b-acc3-1cc3a1e43b08 +2024-07-30 15:25:39.22455 2024-07-30 15:25:39.224561 cidref 031531121 R rec 4716d90f-51f6-4276-aa62-ecd47248a099 +2024-07-30 15:25:39.299584 2024-07-30 15:25:39.299594 cidref 03166010X R rec 781a1b6c-18c8-423b-877d-05d33a92f5c7 +2024-07-30 15:25:39.385963 2024-07-30 15:25:39.385973 cidref 031819877 R rec 69d03d0e-9382-4ebf-bd42-ec898112e7b4 +2024-07-30 15:25:39.465663 2024-07-30 15:25:39.465674 cidref 032027524 R rec 7212af4e-5192-4566-9252-bc1955f8d1c9 +2024-07-30 15:25:39.547613 2024-07-30 15:25:39.547623 cidref 032184034 R rec d231d960-616c-4fd8-9e95-19a772d05b11 +2024-07-30 15:25:39.629517 2024-07-30 15:25:39.629527 cidref 032317468 R rec 8b3b2d7d-be0d-4715-95e2-fbdf54297bac +2024-07-30 15:25:39.71738 2024-07-30 15:25:39.717389 cidref 032324650 R rec 58f1b85d-2fd4-4c3b-855c-ea0490cf87bf +2024-07-30 15:25:39.801084 2024-07-30 15:25:39.801094 cidref 032324804 R rec fbcde980-89a9-4601-9b48-1b40cc77a200 +2024-07-30 15:25:39.89771 2024-07-30 15:25:39.897725 cidref 032370474 R rec a5567eb1-16c2-4695-8deb-688300636bf1 +2024-07-30 15:25:39.980197 2024-07-30 15:25:39.980242 cidref 03243782X R rec 8d98e4c3-ca53-4c70-b1b5-e6fcfe1331b6 +2024-07-30 15:25:40.060781 2024-07-30 15:25:40.060793 cidref 032493940 R rec 0bd19e03-826c-4f1c-b72e-00fbc84510af +2024-07-30 15:25:40.143484 2024-07-30 15:25:40.143495 cidref 032506929 R rec 28e5f3a3-8e0e-4fb7-b78e-4712b55d0a11 +2024-07-30 15:25:40.220665 2024-07-30 15:25:40.220675 cidref 03256953X R rec d86ddd2e-587a-493f-bb2f-ee119c415b21 +2024-07-30 15:25:40.305824 2024-07-30 15:25:40.305833 cidref 032675011 R rec a2afc23f-8f09-4fd9-afc8-94a8563c4867 +2024-07-30 15:25:40.381446 2024-07-30 15:25:40.381457 cidref 032709501 R rec 06be1c6f-0327-4bd2-9051-3787810508e1 +2024-07-30 15:25:40.453944 2024-07-30 15:25:40.453955 cidref 032916078 R rec b0e798c5-ce61-41ae-a851-459d9292e7fa +2024-07-30 15:25:40.542297 2024-07-30 15:25:40.542308 cidref 032978294 R rec 24033e44-0243-42cd-b5d3-817afea0ce3c +2024-07-30 15:25:40.62239 2024-07-30 15:25:40.622424 cidref 033125341 R rec fd18d830-ff4a-4474-900a-da21bd334db2 +2024-07-30 15:25:40.71341 2024-07-30 15:25:40.713421 cidref 033136831 R rec 954a7a5d-1366-497d-8695-49d369f0968e +2024-07-30 15:25:40.798532 2024-07-30 15:25:40.798545 cidref 033422605 R rec 9e6d661e-9f8f-45a0-a986-5088f26e4bc9 +2024-07-30 15:25:40.887046 2024-07-30 15:25:40.887057 cidref 033433763 R rec 3f34084a-bbe4-4547-b0cb-886590b9ffc6 +2024-07-30 15:25:40.973773 2024-07-30 15:25:40.973783 cidref 033642036 R rec 156d2654-8609-43e7-89ae-06e3a84c0de2 +2024-07-30 15:25:41.054865 2024-07-30 15:25:41.054895 cidref 033738653 R rec 66ba8ef6-3cd2-4356-b91f-85d72a87dd92 +2024-07-30 15:25:41.152545 2024-07-30 15:25:41.152556 cidref 03374033X R rec 9c0f4ab0-c645-44c7-ac4f-d24458852262 +2024-07-30 15:25:41.224323 2024-07-30 15:25:41.224339 cidref 033869235 R rec f1090b06-47a0-491f-9bd3-23be00ba521f +2024-07-30 15:25:41.306549 2024-07-30 15:25:41.306558 cidref 033895732 R rec f7dbb438-fc7f-47fd-a9e6-415d1057f09d +2024-07-30 15:25:41.390613 2024-07-30 15:25:41.390624 cidref 034054693 R rec bf8b464b-e6cf-4fd6-add9-89c42c69a09f +2024-07-30 15:25:41.495512 2024-07-30 15:25:41.495524 cidref 03405491X R rec ab3e662d-efe8-434d-9521-ba2014423f62 +2024-07-30 15:25:41.576883 2024-07-30 15:25:41.576916 cidref 034133704 R rec 9e981b85-a398-4f78-9750-e5b4b68d8bcb +2024-07-30 15:25:41.661043 2024-07-30 15:25:41.661049 cidref 034195688 R rec dd38f3f2-c7b0-4f6d-88d7-2a1d860daae0 +2024-07-30 15:25:41.727803 2024-07-30 15:25:41.727808 cidref 034254145 R rec ce178a05-cd23-45a2-9667-3ba71cd76c82 +2024-07-30 15:25:41.820555 2024-07-30 15:25:41.820565 cidref 034259910 R rec 8be05870-a8a3-467c-9256-e46d14e4f69a +2024-07-30 15:25:41.906704 2024-07-30 15:25:41.906719 cidref 034308695 R rec e8316426-a6b8-4381-a33c-56e9e7ab47a0 +2024-07-30 15:25:41.985802 2024-07-30 15:25:41.985813 cidref 034342230 R rec 372cc4c5-0217-406c-ab58-508547094975 +2024-07-30 15:25:42.070129 2024-07-30 15:25:42.07014 cidref 034566228 R rec d00e70ca-a2f8-42d9-a57c-1b5512c19539 +2024-07-30 15:25:42.167182 2024-07-30 15:25:42.167192 cidref 034591966 R rec dce08c0c-38c0-4768-bff8-863fa8226631 +2024-07-30 15:25:42.236744 2024-07-30 15:25:42.236753 cidref 034623574 R rec b4e1cc00-fe8b-4c7f-ad8f-9ef6437f85cc +2024-07-30 15:25:42.315465 2024-07-30 15:25:42.315474 cidref 034679391 R rec cadcc454-03fa-414c-a8cb-e1b39f558fe1 +2024-07-30 15:25:42.393206 2024-07-30 15:25:42.393218 cidref 034705384 R rec b947aee5-3874-428e-b3eb-243f36cc3257 +2024-07-30 15:25:42.473788 2024-07-30 15:25:42.473798 cidref 03472690X R rec 2da91095-b715-4e79-baa5-8e3b0d1dacc6 +2024-07-30 15:25:42.553165 2024-07-30 15:25:42.553178 cidref 034766995 R rec 97a5be84-4c03-4d74-91df-decea657d1fd +2024-07-30 15:25:42.634703 2024-07-30 15:25:42.634714 cidref 034781897 R rec 147a9d72-db2e-465f-83e3-3419e8309a82 +2024-07-30 15:25:42.71915 2024-07-30 15:25:42.719155 cidref 034857923 R rec f31a0a4c-2013-4126-a484-79fc8b435126 +2024-07-30 15:25:42.806832 2024-07-30 15:25:42.806843 cidref 034885420 R rec 3f9d12af-0ec1-4259-9ef9-16ae8251e3fd +2024-07-30 15:25:42.8917 2024-07-30 15:25:42.891715 cidref 034892710 R rec 7b8dbb69-a85a-4018-ba44-ce83199ff459 +2024-07-30 15:25:43.021761 2024-07-30 15:25:43.021773 cidref 034960848 R rec 66825811-fa9b-4634-8d24-06d5382eb803 +2024-07-30 15:25:43.121725 2024-07-30 15:25:43.121731 cidref 035061308 R rec e197e87a-a42d-458b-9f32-190b31ca3c7d +2024-07-30 15:25:43.200253 2024-07-30 15:25:43.200264 cidref 035095679 R rec 05df272d-4bbe-4448-9c93-f5354654b4e2 +2024-07-30 15:25:43.304731 2024-07-30 15:25:43.304741 cidref 035167734 R rec 0bcd57f6-2351-4f30-8be4-1c796fb08203 +2024-07-30 15:25:43.411972 2024-07-30 15:25:43.411983 cidref 035198222 R rec 3f7cd0a4-fa95-4435-ac1b-308a8560c846 +2024-07-30 15:25:43.515168 2024-07-30 15:25:43.515182 cidref 035260521 R rec e76d641a-6a8a-4be3-be68-7280a0ba1e55 +2024-07-30 15:25:43.601033 2024-07-30 15:25:43.601043 cidref 035461152 R rec c5997ac8-f642-4d92-9dd7-7719ec5e3fff +2024-07-30 15:25:43.689917 2024-07-30 15:25:43.689927 cidref 035486686 R rec 7654406e-cb91-40ad-af27-46e08b53c1ad +2024-07-30 15:25:43.764759 2024-07-30 15:25:43.764769 cidref 035527250 R rec 7b1ac99f-5b4b-4649-8a90-0e82950c5518 +2024-07-30 15:25:43.849257 2024-07-30 15:25:43.849507 cidref 035621664 R rec 437e3d39-ce9f-4393-8be8-f8f40f15ef1d +2024-07-30 15:25:43.928614 2024-07-30 15:25:43.928625 cidref 035634847 R rec e63e23b9-aa3b-4e9a-a4b6-3f864c6a3ef0 +2024-07-30 15:25:44.024248 2024-07-30 15:25:44.02426 cidref 035650532 R rec e4af5c68-e121-4d25-82f0-807d5f6f8466 +2024-07-30 15:25:44.123871 2024-07-30 15:25:44.123879 cidref 035658622 R rec 496f8bff-a844-4f2a-8982-c9407c7b8e8e +2024-07-30 15:25:44.208757 2024-07-30 15:25:44.208773 cidref 035724099 R rec 12d000b8-6608-4961-b545-6be1d46600db +2024-07-30 15:25:44.290674 2024-07-30 15:25:44.290684 cidref 050124315 R rec 61f61b9b-9714-4d79-b30a-3d09972f83f8 +2024-07-30 15:25:44.400574 2024-07-30 15:25:44.400589 cidref 050186647 R rec a938e510-ecac-4938-b475-af1794a414d7 +2024-07-30 15:25:44.485772 2024-07-30 15:25:44.485782 cidref 050220284 R rec 06a774d3-012f-451c-bb58-85b7cfd3a2df +2024-07-30 15:25:44.580192 2024-07-30 15:25:44.580202 cidref 050366157 R rec 9ede07e1-d8e8-48b8-abc1-5f0ad33a64e2 +2024-07-30 15:25:44.662215 2024-07-30 15:25:44.662226 cidref 05041870X R rec 3977dbd3-2cd6-4313-93a1-a1b6266b9a9a +2024-07-30 15:25:44.757808 2024-07-30 15:25:44.757813 cidref 050516760 R rec 00c1666b-2e61-4525-b2c8-5915f372d246 +2024-07-30 15:25:44.834631 2024-07-30 15:25:44.834644 cidref 050518526 R rec 77972218-b78b-4019-a378-15acf5bca508 +2024-07-30 15:25:44.935998 2024-07-30 15:25:44.936009 cidref 050534882 R rec 025e5f47-dff8-4c38-8469-19762f6972d2 +2024-07-30 15:25:45.023649 2024-07-30 15:25:45.023661 cidref 05056479X R rec e09c8480-0469-437c-bd97-7ee3ff566040 +2024-07-30 15:25:45.108836 2024-07-30 15:25:45.108849 cidref 050582453 R rec 4ed7c352-950a-4bfb-b3b7-73fcde994e08 +2024-07-30 15:25:45.208584 2024-07-30 15:25:45.208593 cidref 050602195 R rec 5530ba0f-1300-4c4e-9352-78894616bc22 +2024-07-30 15:25:45.29136 2024-07-30 15:25:45.291371 cidref 050627953 R rec c7be94e9-5ca0-4024-94b6-dae73eebbcb7 +2024-07-30 15:25:45.385188 2024-07-30 15:25:45.3852 cidref 050702858 R rec 1ed50490-b35c-4cd9-a1a0-9d82fdfc2ea7 +2024-07-30 15:25:45.475204 2024-07-30 15:25:45.475217 cidref 050764861 R rec c194042d-7d8b-4d05-82f3-27893380c303 +2024-07-30 15:25:45.561028 2024-07-30 15:25:45.561039 cidref 050773313 R rec d3531eb0-d49b-4ee6-b063-28a9b86925bb +2024-07-30 15:25:45.654678 2024-07-30 15:25:45.65469 cidref 050784005 R rec beb76ffd-09c9-40a5-8b17-4812a8003c22 +2024-07-30 15:25:45.743977 2024-07-30 15:25:45.743986 cidref 050808583 R rec 0d45b037-34b1-4129-9aa7-614375bba615 +2024-07-30 15:25:45.828292 2024-07-30 15:25:45.828297 cidref 050827405 R rec bb37ace7-01c2-4a7b-ae0c-a4f8fd50ec6b +2024-07-30 15:25:45.89821 2024-07-30 15:25:45.89822 cidref 052587207 R rec 07aecff2-2ca3-4b64-825c-c9833dd44c2d +2024-07-30 15:25:45.981497 2024-07-30 15:25:45.981509 cidref 052634833 R rec e9116085-cbd2-4ce3-89de-8ffc158ea17a +2024-07-30 15:25:46.08845 2024-07-30 15:25:46.088459 cidref 053469844 R rec 03a3ae58-1f49-4c5b-8948-b39a0c02ccdf +2024-07-30 15:25:46.187791 2024-07-30 15:25:46.187807 cidref 055308600 R rec eaf2c222-0732-410c-a6ab-7d713d25ac1f +2024-07-30 15:25:46.294513 2024-07-30 15:25:46.294522 cidref 059302208 R rec 98f58552-e5f6-4b3b-9a5c-763b25d85fbe +2024-07-30 15:25:46.387177 2024-07-30 15:25:46.387187 cidref 05930278X R rec 21c99fa9-e633-48f7-b9e9-dc0cc737df9e +2024-07-30 15:25:46.481407 2024-07-30 15:25:46.481417 cidref 059307374 R rec 3c9119c0-9638-4744-9d46-4a47e0ce21f0 +2024-07-30 15:25:46.581469 2024-07-30 15:25:46.581485 cidref 06082929X R rec eb3b09e0-4335-4ceb-b688-520e680ecda5 +2024-07-30 15:25:46.678497 2024-07-30 15:25:46.678508 cidref 06160738X R rec 46165325-8ee2-4366-af32-377676434673 +2024-07-30 15:25:46.814171 2024-07-30 15:25:46.814199 cidref 075000504 R rec ac23cbc1-937b-4bf1-b274-da9df1544103 +2024-07-30 15:25:46.884946 2024-07-30 15:25:46.884957 cidref 077057589 R rec 660f077e-a776-4f0e-a0cf-f1f51d2c29a0 +2024-07-30 15:25:46.968456 2024-07-30 15:25:46.968472 cidref 077060377 R rec 7342dccd-a986-4e49-a373-8423f51fc4ed +2024-07-30 15:25:47.068921 2024-07-30 15:25:47.068934 cidref 077062809 R rec dd421d48-9e8a-43b9-b16c-5f4a8ad8b38d +2024-07-30 15:25:47.168711 2024-07-30 15:25:47.168725 cidref 077075757 R rec 984a9d75-1a8c-4893-8bf1-598a6480f576 +2024-07-30 15:25:47.265573 2024-07-30 15:25:47.265588 cidref 077088883 R rec d9158a70-db52-414a-8077-889ca0e39d17 +2024-07-30 15:25:47.372762 2024-07-30 15:25:47.372774 cidref 077091035 R rec a341448e-2f2b-4884-afda-913dad56fe5f +2024-07-30 15:25:47.451234 2024-07-30 15:25:47.451244 cidref 077397827 R rec 92d8847f-25e3-41b1-9d16-856a00a05433 +2024-07-30 15:25:47.52578 2024-07-30 15:25:47.525791 cidref 077937007 R rec 03a631ed-6ee6-4c07-ab37-7a206f267fb9 +2024-07-30 15:25:47.601404 2024-07-30 15:25:47.601412 cidref 078974089 R rec 35a1b59c-46c4-492a-8ce7-e4160f9511b8 +2024-07-30 15:25:47.675761 2024-07-30 15:25:47.675771 cidref 079180043 R rec b37639b3-e60d-438d-99dc-4a623598ac0c +2024-07-30 15:25:47.768789 2024-07-30 15:25:47.7688 cidref 081665660 R rec 76f0962a-746a-400d-8feb-e0387212badf +2024-07-30 15:25:47.86796 2024-07-30 15:25:47.867967 cidref 083421467 R rec 9d4f932d-17f8-4515-b037-a191eda78791 +2024-07-30 15:25:47.940854 2024-07-30 15:25:47.940859 cidref 083972684 R rec 368c1391-8775-4bf2-b555-c1ce44e5e12e +2024-07-30 15:25:48.01865 2024-07-30 15:25:48.018662 cidref 08523611X R rec 838c190c-c06c-4541-a43d-c202ff2478ad +2024-07-30 15:25:48.100052 2024-07-30 15:25:48.100064 cidref 087834979 R rec 9a2b9184-1506-496b-b56d-01f8440d6946 +2024-07-30 15:25:48.20187 2024-07-30 15:25:48.201881 cidref 087960621 R rec e5c0187b-a751-4779-a629-89160db0a142 +2024-07-30 15:25:48.279742 2024-07-30 15:25:48.279753 cidref 092468594 R rec 648613fa-f239-410e-b6c1-32d24fa3a2d9 +2024-07-30 15:25:48.366532 2024-07-30 15:25:48.366544 cidref 092468950 R rec 74b48369-acb6-41ab-bae9-9b5f7954f5c9 +2024-07-30 15:25:48.445219 2024-07-30 15:25:48.445231 cidref 101481071 R rec 664bcdc2-8de9-4649-ae8e-2af8bbc494cf +2024-07-30 15:25:48.54158 2024-07-30 15:25:48.541591 cidref 110905687 R rec 59a33ec2-15fd-4173-a333-dc0233227059 +2024-07-30 15:25:48.622099 2024-07-30 15:25:48.62211 cidref 111597153 R rec 4d524a5f-468f-4062-bda5-4b53dba6b520 +2024-07-30 15:25:48.71271 2024-07-30 15:25:48.712721 cidref 112539750 R rec 1b848d97-193c-4962-839c-354620524a1a +2024-07-30 15:25:48.800442 2024-07-30 15:25:48.800452 cidref 115898840 R rec 83068f00-5c76-435c-a2e2-2c2860fb999a +2024-07-30 15:25:48.886314 2024-07-30 15:25:48.886319 cidref 118419722 R rec bf4cd884-407f-420d-93ba-0f946acd54cf +2024-07-30 15:25:48.965669 2024-07-30 15:25:48.96568 cidref 118420763 R rec b9eb745f-1624-4d19-a4ae-db55e4649e92 +2024-07-30 15:25:49.055261 2024-07-30 15:25:49.055273 cidref 11948949X R rec 86fab36e-2733-444c-b334-e24df3fad4c8 +2024-07-30 15:25:49.139294 2024-07-30 15:25:49.139306 cidref 120299658 R rec d6476524-d879-4aaa-8869-f42de5809d3a +2024-07-30 15:25:49.218731 2024-07-30 15:25:49.218742 cidref 12059353X R rec bc59335e-42b9-4f14-af42-9f763483adf1 +2024-07-30 15:25:49.319805 2024-07-30 15:25:49.31982 cidref 122348486 R rec 8c532e88-17d7-4e09-88c3-55fb1f83a45d +2024-07-30 15:25:49.418151 2024-07-30 15:25:49.418162 cidref 122348877 R rec 8ff04a4a-4764-47d8-9fc0-cc576d768328 +2024-07-30 15:25:49.504184 2024-07-30 15:25:49.504193 cidref 122957032 R rec 7da62350-b2ea-47e1-b153-312a7651d2a9 +2024-07-30 15:25:49.582987 2024-07-30 15:25:49.582998 cidref 123472466 R rec f199a3f7-1edc-4dfa-80f5-c2d88b801d7d +2024-07-30 15:25:49.665739 2024-07-30 15:25:49.665755 cidref 124452248 R rec a65c1655-cfae-4a74-a5de-415cc40e5431 +2024-07-30 15:25:49.758789 2024-07-30 15:25:49.758801 cidref 129822051 R rec b31cb2bd-323e-4378-b91d-0e185e9dc7aa +2024-07-30 15:25:49.872575 2024-07-30 15:25:49.872586 cidref 130683035 R rec 750052de-619c-4c51-977a-e0b41329f977 +2024-07-30 15:25:49.945354 2024-07-30 15:25:49.945365 cidref 13073019X R rec 98230ede-5f52-40a4-983d-ed087ed04687 +2024-07-30 15:25:50.04104 2024-07-30 15:25:50.041052 cidref 131981226 R rec f78bc771-d5fe-4b28-8475-6918e9cf4770 +2024-07-30 15:25:50.137903 2024-07-30 15:25:50.137909 cidref 132211378 R rec b188f34a-d27f-4959-ad67-843e76391ba4 +2024-07-30 15:25:50.21918 2024-07-30 15:25:50.21919 cidref 133566129 R rec 88673026-89c7-46ed-a661-de5d8a4e25a1 +2024-07-30 15:25:50.296323 2024-07-30 15:25:50.296334 cidref 135615003 R rec 392cf525-9ef1-49eb-b03c-0a0625f8669e +2024-07-30 15:25:50.383571 2024-07-30 15:25:50.383582 cidref 136707165 R rec ddb59768-eb3b-4beb-8363-6b72028521f2 +2024-07-30 15:25:50.501444 2024-07-30 15:25:50.501485 cidref 13776541X R rec 84714d51-da97-4215-aa18-3f49bd0894f4 +2024-07-30 15:25:50.585012 2024-07-30 15:25:50.585021 cidref 137978685 R rec 4030ff31-1974-44ff-b37f-67528dff9b0c +2024-07-30 15:25:50.664199 2024-07-30 15:25:50.664208 cidref 139100857 R rec 6dcfb5c6-0a09-4490-8919-1e9d27d7f526 +2024-07-30 15:25:50.761597 2024-07-30 15:25:50.761609 cidref 142761583 R rec 2d58edbb-b950-4049-ada8-2f79fe969aa0 +2024-07-30 15:25:50.854287 2024-07-30 15:25:50.854298 cidref 144664194 R rec 803baf5d-27ad-4cdf-9b32-44317af323c4 +2024-07-30 15:25:50.940851 2024-07-30 15:25:50.940856 cidref 145035468 R rec d63203ce-8b17-4b15-bf39-52c077d1b499 +2024-07-30 15:25:51.006753 2024-07-30 15:25:51.006763 cidref 145909093 R rec fc81abe1-78f0-41ea-9065-4601ad21c4cd +2024-07-30 15:25:51.092292 2024-07-30 15:25:51.092307 cidref 146923081 R rec b604bbb2-b67a-4aa2-bf13-0e6cfd13fbdd +2024-07-30 15:25:51.175998 2024-07-30 15:25:51.17601 cidref 147286433 R rec 90d6de98-5fdb-499a-9494-7069cfd07ab6 +2024-07-30 15:25:51.267688 2024-07-30 15:25:51.267703 cidref 148541372 R rec 6bfa48b7-e112-48c5-a078-1412348749b7 +2024-07-30 15:25:51.37103 2024-07-30 15:25:51.371039 cidref 148542182 R rec 4920d4c0-f6a9-4465-8cce-a839408690d5 +2024-07-30 15:25:51.45355 2024-07-30 15:25:51.453561 cidref 151385432 R rec f375fa46-50a4-4e3d-84c2-84d07c030f4e +2024-07-30 15:25:51.551442 2024-07-30 15:25:51.551452 cidref 15212201X R rec a865f259-d740-4c79-bf1c-ec23601eaeed +2024-07-30 15:25:51.633305 2024-07-30 15:25:51.633315 cidref 15909545X R rec 6f4f5493-27e8-4345-8411-286579f3f69e +2024-07-30 15:25:51.719806 2024-07-30 15:25:51.719816 cidref 167934813 R rec 6549eb41-d17e-4fdb-a0e2-8229e7a9b600 +2024-07-30 15:25:51.823937 2024-07-30 15:25:51.823949 cidref 168476010 R rec f83254fd-5ccc-4e1f-8a18-ffd3d0ee19fd +2024-07-30 15:25:51.922759 2024-07-30 15:25:51.92277 cidref 169910733 R rec 207aa658-bd65-4521-9c50-d2e5bd8a0fde +2024-07-30 15:25:51.983976 2024-07-30 15:25:51.983981 cidref 17129226X R rec 56c9cee2-7722-43b1-8be1-44662719969e +2024-07-30 15:25:52.042303 2024-07-30 15:25:52.042313 cidref 17523308X R rec e0ce105b-6613-47e8-90c8-743e924efa9b +2024-07-30 15:25:52.123071 2024-07-30 15:25:52.123081 cidref 17939360X R rec 922f7458-efb3-4323-b74a-b3d81c8e0ebf +2024-07-30 15:25:52.20795 2024-07-30 15:25:52.207965 cidref 180214845 R rec ea606c23-c548-4266-bd80-2753f8add46f +2024-07-30 15:25:52.295405 2024-07-30 15:25:52.295416 cidref 180214926 R rec cbbcc472-5a41-477d-92af-72c20cfca5b0 +2024-07-30 15:25:52.395359 2024-07-30 15:25:52.395371 cidref 18028505X R rec 6beb778d-c87e-4969-a5c6-c885470f6f65 +2024-07-30 15:25:52.49037 2024-07-30 15:25:52.490381 cidref 181882604 R rec d8a10cdb-2f55-497d-821e-e162b592a40b +2024-07-30 15:25:52.584879 2024-07-30 15:25:52.584891 cidref 182446174 R rec f9b347dd-4d07-44e6-867c-b0750c5ccacf +2024-07-30 15:25:52.67661 2024-07-30 15:25:52.676626 cidref 183790936 R rec 307995d2-b608-44ef-bfc3-a7c8793532f7 +2024-07-30 15:25:52.7706 2024-07-30 15:25:52.770612 cidref 183791428 R rec c3213d04-ad80-4ddb-9539-48363e991fb9 +2024-07-30 15:25:52.876796 2024-07-30 15:25:52.876808 cidref 184625807 R rec 9ce3f91d-1d88-4811-a078-f5644e024870 +2024-07-30 15:25:52.974907 2024-07-30 15:25:52.974918 cidref 185018440 R rec 854c123b-2553-4d2c-9c1c-a4267e590194 +2024-07-30 15:25:53.040669 2024-07-30 15:25:53.040681 cidref 187082324 R rec ae0bbcb0-a079-4a71-ba25-6bed3fce6550 +2024-07-30 15:25:53.12752 2024-07-30 15:25:53.127531 cidref 190795786 R rec 2f292f8f-3f0d-41c8-9b0a-bb98b6ab92bd +2024-07-30 15:25:53.216382 2024-07-30 15:25:53.216393 cidref 190994320 R rec 9513dd2b-5efb-4e6f-a07a-79408fc6d6a3 +2024-07-30 15:25:53.302158 2024-07-30 15:25:53.302168 cidref 193304104 R rec 8eeda9e4-f355-4f61-ad0f-180cb39d7c8f +2024-07-30 15:25:53.399862 2024-07-30 15:25:53.399874 cidref 193617668 R rec b8b01d3f-51b0-48c7-ab51-0add55710eef +2024-07-30 15:25:53.49329 2024-07-30 15:25:53.493302 cidref 196951763 R rec 32256d20-997d-4cc4-b2ad-dad3ebc2af1a +2024-07-30 15:25:53.574011 2024-07-30 15:25:53.574024 cidref 197956653 R rec 6e6091de-d25c-4538-bbdb-74bcffa06530 +2024-07-30 15:25:53.655512 2024-07-30 15:25:53.655523 cidref 197957358 R rec de6ba32f-0d44-4be6-a432-bd4d0fc22884 +2024-07-30 15:25:53.742227 2024-07-30 15:25:53.742239 cidref 199344019 R rec 4a171396-e358-42b6-b3f6-55e8a5a73ef9 +2024-07-30 15:25:53.820027 2024-07-30 15:25:53.820038 cidref 199344248 R rec cabdcfeb-28db-4cae-b587-29ac5a65a7d0 +2024-07-30 15:25:53.902503 2024-07-30 15:25:53.902514 cidref 200582038 R rec 0b4ec242-f598-4f01-b3f3-425e5c8ec683 +2024-07-30 15:25:54.008915 2024-07-30 15:25:54.00892 cidref 200884530 R rec 3867218b-6832-4682-8550-1afffc045eaf +2024-07-30 15:25:54.064219 2024-07-30 15:25:54.06423 cidref 204008557 R rec ccc43863-734c-4dd2-9db1-d1d29e8d926b +2024-07-30 15:25:54.143387 2024-07-30 15:25:54.143398 cidref 219951152 R rec 0fa0b1cf-5645-4c84-84bd-653fea90cff1 +2024-07-30 15:25:54.232523 2024-07-30 15:25:54.232528 cidref 219966540 R rec b56d79b0-dfeb-4c22-bdc0-4d6a950ad3fe +2024-07-30 15:25:54.328036 2024-07-30 15:25:54.328047 cidref 223495913 R rec 96142c1b-cf9e-41d6-9faa-87a2085edfd4 +2024-07-30 15:25:54.420525 2024-07-30 15:25:54.420535 cidref 223831840 R rec 5d794bd4-44ce-40a6-9463-81c6d4d97466 +2024-07-30 15:25:54.494018 2024-07-30 15:25:54.494031 cidref 225382520 R rec a91ca9a9-4219-4553-ad45-99d07f36d544 +2024-07-30 15:25:54.58091 2024-07-30 15:25:54.580921 cidref 227367677 R rec 327aff59-b607-487d-94fc-3339c14d8d23 +2024-07-30 15:25:54.66932 2024-07-30 15:25:54.669331 cidref 227858689 R rec c63153cd-3674-4fe8-9121-363737fd73bb +2024-07-30 15:25:54.784708 2024-07-30 15:25:54.784719 cidref 228803608 R rec 4b4fab6a-0ae0-4109-94e6-328f598c097d +2024-07-30 15:25:54.890426 2024-07-30 15:25:54.890437 cidref 232818665 R rec edcef286-e2be-43a1-9e74-579db555c0bd +2024-07-30 15:25:54.971618 2024-07-30 15:25:54.971629 cidref 234183721 R rec 67839ab8-5709-4a50-be17-28a57b65bbaf +2024-07-30 15:25:55.051885 2024-07-30 15:25:55.05189 cidref 236280147 R rec 59331986-eda2-4543-940d-e79674da807b +2024-07-30 15:25:55.124596 2024-07-30 15:25:55.124606 cidref 26110683X R rec 989f2e6f-b250-4e8f-a22a-9cbc3d8aaeec +2024-07-30 15:25:55.205211 2024-07-30 15:25:55.205221 cidref 261107119 R rec 66cac22e-84fa-4b35-9d43-9f81e31dd9aa +2024-07-30 15:25:55.290162 2024-07-30 15:25:55.290172 cidref 261901915 R rec c07625ce-1146-48c1-8c7e-270ac2dd31e9 +2024-07-30 15:25:55.375576 2024-07-30 15:25:55.375587 cidref 263499758 R rec 802eb8a6-8c48-4b2e-a9b4-f55217c9be02 +2024-07-30 15:25:55.466115 2024-07-30 15:25:55.466125 cidref 264222423 R rec be0bbbdb-d412-4289-9a0f-ec8411442a91 +2024-07-30 15:25:55.539232 2024-07-30 15:25:55.539243 cidref 264325974 R rec 476f6754-3cad-4fe9-9fbc-5dcb7df12bf9 +2024-07-30 15:25:55.623398 2024-07-30 15:25:55.623408 cidref 264387414 R rec e99bd5d6-a84a-4bf7-9e35-708fdddf2e9a +2024-07-30 15:25:55.711467 2024-07-30 15:25:55.711478 cidref 264387538 R rec 8ade31b9-a36e-4a12-8f55-a85c8212e95f +2024-07-30 15:25:55.800264 2024-07-30 15:25:55.800279 cidref 26438833X R rec 8e52be95-bb6a-47cb-bdb4-66de55275f7d +2024-07-30 15:25:55.889329 2024-07-30 15:25:55.88934 cidref 271981423 R rec ce0cabb1-4df2-4e5d-a691-e9bc00a512fe +2024-07-30 15:25:55.969704 2024-07-30 15:25:55.969715 cidref 27874690X R rec baf1913a-0831-4c6c-b191-193caea4c408 +2024-07-30 15:25:56.043668 2024-07-30 15:25:56.043673 cidref 278746969 R rec a57c9c27-35ee-4312-ac96-d63c7bd90459 +2024-07-30 15:25:56.108932 2024-07-30 15:25:56.108942 cidref 278746985 R rec 2ab6fe99-716c-4eef-b356-c396c8e67502 +2024-07-30 15:25:56.204152 2024-07-30 15:25:56.204164 cidref 278746993 R rec 63db6f63-1566-4db5-bef6-f005270c0610 +2024-07-30 15:25:56.286881 2024-07-30 15:25:56.286896 cidref 278747000 R rec e1e4e944-0a0d-4708-8a55-ba9c3891bde6 +2024-07-30 15:25:56.390416 2024-07-30 15:25:56.390425 cidref 278747019 R rec 9935dcfb-9ad4-4546-9c05-aa5c1e48fbcd +2024-07-30 15:25:56.486 2024-07-30 15:25:56.486011 cidref 278747043 R rec 06bd433b-3eaf-4f97-b7bd-cb3d6573ab5e +2024-07-30 15:25:56.57035 2024-07-30 15:25:56.570361 cidref 278747167 R rec 1c3e2da8-226d-487a-a5ae-7c5b0740246a +2024-07-30 15:25:56.649472 2024-07-30 15:25:56.649483 cidref 278747175 R rec 8c3fbc84-a33d-417d-b9a0-f240ef7522a1 +2024-07-30 15:25:56.746614 2024-07-30 15:25:56.746632 cidref 278747183 R rec cb59b26e-1491-45e4-b9a6-1c074e50c3de +2024-07-30 15:25:56.840315 2024-07-30 15:25:56.840328 cidref 278747191 R rec 2f5e9ab9-8038-4998-928b-7a4247764d5e +2024-07-30 15:25:56.923377 2024-07-30 15:25:56.923392 cidref 27874723X R rec f05e4a4d-a2ac-4065-ae58-76ac1eab395e +2024-07-30 15:25:57.003825 2024-07-30 15:25:57.003836 cidref 278747280 R rec 1ac4a899-b4bb-478d-9f94-903fb36c8238 +2024-07-30 15:25:57.091267 2024-07-30 15:25:57.091278 cidref 278747329 R rec 5c21ae2c-3ed0-4f95-9f6d-59df2d2dd9f1 +2024-07-30 15:25:57.163985 2024-07-30 15:25:57.163996 cidref 279034725 R rec 61120bdb-ecbe-4b62-9b5c-09902af20372 +2024-07-30 15:25:57.233707 2024-07-30 15:25:57.233717 cidref 279034733 R rec 4d5c26c7-48ff-423d-bb1c-09f4b4a8f86d +2024-07-30 15:25:57.310624 2024-07-30 15:25:57.310632 cidref 279034741 R rec c00be6b1-458c-470c-beb9-18367d5d6ed3 +2024-07-30 15:25:57.39564 2024-07-30 15:25:57.39565 cidref 27903475X R rec a832a120-ea38-42ad-a8d1-d1bc01130e98 +2024-07-30 15:25:57.466586 2024-07-30 15:25:57.466595 cidref 279034806 R rec c4bb15c5-7b79-417e-803a-82795b6a6846 +2024-07-30 15:25:57.539636 2024-07-30 15:25:57.539647 cidref 279034814 R rec 0f6bb1b8-b8ea-45df-919c-9432bc1a4612 +2024-07-30 15:25:57.616098 2024-07-30 15:25:57.616113 cidref 279034822 R rec ab9571ff-78d0-463a-af81-1ea58a10a5d3 +2024-07-30 15:25:57.71607 2024-07-30 15:25:57.716081 cidref 279034849 R rec 4198ec87-31f8-484f-b5a5-38a715431b77 +2024-07-30 15:25:57.800011 2024-07-30 15:25:57.80002 cidref 279034881 R rec 11fcbf38-dc72-4684-82bb-0b232d74ba53 +2024-07-30 15:25:57.887877 2024-07-30 15:25:57.887888 cidref 27903492X R rec d40da438-d024-4a23-98a1-a188afc62374 +2024-07-30 15:25:57.961719 2024-07-30 15:25:57.961731 cidref 279034946 R rec 80786e0a-88be-4165-a322-9d5785fd9943 +2024-07-30 15:25:58.049319 2024-07-30 15:25:58.049331 cidref 279034962 R rec ffd4d9d8-c5a7-40f6-aba5-ff0171bef946 +2024-07-30 15:25:58.121071 2024-07-30 15:25:58.121082 cidref 279034970 R rec db4fae13-14a5-43a2-8baa-84bce0320a72 +2024-07-30 15:25:58.187798 2024-07-30 15:25:58.187809 cidref 279034997 R rec fe90710c-c82e-4060-8673-d64c9f1b7d5f +2024-07-30 15:25:58.256322 2024-07-30 15:25:58.256335 cidref 279035020 R rec 8242b262-39f7-468c-ba9f-db6b9e0cfb06 +2024-07-30 15:25:58.332118 2024-07-30 15:25:58.33213 cidref 279035063 R rec 6f5f6e6a-7679-4fe4-8320-fd32a2147712 +2024-07-30 15:25:58.419211 2024-07-30 15:25:58.419223 cidref 279035071 R rec abda94b5-8f8d-4170-bf6a-30a61b6fcafe +2024-07-30 15:25:58.503064 2024-07-30 15:25:58.503076 cidref 27903508X R rec 06376556-971f-4149-bd9d-cdf6d50956b0 +2024-07-30 15:25:58.575771 2024-07-30 15:25:58.575781 cidref 279035098 R rec 062c3766-6ba9-4c5c-a11f-b71361d595e1 +2024-07-30 15:25:58.661256 2024-07-30 15:25:58.661288 cidref 279035101 R rec bc1bce58-a694-422f-a6f0-5507ec210c1b +2024-07-30 15:25:58.746464 2024-07-30 15:25:58.746476 cidref 279035144 R rec 28126654-0803-4fad-95be-792451e85aaf +2024-07-30 15:25:58.830221 2024-07-30 15:25:58.830232 cidref 279035241 R rec 92539232-db07-4fa1-9be1-410602904557 +2024-07-30 15:25:58.917702 2024-07-30 15:25:58.917714 cidref 027233960 R rec 2fe6fad6-20e8-48e9-b625-dc1353589d2b +2024-07-30 15:25:59.002044 2024-07-30 15:25:59.002056 cidref 027238431 R rec a0bfd11a-1a8c-434d-89de-ff1a74d849d0 +2024-07-30 15:25:59.080744 2024-07-30 15:25:59.080755 cidref 027248720 R rec 6c5c2afc-269a-4c0d-9ea4-0b2dc77ffb40 +2024-07-30 15:25:59.159243 2024-07-30 15:25:59.159253 cidref 027255522 R rec 99eac78f-bf7f-46eb-9d21-5f02f8b9b200 +2024-07-30 15:25:59.225802 2024-07-30 15:25:59.225814 cidref 027258556 R rec 49982fea-707e-4890-aa6b-e85bbee2311a +2024-07-30 15:25:59.308102 2024-07-30 15:25:59.308119 cidref 027266273 R rec 601e0930-8951-4eec-afa6-f839f3288a47 +2024-07-30 15:25:59.384159 2024-07-30 15:25:59.384169 cidref 027314073 R rec 560d9710-9591-4c1e-a060-9c7a76409635 +2024-07-30 15:25:59.462278 2024-07-30 15:25:59.462288 cidref 027361705 R rec db5aa95c-d3fe-4160-98a0-453a512b75d2 +2024-07-30 15:25:59.539509 2024-07-30 15:25:59.539519 cidref 027390349 R rec 749c825c-aad2-477b-bb3f-e38111b544b5 +2024-07-30 15:25:59.612137 2024-07-30 15:25:59.612148 cidref 02741664X R rec 090ec8c4-9d41-4267-a28b-e5d8ad098415 +2024-07-30 15:25:59.686034 2024-07-30 15:25:59.686044 cidref 027802973 R rec eeffc59a-2200-4a36-83a2-773265b7cc0f +2024-07-30 15:25:59.771041 2024-07-30 15:25:59.771052 cidref 027824586 R rec c280fca5-91fd-4dcb-8ca0-390256d6ab75 +2024-07-30 15:25:59.864457 2024-07-30 15:25:59.864462 cidref 027855929 R rec c0249521-f410-43d2-8300-b87a59e39614 +2024-07-30 15:25:59.938096 2024-07-30 15:25:59.938105 cidref 028205847 R rec 9719efea-4d5c-4734-ab68-7b10c0dd2bec +2024-07-30 15:26:00.053981 2024-07-30 15:26:00.053986 cidref 028221044 R rec 465f586d-2d92-4503-b0e1-91176047b5f7 +2024-07-30 15:26:00.113888 2024-07-30 15:26:00.113899 cidref 028889347 R rec 68d60ae4-580c-4a5d-9bee-212a4af3082b +2024-07-30 15:26:00.188536 2024-07-30 15:26:00.188546 cidref 028938615 R rec 3365a170-1946-41fc-b043-44dc5caf7af9 +2024-07-30 15:26:00.259663 2024-07-30 15:26:00.259676 cidref 031082599 R rec 4a20a358-58e6-4d99-8b15-c52d634f843f +2024-07-30 15:26:00.351159 2024-07-30 15:26:00.351172 cidref 031955274 R rec 99108e2f-5b41-4c73-ac12-6cfc516bc3a6 +2024-07-30 15:26:00.440278 2024-07-30 15:26:00.440293 cidref 03465500X R rec b1740d74-1939-4a0b-b0b3-9359d5e5d681 +2024-07-30 15:26:00.520381 2024-07-30 15:26:00.520393 cidref 035141913 R rec 8dbb1b27-5fcd-4784-a03b-f8aa8501a081 +2024-07-30 15:26:00.606893 2024-07-30 15:26:00.606909 cidref 05058748X R rec c2905ffd-d999-4566-b3b5-5104e927aab6 +2024-07-30 15:26:00.713889 2024-07-30 15:26:00.713905 cidref 061612820 R rec e361a24f-c2a5-4535-8a8a-ad7e5bc76796 +2024-07-30 15:26:00.798377 2024-07-30 15:26:00.798386 cidref 127977996 R rec 776b912d-ddf6-43d3-b672-2f60f04b4759 +2024-07-30 15:26:00.878695 2024-07-30 15:26:00.878705 cidref 131462415 R rec 1a4aaf13-f51c-45d4-8356-47e4a62b7b3f +2024-07-30 15:26:00.952102 2024-07-30 15:26:00.952114 cidref 144331373 R rec 46e4d063-bb68-42cc-bf02-abb28cff38df +2024-07-30 15:26:01.038152 2024-07-30 15:26:01.038164 cidref 180213911 R rec 72b5b3c9-a10d-44cc-99fc-4cf8330ef273 +2024-07-30 15:26:01.120115 2024-07-30 15:26:01.120125 cidref 181492628 R rec 8493aca0-3f00-4826-b3e5-cf9501df147c +2024-07-30 15:26:01.207634 2024-07-30 15:26:01.20764 cidref 273372734 R rec 5ee35c14-5f74-4ae1-b68d-b8a71e1efee6 +2024-07-30 15:26:01.266529 2024-07-30 15:26:01.266538 cidref 273372742 R rec 0fd768be-6683-4d2c-9636-27739ba59de9 +2024-07-30 15:26:01.33483 2024-07-30 15:26:01.334843 cidref 273372750 R rec 3eed54de-7163-434a-b7f9-94f10c70b135 +2024-07-30 15:26:01.418888 2024-07-30 15:26:01.418901 cidref 273372777 R rec 230c738a-4f3f-4002-b8a2-7bf4a03715e3 +2024-07-30 15:26:01.506333 2024-07-30 15:26:01.506344 cidref 273372785 R rec 1c973a0e-0b62-426d-b844-de18c72c39c4 +2024-07-30 15:26:01.592239 2024-07-30 15:26:01.592255 cidref 277418216 R rec a0b6cdac-a6ce-45f2-a468-e681c09386df +2024-07-30 15:26:01.675033 2024-07-30 15:26:01.675043 cidref 279035152 R rec 0216b051-4bca-42b5-a8d4-5f57ce5f00ef +2024-07-30 15:26:01.748465 2024-07-30 15:26:01.748475 cidref 279035160 R rec 0be182c8-2b34-4201-bebe-e712ec5ba39c +2024-07-30 15:26:01.821061 2024-07-30 15:26:01.821072 cidref 279035179 R rec 83a5974b-7568-4724-a8e5-607846b64fd3 +2024-07-30 15:26:01.900476 2024-07-30 15:26:01.900485 cidref 279035187 R rec 28f664d1-b2d3-4330-82ff-5aad27837a11 +2024-07-30 15:26:01.988273 2024-07-30 15:26:01.988285 cidref 279307322 R rec b636be04-d93e-49ef-a97a-af47e1896baf +2024-07-30 15:26:02.075165 2024-07-30 15:26:02.075175 cidref 279307330 R rec 6e8ac289-e08b-45b7-8904-05e1f4093a1f +2024-07-30 15:26:02.161026 2024-07-30 15:26:02.161038 cidref 279307349 R rec 91a2905a-82bb-4664-8919-4bfb0ebc015d +2024-07-30 15:26:02.242508 2024-07-30 15:26:02.242517 cidref 279307357 R rec 80d6fe9b-df0e-4b33-b922-193e4dcc9c55 +2024-07-30 15:26:02.324866 2024-07-30 15:26:02.32488 cidref 279307365 R rec bf88674a-9b82-40ad-9d0e-266493958b40 +2024-07-30 15:26:02.411493 2024-07-30 15:26:02.411504 cidref 279307373 R rec a0b39681-68c7-40bc-b138-437b717987dd +2024-07-30 15:26:02.488787 2024-07-30 15:26:02.488799 cidref 279307462 R rec d495dc8d-c0ec-42a0-bc52-c258c707102c +2024-07-30 15:26:02.582751 2024-07-30 15:26:02.582763 cidref 279307470 R rec b0d9e902-fa51-4a33-9200-04b8467d6689 +2024-07-30 15:26:02.676019 2024-07-30 15:26:02.676029 cidref 279307519 R rec 3ca51dae-f21e-4c91-9f76-903ee6694592 +2024-07-30 15:26:02.757158 2024-07-30 15:26:02.757174 cidref 279307535 R rec de618ce9-fa95-4b42-9138-9c2280862667 +2024-07-30 15:26:02.851762 2024-07-30 15:26:02.851776 cidref 27930756X R rec f99fe099-fe29-4c2d-8cd2-60daa1ed53e0 +2024-07-30 15:26:02.941721 2024-07-30 15:26:02.941731 cidref 279307578 R rec 6a58946b-bc69-45f5-acdb-43b194565612 +2024-07-30 15:26:03.041845 2024-07-30 15:26:03.041856 cidref 279307586 R rec d4b2002a-216e-46cb-a7f6-909262f51040 +2024-07-30 15:26:03.141887 2024-07-30 15:26:03.141898 cidref 279307594 R rec f37dbbd3-d36e-45e2-962f-537e53211edb +2024-07-30 15:26:03.228115 2024-07-30 15:26:03.228125 cidref 279307632 R rec 94fbecb2-cea2-4ebc-a296-7111cbb22c42 +2024-07-30 15:26:03.292136 2024-07-30 15:26:03.292146 cidref 279307713 R rec 28a9f97b-735d-4b87-b17e-b76219759511 +2024-07-30 15:26:03.3708 2024-07-30 15:26:03.370809 cidref 27930773X R rec 3c95a413-6cb0-4575-847c-86432c3f4115 +2024-07-30 15:26:03.449742 2024-07-30 15:26:03.449754 cidref 279307748 R rec 830a8aaa-0f7f-4849-9d05-c9ed8649cd69 +2024-07-30 15:26:03.544979 2024-07-30 15:26:03.54499 cidref 279307780 R rec 5b2e23d8-df0b-4eed-bf1a-5ef18383c85f +2024-07-30 15:26:03.636599 2024-07-30 15:26:03.63661 cidref 279307799 R rec 6d0d6a74-c2d4-4649-91f9-ec6908c1882d +2024-07-30 15:26:03.718436 2024-07-30 15:26:03.718448 cidref 279307810 R rec 517dece9-614e-4be0-9fbd-33f6785e04d8 +2024-07-30 15:26:03.812408 2024-07-30 15:26:03.812419 cidref 279307837 R rec b65338f5-0a16-4536-8613-2928ccc7d30d +2024-07-30 15:26:03.90227 2024-07-30 15:26:03.902281 cidref 279307853 R rec 074bfbb8-61e6-42c2-90e0-5273a576d418 +2024-07-30 15:26:03.984276 2024-07-30 15:26:03.984287 cidref 027222144 R rec 2dd23b48-6fdd-4c86-b9e2-81569d6c2dcc +2024-07-30 15:26:04.071921 2024-07-30 15:26:04.071931 cidref 027236897 R rec db5cdb0b-1ae2-4fe8-b402-f0112b5bdcfc +2024-07-30 15:26:04.174077 2024-07-30 15:26:04.174087 cidref 027276457 R rec b293adec-c0ca-4738-8822-ca334fc17256 +2024-07-30 15:26:04.266907 2024-07-30 15:26:04.266913 cidref 027307565 R rec 1c628b36-25b5-4f5c-a9ff-6af641e4b252 +2024-07-30 15:26:04.339054 2024-07-30 15:26:04.339065 cidref 02767391X R rec dbce483f-db1a-466d-b8db-ac0fc99ce32c +2024-07-30 15:26:04.426558 2024-07-30 15:26:04.426574 cidref 027800512 R rec 60851668-b89f-4b28-814e-f60e2235ddcf +2024-07-30 15:26:04.51679 2024-07-30 15:26:04.516801 cidref 02781971X R rec fa4c6518-e405-4278-a1a3-f4aebeea2193 +2024-07-30 15:26:04.603524 2024-07-30 15:26:04.603534 cidref 02787642X R rec dfebc2aa-a786-4de3-af50-e1d84988af5a +2024-07-30 15:26:04.708373 2024-07-30 15:26:04.708385 cidref 028374878 R rec f492962c-4bad-4228-b3dd-7fa11d72f915 +2024-07-30 15:26:04.789237 2024-07-30 15:26:04.789251 cidref 028932358 R rec 7651f5c9-5e7c-4b40-a07d-1ef425443527 +2024-07-30 15:26:04.889371 2024-07-30 15:26:04.889382 cidref 030120640 R rec ae3072f0-683d-4a76-9e2d-ee437de7e273 +2024-07-30 15:26:04.971697 2024-07-30 15:26:04.971708 cidref 03136795X R rec f7bb37c8-687f-4efe-86f7-c1d562e1d32a +2024-07-30 15:26:05.062841 2024-07-30 15:26:05.062853 cidref 033293074 R rec 62d0d0a2-f960-415f-a7cb-f861141bc85a +2024-07-30 15:26:05.157426 2024-07-30 15:26:05.157437 cidref 050174495 R rec be5ae9e7-23df-476f-bbc6-ad9dcb310b48 +2024-07-30 15:26:05.254295 2024-07-30 15:26:05.254326 cidref 06008989X R rec 456ecd81-d5e0-4954-845b-d9658c118b51 +2024-07-30 15:26:05.328135 2024-07-30 15:26:05.328145 cidref 061604496 R rec 3b859158-64ad-406b-a792-1fde048864e6 +2024-07-30 15:26:05.404196 2024-07-30 15:26:05.404206 cidref 178480231 R rec e9dfa9df-3882-433e-8e1a-4640b4579fc7 +2024-07-30 15:26:05.486999 2024-07-30 15:26:05.48701 cidref 238529495 R rec 21ecf8d5-f6ff-4f04-949a-38b6d512a20c +2024-07-30 15:26:05.571253 2024-07-30 15:26:05.571265 cidref 263906442 R rec 1ce376d5-87ab-4972-b822-0221f9a73620 +2024-07-30 15:26:05.659962 2024-07-30 15:26:05.659973 cidref 264225260 R rec 04ea21c3-613e-4b00-900a-a7285cc8be71 +2024-07-30 15:26:05.751004 2024-07-30 15:26:05.751015 cidref 276037685 R rec 85d6aa25-60f3-4523-af14-649bdc816efa +2024-07-30 15:26:05.857979 2024-07-30 15:26:05.85799 cidref 278746896 R rec 0cb8a8af-37bf-4525-85eb-2d3155cccd18 +2024-07-30 15:26:05.937798 2024-07-30 15:26:05.937808 cidref 278746918 R rec c0b418a7-ffd2-4d12-a362-c1853e807f4b +2024-07-30 15:26:06.018123 2024-07-30 15:26:06.018135 cidref 278746926 R rec 1f26e04b-fc0c-46d3-95b8-8e6205f8e073 +2024-07-30 15:26:06.100424 2024-07-30 15:26:06.100435 cidref 278746934 R rec 21dc2629-8ff3-4937-a1e9-27a3eb95fb1c +2024-07-30 15:26:06.198585 2024-07-30 15:26:06.198597 cidref 278746942 R rec 019c34fe-63b8-4ccf-8c11-89825d2806a0 +2024-07-30 15:26:06.284145 2024-07-30 15:26:06.284161 cidref 278746950 R rec b0c8ee92-1f82-431a-89bf-b353d806a4cd +2024-07-30 15:26:06.344943 2024-07-30 15:26:06.344949 cidref 278746977 R rec 4e6639a7-5964-4716-b6fe-c8460927f84d +2024-07-30 15:26:06.40674 2024-07-30 15:26:06.40675 cidref 278747027 R rec b817d2a5-81d3-4509-a7b8-bcadf98f9258 +2024-07-30 15:26:06.488347 2024-07-30 15:26:06.488356 cidref 278747035 R rec fb63a569-d84b-4407-bdd1-de323031b012 +2024-07-30 15:26:06.568811 2024-07-30 15:26:06.568821 cidref 278747051 R rec 16266aa1-a004-4819-aec1-188e92c38cde +2024-07-30 15:26:06.70463 2024-07-30 15:26:06.704635 cidref 27874706X R rec ff1f6ce4-a99f-4e43-ab89-8b1992740011 +2024-07-30 15:26:06.756203 2024-07-30 15:26:06.756209 cidref 278747086 R rec 86d40eba-7953-492a-8cca-7f226814f6d0 +2024-07-30 15:26:06.80441 2024-07-30 15:26:06.804415 cidref 278747094 R rec 8137efd9-e335-4620-987b-50da53f3b341 +2024-07-30 15:26:06.858006 2024-07-30 15:26:06.858017 cidref 278747108 R rec 5c29a462-1226-40ed-932e-98efcadcc407 +2024-07-30 15:26:06.941879 2024-07-30 15:26:06.94189 cidref 278747116 R rec f2a6b58d-d526-4ee2-8ee3-cdc594e4e8b8 +2024-07-30 15:26:07.023352 2024-07-30 15:26:07.023364 cidref 278747124 R rec dbd5714f-a55c-4ec9-8e2e-b8f6b1e7d69c +2024-07-30 15:26:07.122799 2024-07-30 15:26:07.122809 cidref 278747132 R rec 10cb6f77-2bd0-4e4e-9cd4-e1304fde6071 +2024-07-30 15:26:07.230661 2024-07-30 15:26:07.230677 cidref 278747140 R rec 9f842218-5416-4b4e-a911-e09fd3ffcd81 +2024-07-30 15:26:07.343104 2024-07-30 15:26:07.343115 cidref 278747159 R rec 83f25b6c-1822-4f79-b730-e79c03ee8140 +2024-07-30 15:26:07.421289 2024-07-30 15:26:07.421301 cidref 278747213 R rec d3f8ab37-af82-4b9d-9440-4e86f5e9f4d6 +2024-07-30 15:26:07.497034 2024-07-30 15:26:07.497046 cidref 278747221 R rec b2a11909-5b27-486f-95fa-a77bbeef81b5 +2024-07-30 15:26:07.574431 2024-07-30 15:26:07.574444 cidref 278747248 R rec f22f55a4-d8f7-477b-8fe7-c6ad6e5d1698 +2024-07-30 15:26:07.681191 2024-07-30 15:26:07.681201 cidref 278747256 R rec 7005aa87-2f5b-493f-ab71-955357409cf8 +2024-07-30 15:26:07.788593 2024-07-30 15:26:07.788608 cidref 278747264 R rec 9d7ae98b-bc29-425a-b267-03498e159ecb +2024-07-30 15:26:07.942157 2024-07-30 15:26:07.942167 cidref 278747272 R rec 1c04610a-063a-4ef5-ad65-e7f54587a82a +2024-07-30 15:26:08.020793 2024-07-30 15:26:08.020802 cidref 278747299 R rec 4f2e7ab0-d7aa-4f62-877b-10aa212524be +2024-07-30 15:26:08.09327 2024-07-30 15:26:08.09328 cidref 278747302 R rec fa15b710-0615-498f-9819-a3a2aeadc3c3 +2024-07-30 15:26:08.187943 2024-07-30 15:26:08.187959 cidref 279034768 R rec 4990c1c2-600c-43af-a66e-555953197fb9 +2024-07-30 15:26:08.276541 2024-07-30 15:26:08.276553 cidref 279034776 R rec 69f10e61-e6ff-4c55-8f42-2cb6dc4eeefc +2024-07-30 15:26:08.37923 2024-07-30 15:26:08.379235 cidref 279034784 R rec 939f8be0-a91f-403e-8b8b-ea6cc6f5982f +2024-07-30 15:26:08.435948 2024-07-30 15:26:08.435959 cidref 279034792 R rec 1bcb7f75-7e60-454d-8946-aafa0ef48724 +2024-07-30 15:26:08.519934 2024-07-30 15:26:08.519946 cidref 279034865 R rec bd1ba29b-3aaa-4996-a7da-cb70d65ecc3f +2024-07-30 15:26:08.625403 2024-07-30 15:26:08.625414 cidref 279034873 R rec d1f1cb49-a96e-405e-91f3-947ccc018303 +2024-07-30 15:26:08.715481 2024-07-30 15:26:08.715492 cidref 27903489X R rec 832d11bb-6514-4af8-b43c-5ea24b4a04d7 +2024-07-30 15:26:08.796037 2024-07-30 15:26:08.796048 cidref 279034903 R rec ded8d8d2-0c27-428c-ab4a-6f13b1c95980 +2024-07-30 15:26:08.897115 2024-07-30 15:26:08.897126 cidref 279035039 R rec 3d3d52ee-ea7a-4dcd-bf01-b492fb9c0c02 +2024-07-30 15:26:08.978267 2024-07-30 15:26:08.978279 cidref 027275639 R rec cc34359a-57ce-4e5b-a989-d627c800da70 +2024-07-30 15:26:09.071145 2024-07-30 15:26:09.071161 cidref 027362434 R rec 690dca4d-41e5-4a37-9761-6f80f047f4b7 +2024-07-30 15:26:09.163479 2024-07-30 15:26:09.16349 cidref 027612163 R rec 25a13dc8-6f88-49a4-9fa6-c94f9f22356f +2024-07-30 15:26:09.257491 2024-07-30 15:26:09.257502 cidref 029385571 R rec 9d1feb0f-882a-409b-b8ba-f1607671858a +2024-07-30 15:26:09.351647 2024-07-30 15:26:09.351658 cidref 029877555 R rec 2432f6b2-7fe1-482e-81c7-353bce9e256d +2024-07-30 15:26:09.449178 2024-07-30 15:26:09.44919 cidref 033689725 R rec 39a13c16-7297-4bf5-b877-885cd7130b4c +2024-07-30 15:26:09.527329 2024-07-30 15:26:09.527339 cidref 035381795 R rec a567e6c4-612d-475f-8878-c4f5bc54c088 +2024-07-30 15:26:09.608828 2024-07-30 15:26:09.608843 cidref 174718276 R rec 5bb68700-2029-40bc-92c9-cf5316590509 +2024-07-30 15:26:09.691346 2024-07-30 15:26:09.691357 cidref 278747078 R rec 92a9b8b9-7e13-4e8e-9cdd-ce413664998e +2024-07-30 15:26:09.781102 2024-07-30 15:26:09.781113 cidref 279034954 R rec 1c1083b3-cbf3-46c3-9f5e-c4083ec56feb +2024-07-30 15:26:09.872309 2024-07-30 15:26:09.872319 cidref 279307381 R rec 5c842977-d35a-4001-bd56-998828a7fac3 +2024-07-30 15:26:09.959999 2024-07-30 15:26:09.960011 cidref 27930739X R rec e9200162-e4c6-4ea3-9a0c-7755831e07fe +2024-07-30 15:26:10.049479 2024-07-30 15:26:10.049503 cidref 279307403 R rec 4b506c31-5cda-4d03-af54-d391866185e7 +2024-07-30 15:26:10.135011 2024-07-30 15:26:10.135022 cidref 279307411 R rec abc60ef0-c2eb-4ee4-bcb3-68633018bb1a +2024-07-30 15:26:10.249839 2024-07-30 15:26:10.249849 cidref 27930742X R rec e77fdd83-e3b5-4d38-b744-6af3f19d43fd +2024-07-30 15:26:10.335454 2024-07-30 15:26:10.335465 cidref 279307438 R rec 85ac0017-341d-4a75-bbf2-855a55994c22 +2024-07-30 15:26:10.408768 2024-07-30 15:26:10.408784 cidref 279307446 R rec 17b87805-2a8b-438e-9ec5-c708b32eed22 +2024-07-30 15:26:10.468294 2024-07-30 15:26:10.468299 cidref 279307454 R rec c6fc3c43-1685-4079-8aa9-862518223887 +2024-07-30 15:26:10.554478 2024-07-30 15:26:10.554489 cidref 279307543 R rec 44bcaf64-0b23-47ca-9390-0a3ce4f34f72 +2024-07-30 15:26:10.634399 2024-07-30 15:26:10.63441 cidref 279307608 R rec 587d5b3a-58e5-4361-bd31-730bcfe13d80 +2024-07-30 15:26:10.717688 2024-07-30 15:26:10.717698 cidref 279307616 R rec ced01398-7043-45b9-83d4-7e9b4debc4c0 +2024-07-30 15:26:10.804446 2024-07-30 15:26:10.804456 cidref 279307640 R rec 782e1b4d-1fbc-4409-9305-073bc1018361 +2024-07-30 15:26:10.891532 2024-07-30 15:26:10.891543 cidref 279307659 R rec 98a0435a-184f-45bf-85d7-4cacf1983362 +2024-07-30 15:26:10.9715 2024-07-30 15:26:10.971511 cidref 279307667 R rec 13e849b9-155d-4ec3-8523-a743339b9d27 +2024-07-30 15:26:11.052084 2024-07-30 15:26:11.052094 cidref 279307675 R rec 065087a9-9cd5-43b1-82fd-f843cd149f81 +2024-07-30 15:26:11.137553 2024-07-30 15:26:11.137567 cidref 279307683 R rec 75c3b716-3f12-493e-9445-a0382b06b5be +2024-07-30 15:26:11.224381 2024-07-30 15:26:11.224393 cidref 279307705 R rec 59c271b4-bfb4-4950-bc4c-c9e702eaf5d7 +2024-07-30 15:26:11.318144 2024-07-30 15:26:11.318159 cidref 279307721 R rec f0794b21-f3ce-442f-b4b3-78e292775e32 +2024-07-30 15:26:11.408787 2024-07-30 15:26:11.408803 cidref 279307756 R rec 70a1f372-350d-43e3-9b59-68f60f3a0913 diff --git a/data/cognd.json b/data/cognd.json new file mode 100644 index 00000000..1bf0acdb --- /dev/null +++ b/data/cognd.json @@ -0,0 +1,125083 @@ +[ + { + "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" + } + ], + "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": "225ea2dda78ff465a51ccdfdd240446c" + }, + { + "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" + } + ], + "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": "8696eac82d52063b0db85626d7d76187" + }, + { + "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" + } + ], + "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": "92f37f26b093f11a1fc0c9e68abad196" + }, + { + "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" + } + ], + "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": "bbe380994a49c76fb1375ff6ee64c665" + }, + { + "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" + } + ], + "pid": "1334320462", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Betrieb" + } + ], + "md5": "7be1cdf42c834b417c371d4a87ec1176" + }, + { + "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" + } + ], + "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": "6ad8d81762161b6d05011d8da5e2fb62" + }, + { + "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" + } + ], + "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": "052fed01d674eeffb4b6e741e315d9d4" + }, + { + "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" + } + ], + "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": "647b26e74f6f0d388c14678a32839753" + }, + { + "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" + } + ], + "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": "1e566c495ec1bfa52b6f77b57e505e08" + }, + { + "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" + } + ], + "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": "f22793b76e6e6f62252605ce7e0bfa44" + }, + { + "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" + } + ], + "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": "2641ff23199b411b6ad52a1b7f5d521f" + }, + { + "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" + } + ], + "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": "141b8f7de73536a2d9b43d7751d03278" + }, + { + "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" + } + ], + "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": "f267b12110dcd1c063b370fc0a79ed44" + }, + { + "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" + } + ], + "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": "769dfada13db8f6a413aa1e7cf190f4f" + }, + { + "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" + } + ], + "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": "c46ea796d402a04fccf11030e5dfd052" + }, + { + "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" + } + ], + "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": "5efc3eccac036915a69635e44515f96b" + }, + { + "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" + } + ], + "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": "1c948cb7608b1a1f49a6ec86b21a7ede" + }, + { + "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" + } + ], + "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": "9327a3db1ce633c8bbc0fd701db07909" + }, + { + "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" + } + ], + "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": "a208ff11d549085fafa854bb735b88c0" + }, + { + "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" + } + ], + "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": "89e21ce165c5fb7e1312715cec74aaa7" + }, + { + "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" + } + ], + "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": "fc23646788a2cf752c8867d29f0be3d9" + }, + { + "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" + } + ], + "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": "9e0c470361e8298621d87bbb2b6e6591" + }, + { + "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" + } + ], + "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": "d9fb3d2299891d658bcd356821a5f30f" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gattung" + ] + } + ], + "pid": "1333855907", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lemminge" + } + ], + "variant_access_point": [ + "Dicrostonyx" + ], + "md5": "c69b88d43d13204af636555627fb6812" + }, + { + "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" + } + ], + "pid": "133385501X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feldmaus (Gattung)" + } + ], + "variant_access_point": [ + "Sumpfmaus", + "Microtus oeconomus" + ], + "md5": "0e67f562a831f96aba75b9c65acb3e15" + }, + { + "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" + } + ], + "pid": "1333853084", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bison" + } + ], + "variant_access_point": [ + "Bison bison athabascae" + ], + "md5": "6965cd416b112695c58a2e874e9443f5" + }, + { + "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" + } + ], + "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": "1d38c20835ee33c18becde893699dd72" + }, + { + "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" + } + ], + "pid": "1333849788", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "b40d764000fafafd707f41c5f28f5260" + }, + { + "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" + } + ], + "pid": "1333849435", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "f3c6d497133f093fc5c075eb89cd6c3c" + }, + { + "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" + } + ], + "pid": "1333729863", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "996829b52e513e6c95bd7f7219cbe986" + }, + { + "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" + } + ], + "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": "40dd7c72af7a6fc064640ecba027f3ca" + }, + { + "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" + } + ], + "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": "6ee99ba9984586d976e0238b6a460fec" + }, + { + "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" + } + ], + "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": "37853b4eec39e1d6774b7744de13f714" + }, + { + "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" + } + ], + "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": "75233850468f339fd64cd8e06ec80d14" + }, + { + "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" + } + ], + "pid": "133335245X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schwanenblumengewa\u0308chse" + } + ], + "variant_access_point": [ + "Blumenbinse", + "Butomus umbellatus" + ], + "md5": "038131b6fa129d160d0fd6edcdc4f8bb" + }, + { + "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" + } + ], + "pid": "1333352085", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Venezianisch" + } + ], + "md5": "05727840980bba47d7aa10a35c9eecef" + }, + { + "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" + } + ], + "pid": "1333331002", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einkeimbla\u0308ttrige" + } + ], + "variant_access_point": [ + "Butomaceae", + "Blumenlieschgewa\u0308chse" + ], + "md5": "bb612301917ca69e453dde15dc33663b" + }, + { + "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" + } + ], + "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": "5e13498e5562b019a629838b8e1e12fb" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Mark_Tree" + ] + } + ], + "pid": "1333312415", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlaginstrument" + } + ], + "md5": "fbf221478a35077e5fab85ebac9af9b3" + }, + { + "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" + } + ], + "pid": "1333312326", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zupfinstrument" + } + ], + "md5": "162c5e4699214273dd669daea77975bb" + }, + { + "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" + } + ], + "pid": "1333270267", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Okzitanisch" + } + ], + "md5": "da6e10213075ac9fc4f5ab6dbc284f0c" + }, + { + "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" + } + ], + "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": "60d08fb0e6463535d5bcc26b29b0c376" + }, + { + "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" + } + ], + "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": "91cf1c4df806ec6ce269f9f5fd7edc86" + }, + { + "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" + } + ], + "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": "49be048007e91ddf31e81ecfd75ebcd1" + }, + { + "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" + } + ], + "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": "d9f752f258ac0c1e5f30138b0e8b7343" + }, + { + "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" + } + ], + "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": "373a597775088713337af0d0210fbccb" + }, + { + "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" + } + ], + "pid": "1333210043", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tuba" + } + ], + "variant_access_point": [ + "Helikontuba" + ], + "md5": "0855be49d018b8fda466d4e0aeec73c8" + }, + { + "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" + } + ], + "pid": "1333209908", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlaginstrument" + } + ], + "variant_access_point": [ + "Guiro", + "Ku\u0308rbisraspel" + ], + "md5": "d67621d7c89283d36328ac7257c0f905" + }, + { + "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" + } + ], + "pid": "1333208901", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musikinstrument" + } + ], + "variant_access_point": [ + "Diskant-Instrument" + ], + "md5": "5dc740e726cfba94797f268aa4032e4c" + }, + { + "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" + } + ], + "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": "92c43f2a0564071e1579db9c02b23cf9" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Enstehungszeit 1928" + ] + } + ], + "pid": "1333125127", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gotische Schrift" + } + ], + "md5": "ac85f996cbbe45524ea41e12596cb591" + }, + { + "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" + } + ], + "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": "30d27aedba73926a1df43e072486f5f3" + }, + { + "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" + } + ], + "pid": "1333118023", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Groteskschrift" + } + ], + "variant_access_point": [ + "Werk Grotesk", + "Werk-Grotesque", + "Werk Grotesque" + ], + "md5": "a2b0c1178973e3141c7190a52194d3fb" + }, + { + "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" + } + ], + "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": "ea9ebf6981c01cdb60899d028659fcec" + }, + { + "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" + } + ], + "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": "2f2981704ae72d7e5bfc63c131e72b76" + }, + { + "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" + } + ], + "pid": "1333113749", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "md5": "c6153c5df3a8f83f707bd425b8e5e0fa" + }, + { + "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" + } + ], + "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": "17c678fa081cc113c411b0eb82fbb425" + }, + { + "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" + } + ], + "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": "b029793292df95f84bb6eb80e91ac54b" + }, + { + "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" + } + ], + "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": "1d4f0910e1e13d975c6d7f958fbc14ff" + }, + { + "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" + } + ], + "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": "6876fcfe72b723c1ef0062e943e3ab6d" + }, + { + "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" + } + ], + "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": "857edd3248cc66a9361e1eb8586fe85b" + }, + { + "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" + } + ], + "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": "80b862c3f0a6c82c56c0d57772440e7a" + }, + { + "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" + } + ], + "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": "79b7748043c7f1768ba23e23921b32a0" + }, + { + "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" + } + ], + "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": "d8d4adf069926538d847b2bd98228e7d" + }, + { + "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" + } + ], + "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": "b36438a0e34c32e63c1a4fc22723431b" + }, + { + "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" + } + ], + "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": "fc314265cb652d8ea8327908439cb49b" + }, + { + "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" + } + ], + "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": "7f203c553ee819ed65ce4d58b2316270" + }, + { + "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" + } + ], + "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": "c9bc8e6add7511887ea7c3079f71fb57" + }, + { + "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" + } + ], + "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": "40d25324dcca992cc0b411d063299cb1" + }, + { + "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" + } + ], + "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": "fab788043c833668ce8d1141279f1ac1" + }, + { + "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" + } + ], + "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": "aed99b42795f7790bf8ad736941fc012" + }, + { + "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" + } + ], + "pid": "1332688047", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "9e173a2ad0ff58ee5d47fb72143eaed3" + }, + { + "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" + } + ], + "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": "9fc5a83045fbb5e38b8ba35d576a4486" + }, + { + "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" + } + ], + "pid": "1332657273", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Birkengewa\u0308chse" + } + ], + "variant_access_point": [ + "Betula lenta" + ], + "md5": "6776aecb139f56a5536b9ba9193b8c1c" + }, + { + "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" + } + ], + "pid": "1332649688", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bockka\u0308fer" + } + ], + "variant_access_point": [ + "Zimmerbock", + "Acanthocinus aedilis" + ], + "md5": "1093afd76249eb4eafc6c9ce9b72d785" + }, + { + "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" + } + ], + "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": "0943f5aca1b1d455078c218c52e32738" + }, + { + "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" + } + ], + "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": "50f4628e6023e29ae2b9c281e9921383" + }, + { + "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" + } + ], + "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": "44579fd652506f4fcbbcd490831c54ff" + }, + { + "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" + } + ], + "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": "6db608211b8e0aca694c534870737236" + }, + { + "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" + } + ], + "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": "cee4353c2dae75f307cc1d33f25b8be7" + }, + { + "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" + } + ], + "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": "14c8f4d1c23afd1b8a8fdc56c236c0bc" + }, + { + "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" + } + ], + "pid": "1332095119", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "c3581590eeb71b2ff15a4e28bb2729c9" + }, + { + "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" + } + ], + "pid": "133197612X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fuchsschwanzgewa\u0308chse" + } + ], + "variant_access_point": [ + "Corispermum leptopterum" + ], + "md5": "8d86663428bd364155b161145757571f" + }, + { + "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" + } + ], + "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": "969b9261ce1e8f646680b136b8ad17fd" + }, + { + "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" + } + ], + "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": "9b32921f1ece7d8afed678cf8e6e8aff" + }, + { + "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" + } + ], + "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": "65fa919bfbf8acd6931ff910ae51eaf7" + }, + { + "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" + } + ], + "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": "eaa452c191dc86b1d9d8c12c529744be" + }, + { + "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" + } + ], + "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": "62d166d2d2f50b309052005ccc96ec63" + }, + { + "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" + } + ], + "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": "754739e86a3642e54860e9aa00342446" + }, + { + "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" + } + ], + "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": "01f24df377adbfa81a3b0ee07f629caf" + }, + { + "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" + } + ], + "pid": "1331734045", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ehrlichkeit" + }, + { + "authorized_access_point": "Unaufrichtigkeit" + }, + { + "authorized_access_point": "Heuchelei" + } + ], + "md5": "018727ed8bb6f230a848e5beb1895a62" + }, + { + "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" + } + ], + "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": "9f2256b2a2ba76ebc34ab87c4c610d16" + }, + { + "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" + } + ], + "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": "4dcdd1495702898aa92c42a3ce3e8626" + }, + { + "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" + } + ], + "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": "503b9c11a871749e57b989643a20e8b6" + }, + { + "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" + } + ], + "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": "0ff944471fa810d6d2bc11ee43ae8e98" + }, + { + "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" + } + ], + "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": "4dbb0317be0fa3a81cf0dc7eca6ec43a" + }, + { + "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" + } + ], + "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": "d1dfd30fc4b29118c7c655009752ee23" + }, + { + "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" + } + ], + "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": "6e176db5861f157fb9d9a4abb7423b5e" + }, + { + "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" + } + ], + "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": "cf1e332d632fb83128a199af4daa7c64" + }, + { + "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" + } + ], + "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": "a1b666a2e780b578b9d57cca6b57c70a" + }, + { + "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" + } + ], + "pid": "1331605091", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "8fe75a6e2078c02066418bb8aac9e509" + }, + { + "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" + } + ], + "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": "6da79c77abd4e76d4c32c61e19d8f23f" + }, + { + "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" + } + ], + "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": "47e448ae88849a063bbf9dc4d972b480" + }, + { + "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" + } + ], + "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": "311ef9b1d6a3a12b2fc348fb59b5c19a" + }, + { + "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" + } + ], + "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": "ecbf2fc6359c6fad4a9128b4e86304e8" + }, + { + "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" + } + ], + "pid": "1331584167", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Vizekanzler" + } + ], + "md5": "6cba5f2007e19f6533ac3aa60f4c781a" + }, + { + "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" + } + ], + "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": "bc138a62000ea9ca9637e4a5e2d40057" + }, + { + "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" + } + ], + "pid": "1331496918", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wasserstoffionenkonzentration" + } + ], + "md5": "a1e2a1dd2cc0f7a52c6ae05cd673c5e4" + }, + { + "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" + } + ], + "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": "63fa0adaa10d24783bc44cb5930ed115" + }, + { + "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" + } + ], + "pid": "1331380073", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "421d4582d65376dd9751c0150aec8c9c" + }, + { + "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" + } + ], + "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": "d468e5ac990a2a0450d8e8d55f93c1da" + }, + { + "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" + } + ], + "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": "dd9643f4bfa190608fc001bd16355330" + }, + { + "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" + } + ], + "pid": "1330843584", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "b3f887931f3cabfb2574c0ebf9a60816" + }, + { + "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" + } + ], + "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": "f02677042b265da19912b5ad1ebb09e7" + }, + { + "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" + } + ], + "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": "873becbcbb01e7febbadce604a34a1df" + }, + { + "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" + } + ], + "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": "a45220636c987d51d8f74b48f158351b" + }, + { + "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" + } + ], + "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": "5717dc3a9ac3dfdebfb70be25eb4c17c" + }, + { + "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" + } + ], + "pid": "1330447611", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "ea66feb7fa7edad6b0b95a0f2f0213f8" + }, + { + "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" + } + ], + "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": "eb11ce43aa1d121a232f2d2e8f95450b" + }, + { + "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" + } + ], + "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": "a751bd0662abfde0f0fac7e04f521048" + }, + { + "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" + } + ], + "pid": "1330343085", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "95b30a180876bd00714d038ddaf62d00" + }, + { + "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" + } + ], + "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": "3d902ce7d0065a7c27f3c1eefd75b769" + }, + { + "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" + } + ], + "pid": "1329650123", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Kajkavisch" + } + ], + "md5": "4d2ba0232b9998f5f1147cb247502ea6" + }, + { + "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" + } + ], + "pid": "1329573331", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "cdc1ccbfc845d74086e5f837281d6ab7" + }, + { + "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" + } + ], + "pid": "1329325958", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "b1477ceedf7966661a19d4b01c771bca" + }, + { + "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" + } + ], + "pid": "1328905152", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + }, + { + "authorized_access_point": "Pflanzendarstellung" + } + ], + "md5": "334c2bbe64c98c3a30d862da3d97cfc0" + }, + { + "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" + } + ], + "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": "304be4bdd58dd619b62418264d8b074d" + }, + { + "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" + } + ], + "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": "5f46ad95228d2df56cf639eacbfd1424" + }, + { + "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" + } + ], + "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": "0a939c434ab7295e074f9343ac24fe9d" + }, + { + "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" + } + ], + "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": "5f99b660e6c44c5f65f9c0548ad7bb00" + }, + { + "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" + } + ], + "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": "28f076de9ea01075eef0306c8603425c" + }, + { + "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" + } + ], + "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": "1dae5ea975e056c675b2372307afa102" + }, + { + "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" + } + ], + "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": "3dd2a8d9ced3609f1caa9aff13a1d2f7" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Anarchafeminismus&oldid=243042613" + ] + } + ], + "pid": "1324101571", + "type": "bf:Topic", + "md5": "e1425a9de2ecc4f92596386fe5fae5bc" + }, + { + "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" + } + ], + "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": "6c06a55749be45803ab40af548a0cd67" + }, + { + "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" + } + ], + "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": "7b947b3c23902e4e82ab900e6585e9cb" + }, + { + "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" + } + ], + "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": "4dc4d490e1fc73f71d298a2a056d9b1e" + }, + { + "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" + } + ], + "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": "433b20245e60d95f08eaa19320b515a8" + }, + { + "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" + } + ], + "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": "f8ecb9e4630789e9ad7af005bb878751" + }, + { + "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" + } + ], + "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": "8dea0b3387c0ba873b45890d52cda1d4" + }, + { + "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" + } + ], + "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": "c49b735f6c8d41d6d653378319ae1d3e" + }, + { + "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" + } + ], + "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": "2b7297a143e04b65da89f205ebffeb76" + }, + { + "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" + } + ], + "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": "f85fa82175b3451e039405228d41c00c" + }, + { + "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" + } + ], + "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": "881b0e00098077a473cd4901c0eb4bac" + }, + { + "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" + } + ], + "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": "c1894cae11cb454fc88138517ac09fa1" + }, + { + "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" + } + ], + "pid": "1315344238", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufenthaltsrecht" + } + ], + "md5": "dc55968fd93071bce15fae2a66e0d544" + }, + { + "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" + } + ], + "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": "45bbaad5ead1f2ca2d33ed9197ab5510" + }, + { + "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" + } + ], + "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": "cf60b6ab9b859b9ea203d3d8eeac3ec2" + }, + { + "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" + } + ], + "pid": "1314016547", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sportlerin" + } + ], + "related": [ + { + "authorized_access_point": "Biathlon" + }, + { + "authorized_access_point": "Biathlet" + } + ], + "md5": "98ce1135ac7c2a4a76d5ff3591616cc6" + }, + { + "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" + } + ], + "pid": "1314016032", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sportler" + } + ], + "related": [ + { + "authorized_access_point": "Biathlon" + }, + { + "authorized_access_point": "Biathletin" + } + ], + "md5": "8664bda48f7dd5027fd4c98426ec48e9" + }, + { + "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" + } + ], + "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": "04e30fd2aa8ad59c46fcf424b3aae7d6" + }, + { + "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" + } + ], + "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": "2dac0d5f5bd2578a930facc18776dda2" + }, + { + "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" + } + ], + "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": "95d905340b4e1a3876544b94d2220470" + }, + { + "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" + } + ], + "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": "896a7f887ba4d32f3d552287feebb2cb" + }, + { + "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" + } + ], + "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": "3d9bebdbcff8b3584533b928a0defc22" + }, + { + "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" + } + ], + "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": "0562b8920bc67f735f7dadfc7f60dd28" + }, + { + "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" + } + ], + "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": "7695ccd213bbbab4063ed6615c5473f0" + }, + { + "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" + } + ], + "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": "c3c38caed7390f4a5d317c1687ed4816" + }, + { + "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" + } + ], + "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": "e225cf2e6dca9109acf03982f214a4fe" + }, + { + "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" + } + ], + "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": "f609d80061a5c4907a8ea30b9a550034" + }, + { + "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" + } + ], + "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": "ed41ab6de1b673841769a7e36b004a56" + }, + { + "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" + } + ], + "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": "dce7e5688954c58e1e4015acc54f8b3f" + }, + { + "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" + } + ], + "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": "cab35cf8eb019c469e70147c9f278743" + }, + { + "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" + } + ], + "pid": "1293306673", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Familienname" + } + ], + "variant_access_point": [ + "Gabelmann (Familienname)" + ], + "md5": "53339b17236050804cb2772b1bf9a72f" + }, + { + "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" + } + ], + "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": "0f1a50ff096409ad42855738b74cf206" + }, + { + "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" + } + ], + "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": "8e6249bc262de31002710012c207b6b7" + }, + { + "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" + } + ], + "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": "f5b96dc92a6e0177b93d359cf93aa46d" + }, + { + "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" + } + ], + "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": "15c8befd4b2ec7ce5f5d539474a51faa" + }, + { + "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" + } + ], + "pid": "1277560676", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Mundart Su\u0308ditalienisch (Basilicata)" + } + ], + "md5": "1c148459684cc08c4e9c22ef046514a7" + }, + { + "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" + } + ], + "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": "66bd6fecae2b1cbe4e7ce7337fbe61c9" + }, + { + "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" + } + ], + "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": "63c84a2ed81ea4c79864c026c2532ccd" + }, + { + "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" + } + ], + "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": "ab0d6258344a4b96c62a2fc7b6e8ea2d" + }, + { + "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" + } + ], + "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": "e837fd909ffec989a17982d1cb3863c8" + }, + { + "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" + } + ], + "pid": "1274948169", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "5eab9a2a684d672138d5e0c633aca710" + }, + { + "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" + } + ], + "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": "f45a90c58064c5dbc4be39f1d497aa17" + }, + { + "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" + } + ], + "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": "b095df2493c23dfacee83b95a00bbcc1" + }, + { + "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" + } + ], + "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": "51ed440e89efd927f946c55a3494d3f7" + }, + { + "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" + } + ], + "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": "df7d4257ea87f96433c331c2dc4c9350" + }, + { + "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" + } + ], + "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": "56994f8a19ec702224637260c295571a" + }, + { + "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" + } + ], + "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": "60c0527e6958fe4517c1b1baa11f62ae" + }, + { + "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" + } + ], + "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": "60b9049f8443964ab4eb7a67fd6e3c68" + }, + { + "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" + } + ], + "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": "1cff6e1d4cd3a629a3e5cc706ce15650" + }, + { + "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" + } + ], + "pid": "1267358122", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "38a1d93a2a32a685912c0545a9cd57dd" + }, + { + "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" + } + ], + "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": "3caab3a0b30501ae7995cb6d3e263eb4" + }, + { + "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" + } + ], + "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": "aa7d827ccceacff19e5f06c84a088e06" + }, + { + "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" + } + ], + "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": "773ed67c172b056927ec7586a02ccdc9" + }, + { + "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" + } + ], + "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": "a3d47e385d2b4d79de44100acfb9b370" + }, + { + "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" + } + ], + "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": "91d306222d937c5b957d37cce98085de" + }, + { + "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" + } + ], + "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": "28ce0994e264f4ba6b597e69d2f09cc4" + }, + { + "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" + } + ], + "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": "036d56f26a3af3ed2f8f37406156230e" + }, + { + "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" + } + ], + "pid": "125746423X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Reis" + } + ], + "variant_access_point": [ + "Paddyreis", + "gedroschener Reis", + "bespelzte Reisko\u0308rner" + ], + "md5": "96823bcc6755776a0b0a773dcaf5a52c" + }, + { + "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" + } + ], + "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": "6ad856e091ae23fa7c7e9568a0ed8418" + }, + { + "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" + } + ], + "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": "846cac083f9b5ae69ecc388373e276f5" + }, + { + "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" + } + ], + "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": "6a51c05334d46073f02dc1c2d54a80ae" + }, + { + "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" + } + ], + "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": "2ccadc831208459b7e9feefb50823ebe" + }, + { + "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" + } + ], + "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": "64957bb0685f5819f88d2dbe3fada760" + }, + { + "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" + } + ], + "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": "8fc7f9c27efb794d09e69cd981c28a0d" + }, + { + "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" + } + ], + "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": "7b25ec7580d7f9e64c3217981b22736c" + }, + { + "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" + } + ], + "pid": "1251536492", + "type": "bf:Topic", + "variant_access_point": [ + "Corona-Pandemie" + ], + "md5": "39899d42f14eb614dc5613a0e477e5c9" + }, + { + "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" + } + ], + "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": "7da1cd6e92c096545bce957677caaf0e" + }, + { + "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" + } + ], + "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": "33027595a14e71a34b5457ca24616c88" + }, + { + "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" + } + ], + "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": "18f403f3050e6d922aed0b037918f9a6" + }, + { + "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" + } + ], + "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": "62b6e07da426d3075891a5383d55b464" + }, + { + "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" + } + ], + "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": "c11fa240e362b00c6338c0357efc73bc" + }, + { + "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" + } + ], + "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": "d1f2671a93ecae54b97df4d0cb18d201" + }, + { + "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" + } + ], + "pid": "124608841X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Gesundheitszeugnis" + } + ], + "variant_access_point": [ + "Impfausweis", + "Impfnachweis", + "Impfzertifikat", + "Impfbescheinigung", + "Impfdokumentation" + ], + "md5": "6ea24b1a4e98c236edefb9174e610453" + }, + { + "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" + } + ], + "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": "8a4af882df955863733a2e04836255e8" + }, + { + "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" + } + ], + "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": "8585306353c2b1a8803fbf24548bf551" + }, + { + "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" + } + ], + "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": "e378659d1c1d27d605a23c9854677145" + }, + { + "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" + } + ], + "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": "58368546d0dc3e175753e2e3ab63407e" + }, + { + "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" + } + ], + "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": "ee678fbba3498a7cb3a53e9c6448ab67" + }, + { + "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" + } + ], + "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": "7b7bdb707bddce5af47849d0999d75b3" + }, + { + "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" + } + ], + "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": "520fa8b393b2e9c1d472aac1f04d3841" + }, + { + "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" + } + ], + "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": "b77ead35baab2e9c38cbdc0394b40e27" + }, + { + "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" + } + ], + "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": "9b2c55613975bb8e219b8fbb53cb7e2e" + }, + { + "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" + } + ], + "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": "d93904f7054fb1102ad711b1c80150f5" + }, + { + "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" + } + ], + "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": "9d0dc9953f357908ac5084ce5432c24e" + }, + { + "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" + } + ], + "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": "0b79c07170cf3a0a76315348411d0947" + }, + { + "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" + } + ], + "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": "2749b4cf608dc9073add32cfcf5be39d" + }, + { + "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" + } + ], + "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": "0e2f5aee9080c325eff829d4b2d880f9" + }, + { + "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" + } + ], + "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": "63aeefbe7a4e620faefe7f637e299ff8" + }, + { + "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" + } + ], + "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": "a763db69c4973da9f70563fbaa974fe9" + }, + { + "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" + } + ], + "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": "467f65b7d0f667e1b00e128a9d848823" + }, + { + "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" + } + ], + "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": "82dca7df6618f124224deef22211381b" + }, + { + "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" + } + ], + "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": "31f9056e9c2043f235d6e59ad459f13f" + }, + { + "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" + } + ], + "pid": "1166161722", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "1be5140ba878839e5af89d2d14c91e7d" + }, + { + "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" + } + ], + "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": "b798e4742d27e65067e5dc6f6051a893" + }, + { + "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" + } + ], + "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": "65e8105582872c78e2d75a91454e01c6" + }, + { + "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" + } + ], + "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": "8394afb2ecc1cf47164bf4eda066eede" + }, + { + "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" + } + ], + "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": "17158d8643d8a5e5ab90e5171a3ab817" + }, + { + "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" + } + ], + "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": "4c3e79d29cbf6bc3310bdde34b027367" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Messung der Viskosita\u0308t von Mehl" + ] + } + ], + "pid": "1155424573", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Viskosimeter" + } + ], + "md5": "27f5ae5f02f884b87c27684f40666ba7" + }, + { + "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" + } + ], + "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": "0d70a8984e13ab8ce17dacbc6a468b56" + }, + { + "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" + } + ], + "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": "155bf341c7cff419ef496a50727b2d63" + }, + { + "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" + } + ], + "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": "3eae990cdf3ab7c5a7119da2c31275a5" + }, + { + "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" + } + ], + "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": "a7d46e9d8c9e940b0771b97cd206ec31" + }, + { + "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" + } + ], + "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": "e3a91c32bb6f982484954fd7785a3fff" + }, + { + "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" + } + ], + "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": "bb40623c666f36885b1602aca80fea20" + }, + { + "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" + } + ], + "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": "c81ac3844cf8f5df96462ca3d283b0cd" + }, + { + "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" + } + ], + "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": "4bc83dad4cc2c4ff4bfbffacc1241d71" + }, + { + "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" + } + ], + "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": "4153f388b0c68a99ac8c87abd65834e4" + }, + { + "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" + } + ], + "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": "ddd1eac8cccd275328b7d998c618cc0c" + }, + { + "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" + } + ], + "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": "926b02502dc1983b9b3ca1e99973ec19" + }, + { + "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" + } + ], + "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": "4013fda6bf34b398584d17449c021646" + }, + { + "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" + } + ], + "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": "2ad2e70796bcce51acd158e526a5bd14" + }, + { + "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" + } + ], + "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": "43e2c47fe7b178a089071cc4b8f00a91" + }, + { + "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" + } + ], + "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": "57aaefd782b422210c7ad3a4dc3f4a6f" + }, + { + "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" + } + ], + "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": "e0b1e16fd04ad08692d32174ba86c0ab" + }, + { + "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" + } + ], + "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": "b01fac1f4240de45d0635205639e6b53" + }, + { + "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" + } + ], + "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": "6b0b0a340402b577d220f4d23afc5e0c" + }, + { + "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" + } + ], + "pid": "1072727021", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Personalverwaltung" + }, + { + "authorized_access_point": "Personalentwicklung" + }, + { + "authorized_access_point": "Personalreferent" + } + ], + "md5": "6cbf432c93da9cb558e035975dc7e566" + }, + { + "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" + } + ], + "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": "a807b5129735974bf3f293dd939c2f32" + }, + { + "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" + } + ], + "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": "97458cb5d17c7a0d5947f0f5bfffe482" + }, + { + "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" + } + ], + "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": "60c62804fd24d49be7ada019721cae59" + }, + { + "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" + } + ], + "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": "7692064c6f472f50880008ac1d516e06" + }, + { + "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" + } + ], + "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": "05a6c3035d4dbccd7ad77c436d2dec70" + }, + { + "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" + } + ], + "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": "62f4c21cb8807a8c32ee9a42ce924391" + }, + { + "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" + } + ], + "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": "dd368f632e905644e747d9c0abe81111" + }, + { + "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" + } + ], + "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": "ebf873d9019c9da72daa293bcd4f48a7" + }, + { + "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" + } + ], + "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": "5fad01809f1e1c365f4be60bee8e03fe" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Nachtfalter aus der Familie der Eulenfalter" + ] + } + ], + "pid": "1064280692", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Eulen (Schmetterlinge)" + } + ], + "md5": "c3bddf1e775d727f460ea2d99a58c9b1" + }, + { + "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" + } + ], + "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": "7e2f7dbfec16f0b7494ffa522fe3a4a9" + }, + { + "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" + } + ], + "pid": "1064098363", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfla\u0308misch" + } + ], + "variant_access_point": [ + "Roeselaars" + ], + "md5": "3627824ff98d481c9c829803eb2e7b1d" + }, + { + "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" + } + ], + "pid": "1063927137", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wissenschaftlerin" + } + ], + "related": [ + { + "authorized_access_point": "Managementwissenschaftler" + } + ], + "md5": "ea762322027dc143e1a2b7326c4b79fb" + }, + { + "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" + } + ], + "pid": "1063927110", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wissenschaftler" + } + ], + "related": [ + { + "authorized_access_point": "Managementwissenschaftlerin" + } + ], + "md5": "b3b07181f83b72ca443f4e7a753f6eb9" + }, + { + "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" + } + ], + "pid": "1063925908", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chirurg" + } + ], + "related": [ + { + "authorized_access_point": "Kieferchirurgie" + } + ], + "md5": "d2e805a1d8a4a372e6ea98f851c7cb74" + }, + { + "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" + } + ], + "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": "43f311c8737d899cf3d557b9a8b93991" + }, + { + "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" + } + ], + "pid": "1062937325", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "9f464356bc55af5ad7adc41b63836acd" + }, + { + "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" + } + ], + "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": "d038c0eca0c833e8db8a3de916015c08" + }, + { + "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" + } + ], + "pid": "1060912503", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "variant_access_point": [ + "Vo\u0308rdener Platt" + ], + "md5": "f51b57f6db664b8d04dd9d7201b6a31e" + }, + { + "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" + } + ], + "pid": "1060909251", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "md5": "53ea007bfaa55f3f9e97da1ea8fadbee" + }, + { + "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" + } + ], + "pid": "1060907534", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "variant_access_point": [ + "Unnaer Platt" + ], + "md5": "e5ee79a78b92ecebba615579f5a42af3" + }, + { + "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" + } + ], + "pid": "1060882345", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "md5": "b3096f780f5fca05a214676c0a2e4d29" + }, + { + "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" + } + ], + "pid": "1060882191", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "md5": "9ca5fbce202074e0cb5d99a59e84e48d" + }, + { + "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" + } + ], + "pid": "1060881373", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "md5": "7e3e45d8412292a28816c148eaa67622" + }, + { + "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" + } + ], + "pid": "1060881039", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "md5": "b5960baa4178b6eb382e03ed3daaf656" + }, + { + "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" + } + ], + "pid": "1060858703", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfla\u0308misch" + } + ], + "md5": "7008375508eb09b27ecd6e5662545b3e" + }, + { + "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" + } + ], + "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": "a1913e5b5bbace69a3eecf46f830f90e" + }, + { + "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" + } + ], + "pid": "1060804263", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "variant_access_point": [ + "Osnabru\u0308cker Platt" + ], + "md5": "f1a8666b4237c7ba31fb20f250cb05dd" + }, + { + "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" + } + ], + "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": "f1119d0ec47663e363498d95c32de90f" + }, + { + "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" + } + ], + "pid": "1060674483", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "96b2ab44f2d0e39388b41d0f7025e151" + }, + { + "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" + } + ], + "pid": "1060581957", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Mundart Mittelitalienisch (Marken)" + } + ], + "md5": "13e5f4dc84fddf9d4e502cc3e600a7e7" + }, + { + "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" + } + ], + "pid": "1060577895", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Sizilianisch" + } + ], + "md5": "2758859678bebcb211615e1a33250a79" + }, + { + "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" + } + ], + "pid": "106057683X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Burgundisch" + } + ], + "md5": "3fefcfcd42efafdf518d2559d6d8d1c4" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "DWDS - https://www.dwds.de/wb/Koordinator" + ] + } + ], + "pid": "1060521229", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Koordinator" + } + ], + "md5": "cab432db595df57401ef652f6bff8400" + }, + { + "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" + } + ], + "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": "39a6ff727f431b34b3e2cd4844cf8ed6" + }, + { + "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" + } + ], + "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": "0ff5d8738bb9b95cc31197cc3b282a50" + }, + { + "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" + } + ], + "pid": "1060358328", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "4d10929df36dd7950b6ea76d239da791" + }, + { + "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" + } + ], + "pid": "106013411X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Italienisch" + } + ], + "md5": "ae72701b002a5a903770200dd534a44c" + }, + { + "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" + } + ], + "pid": "1060114909", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "17fcb586f00d191c9762af5e7accbab9" + }, + { + "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" + } + ], + "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": "7037a066f5a0e7ca1df70d3f99b3669d" + }, + { + "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" + } + ], + "pid": "1060077914", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "620436e0c1d4fe2d936772c38bcfe32f" + }, + { + "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" + } + ], + "pid": "1060077817", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "68bc0f6cf85297f1df8d6e3c9c1f6cf9" + }, + { + "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" + } + ], + "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": "7579ed9f84a60c6325fdae3f13ce28db" + }, + { + "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" + } + ], + "pid": "1059823527", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vokalmusik" + }, + { + "authorized_access_point": "Advent" + } + ], + "md5": "7888ff47cc250de324cd2ef82fb69ca0" + }, + { + "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" + } + ], + "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": "a9026d24ceb026d3e16d2e94ec07ba09" + }, + { + "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" + } + ], + "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": "574ddc7c96fc86582a3d8075c341dc74" + }, + { + "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" + } + ], + "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": "853759904c27393f1ec562dd12dfa546" + }, + { + "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" + } + ], + "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": "71f1585fb8956c7545b4a4bc1f675450" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Untergattung d. Familie d. Laufka\u0308fer" + ] + } + ], + "pid": "1059464667", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Laufka\u0308fer" + } + ], + "md5": "b35b092108e20b3a225fc16b697371c6" + }, + { + "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" + } + ], + "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": "2f3c4e55f1ae14fa6ebea1ecebe75acc" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Familie d. Schwanzlurche" + ] + } + ], + "pid": "1059408058", + "type": "bf:Topic", + "variant_access_point": [ + "Cryptobranchidae" + ], + "md5": "c45ce63a15fe31b0a510e41ed516634a" + }, + { + "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" + } + ], + "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": "bf625233abe4476df9638943da2b1dfa" + }, + { + "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" + } + ], + "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": "1d8043095743649302c270de9a519732" + }, + { + "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" + } + ], + "pid": "1059388464", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tragflu\u0308gel" + } + ], + "md5": "18894f1714603d720da5d460ded85153" + }, + { + "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" + } + ], + "pid": "1059384434", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Raumsonde" + } + ], + "md5": "3a8695d3ffda9079f8a6562910e1c79e" + }, + { + "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" + } + ], + "pid": "1059383780", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Raumsonde" + } + ], + "variant_access_point": [ + "Pioneer-Saturn" + ], + "md5": "52f1593fbd3368738ce85c0d09c6651d" + }, + { + "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" + } + ], + "pid": "1059323001", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Armleuchteralgen (Familie)" + } + ], + "variant_access_point": [ + "Zarteste Glanzleuchteralge", + "Nitella tenuissima" + ], + "md5": "1f5404925075efb9c73272953dc505cc" + }, + { + "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" + } + ], + "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": "d124700a6a3f1d6eb9fa349b054ac091" + }, + { + "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" + } + ], + "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": "29123a745e5c137cc6c19fb295c887d4" + }, + { + "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" + } + ], + "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": "a9c35553dfcb2d8c8965a509f86d9e06" + }, + { + "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" + } + ], + "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": "fa551a9328a2552e96261cf10a816228" + }, + { + "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" + } + ], + "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": "8498e13dd9dba90b76997aa3b8502a7e" + }, + { + "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" + } + ], + "pid": "1059103257", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "variant_access_point": [ + "Maitresse (Motiv)" + ], + "md5": "ba1e52512db6647dbb86a022021b9502" + }, + { + "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" + } + ], + "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": "8e078f4919362ce52d2afc4018077377" + }, + { + "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" + } + ], + "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": "15ae84129a63a86c5bbc837600234c06" + }, + { + "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" + } + ], + "pid": "1058986295", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sazspiel" + } + ], + "variant_access_point": [ + "Bag\u0306lama", + "Langhalslaute" + ], + "md5": "2a2cfb38e5d7fa71c0f6100ddc92ed62" + }, + { + "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" + } + ], + "pid": "105896920X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Theodolit" + } + ], + "md5": "68a70afb620e89e113ded448bf8e280d" + }, + { + "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" + } + ], + "pid": "1058846361", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektrolokomotive" + }, + { + "authorized_access_point": "Schmalspurlokomotive" + } + ], + "variant_access_point": [ + "Ge 4/6", + "Gebirgslokomotive 4/6" + ], + "md5": "9b3978e33c7b50b1e99a5429b34c7ce7" + }, + { + "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" + } + ], + "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": "dad1977d8f748e64a3e8ed84c65bdc18" + }, + { + "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" + } + ], + "pid": "1058674900", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Holzeinschlag" + } + ], + "variant_access_point": [ + "Hiebsatz", + "Nutzungssatz", + "Abnutzungssatz" + ], + "md5": "3de55bd1b038f880426d2153e80bdb0c" + }, + { + "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" + } + ], + "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": "be71cab0e6ff7376a7eb1b88249276b5" + }, + { + "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" + } + ], + "pid": "105862394X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Radar" + } + ], + "broader": [ + { + "authorized_access_point": "Elektroniker" + } + ], + "variant_access_point": [ + "Radartechniker", + "Flugsicherungs-Radartechniker" + ], + "md5": "8d68b09b370169d579bea6b6c093bf57" + }, + { + "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" + } + ], + "pid": "1058513710", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Sizilianisch" + } + ], + "md5": "0e594e1eb8662f1ffab98a22d46d0f02" + }, + { + "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" + } + ], + "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": "0e0d92ddbc5deb0266b4bbd65aaaf62d" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ordnung der Braunalgen" + ] + } + ], + "pid": "1058389041", + "type": "bf:Topic", + "md5": "fec990af264ad90b7b340e9e5702e8da" + }, + { + "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" + } + ], + "pid": "1058382799", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "variant_access_point": [ + "Almer Platt" + ], + "md5": "3a48803f0095f4bafc4d06ef28b62e51" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "5-teiliger antiker Versfu\u00df" + ] + } + ], + "pid": "1058371266", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Versfu\u00df" + } + ], + "md5": "786668fb78bd73815f9b84e68f25e86a" + }, + { + "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" + } + ], + "pid": "1058370677", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "a723f7bf8c90f4d7ce2d9713abdb9811" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Kombiniere mit Sprachbezeichnung und SW Morphem, z. B. SWW Altenglisch ; Morphem ; oht" + ] + } + ], + "pid": "1058284371", + "type": "bf:Topic", + "md5": "6f405e5259f23afd1bb47b209e737aad" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Kombiniere mit Sprachbezeichnung und SW Morphem, z. B. SWW Altenglisch ; Morphem ; aht, Morphem" + ] + } + ], + "pid": "1058284304", + "type": "bf:Topic", + "md5": "d4027af298ae717ed0d000761dbff3db" + }, + { + "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" + } + ], + "pid": "1058284096", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Roter Riese" + } + ], + "md5": "85b00a92812766f0d2297d1a6eda4d44" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Kombiniere mit Sprachbezeichnung und Wortart, z.B. SWW Mittelhochdeutsch ; Adjektiv ; saelic" + ] + } + ], + "pid": "1058280910", + "type": "bf:Topic", + "md5": "b18dea8ba973d110d44e2b2785616e95" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r Tiere" + ] + } + ], + "pid": "1058249436", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bein" + } + ], + "variant_access_point": [ + "Hinterlauf" + ], + "md5": "f570b2838cbe3cbe3ed3248061fe93d4" + }, + { + "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" + } + ], + "pid": "1058206753", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Gegisch" + } + ], + "variant_access_point": [ + "Petreshtice\u0308r Albanisch" + ], + "md5": "beaf5131c9f7ecef6a218bb7426470b0" + }, + { + "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" + } + ], + "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": "7aae1390443bc9c79b702f20833e00ab" + }, + { + "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" + } + ], + "pid": "1055857745", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Gaskonisch" + } + ], + "md5": "84c4d76ccaf32de675ae112f00b05055" + }, + { + "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" + } + ], + "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": "8229c7a12707ea1f68b964b63d987952" + }, + { + "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" + } + ], + "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": "6bc464c47e581708c377e902fbec1eb8" + }, + { + "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" + } + ], + "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": "89afa3191c30c0b522209ca59291bd2e" + }, + { + "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" + } + ], + "pid": "1050801644", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfla\u0308misch" + } + ], + "md5": "53eb1d4398a48c6ade9c5a7ae8e2df72" + }, + { + "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" + } + ], + "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": "24434869dbb0d5b84d52fb58f02951f5" + }, + { + "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" + } + ], + "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": "c062c5a1ced2417bccb2f9b2c0a0645d" + }, + { + "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" + } + ], + "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": "b1e87676de0f78b446d8a515eb0b0d4b" + }, + { + "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" + } + ], + "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": "b0e89bef94de4d39ceb042eca111d18d" + }, + { + "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" + } + ], + "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": "de00fd36ccbb6c96f852d7802b3796ed" + }, + { + "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" + } + ], + "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": "51af0deae7800ffec767bd3cb41d1f86" + }, + { + "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" + } + ], + "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": "fd9fed7c88ef6722abb17d6c6b2dc274" + }, + { + "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" + } + ], + "pid": "1034281828", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "14e0bc44092997c7b9deb82138503037" + }, + { + "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" + } + ], + "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": "4fcf465ac4b257262d9537a331e3d184" + }, + { + "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" + } + ], + "pid": "1030464197", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "18d2a2f0580a7db8585745ca50c3fd11" + }, + { + "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" + } + ], + "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": "d571c4fde4f255b621b1ace416f39b51" + }, + { + "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" + } + ], + "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": "8c249912aef0c4ea84cf1a919f1593a5" + }, + { + "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" + } + ], + "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": "8c88a6c6534a05fb7d9d4cb777362e9c" + }, + { + "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" + } + ], + "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": "dc759b4de205887805de52d08f477fbc" + }, + { + "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" + } + ], + "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": "19d24a325a1a81729435b039e90686c5" + }, + { + "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" + } + ], + "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": "6585d469260d24f1a715a9efaaceeefd" + }, + { + "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" + } + ], + "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": "e10c89ac68929424a160add0f37b85ef" + }, + { + "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" + } + ], + "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": "7b375e94b72e3d24f613a5cbc5081ea6" + }, + { + "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" + } + ], + "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": "bfcbede0edf11ea0bb35da9574b46d2c" + }, + { + "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" + } + ], + "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": "944566984ec273311e8e13500b170513" + }, + { + "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" + } + ], + "pid": "1018220429", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "md5": "f5adacb632ee5afc1ddac954233c5847" + }, + { + "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" + } + ], + "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": "97a794212fd5a58c71316591a27fca97" + }, + { + "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" + } + ], + "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": "df236aed2a273e7044bc7ba3313240db" + }, + { + "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" + } + ], + "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": "21b432860e806602105c31d2629252b2" + }, + { + "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" + } + ], + "pid": "1017177503", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einwanderin" + }, + { + "authorized_access_point": "Chilenin" + } + ], + "md5": "1dce1c0726ebeca373d422b1627428a0" + }, + { + "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" + } + ], + "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": "7ed05fc94a7f6661fa6525d88c89308a" + }, + { + "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" + } + ], + "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": "2d51af55b6a15b0ef9082eeaf73248d5" + }, + { + "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" + } + ], + "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": "c1729f6af51d5ae73c55b4cab13c5b93" + }, + { + "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" + } + ], + "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": "a23d26b606abe80fb6bec928f0217e40" + }, + { + "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" + } + ], + "pid": "1015079253", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "7035c5f9a2a269400b9e86f65eb4d45f" + }, + { + "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" + } + ], + "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": "10371644ed9b393073574683660a0f34" + }, + { + "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" + } + ], + "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": "6b4e02509e1c636efcbc58c710de4ab1" + }, + { + "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" + } + ], + "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": "d0b5943d41e3cad0acd2f9079dcddddc" + }, + { + "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" + } + ], + "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": "a5d04cbae1e84427721abc3ea6b54b8b" + }, + { + "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" + } + ], + "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": "9a38673c7bc169ced0fe04e8e0116a85" + }, + { + "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" + } + ], + "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": "4335b4bf1cf61cd6d4de01d2aaa59559" + }, + { + "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" + } + ], + "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": "13da36da922a68e5205f4b1c815dc4b2" + }, + { + "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" + } + ], + "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": "144ff904ff334d0a45dd6a35b850bee0" + }, + { + "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" + } + ], + "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": "fcc29ffd2888890dd020984348321fc4" + }, + { + "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" + } + ], + "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": "fedc053512dab16697c231c5173b96a7" + }, + { + "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" + } + ], + "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": "49d4aca6cd467fea7339553f502f8b6a" + }, + { + "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" + } + ], + "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": "8da5dabcfcf991d8fdc1524c26716f34" + }, + { + "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" + } + ], + "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": "2bca381a5cb2117c3c07f5f55dde2253" + }, + { + "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" + } + ], + "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": "c534d967659db5a811f8ff79d0fd10cb" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "U\u0308berfamilie der Schmetterlinge" + ] + } + ], + "pid": "1010824597", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schmetterlinge" + } + ], + "md5": "2f8cf3b0caf66b663197f63339d3ced7" + }, + { + "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" + } + ], + "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": "ff374966e68874ce1ab570362c34af24" + }, + { + "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" + } + ], + "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": "a0e8eed6d728438877c437292b8f5045" + }, + { + "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" + } + ], + "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": "abc8ddf751869bf2f3ac240f3cecfcc6" + }, + { + "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" + } + ], + "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": "f20ed873b786d6c67ee847e897d89dd8" + }, + { + "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" + } + ], + "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": "5ebbba3f4794844837ea55eb28678266" + }, + { + "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" + } + ], + "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": "007a7b5f3514937fa9bb0de4e4e38873" + }, + { + "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" + } + ], + "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": "c8bdde462cafcf5057ee07380da3ef6f" + }, + { + "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" + } + ], + "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": "2026786bcfa92389c4fa5aab4f16a14d" + }, + { + "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" + } + ], + "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": "2dfcf2dc13bd08e9cd1676909529365f" + }, + { + "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" + } + ], + "pid": "1006156577", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computerkriminalita\u0308t" + }, + { + "authorized_access_point": "Spionage" + } + ], + "variant_access_point": [ + "Datenspionage", + "Computerspionage", + "Cyberspionage" + ], + "md5": "49e04d38d3bff902f2122735ed08ff60" + }, + { + "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" + } + ], + "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": "e1f9760f57ef34b98c2bb853a67a21f3" + }, + { + "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" + } + ], + "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": "a4d096ed5dbc00b67ec43bb0e19200e6" + }, + { + "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" + } + ], + "pid": "1005003262", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Signaltransduktion" + } + ], + "variant_access_point": [ + "Two-component system", + "TCS" + ], + "md5": "4a6759a5bffcc409eb5727248112f09a" + }, + { + "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" + } + ], + "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": "f8ac2b375477c143ef2ee9e4d2599be5" + }, + { + "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" + } + ], + "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": "13133e59f48e969c5ec0505c637a4f7e" + }, + { + "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" + } + ], + "pid": "1000465403", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "variant_access_point": [ + "Tecklenburger Platt" + ], + "md5": "32eb6c2d1e7bea244dfb4da5fe81a889" + }, + { + "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" + } + ], + "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": "aaf8e2318d90d7716496ed3e0e9bdb81" + }, + { + "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" + } + ], + "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": "9403bf0b97ee93ebd0ad3fa643384b35" + }, + { + "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" + } + ], + "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": "c55d0a260db71a47470699c00df34e37" + }, + { + "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" + } + ], + "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": "29803e63901d5a9476172b93432c3b18" + }, + { + "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" + } + ], + "pid": "998759074", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "variant_access_point": [ + "Morisca (Motiv)" + ], + "md5": "806d1aafdb5c67ffcda8397884f736d7" + }, + { + "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" + } + ], + "pid": "997781491", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Videobearbeitung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "320ff81421ecfec9f9a1a24d013de0de" + }, + { + "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" + } + ], + "pid": "994660987", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zahl" + } + ], + "md5": "796b82098da046610275523cd93f7a1f" + }, + { + "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" + } + ], + "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": "a9e85a71647ad902675770e66e4b4f06" + }, + { + "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" + } + ], + "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": "3282477a3281ec2afe8eda9832ffb480" + }, + { + "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" + } + ], + "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": "d05b8701f2ea2e9b1e66f7a00ce6e3d3" + }, + { + "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" + } + ], + "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": "fa3eaab0a9ddecb464c29405d1ca18d9" + }, + { + "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" + } + ], + "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": "fa447ab21bc67cb52eaa9a78440aae44" + }, + { + "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" + } + ], + "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": "7d18c1815ae5a5ba3373900f18c77517" + }, + { + "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" + } + ], + "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": "6d04a03bcae06114559f97ab376c7b10" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Enstehungszeit 1928" + ] + } + ], + "pid": "992747260", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gotische Schrift" + } + ], + "md5": "06af1af06cf50bc92bdcf49ff66d2eb6" + }, + { + "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" + } + ], + "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": "6bb500221b4b7f259ed7a18095e42f13" + }, + { + "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" + } + ], + "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": "1699bcf0bf4594686ac22c52d626d11b" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1956" + ] + } + ], + "pid": "992744040", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schreibschrift (Druckschrift)" + } + ], + "md5": "92c5c91cdaee557ebb96f38167ac23e7" + }, + { + "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" + } + ], + "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": "de840f0e8bc5a3a20bf018e9aada601e" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1937" + ] + } + ], + "pid": "992740622", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rundgotische Schrift" + } + ], + "md5": "859264ddf8b653c9edb22b44379781b0" + }, + { + "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" + } + ], + "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": "72868ca8dfe11e5d8db2ab88b0ba91ba" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1915" + ] + } + ], + "pid": "992739888", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schreibschrift (Druckschrift)" + } + ], + "md5": "ce13fed911c5154cdc3be65e4f87ae25" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Enstehungsjahr 1923" + ] + } + ], + "pid": "992734894", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Renaissance-Antiqua" + } + ], + "variant_access_point": [ + "Erasmus (Druckschrift)" + ], + "md5": "563ff9da97d0e613b4d2d80230dd2238" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1923 (Hausschnitt)" + ] + } + ], + "pid": "992733510", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Baskerville-Antiqua" + } + ], + "md5": "f550aa720a32970343b26c8c58d91c71" + }, + { + "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" + } + ], + "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": "c07aac8dac888fc738bb7af7ba53ac9b" + }, + { + "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" + } + ], + "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": "f53d90028c8717fe229cf7c730772eb8" + }, + { + "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" + } + ], + "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": "50b4b3c5047f292265a74e388030ddc9" + }, + { + "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" + } + ], + "pid": "990635139", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ingenieurin" + } + ], + "related": [ + { + "authorized_access_point": "Maschinenbauingenieur" + } + ], + "variant_access_point": [ + "Maschineningenieurin" + ], + "md5": "4c8b5a355ee24f049205aa600629029c" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Voreingestellter Wert fu\u0308r System- oder Programmparameter" + ] + } + ], + "pid": "989819264", + "type": "bf:Topic", + "variant_access_point": [ + "Defaultwert", + "Voreinstellung" + ], + "md5": "a0d6f064f2e2337c0a0030a8cec419ba" + }, + { + "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" + } + ], + "pid": "987246100", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Nordischer Krieg (1700-1721)" + } + ], + "md5": "0d20f390ab571d92806816cbf364cfae" + }, + { + "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" + } + ], + "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": "6c9a6803d83ea0bd88ab84dc4384c97d" + }, + { + "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" + } + ], + "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": "0c71db3b4e40743155878bcfc199e624" + }, + { + "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" + } + ], + "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": "f26fe5bfd20f77b68413f5aa29302df3" + }, + { + "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" + } + ], + "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": "f3d92b152b706d7ba8aeaa60f9b50c8c" + }, + { + "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" + } + ], + "pid": "985075619", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erlo\u0308sung" + } + ], + "variant_access_point": [ + "Autosoterik" + ], + "md5": "ab4183a00ed797fe78754bf23c5f9075" + }, + { + "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" + } + ], + "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": "1c04b0361a0e189c552c9d9c638b3584" + }, + { + "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" + } + ], + "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": "6d08c5c66500125f47aa7592537f3a21" + }, + { + "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" + } + ], + "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": "c268ac47c0c959a37b3cc575f948c62b" + }, + { + "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" + } + ], + "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": "badbcfc9e887482173993dd42b470dc0" + }, + { + "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" + } + ], + "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": "2957b051e7d70e051b5a02ac84475199" + }, + { + "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" + } + ], + "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": "14a4b0e243581107b2ce676e4ae533b5" + }, + { + "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" + } + ], + "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": "06f99d96f4fc81f5f2abe1206f6f7ce7" + }, + { + "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" + } + ], + "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": "09e4e187b357c16d8dea755e227578ae" + }, + { + "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" + } + ], + "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": "d8cc6074f9d62bf03afb504dbded4e48" + }, + { + "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" + } + ], + "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": "23196fd2951e36cac8b45d0cd530bc46" + }, + { + "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" + } + ], + "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": "8f08217c4b451e93f7e2ee7e437bd72b" + }, + { + "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" + } + ], + "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": "7fe8328db91f2d8a68ffed67fc286c18" + }, + { + "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" + } + ], + "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": "2a343cf763f6cff8a8bba4d014d91a4b" + }, + { + "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" + } + ], + "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": "98b4bfe51a8127f1f3964b3281a6b0d5" + }, + { + "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" + } + ], + "pid": "979217253", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fertigung" + } + ], + "related": [ + { + "authorized_access_point": "Mikrosystemtechnik" + } + ], + "variant_access_point": [ + "Mikrofertigungsverfahren" + ], + "md5": "4ade0ad17b7bc0a83b7c607aad14cd7b" + }, + { + "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" + } + ], + "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": "640dfca43d867744db28449d4751d63c" + }, + { + "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" + } + ], + "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": "3537f7e6c62fb63aa7a66bc03d6c6528" + }, + { + "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" + } + ], + "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": "86e3d428d10ddbe14708327a471d7994" + }, + { + "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" + } + ], + "pid": "977294390", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sichtfeld" + } + ], + "md5": "0effac53abdc4d228b6670a3297258b6" + }, + { + "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" + } + ], + "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": "ab03585fa3788d9124bb72816280a4c0" + }, + { + "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" + } + ], + "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": "c58eba599945023e1a62646bcd071bde" + }, + { + "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" + } + ], + "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": "6dd0a108851399bc4530cd256354b662" + }, + { + "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" + } + ], + "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": "d42edfcefb070bb64c63f3df54821213" + }, + { + "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" + } + ], + "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": "1dcbb925d2ae9db4e3ee9ab73ca74943" + }, + { + "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" + } + ], + "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": "5362ca31c9b9eb50b020e548f2924748" + }, + { + "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" + } + ], + "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": "b2a2b223eb4df2a50981876d0eb81775" + }, + { + "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" + } + ], + "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": "0723c75659ead86971b9b2f6d328b83a" + }, + { + "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" + } + ], + "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": "6ecfcdb8e959cd66391e5cd5d0c21772" + }, + { + "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" + } + ], + "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": "182e20684b67a3758d0437ac0fb81cfb" + }, + { + "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" + } + ], + "pid": "972391010", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tumor" + } + ], + "variant_access_point": [ + "Germinaler Tumor" + ], + "md5": "aecf1032c164af645854a128fd69916b" + }, + { + "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" + } + ], + "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": "3682ec5488c476e2b6b6bf54f108f1b5" + }, + { + "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" + } + ], + "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": "9d2abd87482d924363e0c4091889a168" + }, + { + "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" + } + ], + "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": "33de2e9a532948db010f63d9178e637f" + }, + { + "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" + } + ], + "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": "5b44e347ec912af5f75cea8f6555a1ef" + }, + { + "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" + } + ], + "pid": "969678363", + "type": "bf:Topic", + "variant_access_point": [ + "Mehrgeschlecht", + "Plurigenus" + ], + "md5": "23690fc23b1f5a321404e1699f9f05ca" + }, + { + "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" + } + ], + "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": "be494cd4f02806b8ed490eb7508ef0c6" + }, + { + "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" + } + ], + "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": "e40857e85cd60e9241be20a9f3dccd32" + }, + { + "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" + } + ], + "pid": "968634737", + "type": "bf:Topic", + "variant_access_point": [ + "Chipkarte" + ], + "md5": "c8b74e29c1c9072cc50f0fc4681dcf2f" + }, + { + "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" + } + ], + "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": "3ded776044acf1fc2957dc0c4eb07cdd" + }, + { + "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" + } + ], + "pid": "968387705", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kegel" + } + ], + "md5": "9f9093468238019d3df30fa5deb8ba9d" + }, + { + "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" + } + ], + "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": "b1ec5994d65d346fa9104269c256e8e7" + }, + { + "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" + } + ], + "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": "903bea04b693efdae890c91f35dbcb3b" + }, + { + "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" + } + ], + "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": "e2a0284b5449ffbde232b0771324c3f9" + }, + { + "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" + } + ], + "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": "7fb874053ff876421507344e04664f59" + }, + { + "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" + } + ], + "pid": "967734657", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Onkologie" + } + ], + "variant_access_point": [ + "Prima\u0308re Mehrfachmalignome", + "Multiple malignant tumors" + ], + "md5": "160aa41ae3d0cf6d0e2ed35a309c58bb" + }, + { + "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" + } + ], + "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": "4b3d3494ddc9651439240c10211c91e4" + }, + { + "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" + } + ], + "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": "ee2a49647e815ab0167e349845223b3f" + }, + { + "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" + } + ], + "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": "2e05b2b0dc3c1ee48be282f5c74e945f" + }, + { + "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" + } + ], + "pid": "96717757X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Metallbauteil" + } + ], + "variant_access_point": [ + "Eisen", + "Eisen" + ], + "md5": "dce2971cad2f34256d1a00322090c3b2" + }, + { + "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" + } + ], + "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": "a5a133c0d40b0c2a82412a3bf068bd50" + }, + { + "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" + } + ], + "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": "43f7db7727456c68c63ffc5c0775d7eb" + }, + { + "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" + } + ], + "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": "797e1c7582848a227de4ffbd877a9f95" + }, + { + "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" + } + ], + "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": "a9284b20c577b6d806d5367e66237c3e" + }, + { + "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" + } + ], + "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": "0381a1f335c318c5e8bda68295ab1ca0" + }, + { + "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" + } + ], + "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": "27e31c61860f1f02f5864ab191c5bad7" + }, + { + "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" + } + ], + "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": "4207f03d6d295db538756e2d8ba0acd5" + }, + { + "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" + } + ], + "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": "061deb0f263404f7852b4f01564770de" + }, + { + "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" + } + ], + "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": "927b1321ac7c6f44151b312d4a79177d" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Da\u0308n.-schwed. Krieg 1675-1679" + ] + } + ], + "pid": "964979683", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "md5": "cc62ed1034f2b2350caade0c15c7e8db" + }, + { + "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" + } + ], + "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": "2fdad8e35365a19657ef0af7004030ca" + }, + { + "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" + } + ], + "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": "2dd4a2da97628aced7ea6b2808f3762b" + }, + { + "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" + } + ], + "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": "a85ef1a82974d7904ea1da51f77e0f22" + }, + { + "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" + } + ], + "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": "5fccda872780bc3151b9bcbf0c7b3fa1" + }, + { + "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" + } + ], + "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": "f258fa42fdcd17ec98b64d3f92760999" + }, + { + "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" + } + ], + "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": "daf76e38e824dbd5502e5428cdfb768e" + }, + { + "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" + } + ], + "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": "ae51212867ed59568647c8353a03b533" + }, + { + "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" + } + ], + "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": "6458a201774e2f762dbc6b6bdcd8e920" + }, + { + "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" + } + ], + "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": "f71d5f2e8e9054eceff6a9f07f5ed53d" + }, + { + "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" + } + ], + "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": "a322bfff6655e6a56ab89bb92e445971" + }, + { + "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" + } + ], + "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": "8bcadbbd9ca9e2a25c727fe561d7aac5" + }, + { + "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" + } + ], + "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": "6fbedff0740e6bb7a39715eeb02a91ab" + }, + { + "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" + } + ], + "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": "538d06c5aef9623dc306f2aa77bad751" + }, + { + "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" + } + ], + "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": "801b809969689850711a91a8dd64881e" + }, + { + "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" + } + ], + "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": "913dadb82b152a401d684f5e9e8e35b8" + }, + { + "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" + } + ], + "pid": "96317066X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Manufaktur" + } + ], + "variant_access_point": [ + "Spiegelglas" + ], + "md5": "82976cce95be23d95fffe38e0f7db17e" + }, + { + "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" + } + ], + "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": "0faa18eea6937ee6a983d11c6eb19349" + }, + { + "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" + } + ], + "pid": "963125125", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausschuss" + } + ], + "md5": "fb6b8eae8e92d906bcc8af52ceaeaffc" + }, + { + "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" + } + ], + "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": "c036c10fcf094f05d9ac400acc5f9d47" + }, + { + "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" + } + ], + "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": "6cb028b64c5b599484618f387e971683" + }, + { + "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" + } + ], + "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": "80f8f33e8cffd7c73ddd1140a10bd269" + }, + { + "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" + } + ], + "pid": "962794015", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Messgera\u0308t" + } + ], + "md5": "9b6186f1c64aef9ff16794ff899b2c5d" + }, + { + "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" + } + ], + "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": "241f4a33aceaff4b7c9d6523b4311268" + }, + { + "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" + } + ], + "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": "d73c9ed4e19421ac0a753a9cbd9c7e91" + }, + { + "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" + } + ], + "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": "0fd2b99733e887b8a37108362f0e7185" + }, + { + "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" + } + ], + "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": "ccf78f8b6c9cd70bb9ab2d6a2afb8951" + }, + { + "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" + } + ], + "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": "b1bf46c04a927e23ed5c808c5b7affb3" + }, + { + "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" + } + ], + "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": "ecbbc39db6fac83a5390b954d21d1db3" + }, + { + "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" + } + ], + "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": "f04e27fc8114b34c3efb221c20a38771" + }, + { + "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" + } + ], + "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": "e06ecc714871e91a1ae9de83926c30aa" + }, + { + "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" + } + ], + "pid": "960161872", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Konstruktion" + } + ], + "variant_access_point": [ + "A\u0308nderungskonstruktion" + ], + "md5": "7d20f3651fe0ac72b88131530cd70a54" + }, + { + "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" + } + ], + "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": "fa10eb297fe01ba2f9ac982dea9b8296" + }, + { + "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" + } + ], + "pid": "959960775", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Honen" + } + ], + "variant_access_point": [ + "Precidor-Honen" + ], + "md5": "b8bd47fa607f04b440129ce3b43cd8d2" + }, + { + "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" + } + ], + "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": "e0471b82ba74f4ec35df181c66af84f2" + }, + { + "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" + } + ], + "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": "e6ce97448048233d742f19ea87a78217" + }, + { + "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" + } + ], + "pid": "959710248", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Abgeschlossenheit" + } + ], + "variant_access_point": [ + "Cartesische Abgeschlossenheit" + ], + "md5": "394cd20bb3397d02c163545a53b39059" + }, + { + "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" + } + ], + "pid": "959143459", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gera\u0308t" + } + ], + "variant_access_point": [ + "Fahrbares Gera\u0308t", + "Mobiles Gera\u0308t", + "Tragbares Gera\u0308t" + ], + "md5": "aa037ce4f600daf4cec162c75a391042" + }, + { + "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" + } + ], + "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": "b28e5984c200eb0fc06389ca3f08069f" + }, + { + "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" + } + ], + "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": "8fc970ae6f6884763bf398b312add87d" + }, + { + "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" + } + ], + "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": "a38d509d8771024d03ed9974ba0adf2b" + }, + { + "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" + } + ], + "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": "9415c4db60274f8e3f78ef4c78da70d2" + }, + { + "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" + } + ], + "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": "4581ada1627e58db273d814f544d651d" + }, + { + "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" + } + ], + "pid": "958195455", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Folge (Mathematik)" + } + ], + "md5": "c522b1917cf37cf99186862dfb9b989a" + }, + { + "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" + } + ], + "pid": "958121966", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Linguistik" + } + ], + "variant_access_point": [ + "Volkslinguistik" + ], + "md5": "6c26d6044b181c5e1edac427c2d413fc" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Terminus der Phototechnik" + ] + } + ], + "pid": "957564554", + "type": "bf:Topic", + "md5": "3b87ffd85a47edec8160bb122fb6b8f5" + }, + { + "authorized_access_point": "Washington (DC, 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" + } + ], + "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": "408b3cb2f312c6025f582437f4046668" + }, + { + "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" + } + ], + "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": "e0e17567a171462a6ffb3d35a3fa2837" + }, + { + "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" + } + ], + "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": "ed9de9648f7f31cc9573bcca8ac75e63" + }, + { + "authorized_access_point": "Washington (DC, 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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Washington (D.C.)", + "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": "176edc170d48815d32f60f31fad0cbe5" + }, + { + "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" + } + ], + "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": "a271df780322faf5863b2ec02dbf053b" + }, + { + "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" + } + ], + "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": "4ee953e4da64869bca787c260d9fe637" + }, + { + "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" + } + ], + "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": "b3c04172cc10284288e9669ef12096f3" + }, + { + "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" + } + ], + "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": "319155cd3ed123dc20d4ecf446aaaa3b" + }, + { + "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" + } + ], + "pid": "955633087", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Windkanal" + } + ], + "md5": "ce069b7a611f18bfceddc811b8515c66" + }, + { + "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" + } + ], + "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": "19c483c13e3ce84bbd7caca44c7a2d41" + }, + { + "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" + } + ], + "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": "95b4c171b00fff1d6f9d88649984080c" + }, + { + "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" + } + ], + "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": "bc3262ee42b3e3e4bf09e98c21dc2d4d" + }, + { + "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" + } + ], + "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": "1718322024d0d2868364f92e7b00eb4c" + }, + { + "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" + } + ], + "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": "1726540cedecbcfbedbb36541c5588a8" + }, + { + "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" + } + ], + "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": "05fe917d95bf6e9e1a9910a54ca9fd4f" + }, + { + "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" + } + ], + "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": "b7f4c3806967de8152087e72d1f02f31" + }, + { + "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" + } + ], + "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": "be60837ede0469fea2e2adc2eb035eab" + }, + { + "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" + } + ], + "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": "281300961f33cbd9610d9bf1921790cb" + }, + { + "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" + } + ], + "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": "2a5b9c812159777fd06d72c5b91c00e7" + }, + { + "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" + } + ], + "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": "73d366a09e46609c906785c0856c8f70" + }, + { + "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" + } + ], + "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": "79e47c3cf4a97c78e1318d09b4dcd581" + }, + { + "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" + } + ], + "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": "0b2cadd9179e2ae15fc558e5cb759ffe" + }, + { + "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" + } + ], + "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": "473d5b83e968b0171bb1fb802f66807b" + }, + { + "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" + } + ], + "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": "7df6852beaee5f7b12dc9e9585e088a5" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. Mittelhochdeutsch ; Adjektiv ; guot" + ] + } + ], + "pid": "954299973", + "type": "bf:Topic", + "md5": "b4c715d7b2cde5e10d6fcd68703e4021" + }, + { + "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" + } + ], + "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": "5f7383e34edb00965992ce211927d8dd" + }, + { + "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" + } + ], + "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": "6137b4a04467b89998b9fea77ed24620" + }, + { + "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" + } + ], + "pid": "954021185", + "type": "bf:Topic", + "variant_access_point": [ + "Abfolge", + "Sequenz (Gemeinsprache)", + "Sequenz (Abfolge)", + "Sequenz (Reihenfolge)" + ], + "md5": "7efdf33e888cfb50b3c7e58f36ae26aa" + }, + { + "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" + } + ], + "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": "c65740d3e7750f8deb0aa5814e15e9a2" + }, + { + "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" + } + ], + "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": "3d2063e74b6683162b25132bf1731868" + }, + { + "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" + } + ], + "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": "68ffa365faf4510b53d4d0f31fd6b7b3" + }, + { + "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" + } + ], + "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": "9b31e3ff7385fa156eb2206859f30db4" + }, + { + "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" + } + ], + "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": "7667fe529a5fe80b79019d9045ce2950" + }, + { + "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" + } + ], + "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": "afd0ea3ead2176e05af4fae08b8dcd0e" + }, + { + "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" + } + ], + "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": "92de3f088712d56bb5f6edefce784465" + }, + { + "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" + } + ], + "pid": "952966336", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gemischbildung" + } + ], + "variant_access_point": [ + "Kraftstoff" + ], + "md5": "93e1388c73f1cd10c25dd0196890f6d5" + }, + { + "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" + } + ], + "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": "7089538793f90d73ef219bfb017484c1" + }, + { + "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" + } + ], + "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": "bf143dee15e5fd3da51fa854ac32a4d5" + }, + { + "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" + } + ], + "pid": "952794357", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Decodierung" + } + ], + "variant_access_point": [ + "Turbo-Decodierung" + ], + "md5": "dc88a798d285cb919116f77fbbc00824" + }, + { + "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" + } + ], + "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": "d52ec1e81f167f6cae4b8157e6b14e43" + }, + { + "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" + } + ], + "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": "3758180b9060f1b711e51adf28abb63b" + }, + { + "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" + } + ], + "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": "bbb2bdc4f7f5ea31a0e5cd383d219414" + }, + { + "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" + } + ], + "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": "7d2da45c98becab5c4676c888babbb34" + }, + { + "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" + } + ], + "pid": "95171337X", + "type": "bf:Topic", + "md5": "e1a6a0ed7e407bfb3be7cf11b92ea1bf" + }, + { + "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" + } + ], + "pid": "951567241", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einbau" + } + ], + "variant_access_point": [ + "Sto\u0308rko\u0308rper", + "Ho\u0308cker (Wasserbau)" + ], + "md5": "987255721041869cd96c89363fa8cccd" + }, + { + "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" + } + ], + "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": "392a4ed93a7b1285a049534ab7915239" + }, + { + "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" + } + ], + "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": "0777fee4539c0604bb89c09cb161d6c0" + }, + { + "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" + } + ], + "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": "e381b7f8499ca402438380de84a0927f" + }, + { + "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" + } + ], + "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": "d80c6c6c981cac482c23ef9fd2f94314" + }, + { + "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" + } + ], + "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": "97d281fbc4e0111910bd68814640632b" + }, + { + "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" + } + ], + "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": "3d2fa25f3ed8082e87e3c937c7a45f97" + }, + { + "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" + } + ], + "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": "4ef7742ff17182d3ea3ca478c544ca54" + }, + { + "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" + } + ], + "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": "98dc674daa20aae9dd13f8971e4f61df" + }, + { + "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" + } + ], + "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": "c574b5692da43415d761872af7bbe4f7" + }, + { + "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" + } + ], + "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": "d12acf9181b17c92dbd7137e923388d1" + }, + { + "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" + } + ], + "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": "2f5a08ccd9f1a7f34f7db5d7a1711b19" + }, + { + "authorized_access_point": "Schweden (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" + } + ], + "pid": "950268593", + "type": "bf:Topic", + "variant_access_point": [ + "Bauernaufstand" + ], + "md5": "2b329d0c277f5f9213152134fbc540e3" + }, + { + "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" + } + ], + "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": "ea9811c0ef5eb2853b490e3244f68b84" + }, + { + "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" + } + ], + "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": "09d37efe294ef88d34fc04d65ce010bb" + }, + { + "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" + } + ], + "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": "6c1ca1e037131af8bac37345d7fab005" + }, + { + "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" + } + ], + "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": "6345898ef2c79f6bee1f2c359e138241" + }, + { + "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" + } + ], + "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": "79cd558bd91beed173b383123ce33ff7" + }, + { + "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" + } + ], + "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": "68075759bc0556228ab7e6414e3d6a55" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Unterart der Schimpansen" + ] + } + ], + "pid": "948861975", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hominidae" + } + ], + "md5": "6cbfb9dd8855b5af8d3bd390450b9917" + }, + { + "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" + } + ], + "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": "3dc92b4b59e1f824204feb8beb873749" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Bishops", + "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": "4e3c465c76dcd8303bf1f5553177a523" + }, + { + "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" + } + ], + "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": "c994952999941f3c781acea0a0b86857" + }, + { + "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" + } + ], + "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": "3427f3c89e1afb175dc4ba48c3d0a2dc" + }, + { + "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" + } + ], + "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": "8deb39adac273a58a3d2f382d7d1b974" + }, + { + "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" + } + ], + "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": "6f04307ad1cda113d794c2f43f9a6970" + }, + { + "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" + } + ], + "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": "d547faf469e60331d35eac571df3bd5c" + }, + { + "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" + } + ], + "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": "73b03c2f243bdc38b587658a79f9350a" + }, + { + "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" + } + ], + "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": "2c50e51b3c4eb0deae7a5a29af510b04" + }, + { + "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" + } + ], + "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": "07dfb817bd52e39ac7961d092dff0804" + }, + { + "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" + } + ], + "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": "5b43ed4fa0a506787eb82f70a2a1336f" + }, + { + "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" + } + ], + "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": "320c2a87695ca33ff83df67914d1bb81" + }, + { + "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" + } + ], + "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": "6dbb49df54105dbfdf18103aa9d8ad2c" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Fruits", + "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": "77a994e27d3d74a03accc2c226867d18" + }, + { + "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" + } + ], + "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": "26290c8b7850a66e02e28bdf595dd88c" + }, + { + "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" + } + ], + "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": "ba207337804ec6eb1a75fdee5f3380a4" + }, + { + "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" + } + ], + "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": "85a2874446cec258f2eaad068b31349d" + }, + { + "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" + } + ], + "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": "baacd7e57ecf66637931509ee2d2f769" + }, + { + "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" + } + ], + "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": "7c40ad38e35091ddb5f555ca371c1be8" + }, + { + "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" + } + ], + "pid": "94736093X", + "type": "bf:Topic", + "variant_access_point": [ + "Urteilskorrektur", + "Urteil", + "Urteil" + ], + "md5": "d2c1e3719f97e4c819b698804dd8ed5f" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ostslaw. Stammesverband" + ] + } + ], + "pid": "947337555", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ostslawen" + } + ], + "variant_access_point": [ + "Kryvic\u030cy", + "Krivic\u030ci" + ], + "md5": "4893cca718734c7941278c0c23171129" + }, + { + "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" + } + ], + "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": "3332258540edffd4cc52d412bc75be63" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. Englisch ; Substantiv ; democracy" + ] + } + ], + "pid": "947085017", + "type": "bf:Topic", + "md5": "645f1175084e22fe1d125c6ee7d4ee0a" + }, + { + "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" + } + ], + "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": "5df210a59cb3b5b35aecf152464881e9" + }, + { + "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" + } + ], + "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": "71b2e7e334691afcfc9e9c6af545ec9c" + }, + { + "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" + } + ], + "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": "042bab32250e3563846ccf290ce2a6ff" + }, + { + "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" + } + ], + "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": "85854dfff3841479760283c64109a50e" + }, + { + "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" + } + ], + "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": "c9634b2e73f31bd3ba0dc09cb518d708" + }, + { + "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" + } + ], + "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": "35e245985b806b35c2fa85c33a7b5403" + }, + { + "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" + } + ], + "pid": "946530629", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "AutoCAD" + } + ], + "md5": "a7aa5d3b6f30136cb573777dd75f43c9" + }, + { + "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" + } + ], + "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": "77975a87f871f60711a6705ff4f2b539" + }, + { + "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" + } + ], + "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": "a575b2e1fc894f06760f4da3b7855e25" + }, + { + "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" + } + ], + "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": "891eed9d377bbc9fb1532b071a98819f" + }, + { + "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" + } + ], + "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": "a1a39c1e8dc1997d8429c43b2280f733" + }, + { + "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" + } + ], + "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": "4b7658d27c38c82fe14107077a56a30e" + }, + { + "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" + } + ], + "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": "bab2390c400ce41dcf3780f4ccbbf74e" + }, + { + "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" + } + ], + "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": "75d8067d41a5998f4ab7a130dcc73c1a" + }, + { + "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" + } + ], + "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": "c56c3b7a3167d52dfe83df21aee5d377" + }, + { + "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" + } + ], + "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": "8340af21b20f80240debac9c4fdccd87" + }, + { + "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" + } + ], + "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": "115e5a8973969ed862325a318a0c69f8" + }, + { + "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" + } + ], + "pid": "943836476", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Erinnerung" + } + ], + "variant_access_point": [ + "Geda\u0308chtnis (Gedenken)", + "Angedenken" + ], + "md5": "867195a126f690c8330e3d7e1695d2b5" + }, + { + "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" + } + ], + "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": "c6be583f63aff2d4d4086225b54f231b" + }, + { + "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" + } + ], + "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": "34099f243d2f55544ece2e4e4fa5b9f6" + }, + { + "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" + } + ], + "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": "49b4e775d694ec4875d75594d636838d" + }, + { + "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" + } + ], + "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": "4fa899c2fde21f7645d3fe293acd8b23" + }, + { + "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" + } + ], + "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": "0529f970bb68b53c9e8019263ca2ed36" + }, + { + "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" + } + ], + "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": "9dd60ace93b2faa29694e5fa1db308f7" + }, + { + "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" + } + ], + "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": "01e440cabcf600c97880af3448b3705d" + }, + { + "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" + } + ], + "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": "5af942dd4f9a3d6efe30e4743860cbe4" + }, + { + "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" + } + ], + "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": "8e8766e2bf1f0007edc83bcc109992e1" + }, + { + "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" + } + ], + "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": "f7245c9ad104b60117993ca765175fab" + }, + { + "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" + } + ], + "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": "ca3e801c5cd9426810edb80a5190b720" + }, + { + "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" + } + ], + "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": "2167a373ee8c5d6bcfc50f0f3ccfac0d" + }, + { + "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" + } + ], + "pid": "941589021", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "La\u0308ngen" + } + ], + "md5": "7f1ceab2f81d931a1b8ade367bef6c39" + }, + { + "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" + } + ], + "pid": "941532704", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Versagen" + } + ], + "related": [ + { + "authorized_access_point": "Bruch" + } + ], + "md5": "85b658a7865efadc03ef6278d5d1707d" + }, + { + "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" + } + ], + "pid": "941495256", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kalibrieren (Messtechnik)" + } + ], + "variant_access_point": [ + "Autocalibration" + ], + "md5": "34019ee3b8b429784d9868b0302f4a57" + }, + { + "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" + } + ], + "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": "498793c1f7874fec96ecec6f046aa260" + }, + { + "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" + } + ], + "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": "f6de86e59145717d3aeec210ce39440e" + }, + { + "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" + } + ], + "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": "f699861fad6a1659b304bb18bfa3ccac" + }, + { + "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" + } + ], + "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": "e08d224ec6f8b44b672e5bbeaef889b5" + }, + { + "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" + } + ], + "pid": "941131572", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ordnung" + } + ], + "variant_access_point": [ + "Alphabetisierung (Ordnung)", + "Alphabetische Anordnung" + ], + "md5": "929704c916d9506b341d00aedcf64a82" + }, + { + "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" + } + ], + "pid": "940921588", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Butanole" + } + ], + "variant_access_point": [ + "Butanol (2-)", + "2-Butanol", + "Butan-2-ol" + ], + "md5": "6d66f56129bb359c91bf284828299644" + }, + { + "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" + } + ], + "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": "50be3b13df83574969fd84a25db017a5" + }, + { + "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" + } + ], + "pid": "940788187", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Baukonstruktion" + } + ], + "variant_access_point": [ + "Ausfu\u0308llung" + ], + "md5": "76ef60c634f5c8ed58377dd97fa000d1" + }, + { + "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" + } + ], + "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": "bab5283a46ec3d9479dd13ee84d994bf" + }, + { + "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" + } + ], + "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": "b69bb4442408b706d03a2320f398704a" + }, + { + "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" + } + ], + "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": "2bbf1444bebc1465b70079960e098472" + }, + { + "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" + } + ], + "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": "e61f3354abb3682f7b44411934ccbd1d" + }, + { + "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" + } + ], + "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": "0b5242f685f36f9dc2df1b0ddee66bef" + }, + { + "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" + } + ], + "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": "c3dbdc8d3b69d55b7beddd89ae3653e3" + }, + { + "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" + } + ], + "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": "00f5f7db3d479c3cb4b94b0779771401" + }, + { + "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" + } + ], + "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": "aaa4bc49e0e1fe00b268c55fa14120b4" + }, + { + "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" + } + ], + "pid": "940125897", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Polnisch" + } + ], + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "variant_access_point": [ + "Mundart Polnisch (Kleinpolen)" + ], + "md5": "af48f28532f1cdf195a0a247b96c9861" + }, + { + "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" + } + ], + "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": "dd9273ed5f8120a169ab27429d1a6264" + }, + { + "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" + } + ], + "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": "365d774d2a78b41d4bc5592b37d2347e" + }, + { + "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" + } + ], + "pid": "940049570", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bekanntheit" + } + ], + "variant_access_point": [ + "Marke", + "Bekannte Marke", + "Beru\u0308hmte Marke", + "Starke Marke" + ], + "md5": "16ea406b353ef61956172510b58dd191" + }, + { + "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" + } + ], + "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": "87b7b59954ce8ecad562639719481956" + }, + { + "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" + } + ], + "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": "5234baafad867f0dd5166525e55b6306" + }, + { + "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" + } + ], + "pid": "199254435", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seidenbienen (Familie)" + } + ], + "variant_access_point": [ + "Colletes hederae" + ], + "md5": "24a2e3920dd5af977e1197644d5e9842" + }, + { + "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" + } + ], + "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": "0eeb357b51a39869b673d23dffc5772a" + }, + { + "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" + } + ], + "pid": "199099952", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "md5": "cde1c9cbe572c37cc0443e7991938361" + }, + { + "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" + } + ], + "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": "8e07d334f592be118a20470e49f0505b" + }, + { + "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" + } + ], + "pid": "130749478", + "type": "bf:Topic", + "md5": "792a32aeb6416e0ba1022321bd57e159" + }, + { + "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" + } + ], + "pid": "130741531", + "type": "bf:Topic", + "md5": "3b288b59d795d9c4d8166b55e794ad5b" + }, + { + "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" + } + ], + "pid": "130722529", + "type": "bf:Topic", + "md5": "99b1613a623e828cb71948173524340a" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Von Arzneimittelallergie unterschieden, siehe dort" + ] + } + ], + "pid": "130715107", + "type": "bf:Topic", + "variant_access_point": [ + "Inkompatibilita\u0308t" + ], + "md5": "9ae7ef7e7fd0e146888c61e09b1beb2d" + }, + { + "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" + } + ], + "pid": "130712930", + "type": "bf:Topic", + "variant_access_point": [ + "Stickstoff-Schwefel-Verbindungen", + "Schwefelnitride" + ], + "md5": "ca7b4c0ce5b13fc3eb471142f25d449e" + }, + { + "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" + } + ], + "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": "f7637ca3d3d5fd4d5edc91620f6fa41d" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "einz. Richtlinien werden nach \u00a7715 RSWK angesetzt" + ] + } + ], + "pid": "130700525", + "type": "bf:Topic", + "md5": "14c098750d76f5168ea071e62d6cc311" + }, + { + "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" + } + ], + "pid": "130699152", + "type": "bf:Topic", + "md5": "501ce04b70435a06c2970fb954fbecfd" + }, + { + "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" + } + ], + "pid": "130699101", + "type": "bf:Topic", + "md5": "e0939910cf5534c907dbe5a0018c70b0" + }, + { + "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" + } + ], + "pid": "130698644", + "type": "bf:Topic", + "md5": "01a30df4e6c8c57a72836ab755cb7c2d" + }, + { + "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" + } + ], + "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": "8a5d95515789966e55a1696f3e22dd17" + }, + { + "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" + } + ], + "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": "de35b08243bcf872ab6edec12a3b9853" + }, + { + "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" + } + ], + "pid": "043270328", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aluminiumhydrid" + } + ], + "md5": "184e1ea1e39cca77573c34adf64106f7" + }, + { + "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" + } + ], + "pid": "043269605", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kreatur" + } + ], + "md5": "476af237c2574b61c9368e99f0e842b7" + }, + { + "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" + } + ], + "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": "dbee6ecab4ddb3493870604d6a6a4bb2" + }, + { + "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" + } + ], + "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": "3880e3f29a3cc1a48af0204501b6f064" + }, + { + "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" + } + ], + "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": "785b513c4de599dde324d5442594c151" + }, + { + "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" + } + ], + "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", + "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": "1fcf2c0958d1763c802e9f709faf3ad5" + }, + { + "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" + } + ], + "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": "97fffa4cc032cdc500a3fdbc6d55a07d" + }, + { + "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" + } + ], + "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": "5000492df2c1685a619081171c42e011" + }, + { + "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" + } + ], + "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": "eb5bd44096c588867bd262672921e2fb" + }, + { + "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" + } + ], + "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": "b704034193c01fcab03964328663adeb" + }, + { + "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" + } + ], + "pid": "043166202", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "variant_access_point": [ + "Montblanc-Literaturpreis fu\u0308r kurze Geschichten" + ], + "md5": "20cf71b1a74b8f5becbf46502230c3c3" + }, + { + "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" + } + ], + "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": "7e5ba097a0e1ea98cdc04280f0845cf2" + }, + { + "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" + } + ], + "pid": "043153607", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Halbleiterlaser" + } + ], + "variant_access_point": [ + "Distributed-Bragg-Reflektor-Laser" + ], + "md5": "54e82cf5e7b6bd393db0ca70bf207e85" + }, + { + "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" + } + ], + "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": "28617aade62f5c3a0470d1228130b2c8" + }, + { + "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" + } + ], + "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": "9188a2e7a8d7ad3245ad8eb57c73008e" + }, + { + "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" + } + ], + "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": "47a54df497cee4d86e9ce96d9244ba7d" + }, + { + "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" + } + ], + "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": "8a11676d22c21f0e9e49157b10c67ca0" + }, + { + "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" + } + ], + "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": "f77b3692e732fd64b6e45cf9b7033eeb" + }, + { + "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" + } + ], + "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": "a3aabd1fdb343bae496350332b88a6ef" + }, + { + "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" + } + ], + "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": "fb5697f213b88bc9d224fe5be5375e72" + }, + { + "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" + } + ], + "pid": "04311704X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Regelung" + } + ], + "md5": "3153fa84eb695938d9cc84e576c7c07f" + }, + { + "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" + } + ], + "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": "7f17cf2af8540501dbcddc514f05ca25" + }, + { + "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" + } + ], + "pid": "043104754", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Digitale Telefonvermittlung" + } + ], + "md5": "42fb42d7faffa91aca717712e3243e58" + }, + { + "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" + } + ], + "pid": "043092756", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "A\u0308rztin" + } + ], + "related": [ + { + "authorized_access_point": "Vertragsarzt" + } + ], + "variant_access_point": [ + "Kassena\u0308rztin" + ], + "md5": "7b9fe667fa06aad025c50b16db4bf775" + }, + { + "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" + } + ], + "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": "63090521f42bed777df9aa8f8daaf810" + }, + { + "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" + } + ], + "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": "8bcb27e294e29fe98e770900381f2885" + }, + { + "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" + } + ], + "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": "8c874c7bb162c73ad875b6aef8904676" + }, + { + "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" + } + ], + "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": "e4e020888e82bb05b3553ef37ffd014b" + }, + { + "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" + } + ], + "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": "bf286f3324c64ab58d2ce9563ee183fb" + }, + { + "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" + } + ], + "pid": "043049354", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bibliotheksinformationssystem" + } + ], + "md5": "c46c2d79d9b0790fb440463c5bfe3979" + }, + { + "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" + } + ], + "pid": "043047815", + "type": "bf:Topic", + "md5": "f69d1db0ca31a3cb9819d933768dfed3" + }, + { + "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" + } + ], + "pid": "043045820", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stochastischer Prozess" + } + ], + "md5": "22861ed87c3469d921c36e924a668401" + }, + { + "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" + } + ], + "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": "02abae30c9a9f690031eb03f499d35af" + }, + { + "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" + } + ], + "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": "546e096f37b69e4f237c15d97ee1b8cc" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verfasst 1587, sollte die Union Polens u. Schwedens vorbereiten" + ] + } + ], + "pid": "043006248", + "type": "bf:Topic", + "variant_access_point": [ + "Kalmar stadgar" + ], + "md5": "ecbeb5656fc366c8f75d124a90022108" + }, + { + "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" + } + ], + "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": "0f76eabdc651b5a9c2466cca0197eb35" + }, + { + "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" + } + ], + "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": "c138594f80382c80e94f2efbb64a4b27" + }, + { + "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" + } + ], + "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": "b6a8271eda56437b7dac8a11565c33a2" + }, + { + "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" + } + ], + "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": "8f4ba60b756e5ad75d9c21b91e8b1352" + }, + { + "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" + } + ], + "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": "76037902b5e02def26451a2b163f3d15" + }, + { + "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" + } + ], + "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": "65e44aa7e065cc82786963aaf3b97eff" + }, + { + "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" + } + ], + "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": "9c8159c517102c68f21ce78911ea53ce" + }, + { + "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" + } + ], + "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": "4622742d491234353b4d31fd16116408" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Italian language", + "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": "62694956b3d9bc06d68734c5a63376f1" + }, + { + "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" + } + ], + "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": "813c1f3983f6f64fc5c4318bd033a976" + }, + { + "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" + } + ], + "pid": "042898250", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Harmonische Analyse" + } + ], + "related": [ + { + "authorized_access_point": "Amenabilita\u0308tstheorie" + } + ], + "variant_access_point": [ + "Amenability" + ], + "md5": "c8f6f4ae9902cb32dbfd297c6780b416" + }, + { + "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" + } + ], + "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": "18aca1965ab7d8fd3a5f1d4b6dc6ed15" + }, + { + "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" + } + ], + "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": "95ca24942d4baf38b0296ae069120241" + }, + { + "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" + } + ], + "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": "305024fd18d042b7bceecb8856760df5" + }, + { + "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" + } + ], + "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": "f895c5bb07a407fa3330aa550e32e4f0" + }, + { + "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" + } + ], + "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": "d1c24f6e02ff55eb672b2ba9455ba15e" + }, + { + "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" + } + ], + "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": "a89bb763a70a7685b5e61b6718889083" + }, + { + "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" + } + ], + "pid": "042829194", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Operatoralgebra" + } + ], + "md5": "5b6ccbc374e7d10d215f55cae9fde9c8" + }, + { + "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" + } + ], + "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": "646caff391621ed7bc5fe93a6c41611d" + }, + { + "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" + } + ], + "pid": "042825210", + "type": "bf:Topic", + "variant_access_point": [ + "Riss" + ], + "md5": "ec2f8f02ced8a4f4012c303ae2a4d34d" + }, + { + "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" + } + ], + "pid": "042819415", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Profil (Aerodynamik)" + } + ], + "md5": "a9877c9a936c29625e53aa9f3fa2b6d2" + }, + { + "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" + } + ], + "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": "3532fff8f8733a1b26917531b8ad3613" + }, + { + "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" + } + ], + "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": "25815339f06162e017c9af8cb127e555" + }, + { + "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" + } + ], + "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": "46f1e2141d52e1e652f502fbbc1a39b7" + }, + { + "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" + } + ], + "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": "9a6224b62b65b0a5d8a553af523ba011" + }, + { + "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" + } + ], + "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": "7e620e1fc511be003c58faee2b4055fd" + }, + { + "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" + } + ], + "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": "d6cc3f732f9eea5ea74beacd937af57f" + }, + { + "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" + } + ], + "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": "685c4c4e914551e2747450cbc396c53f" + }, + { + "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" + } + ], + "pid": "042763568", + "type": "bf:Topic", + "variant_access_point": [ + "Kommandant (Lagerkommandant)" + ], + "md5": "9987f7988fdd610b5137f9b6a7f6fcd1" + }, + { + "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" + } + ], + "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": "88852d51adbc499e4ed8f2d01b60f26a" + }, + { + "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" + } + ], + "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": "8684b2b14a7beb67cced17b5aa241ebc" + }, + { + "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" + } + ], + "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": "517c17edeead32950b6dd90eb7222b3f" + }, + { + "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" + } + ], + "exactMatch": [ + { + "authorized_access_point": "Chest", + "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": "1b0ce592494df0c20a0a959cad1d8d12" + }, + { + "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" + } + ], + "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": "f16899eecbe3ada6b688d5f3d84d832b" + }, + { + "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" + } + ], + "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": "5f44615d1d422735dc6c5973cf0c9a68" + }, + { + "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" + } + ], + "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": "8ce9b0e953e132712e09ea6cb68089ae" + }, + { + "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" + } + ], + "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": "ed5237924acf8ef954567434c96afa08" + }, + { + "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" + } + ], + "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": "31b32b499594874bf5339777d4bc5819" + }, + { + "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" + } + ], + "pid": "04264044X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ostozeanisch" + } + ], + "variant_access_point": [ + "Mikronesisch" + ], + "md5": "1da534933675b7650042f83317ecbb0a" + }, + { + "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" + } + ], + "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": "6510e08153a49ea1a336b6e139a0cbf4" + }, + { + "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" + } + ], + "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": "67e4f618a17d852546fb234bbdca3fcd" + }, + { + "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" + } + ], + "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": "d11307a98c1f4a14f55c01f44864aac8" + }, + { + "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" + } + ], + "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": "6ad0080257a6e7d44974711657dcd5a4" + }, + { + "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" + } + ], + "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": "67c090fb8aa22a2f6cee689340a14027" + }, + { + "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" + } + ], + "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": "30b8af12cd9bb45053592a336e1cb26e" + }, + { + "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" + } + ], + "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": "b5935dd403bae1022accaf8004c251b6" + }, + { + "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" + } + ], + "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": "bcbdf2b61a67f1b85be2a62593d3e753" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Rives", + "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": "6d0143932c745780a85b1595e12809a6" + }, + { + "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" + } + ], + "pid": "042491010", + "type": "bf:Topic", + "variant_access_point": [ + "Sample-and-hold-Schaltung", + "Abtast-halte-Schaltung" + ], + "md5": "44fc7e32d65529e252f7e3a915934be6" + }, + { + "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" + } + ], + "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": "e7cf97061b45c4f068761c371d1a5e5a" + }, + { + "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" + } + ], + "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": "ee83e7b5e8d1f16bbb68c0924ce801ca" + }, + { + "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" + } + ], + "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": "e00a03d16d5f656f14e00aac10b658d9" + }, + { + "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" + } + ], + "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": "a253dc963b6cddf37cba9c62e456213e" + }, + { + "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" + } + ], + "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": "f8b9a8732f5afc44b820b14da8eadcc5" + }, + { + "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" + } + ], + "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": "ed53bef1f80d774f36afb98ed5010a7f" + }, + { + "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" + } + ], + "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", + "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": "48d674a18429045a5cbb71c92bfa3a41" + }, + { + "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" + } + ], + "pid": "042402883", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "05168bbc132cd82bb5aea4289a93c8fa" + }, + { + "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" + } + ], + "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": "f77d87a1a9e8ca553601f17f134dfacb" + }, + { + "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" + } + ], + "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": "c317d7bfe77c7b9cbd95d37488746052" + }, + { + "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" + } + ], + "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": "535a540449850e4ac59813914ef6cfc6" + }, + { + "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" + } + ], + "pid": "042349885", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "543a56e0ba96221fce0d4672dfa6e732" + }, + { + "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" + } + ], + "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": "2737dde3cd7b5c74034aeeb522669ec6" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Enseignement supe\u0301rieur", + "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": "92445baf124bed4291d5ee2024553e66" + }, + { + "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" + } + ], + "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": "ba1f993c7687bc49fa7a8201d874e8e1" + }, + { + "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" + } + ], + "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": "b9ac248efd2914da188408988931b847" + }, + { + "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" + } + ], + "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": "0d03945e853468703b30979127d84391" + }, + { + "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" + } + ], + "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": "4e5f54403dc8f1aa412bd4c868cd90b8" + }, + { + "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" + } + ], + "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": "d8c09f9d9d3522a9bf80a97262160972" + }, + { + "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" + } + ], + "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": "e3e6dba088b614149da8bc22530fb067" + }, + { + "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" + } + ], + "pid": "042208408", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beamter" + } + ], + "variant_access_point": [ + "Probezeitbeamter" + ], + "md5": "e3f5764f0693bf6a7423e82474a41695" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Art. 7,4-6 GG" + ] + } + ], + "pid": "042203856", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schulrecht" + } + ], + "md5": "021ca00bd04b57ecf3a4c8cdb0dcba22" + }, + { + "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" + } + ], + "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": "8a0d18175523eb90ec8b2bcb5e03affe" + }, + { + "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" + } + ], + "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": "07a6f5bbd25802a62d8f1855d418405d" + }, + { + "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" + } + ], + "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": "b6815efa28c2ffcf38f1328732bcbe66" + }, + { + "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" + } + ], + "pid": "04219007X", + "type": "bf:Topic", + "md5": "6c884a383c3aed56fe945cdbf3ebd5b1" + }, + { + "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" + } + ], + "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": "824d6f74cd360703b6a52fb0e15c0b12" + }, + { + "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" + } + ], + "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": "6f628ca25f51065b2d5f9ac6306c1e74" + }, + { + "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" + } + ], + "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": "f592dc093974cd4383f111c26d118de5" + }, + { + "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" + } + ], + "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": "7202b965c7948d396c93fbc64284e00e" + }, + { + "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" + } + ], + "pid": "042154316", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Phasenumwandlung" + } + ], + "variant_access_point": [ + "Glasu\u0308bergang", + "Erweichung (Glasumwandlung)", + "Glasbildung", + "Glasprozess" + ], + "md5": "48a28a8d136b43effc42c15c83885113" + }, + { + "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" + } + ], + "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": "2d76726c79ba915f24ca6573f9f3f5ec" + }, + { + "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" + } + ], + "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": "5642abd1576a9f9b65ade96dc1a8d227" + }, + { + "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" + } + ], + "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": "d8b2aeb0426fad718f9d5297858f471c" + }, + { + "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" + } + ], + "pid": "042137268", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Array" + } + ], + "variant_access_point": [ + "Sensoranordnung", + "Matrixsensor", + "Sensormatrix" + ], + "md5": "daf667e1d220788673cf59dfb2a7db8f" + }, + { + "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" + } + ], + "pid": "042108160", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Dimorphismus" + } + ], + "md5": "c79672afe42ed490b27ed8164374a1cf" + }, + { + "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" + } + ], + "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": "3d149de018874b50cef10bc46248ea15" + }, + { + "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" + } + ], + "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": "ab46f9d9bf71eadd47b7a9456e52ad37" + }, + { + "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" + } + ], + "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": "0cfbdf4aaae2322bcd339e4724507d01" + }, + { + "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" + } + ], + "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": "63b2f9b69791b96981345dada30f6f24" + }, + { + "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" + } + ], + "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": "1d9944ee1b80ddba55d119e754497e0c" + }, + { + "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" + } + ], + "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": "6689f7e49b67ee8b8ff6fcc67c84047a" + }, + { + "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" + } + ], + "pid": "042066107", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Genauigkeit" + } + ], + "md5": "a5ea175434206a37e3d1d6f562f7759a" + }, + { + "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" + } + ], + "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": "509f4f5ae979a0fad8adec1996098942" + }, + { + "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" + } + ], + "pid": "042017793", + "type": "bf:Topic", + "md5": "6a316ec57d78ef7cbb8590233fc16c16" + }, + { + "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" + } + ], + "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": "50264b443c946033242a7066017a1f60" + }, + { + "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" + } + ], + "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": "1b5e5c3f5afeb57941f5a78a8dd8814f" + }, + { + "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" + } + ], + "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": "0a1cb6f8f845028da5be01d82d695dde" + }, + { + "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" + } + ], + "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": "c548330c8aa0d19ca08ef5dabdd8e3db" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Produktbezeichnung" + ] + } + ], + "pid": "041987489", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Whisky" + } + ], + "md5": "947ef2545a188b3590b46db476476f37" + }, + { + "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" + } + ], + "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": "08e21c3999f50b5fe2f7a1cbd39eaa2a" + }, + { + "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" + } + ], + "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": "cc09ea952483bdb781ca819d19b65e3d" + }, + { + "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" + } + ], + "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": "7990d3983ad83a6fbcbac810fe20008f" + }, + { + "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" + } + ], + "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": "d47fbabd6b16533394ddb14e59b29db7" + }, + { + "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" + } + ], + "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": "a38230721d31fd824152f647ade395a5" + }, + { + "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" + } + ], + "pid": "041943236", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Emissionsverringerung" + } + ], + "variant_access_point": [ + "Schadstoff", + "Schadstoffminderung" + ], + "md5": "7096c6487a67a632c505372405b226f6" + }, + { + "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" + } + ], + "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": "428299a2c2c3cbfa4601267818855954" + }, + { + "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" + } + ], + "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": "43b616b42bcfe16611de8b4dea56cf70" + }, + { + "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" + } + ], + "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": "efd278b13e0c05b3c6f0ffe681cdde2b" + }, + { + "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" + } + ], + "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": "e27bebc2b2d603de573256ed120b75c8" + }, + { + "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" + } + ], + "pid": "041913272", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volkstanz" + } + ], + "md5": "f4113641978bff2e7669d411a016b4ab" + }, + { + "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" + } + ], + "pid": "041911849", + "type": "bf:Topic", + "variant_access_point": [ + "Zwangla\u0308ufigkeit", + "Zwangsla\u0308ufige Bewegung" + ], + "md5": "9664a4f567e039399d70f73366f432eb" + }, + { + "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" + } + ], + "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": "d81433481aa94190b40a8f7ed029af1f" + }, + { + "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" + } + ], + "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": "7622da94b0b520bb723f43d33a248546" + }, + { + "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" + } + ], + "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": "50832a6f7f7034ee6fdb3bd7da9b0f72" + }, + { + "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" + } + ], + "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": "e7463b0f11c9bd43f803856cd2a4e55c" + }, + { + "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" + } + ], + "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": "a496fb7b9a838bcb78e5e26f26382b50" + }, + { + "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" + } + ], + "pid": "04190186X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Miete" + } + ], + "variant_access_point": [ + "Wohnung", + "Wohnraummiete" + ], + "md5": "2671f8ea368b040bfd14e2a1d3495ae9" + }, + { + "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" + } + ], + "pid": "041900804", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verwaltung" + } + ], + "md5": "18f836bccec9f2abd919dff2c9d65cc6" + }, + { + "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" + } + ], + "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": "18d5a65a7e1dc19b14ab2c6d2ddc07e0" + }, + { + "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" + } + ], + "pid": "041898273", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Eintritt (Raumfahrt)" + } + ], + "variant_access_point": [ + "Atmospha\u0308renwiedereintritt", + "Reentry" + ], + "md5": "4d71655d2cbc096e015b5a4c307761f4" + }, + { + "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" + } + ], + "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": "dcf9d1b72bd5b4678eaed298d693b393" + }, + { + "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" + } + ], + "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": "4c60e4d43e745917efb4089105bb224c" + }, + { + "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" + } + ], + "pid": "041890787", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grabmal" + } + ], + "related": [ + { + "authorized_access_point": "Epitaph" + } + ], + "md5": "ab74f91f894b1ca24c5d306f7fd04416" + }, + { + "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" + } + ], + "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": "503acd11ac9d2f02ad0be542811d68d7" + }, + { + "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" + } + ], + "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": "cc97fffa1018e20aae17f0cf5e9d64d0" + }, + { + "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" + } + ], + "exactMatch": [ + { + "authorized_access_point": "Vulva", + "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": "e151403973979519707b2fc142041dbf" + }, + { + "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" + } + ], + "pid": "041884612", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Vizekanzlerin" + } + ], + "md5": "330900056f706fc1f1fa1bfbe066a181" + }, + { + "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" + } + ], + "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": "d7ca4e1e29df0fd112be3c57ae9f3861" + }, + { + "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" + } + ], + "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": "b05734e7b9010ca1875d6132228af6d5" + }, + { + "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" + } + ], + "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": "6255bda70c6adb8aee2f0363cbc8a8f4" + }, + { + "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" + } + ], + "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": "b42e76a9cde46381596e7e73f36485a8" + }, + { + "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" + } + ], + "pid": "041874919", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Schiebersteuerung" + } + ], + "variant_access_point": [ + "Ventiltrieb" + ], + "md5": "d0e0b92c803203c39b3193606f3cea1e" + }, + { + "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" + } + ], + "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": "9a9b3af18fc20c5426cf8f14195c6ff4" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verknu\u0308pfe mit Anwendungsgebiet" + ] + } + ], + "pid": "041871286", + "type": "bf:Topic", + "variant_access_point": [ + "Intoleranz (Medizin)", + "Unvertra\u0308glichkeitsreaktion" + ], + "md5": "ca9356e0539d0d404eb3ec7df0d3a5be" + }, + { + "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" + } + ], + "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": "9f46c3040b47dac35dd8ff09a1c394ed" + }, + { + "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" + } + ], + "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": "3577a5aa16977ba9604010c803c3c0dc" + }, + { + "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" + } + ], + "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": "6b6ef600efcf3d18f98895da84502333" + }, + { + "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" + } + ], + "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": "db860da49c35a9dfe082a1ab281c6f6e" + }, + { + "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" + } + ], + "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": "003dafac7e4284f2fbb678c92883f81d" + }, + { + "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" + } + ], + "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": "ccb8904d236b665a7ec98e1b48923441" + }, + { + "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" + } + ], + "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": "610d82774e4e0d3fe71e27d9bcf166d8" + }, + { + "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" + } + ], + "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": "985c3bc19f8826b94f00aa66a0d857f8" + }, + { + "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" + } + ], + "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": "c5100b7b5b2c0bc1f245316c6d4564f8" + }, + { + "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" + } + ], + "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": "18ed15a4b83e29cc5a93d5f7a80850ff" + }, + { + "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" + } + ], + "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": "b93f254dbf5cb51499ee1ef938c170ba" + }, + { + "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" + } + ], + "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": "8ed818963de2a28e9e95d5584cefdb4a" + }, + { + "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" + } + ], + "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": "45596d3b2ac7e9c1d49380b3540436db" + }, + { + "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" + } + ], + "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": "45f62e4b059af8a2d4a8aaf167652962" + }, + { + "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" + } + ], + "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": "e4c21e8550367cb1ced82c38f5ab7586" + }, + { + "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" + } + ], + "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": "6ffbf31c1349bda28c303239ba24a455" + }, + { + "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" + } + ], + "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": "3d4cf874ece55f8489044f178c0a512a" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Welded joints", + "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", + "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": "b07487380df958652a3bc35030f2e1d3" + }, + { + "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" + } + ], + "pid": "041802659", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Inertgas" + } + ], + "md5": "37a3df47b580ea94146c4eaec23fe58c" + }, + { + "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" + } + ], + "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": "6b1325738f2224d8c8a14c6613984128" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Automobiles", + "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", + "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": "254fa3ca3353d93fb58d8c7398072d27" + }, + { + "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" + } + ], + "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": "cacf79100e1f7782d2050b39d126320e" + }, + { + "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" + } + ], + "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": "b339dfd530ade37f49995d901c99548f" + }, + { + "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" + } + ], + "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": "8051e1c9eb2439527bf20b0baf595690" + }, + { + "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" + } + ], + "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": "2fbb2815f779e7f1bbb37f57177bd884" + }, + { + "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" + } + ], + "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": "dab13e75f7bf3c0eba75eb83bf9e6495" + }, + { + "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" + } + ], + "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": "3bd0a2adc8681363abb5c726e338bc77" + }, + { + "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" + } + ], + "pid": "041772822", + "type": "bf:Topic", + "variant_access_point": [ + "Instanzenzug", + "Instanz" + ], + "md5": "a70e88f0c374440d66b2e238371ee2c7" + }, + { + "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" + } + ], + "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": "36ee4e99a0ce46d6aee3dd965955f342" + }, + { + "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" + } + ], + "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": "5f1776f845edde10b77f7fc3a7bc6d3f" + }, + { + "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" + } + ], + "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": "4d1e828c628a7fb91f8361a4e4cac936" + }, + { + "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" + } + ], + "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": "9efce3103067e47e783e6f666f84d752" + }, + { + "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" + } + ], + "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": "1692555d784dfb6ba2bfa3b934bd251c" + }, + { + "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" + } + ], + "pid": "041759834", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Protamine" + } + ], + "md5": "a741331b4bc6c064db90fa7fb0390035" + }, + { + "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" + } + ], + "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": "b22572de9e797a310af529134c242a99" + }, + { + "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" + } + ], + "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": "c63f5e3a83a2fc03799bfda3d6cd396a" + }, + { + "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" + } + ], + "pid": "04175431X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Operatorhalbgruppe" + } + ], + "md5": "85843e7bc95776b6979e5a50c0a4e0d2" + }, + { + "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" + } + ], + "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": "3004a7bd772c98e402b9324a2c97ca45" + }, + { + "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" + } + ], + "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": "4abf2743d5673ecd917b0f44240a2679" + }, + { + "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" + } + ], + "pid": "04174604X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Akustik" + } + ], + "md5": "2760667d8de9b071ca22708aa9264f2a" + }, + { + "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" + } + ], + "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": "8af987e8b0713799ad3bb1d7cfa5002a" + }, + { + "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" + } + ], + "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": "b2530cd0e63feecc50f9c0afae58c157" + }, + { + "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" + } + ], + "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": "b6874f9d0525fc4204fb392fa608683a" + }, + { + "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" + } + ], + "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": "17cbdb8bef9dea73f457f81e59713649" + }, + { + "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" + } + ], + "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": "cd70fcd042fe7161c0e83f012663bd31" + }, + { + "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" + } + ], + "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": "2604c67de8d200d7d288c4714caa0baa" + }, + { + "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" + } + ], + "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": "c157da1d5144a649d175cdbacd0e4241" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Legislative bodies", + "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", + "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": "66a12b1e120722e28cc943f234a4249e" + }, + { + "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" + } + ], + "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": "e5d9c63c05c49c57482f98be3f36ccd2" + }, + { + "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" + } + ], + "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": "af998127c0007cbeb8e0894b519117e7" + }, + { + "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" + } + ], + "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": "cb5fd691e65f2dfe415b06e0138f1b75" + }, + { + "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" + } + ], + "pid": "041718429", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gera\u0308usch" + } + ], + "md5": "f36b69559cfbbcfc11974b3b6a340f9c" + }, + { + "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" + } + ], + "pid": "041716159", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Teilchendetektor" + } + ], + "md5": "e250b83457e05060968b3deb279ae980" + }, + { + "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" + } + ], + "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": "800a114ee35002107380fe5d15524437" + }, + { + "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" + } + ], + "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": "1270b5a24e0f6c4e4fd8253c8ad65ce3" + }, + { + "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" + } + ], + "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": "faa1d0240d670d9269b81b99b1ae7ab5" + }, + { + "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" + } + ], + "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": "940aa47919687e55e005ed27870e77ae" + }, + { + "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" + } + ], + "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": "1654346c39fe454b7b2331c50abc2011" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Lune", + "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": "698a9567100564dc9571550762e08434" + }, + { + "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" + } + ], + "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": "4897e1bcda91462b0c76848cd8a78b81" + }, + { + "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" + } + ], + "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": "8675c2a1bea18c3c4d628fade420ee54" + }, + { + "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" + } + ], + "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": "abae6a15556e381980fba427af655717" + }, + { + "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" + } + ], + "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": "0367a930c41fdca1d3f50c6a010277fc" + }, + { + "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" + } + ], + "pid": "041691504", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zwergmoschustiere" + } + ], + "variant_access_point": [ + "Kantschil", + "Tragulus" + ], + "md5": "c1403f250f57ef966e9dfd807d0cd762" + }, + { + "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" + } + ], + "pid": "041689976", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ingenieur" + } + ], + "related": [ + { + "authorized_access_point": "Maschinenbauingenieurin" + } + ], + "variant_access_point": [ + "Maschineningenieur" + ], + "md5": "1e157aa7c984dc3d934906fe460b71af" + }, + { + "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" + } + ], + "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": "b6cf542c891be9ef494d153747aad36e" + }, + { + "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" + } + ], + "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": "21ff2f9d3ae7ae991f48bbc5fd231853" + }, + { + "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" + } + ], + "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": "2e1e6ad760feff75c93afabe2ecafe93" + }, + { + "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" + } + ], + "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": "0d4de7748719b3e9ec7d9c3284f62b40" + }, + { + "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" + } + ], + "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": "faaf3e65fa297ae21c0a35ae636e3f5a" + }, + { + "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" + } + ], + "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": "cd40c22119f3db6281f404fb883e3692" + }, + { + "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" + } + ], + "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": "b98cddd42bd29478527e28f65735adf6" + }, + { + "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" + } + ], + "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": "2a7ae1a34fe62fdbc8b91832234581c2" + }, + { + "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" + } + ], + "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": "dd0039fceba17539742665cf1088d2ed" + }, + { + "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" + } + ], + "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": "8c4c42fe43e79132847117a8d006bc2e" + }, + { + "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" + } + ], + "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": "110eb2fb0cdd67e8a48d82b36c968790" + }, + { + "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" + } + ], + "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": "8711b06503946a2e7bef5ff128b7108a" + }, + { + "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" + } + ], + "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": "ff5047663ac2d3d5d6db228700c2181c" + }, + { + "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" + } + ], + "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": "b3601793787a3244275f2bc9ebadd5fd" + }, + { + "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" + } + ], + "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": "0bd2cf58c37ff0822778e6c5e91d00e4" + }, + { + "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" + } + ], + "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": "3d03dbc88d25d751ff02e742b36709d6" + }, + { + "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" + } + ], + "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": "8a0db843f632e5ba92d2f36a90d808fd" + }, + { + "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" + } + ], + "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": "2d33668ca92e5e587a93d44563387cd4" + }, + { + "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" + } + ], + "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": "3a2578182c6484b691196ba302428dac" + }, + { + "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" + } + ], + "pid": "041617266", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Anleihe" + }, + { + "authorized_access_point": "Inhaberpapier" + } + ], + "variant_access_point": [ + "Schuldverschreibung auf den Inhaber", + "Bearer bond" + ], + "md5": "c0afea7cc64561233266fe403dada66f" + }, + { + "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" + } + ], + "pid": "041616375", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tragwerk" + } + ], + "variant_access_point": [ + "Starres Tragwerk" + ], + "md5": "075c42dbd43f198a857f953c4a297555" + }, + { + "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" + } + ], + "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": "2d96eb84aa7d9762de2bb7e845230e74" + }, + { + "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" + } + ], + "pid": "041607988", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Humoristin" + } + ], + "md5": "69f0ea47f484fa2888d2f98406ddffe5" + }, + { + "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" + } + ], + "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": "b364e3c5940c63c2d710ce8ed315ef36" + }, + { + "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" + } + ], + "exactMatch": [ + { + "authorized_access_point": "Testis", + "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": "00b8bb1af2e89a36f1cca64e72987e6b" + }, + { + "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" + } + ], + "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": "d7995adabbebfd272022dd0c04950e3b" + }, + { + "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" + } + ], + "pid": "041600622", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geometrie" + } + ], + "md5": "778d9d96b5d5e5cdc10bef8f2939d8f0" + }, + { + "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" + } + ], + "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": "023fa24c101ce5643b3934f8aa9b1407" + }, + { + "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" + } + ], + "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": "5aaaed475b2a7524269fd904d4d1fcb1" + }, + { + "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" + } + ], + "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": "9de58fd35071bd9e60f5fe1eb9682bcc" + }, + { + "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" + } + ], + "pid": "041582969", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Polnisch" + } + ], + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "variant_access_point": [ + "Mundart Polnisch (Gro\u00dfpolen)" + ], + "md5": "8614c72063a7fff6b1f1a62b0c27723d" + }, + { + "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" + } + ], + "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": "89c2971b7f7fe603aedc7d861caf101a" + }, + { + "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" + } + ], + "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": "e5c5c473a209394305b3494128f0a292" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Grammar, Comparative and general", + "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", + "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": "e3732a2564368fc000af81ab5f928e9f" + }, + { + "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" + } + ], + "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": "71ba87f4039d6d815adb5ca430b9cdeb" + }, + { + "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" + } + ], + "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": "1a45b6f79437fe2e151ae71bf31a0500" + }, + { + "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" + } + ], + "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": "6ae1444029e0f3dfe29830fda20ea053" + }, + { + "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" + } + ], + "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": "ff94caa93bb49ed7b7193c336eb46e49" + }, + { + "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" + } + ], + "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": "287b24873b1111a70f0d755d31bec180" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Le\u0301gumes", + "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": "78b1a9bd88281ff3ff400e935f771c2a" + }, + { + "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" + } + ], + "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": "a10b922e5d76379d2e3282d447f1b20d" + }, + { + "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" + } + ], + "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": "4fc67536c7b2368c22160a862887da5b" + }, + { + "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" + } + ], + "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": "9d335ed733b808db8df4e41d479a8bbc" + }, + { + "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" + } + ], + "pid": "041556984", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pru\u0308ftechnik" + } + ], + "variant_access_point": [ + "Funktionspru\u0308fung", + "Funktionskontrolle" + ], + "md5": "334cfe98562b65c1aeeecc8923d00b47" + }, + { + "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" + } + ], + "pid": "041555252", + "type": "bf:Topic", + "md5": "1fc044659c0d1baaabceb9efd929d019" + }, + { + "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" + } + ], + "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": "b2a6f9f36d741174111f9fe1ca8055c3" + }, + { + "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" + } + ], + "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": "c07376da1860ef52a6efc681ae764715" + }, + { + "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" + } + ], + "pid": "041549457", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wagen" + } + ], + "variant_access_point": [ + "Grubenwagen", + "Grubenhund" + ], + "md5": "885a1c5acab1cea59b428c46cf771219" + }, + { + "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" + } + ], + "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": "1387a93b15552b99b0bf861d4d71192c" + }, + { + "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" + } + ], + "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": "62329cc248a6eb7bbb4158a4264500fa" + }, + { + "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" + } + ], + "pid": "041540387", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kommunikationssatellit" + } + ], + "md5": "0bd5c98b15996c67b3aba799d75cee7c" + }, + { + "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" + } + ], + "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": "00e64fae656dd9b5ad5d8a718141c071" + }, + { + "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" + } + ], + "pid": "041537882", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Franzo\u0308sisch" + } + ], + "md5": "0bf584d91c25f63f0fceec4a7488cf1c" + }, + { + "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" + } + ], + "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": "3392dc8aba066f38a00bd9fd38f8c899" + }, + { + "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" + } + ], + "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": "d144c77e4545027e5a5c5cf1a28ec98b" + }, + { + "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" + } + ], + "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": "25441be29841e494e7fb1af17fdfd359" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Pe\u0301trole", + "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": "75aa6363958b6ab337f197fbfac6b805" + }, + { + "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" + } + ], + "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": "841d68f0f37c57a588e0151ae5d447f1" + }, + { + "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" + } + ], + "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": "d605a387b4fb829a80f6acd0969cc564" + }, + { + "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" + } + ], + "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": "5e650f369a855a9e7152eddf4f3b06df" + }, + { + "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" + } + ], + "pid": "041507983", + "type": "bf:Topic", + "md5": "4b6d3aff450706c452a5e87e60059ed7" + }, + { + "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" + } + ], + "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": "eefee24027b1c28db5702c674d5a96ea" + }, + { + "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" + } + ], + "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": "9acb45838317770e017d8f59df700c3f" + }, + { + "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" + } + ], + "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": "8c1c646331fc811011a8751aeb22f0be" + }, + { + "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" + } + ], + "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": "30b4a4726e9feb365ff36c76915d9016" + }, + { + "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" + } + ], + "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": "3b29c2d8d79dfb4c9968fffa652b46b0" + }, + { + "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" + } + ], + "pid": "041497848", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Transformator" + } + ], + "md5": "62aaf39bc1bdb4c65cf28530f88c5f61" + }, + { + "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" + } + ], + "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": "7e98db2544357e4ecf2ae1c0f7277eef" + }, + { + "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" + } + ], + "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": "1af068a594f2ba6309dab479dda97d86" + }, + { + "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" + } + ], + "pid": "041489837", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ladungstra\u0308ger" + } + ], + "variant_access_point": [ + "Loch (Halbleiterphysik)" + ], + "md5": "ee8e7994ee2c67ca07db42944d14ad1f" + }, + { + "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" + } + ], + "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": "0db49a8bc4fe57b0ac4fb267ea7006c6" + }, + { + "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" + } + ], + "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": "b94b087f042c35d6f79abca5d994a9b5" + }, + { + "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" + } + ], + "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": "19f5f299da974c1aff9529a1fc64c5fa" + }, + { + "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" + } + ], + "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": "2512d7f91367f6bcbaba6dfd5bf05424" + }, + { + "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" + } + ], + "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": "447d7de876c109fae4db6758cbede9d7" + }, + { + "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" + } + ], + "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": "3d717f940fd99dd91d9d44b61082891f" + }, + { + "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" + } + ], + "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": "38622f89ac183a033aa5c44d48058d27" + }, + { + "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" + } + ], + "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": "32ed8147f6da2e83df806576e2026a97" + }, + { + "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" + } + ], + "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": "b54af7d9be154e58b1acf29fe3744e46" + }, + { + "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" + } + ], + "pid": "041451732", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beweisverbot" + } + ], + "variant_access_point": [ + "Beweisgewinnungsverbot" + ], + "md5": "4f4d5fe13b09464ca11427b968c8696a" + }, + { + "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" + } + ], + "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": "092227e9f6ea3117fc40e98ec0b82506" + }, + { + "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" + } + ], + "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": "79fdd97a4a2880103193da29a92231d3" + }, + { + "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" + } + ], + "pid": "041445120", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Methanolkraftstoff" + } + ], + "variant_access_point": [ + "Methanol-Benzin-Mischkraftstoff" + ], + "md5": "fb5fc0f4ca1c4facbca027f5229d0537" + }, + { + "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" + } + ], + "pid": "041445082", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kraftstoff" + } + ], + "variant_access_point": [ + "Alkohol-Benzin-Mischkraftstoff" + ], + "md5": "f706b7cd2c01f7b9b02f53e71a52db3f" + }, + { + "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" + } + ], + "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": "2055c38d270c9fb99826fedbcb180160" + }, + { + "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" + } + ], + "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": "ea70cf83c5b4aa72a651f61630e62aed" + }, + { + "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" + } + ], + "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": "8db39014d6bd41832f85497f7a27c3b2" + }, + { + "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" + } + ], + "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": "282f6afe88d595d53e1057d83fd7563e" + }, + { + "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" + } + ], + "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": "c2be82457676985c3ea212896353af22" + }, + { + "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" + } + ], + "pid": "041439686", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flo\u0308te" + } + ], + "md5": "a31eae305f8e28233223dbd2769a335d" + }, + { + "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" + } + ], + "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": "2a298e024d929c787755ac6617a21cfd" + }, + { + "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" + } + ], + "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": "abc6c9486f098d3e8fe6432e11b98aae" + }, + { + "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" + } + ], + "pid": "041427548", + "type": "bf:Topic", + "variant_access_point": [ + "Antrieb (Technik)" + ], + "md5": "0af5463c48466ff795aae0841500dee3" + }, + { + "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" + } + ], + "pid": "041424654", + "type": "bf:Topic", + "md5": "c02e672ab669522d90f1a67c6abfa3df" + }, + { + "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" + } + ], + "pid": "041419464", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Energieversorgung" + } + ], + "md5": "4bba16a4561f1f015ebcdf5bb2b82a1c" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Actinides", + "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": "e1727dba8c1c5579acdfec8889f7a80d" + }, + { + "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" + } + ], + "pid": "041413083", + "type": "bf:Topic", + "md5": "fa37b1e824fd72b6dbe233da8aa92ef8" + }, + { + "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" + } + ], + "pid": "041410513", + "type": "bf:Topic", + "md5": "3a6a6709677916a57b4b78414ec0484e" + }, + { + "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" + } + ], + "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": "1477fb045d5994495da3d8316e5deb8e" + }, + { + "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" + } + ], + "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": "c643ffed117fd2e530e59a4119e73930" + }, + { + "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" + } + ], + "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": "1f909d1ebd74a7884f0f08e4b2a37d94" + }, + { + "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" + } + ], + "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": "5a36b55f5cb67c210cdb85eec70b4106" + }, + { + "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" + } + ], + "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": "51dc353f4717c9b8350324052bae85fd" + }, + { + "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" + } + ], + "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": "bad2b1ee7bfc958df9f6c5666148f871" + }, + { + "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" + } + ], + "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": "8ec977e54617c0962e99ba8355b5eeae" + }, + { + "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" + } + ], + "pid": "041397150", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Festigkeit" + }, + { + "authorized_access_point": "Bruchverhalten" + } + ], + "variant_access_point": [ + "Bruchsicherheit", + "Bruchwiderstand" + ], + "md5": "dd3bbdb16953fe497177b859214443c6" + }, + { + "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" + } + ], + "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)", + "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", + "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", + "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": "e8568469ac69765add65a595d891a598" + }, + { + "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" + } + ], + "exactMatch": [ + { + "authorized_access_point": "Hypopharynx", + "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": "f09404d475962fc1f91097c711b04566" + }, + { + "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" + } + ], + "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": "b951b47c11cf89e967e0af3cfab70055" + }, + { + "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" + } + ], + "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": "755cf6d522f4c9d39400a954d654b355" + }, + { + "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" + } + ], + "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": "bee79e5d7fc340cdfa56876279affb2b" + }, + { + "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" + } + ], + "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": "5e60ac3aac6b4f8650d14d58b5a25ccf" + }, + { + "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" + } + ], + "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", + "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": "780dfe239b67d866db68553f3d52c0d6" + }, + { + "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" + } + ], + "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": "7411dde21367b66e3d6a59ab4a062844" + }, + { + "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" + } + ], + "pid": "041380827", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bankenaufsicht" + } + ], + "variant_access_point": [ + "Sparkasse" + ], + "md5": "ce12446b55a2ed890aac83ec75460926" + }, + { + "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" + } + ], + "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": "698fdcdbcbc1bf4b3c1a0e68965e747b" + }, + { + "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" + } + ], + "pid": "041378296", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Autor" + } + ], + "md5": "fc5675db60df0622d372d4fc78d4da2f" + }, + { + "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" + } + ], + "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": "c18feff6118d17bee3817d2fd210c2da" + }, + { + "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" + } + ], + "pid": "041375785", + "type": "bf:Topic", + "variant_access_point": [ + "Nachkommenschaft", + "Nachkommen", + "Nachfahre", + "Nachfahren" + ], + "md5": "50d61c3d6bd55ae80d5590cf50fa3aaf" + }, + { + "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" + } + ], + "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": "ba966530448fbe688291baf2e26987cb" + }, + { + "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" + } + ], + "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": "2e2a7287abc116beffa1463ba3e9988b" + }, + { + "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" + } + ], + "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": "12b05316bf9fdfc54c800475d6228155" + }, + { + "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" + } + ], + "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": "f989ef1bc991aa0e9786c825e431ec29" + }, + { + "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" + } + ], + "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": "5bff64ab230ada6cfed1e30e2c935fb8" + }, + { + "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" + } + ], + "pid": "041367782", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flu\u0308ssigkeitsfilm" + } + ], + "variant_access_point": [ + "Fallfilm" + ], + "md5": "60aba997826e0c9d7087a0eda74c0c46" + }, + { + "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" + } + ], + "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": "684a32b1ad991a4c9eb9a0a0a668da63" + }, + { + "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" + } + ], + "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": "457557467cc06608101f1ab27ef921fe" + }, + { + "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" + } + ], + "pid": "041357515", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antenne" + } + ], + "variant_access_point": [ + "Aktivantenne" + ], + "md5": "3f86ac46d5c3d0cc478976d31361191d" + }, + { + "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" + } + ], + "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": "374992660d789658200f4a153fdafd3c" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Je\u0301sus-Christ", + "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": "c61d76bad51f3fe07e14ebc82d6d23b0" + }, + { + "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" + } + ], + "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": "1a775d09f264f5409e55f47caea9f28b" + }, + { + "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" + } + ], + "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": "589606e85ed1acf66537de4006554bea" + }, + { + "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" + } + ], + "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": "1f473b5dfbdd00d94c0f076f89fd6d95" + }, + { + "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" + } + ], + "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": "1056c3ecb8820223597897ef135288cb" + }, + { + "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" + } + ], + "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": "9c4ab634d2ce09e18c31d98ee51c1df3" + }, + { + "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" + } + ], + "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": "e8a52541db2dd04198c5d72ac3180269" + }, + { + "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" + } + ], + "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": "387503ee01be0b26cfa9f9627c3c5bcd" + }, + { + "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" + } + ], + "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": "4d5f3cda163b622375452b6c81cebc6c" + }, + { + "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" + } + ], + "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": "ecb59d93e1658383d3665da9e6d65154" + }, + { + "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" + } + ], + "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": "388bd623e6a754ca238303343ab0f812" + }, + { + "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" + } + ], + "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": "5dc4f354bce839a9a83fc5da36b59543" + }, + { + "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" + } + ], + "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": "a6e9ba26ac652a61631997fbdc7626b4" + }, + { + "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" + } + ], + "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": "9477782c51943aca9e04e43a48e42b2c" + }, + { + "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" + } + ], + "pid": "041308263", + "type": "bf:Topic", + "variant_access_point": [ + "Schadensuntersuchung" + ], + "md5": "e4901d8b8cd542dc54a5da54064dc3c3" + }, + { + "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" + } + ], + "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": "a0f1c10f9b1c23b9f0e8a2d946a0694f" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Football", + "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": "5471c4d7ef8998207a51651cace890fc" + }, + { + "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" + } + ], + "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": "710ce8fde4d5fbbbf3fae9008db0f690" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Diseases", + "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": "b436410857ca96684b541fbe7227dcc9" + }, + { + "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" + } + ], + "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": "b98e1876c0d0788fc47bf1fa38644236" + }, + { + "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" + } + ], + "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": "1853d76988edc3bbef2d02815b39feec" + }, + { + "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" + } + ], + "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": "b6cebc7441d522173e10fd5565bbf60e" + }, + { + "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" + } + ], + "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": "39b3d002aaa0ae0698732e5882ae6193" + }, + { + "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" + } + ], + "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": "c4c5aa9c10a980e34a3c9a22aab68300" + }, + { + "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" + } + ], + "pid": "041287886", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "c2e7565ee7e5cf54a9547562805030d1" + }, + { + "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" + } + ], + "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": "63eeb07f32045a6f9463485cb7a8a358" + }, + { + "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" + } + ], + "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": "f5a4c169e2babf3f9297e08417faa6c1" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Airplanes", + "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", + "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": "7e964803b6bd6791f0f9db65cee2225d" + }, + { + "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" + } + ], + "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": "fa69ccf291d548a462b8e815624cf345" + }, + { + "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" + } + ], + "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": "a956ef7174d48aed19a075e85d008209" + }, + { + "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" + } + ], + "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": "6796fe8c37bf86d769646cf524b8d25e" + }, + { + "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" + } + ], + "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": "3a3b4b19629dcc4c163fae991dba466d" + }, + { + "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" + } + ], + "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": "3bb422fddd2b454c01bfa5d57df72a88" + }, + { + "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" + } + ], + "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": "793e78c3645ee3380ebb9c8558ab1be6" + }, + { + "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" + } + ], + "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": "43581750273ea01c7b58aa3db70042b0" + }, + { + "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" + } + ], + "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": "18a9b3312a0b69be19ae4643aa427952" + }, + { + "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" + } + ], + "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": "93d5a574b5eefa415f89dd16b2b9fefb" + }, + { + "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" + } + ], + "pid": "041258762", + "type": "bf:Topic", + "md5": "9ed69a0f65100af5f19a15df5b3b5205" + }, + { + "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" + } + ], + "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": "a68c8a4659cf6d66364700f83803d77f" + }, + { + "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" + } + ], + "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": "f90ff6f506c771d1a8b17105072802bb" + }, + { + "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" + } + ], + "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": "3871c9362ee3b24d0e98e903e4d26138" + }, + { + "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" + } + ], + "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": "5cb51316f9594ae29e37e8b07e0b1412" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Corporations", + "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", + "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": "28f87d3abe97e4f1ab072bf38392852b" + }, + { + "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" + } + ], + "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": "e2f2f9bb253421a4102ee757f0d95d37" + }, + { + "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" + } + ], + "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": "277a08c015152011fdd16eeeffd3f2b1" + }, + { + "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" + } + ], + "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": "f79355352902db6a0b6bb7f8a51d2dad" + }, + { + "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" + } + ], + "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": "fcddfb7d0e539015de082e46fc76f7b0" + }, + { + "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" + } + ], + "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": "bbc66f8654f64c4a0cb7ef55ecb47523" + }, + { + "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" + } + ], + "pid": "041220803", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ermessen" + } + ], + "variant_access_point": [ + "Wertungsspielraum" + ], + "md5": "b91c447f180a9d70737fdea24aae69df" + }, + { + "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" + } + ], + "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": "b2830ce7047eac6efe43cda5bf77cd81" + }, + { + "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" + } + ], + "pid": "041217896", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fasanenartige" + } + ], + "variant_access_point": [ + "Meleagridinae", + "Meleagrididae" + ], + "md5": "014771aad025d5ae41e0797f8d7dc555" + }, + { + "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" + } + ], + "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": "11e5f16b3f817bfec22afa811ce9dd41" + }, + { + "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" + } + ], + "pid": "041217020", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Botanik" + } + ], + "md5": "0edf71b4d6baa4941793ed51aa0f2396" + }, + { + "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" + } + ], + "pid": "04121630X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ratio legis" + } + ], + "variant_access_point": [ + "Rayon (Schutzbereich)", + "Schutzumfang" + ], + "md5": "5b12ac2803dc883769c872271b27d2c6" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Justice, Administration of", + "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": "fca2f9057dba90a19126167888eb9128" + }, + { + "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" + } + ], + "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", + "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": "b998db136ad0fb8aa0181cabe19764c5" + }, + { + "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" + } + ], + "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": "c89ab2f36d5002048320aaf482205871" + }, + { + "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" + } + ], + "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": "48a98a32d9b7cb5959316f3f7688d005" + }, + { + "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" + } + ], + "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", + "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": "3f4030c3ba2ce7e1cc50301dde631075" + }, + { + "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" + } + ], + "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": "4476ad17c356d55b3df250ab2795b58d" + }, + { + "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" + } + ], + "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": "ebb71a25a353e4561e2a37ec618eeed3" + }, + { + "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" + } + ], + "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", + "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": "bf9f19a34e48a04b8aed81820f7c91ed" + }, + { + "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" + } + ], + "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": "03a8215e2fe5ba288b7fac4f45720142" + }, + { + "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" + } + ], + "pid": "041172922", + "type": "bf:Topic", + "md5": "d28ad1b1fdf8f8230a3dbaac3b87ddc1" + }, + { + "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" + } + ], + "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": "0e711e033ef41f2918c914db07ec1340" + }, + { + "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" + } + ], + "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": "755f8785881b1ba0c4ed394dad6d19a3" + }, + { + "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" + } + ], + "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": "fb39c80a9505542e1dae31f94043ecd0" + }, + { + "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" + } + ], + "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", + "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", + "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", + "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": "15f6f4773e21d9ca998b844b28e7787a" + }, + { + "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" + } + ], + "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": "82600987bac318189f140f3e7069f0f5" + }, + { + "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" + } + ], + "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": "db3323bd073fdcc930244146e056842b" + }, + { + "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" + } + ], + "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": "472a1ddb386e2298c6942d0a0a576d38" + }, + { + "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" + } + ], + "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": "4191ee67dcdbf3242ec2f59e0f60a127" + }, + { + "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" + } + ], + "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": "97fb660eef00e7d57b40027fcb9e337d" + }, + { + "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" + } + ], + "pid": "041067940", + "type": "bf:Topic", + "md5": "19a3a37f5ce420e956194d01d7e9d6f5" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Business enterprises", + "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", + "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", + "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", + "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": "0f7d7ac38368748689c9fca8262da6a8" + }, + { + "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" + } + ], + "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": "93ef08a4278930f58820fc1a9ff8a1a7" + }, + { + "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" + } + ], + "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": "542d302379f33caee03a000cf968e836" + }, + { + "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" + } + ], + "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": "12632d11626ceade9d02cfd901f05fba" + }, + { + "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" + } + ], + "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": "90bd6e709a5917c4f28cc457e8067696" + }, + { + "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" + } + ], + "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": "a20868aa1c0a58f4ea3bde998de104ce" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Teaching", + "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": "d93fa8588760980a5c2defa49032ab3e" + }, + { + "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" + } + ], + "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": "26f2f75efa9d714d0689d2d5e0e6b11c" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Cancer", + "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": "1c57dc890ab2fba69ec06e6f4122d8f6" + }, + { + "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" + } + ], + "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": "7de5f06eec626d2a13a985986fb98566" + }, + { + "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" + } + ], + "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": "352f8d8fee96f39e83ce63ef75867486" + }, + { + "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" + } + ], + "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": "4ea97778c4241f14d0622b155d87ed4a" + }, + { + "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" + } + ], + "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": "53c840dfb8cec3972e9ebf423594efd7" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Motion pictures", + "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", + "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": "fb60e5a7469a81272589094707dbf2f5" + }, + { + "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" + } + ], + "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": "1154940e1bd4c23b76ec01e98c79f82b" + }, + { + "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" + } + ], + "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": "6125a974550647727a648cf548d3ff86" + }, + { + "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" + } + ], + "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": "1015a0ddcdbc655d521987712dc179e9" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Dreyfus, Alfred, 1859-1935", + "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": "9e3b74eac49c9de82e608a90b32ad503" + }, + { + "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" + } + ], + "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": "e5e598e18266780cd5f048d0577c9586" + }, + { + "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" + } + ], + "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": "824b420b8f641400465f4613c64d6de3" + }, + { + "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" + } + ], + "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": "ea920bb72e60075487246ceb553d0269" + }, + { + "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" + } + ], + "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": "1f55d17889705e639b122b05f11886e1" + }, + { + "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" + } + ], + "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": "72df06d2a976114d8b90c24eb2faa663" + }, + { + "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" + } + ], + "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": "86f7d2640f0302e53f68f2ade6e5d4a2" + }, + { + "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" + } + ], + "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": "c0956d73bfed95a787deec43a7aee4c0" + }, + { + "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" + } + ], + "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": "96872e611bd522823a0dd5eb193097a9" + }, + { + "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" + } + ], + "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": "b93fae2e15890bc1b603f3c6063cf4e4" + }, + { + "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" + } + ], + "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": "ebc6661b0af4ef6e4778f9a0054aec01" + }, + { + "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" + } + ], + "pid": "040654648", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verantwortung" + } + ], + "md5": "186fe461a01b1bd2ec593179bc60ebe6" + }, + { + "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" + } + ], + "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": "dbbceb9e63391ca8ce72705658880b1c" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Fonction publique", + "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": "0176865b9723f3855b05bb5ce1a8ef46" + }, + { + "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" + } + ], + "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", + "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": "1c63da1ea1fcb2449f58a525b3660cfd" + }, + { + "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" + } + ], + "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": "50e8215b5e47f5b42020fafe0e23f9f9" + }, + { + "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" + } + ], + "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": "fdaaa48a8f1fb1061d00403bcd0dfe9b" + }, + { + "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" + } + ], + "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": "3537605eb9a620ed6b1586623f07b48b" + }, + { + "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" + } + ], + "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": "36ec279d684ec7e3d3af222350c3de53" + }, + { + "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" + } + ], + "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": "ecb50c54e77872d431996f2c50448ca6" + }, + { + "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" + } + ], + "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": "074f68185b231d65804f93cefa165753" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "E\u0301tudiants", + "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": "9d3c6fcdb07b2d0c9be12497b213071b" + }, + { + "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" + } + ], + "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": "72594a61db87df73401721d0a5eb99c3" + }, + { + "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" + } + ], + "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": "0726cd7392af6eb696d390a412c5d05e" + }, + { + "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" + } + ], + "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": "b5d0deb41dc0bd8ffa79d8eefdb7934e" + }, + { + "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" + } + ], + "pid": "040570215", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausdauernde Pflanzen" + } + ], + "variant_access_point": [ + "Schmuckstaude", + "Stauden" + ], + "md5": "7cfe9643534e9ad876209064f92f61d6" + }, + { + "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" + } + ], + "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": "6704561d6c0fd33b45510860233069a7" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Heavy metals", + "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": "5970d510f533ad285dbe8c3916af3535" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Students", + "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", + "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": "4ebae70729dd189eead4212e2bc05c11" + }, + { + "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" + } + ], + "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": "e234c9c7118351de3ff8a9c9c3df4240" + }, + { + "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" + } + ], + "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": "c93484b4db9b008c8cd5bce73e0eead2" + }, + { + "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" + } + ], + "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": "e15323c2dc33b447f005e13181414ada" + }, + { + "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" + } + ], + "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": "c9678bd863aa24258ef0c5f33713564b" + }, + { + "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" + } + ], + "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", + "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": "6f74168c6645f3d9ac14e79e507560b4" + }, + { + "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" + } + ], + "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", + "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": "fe40614fe6d87d0265e30446416a9f59" + }, + { + "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" + } + ], + "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": "18becbbd207613f4afb7640f7f2ea0c5" + }, + { + "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" + } + ], + "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": "a7dc2408053c2c0985f7e3f7c91a366f" + }, + { + "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" + } + ], + "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": "91799e610f5d77868a286fa3fc222a7d" + }, + { + "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" + } + ], + "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": "1e4f3fc9b1744a7ebab67c88fb325f33" + }, + { + "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" + } + ], + "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": "ebe98bfdefaad8e7ee2e4f0ddc011a08" + }, + { + "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" + } + ], + "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": "b6279dca85e0a24dae6a3fea790b8dae" + }, + { + "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" + } + ], + "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": "b46e562d7616b442afe250a7cb088c2a" + }, + { + "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" + } + ], + "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": "f152878956a8a6f29d90acfd7d85676f" + }, + { + "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" + } + ], + "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": "4b67ee8b78b78fe98d9f28ca06bc25b8" + }, + { + "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" + } + ], + "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": "848f7f25513af1c80c522c015c450c42" + }, + { + "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" + } + ], + "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": "9e9fe30317815ace3f37637f53b70f92" + }, + { + "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" + } + ], + "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": "f88c440e11dd0ab7f5257205236c8869" + }, + { + "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" + } + ], + "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": "3f758aa9458b4b24b003979e2c0f4f9d" + }, + { + "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" + } + ], + "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": "8a55b48f5573eb4e463dd8bf636cce5f" + }, + { + "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" + } + ], + "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": "13d875e2d6ab50f17773858638114eba" + }, + { + "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" + } + ], + "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": "ac2e72bd0c6d45ddb2394bd3b883378e" + }, + { + "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" + } + ], + "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": "5d8a543f6f4e1e01c63da4960038c6fb" + }, + { + "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" + } + ], + "pid": "040299848", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchengemeinde" + } + ], + "variant_access_point": [ + "Katholische Kirchengemeinde", + "Katholische Pfarrei", + "Ro\u0308misch-katholische Gemeinde", + "Katholische Gemeinden" + ], + "md5": "3c64f0945f3b04e28834130427573cc4" + }, + { + "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" + } + ], + "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": "17ab31cd49f5355a5cda3df27c6b1df4" + }, + { + "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" + } + ], + "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": "f56aed501056f3547c14f2f4172303e1" + }, + { + "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" + } + ], + "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": "de12aa62ee4c567230870a5eaf66d3e5" + }, + { + "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" + } + ], + "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": "0c47059dc151324c69390a30a90f1bd9" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Wood", + "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": "76bcdc30255fc50ef272035d7dc83daf" + }, + { + "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" + } + ], + "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": "6aa4ff77f34f293bb81c88c4e69b2528" + }, + { + "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" + } + ], + "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": "3d0b3d8a90ac29a86dcc37ed9f9312ce" + }, + { + "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" + } + ], + "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": "21cc93bf7d4b6a660fd13e0ec5e1353f" + }, + { + "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" + } + ], + "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": "40a940a863c72449fd54e247feedef6c" + }, + { + "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" + } + ], + "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": "daf2e6b0f8a4dde12919e5846c51e42e" + }, + { + "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" + } + ], + "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": "1537c798d3c44fe58d2343d3bd89c49a" + }, + { + "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" + } + ], + "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": "a8b9355f4f3152a5978a9ca20e88ecc3" + }, + { + "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" + } + ], + "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": "a4cf593ec7fe4cddb1f5fa6d7cca70dc" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Automobilistes", + "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": "f3fecca3aebf2a0b6f440a644b4c6246" + }, + { + "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" + } + ], + "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": "e96c149aa7056baca704b519f438d7cc" + }, + { + "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" + } + ], + "pid": "040158292", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Evangelische Kirche" + }, + { + "authorized_access_point": "Kirchengemeinde" + } + ], + "variant_access_point": [ + "Evangelische Kirchengemeinde", + "Evangelische Pfarrei" + ], + "md5": "ad20d7aaba13c27cf5c2d22d4fb444db" + }, + { + "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" + } + ], + "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": "474e1416df1ebf29dec56d543c5b1a7b" + }, + { + "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" + } + ], + "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": "467f4ffd64b7f2fbd4e3ca7e82cbe8f9" + }, + { + "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" + } + ], + "exactMatch": [ + { + "authorized_access_point": "Ovaries", + "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": "87bbdc73c5849d9ed2fb83ab8e03c7ef" + }, + { + "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" + } + ], + "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": "7749c0f00766abddc01efee3027d4f2c" + }, + { + "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" + } + ], + "exactMatch": [ + { + "authorized_access_point": "Fertilizers", + "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", + "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": "3c1c6be5cad3e9b8646bbbb60981f4f7" + }, + { + "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" + } + ], + "exactMatch": [ + { + "authorized_access_point": "Intestines", + "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": "fdd8b4c32003b6aaf38ee2a4b6d48132" + }, + { + "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" + } + ], + "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": "3cbb6d8efa2de018d8a3ced02fd0a58f" + }, + { + "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" + } + ], + "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", + "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": "a0222d072eebaecf97bb605b358411d3" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Cadmium", + "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": "341c30d50a302622ac6676627b5b6c8c" + }, + { + "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" + } + ], + "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": "118c5321c3b9ca72b4151c832b5fbf95" + }, + { + "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" + } + ], + "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": "3177fff6a5f9c1cf3766237a9b0bf2bf" + }, + { + "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" + } + ], + "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": "99f25830daa6d47780d1abe69e3e2511" + }, + { + "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" + } + ], + "exactMatch": [ + { + "authorized_access_point": "Bladder", + "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": "2fa3fba72507808d733f8aa89f72dc51" + }, + { + "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" + } + ], + "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": "219ad2428c217022bb113499882a8143" + }, + { + "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" + } + ], + "pid": "040054020", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kalte Ku\u0308che" + } + ], + "variant_access_point": [ + "Butterbrot" + ], + "md5": "f49e665ad22739ca2effc51550174778" + }, + { + "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" + } + ], + "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": "a9b396bcf06770e433a103bd67b35cb8" + }, + { + "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" + } + ], + "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": "8792be655b3a1ec6d3891c4ee7b39f7d" + }, + { + "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" + } + ], + "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": "b6fd96140c15b91b6f2c982b1cd371f5" + }, + { + "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" + } + ], + "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": "81eae698db07bd03335bdfc6249dc71c" + }, + { + "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" + } + ], + "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": "26a6c3e61289dd007232d618cb0a277c" + }, + { + "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" + } + ], + "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": "a32fbbd877b7d25633865cd476573b98" + }, + { + "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" + } + ], + "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": "3110b46bc3676d208fcc4188e6270dbe" + }, + { + "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" + } + ], + "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": "d0e822da7f963a24c3de2bc318715d7b" + }, + { + "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" + } + ], + "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": "ec110c031a084cd665ea264c05091855" + }, + { + "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" + } + ], + "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": "64371a16d558974f7b9ab87d5733234f" + }, + { + "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" + } + ], + "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": "6b1bfcd00ac32e6719e4d494c4d7892f" + }, + { + "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" + } + ], + "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": "7a5271908414ea97be0cc494af0ac708" + }, + { + "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" + } + ], + "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": "5c8c8e34a306853b8845caf967989401" + }, + { + "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" + } + ], + "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": "90c4c420d7ef2e208a77d1d3056ebe00" + }, + { + "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" + } + ], + "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": "14643d69bf75ab78c4569bbe134f0daf" + }, + { + "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" + } + ], + "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": "08d71754b0ccd77b36530bfac5d9d0fd" + }, + { + "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" + } + ], + "pid": "1336765410", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Niederalemannisch" + } + ], + "md5": "2e055af5066fbc9a3798a2896064bd56" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - https://www.klingspor-museum.de/Schriftgiessereien.html" + ] + }, + { + "noteType": "general", + "label": [ + "Entstehungszeit 1948" + ] + } + ], + "pid": "1336763213", + "type": "bf:Topic", + "md5": "59b9440d4c429937bb1c8723bd9e96b8" + }, + { + "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" + } + ], + "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": "4d33039e90fc63053496d5dde6390010" + }, + { + "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" + } + ], + "pid": "1336749369", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Kalabresisch" + } + ], + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "md5": "3c2bbff6e8d4d70922b5710845cd3300" + }, + { + "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" + } + ], + "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": "f2c55be53db285570c8e24a2864103d7" + }, + { + "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" + } + ], + "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": "02d77d5aa8c43618e579e949c325c7b9" + }, + { + "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" + } + ], + "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": "19b0727d4ead2f43660ed696b0272f83" + }, + { + "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" + } + ], + "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": "0e9752b278a13ba4e75952b3b4dd89b9" + }, + { + "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" + } + ], + "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": "a290c45a403aad76fd357a3eebd5a3e0" + }, + { + "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" + } + ], + "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": "f8f32e5318860b954959948922f7bc21" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "homepage - https://www.odins-haddeby.de" + ] + } + ], + "pid": "1336381698", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gaststa\u0308tte" + } + ], + "md5": "ed040c5c0331cdde09da4fc81133d643" + }, + { + "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" + } + ], + "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": "80f71672f6a76926016e6929e542c93c" + }, + { + "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" + } + ], + "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": "dafcd3525aac27e89049ef225799da75" + }, + { + "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" + } + ], + "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": "674dae7ca02f210f5b0e8eae472e1334" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit ca. 1908" + ] + } + ], + "pid": "1336255692", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "4cc1b66d294a71d2f0f922461dba5e51" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit ca. 1908" + ] + } + ], + "pid": "1336255609", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "2a08b0b8ec95cccd1d11a2991ad77c7f" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1935" + ] + } + ], + "pid": "1336248335", + "type": "bf:Topic", + "variant_access_point": [ + "Koch Kurrent" + ], + "md5": "eda774430e605c71175fad3c60a389b4" + }, + { + "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" + } + ], + "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": "f3e7a9f43a7cad3d7b4eb9a7c6ed27f1" + }, + { + "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" + } + ], + "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": "cc432fe2ec4678c820e1bf7a90f248ce" + }, + { + "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" + } + ], + "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": "7acd6ac8e8cffa431fc16fc0ba7cd3c2" + }, + { + "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" + } + ], + "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": "0108bc41f40eb2e5e223b54948d107ac" + }, + { + "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" + } + ], + "pid": "1336166509", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "4f75abf15790f1d5dd6b72e4260ea88e" + }, + { + "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" + } + ], + "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": "805d6323eb294a20513d16aa7eb241b7" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1903" + ] + } + ], + "pid": "1336140607", + "type": "bf:Topic", + "md5": "498f401797acceea8f7dd7dd874360ab" + }, + { + "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" + } + ], + "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": "d1ec6fc7f9ac4c91df56b9d6306abbb5" + }, + { + "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" + } + ], + "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": "b373be2c7f3bcea1b93baed6d5459da3" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1917" + ] + } + ], + "pid": "1336043652", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "variant_access_point": [ + "Windisch-Kursiv (Druckschrift)" + ], + "md5": "b7769212513aecba1a2e66f8809b4e16" + }, + { + "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" + } + ], + "pid": "133603906X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "09837256b15dd398ccdbf177b21de808" + }, + { + "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" + } + ], + "pid": "1336037571", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Zentralkhoisan-Sprachen" + } + ], + "variant_access_point": [ + "Cua (Sprache)", + "Tyhua", + "Tyua", + "Kuasi" + ], + "md5": "1c3f8a150a56d2e5ed42cab1ff92b4fa" + }, + { + "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" + } + ], + "pid": "1336035544", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "7beb704ed01d1abf6abd08b49710137b" + }, + { + "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" + } + ], + "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": "80bcc4bd4946cbf0f21fdd96646b36a8" + }, + { + "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" + } + ], + "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": "24ff59706c18cb3a33c1332ce9a4a972" + }, + { + "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" + } + ], + "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": "ad4f88c20af33934a683afdb7c26b02e" + }, + { + "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" + } + ], + "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": "159fc4f7283c013894f95a6376b15fd8" + }, + { + "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" + } + ], + "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": "bf45f05aa07132f0a9166cd2338787a5" + }, + { + "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" + } + ], + "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": "65d62e9d0ae355e4e8a6397669999fc8" + }, + { + "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" + } + ], + "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": "baf115d2abda53f6c4adb618600ecd61" + }, + { + "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" + } + ], + "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": "df8cd9cc4a38986bb46e1d87de3ffd5f" + }, + { + "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" + } + ], + "pid": "1335882758", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Mundart Mittelitalienisch (Latium)" + } + ], + "md5": "fb5db925c0a949ce4acda99b9bae3045" + }, + { + "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" + } + ], + "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": "0b2b1afd243d6c536bfc444d2403ee47" + }, + { + "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" + } + ], + "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": "aa93839e828989f94bfd3a5b095999f4" + }, + { + "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" + } + ], + "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": "908641b0d0bad0332825e847af85670a" + }, + { + "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" + } + ], + "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": "7bf26df2cbd4cdf74f1041fb4a150c21" + }, + { + "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" + } + ], + "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": "c2dc155b7d45acf328781d68ff7dbe1b" + }, + { + "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" + } + ], + "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": "fdf662f7df7b3e3b69e2a829916adca4" + }, + { + "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" + } + ], + "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": "21f43aff5255991f4320a95af997bd8d" + }, + { + "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" + } + ], + "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": "53fa7b242c5e0ff3fbdcb333fda9d06c" + }, + { + "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" + } + ], + "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": "ee5a877ecd93130a332a4f652790a319" + }, + { + "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" + } + ], + "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": "b889c6fcdfbf91af4a0d6d959bba1eb5" + }, + { + "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" + } + ], + "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": "8fd305843742406a7a621bfab647832a" + }, + { + "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" + } + ], + "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": "51d7b2543f4db5a363f3fc483f2392f3" + }, + { + "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" + } + ], + "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": "19514f284df7a97e8768f6c1c1f7c8dd" + }, + { + "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" + } + ], + "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": "b5b5822c321a786d45ee8d6966f65fd8" + }, + { + "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" + } + ], + "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": "10c3a736b1876210c5e293b816861547" + }, + { + "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" + } + ], + "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": "4b099c43bfbe00b5c767afd880f82848" + }, + { + "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" + } + ], + "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": "9f4308c26975b0b0f8dae07ea3844f24" + }, + { + "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" + } + ], + "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": "750700fa45ac07b5928481111717bb4b" + }, + { + "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" + } + ], + "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": "8e3ae6c5734bd95acd92ae6e75950e35" + }, + { + "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" + } + ], + "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": "78c600fb9c3996031bca5c3b29dfe89e" + }, + { + "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" + } + ], + "exactMatch": [ + { + "authorized_access_point": "Breast", + "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", + "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": "17dddc77388c67e7d1ff0d392f0e2d01" + }, + { + "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" + } + ], + "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": "820627776999884abbed210cc6436879" + }, + { + "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" + } + ], + "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": "ee174f290bc505815f2e06a8ec8b6034" + }, + { + "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" + } + ], + "pid": "1335237232", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "related": [ + { + "authorized_access_point": "Umweltschutz" + } + ], + "md5": "8b13a53f2fa4ef4e1edc24cd4776419a" + }, + { + "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" + } + ], + "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": "e18710fb1dad8b85856476f7a0647196" + }, + { + "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" + } + ], + "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": "b428829ee70be6834b14e2622becc748" + }, + { + "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" + } + ], + "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": "6c09dc95ccf9f61c25ee916387b59c16" + }, + { + "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" + } + ], + "pid": "1335212299", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "variant_access_point": [ + "Siebenhundertfu\u0308nfundsiebzig Jahre Stadt Borken", + "Borken (Westf.) (2001)" + ], + "md5": "9804d14eed8b0853b0d197ba225bcdc9" + }, + { + "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" + } + ], + "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": "806d920cfcbe5b164d16cb47e127fc7c" + }, + { + "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" + } + ], + "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": "1ca09be230102533327dd88936acf6ba" + }, + { + "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" + } + ], + "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": "2c57033cbea05a59d8e1f82391a48a1b" + }, + { + "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" + } + ], + "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": "25378d4eab501ff94176437050a1e2d7" + }, + { + "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" + } + ], + "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": "38f9a4b322c4ca006441aca13163a59e" + }, + { + "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" + } + ], + "pid": "1334906815", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ortsname" + } + ], + "md5": "aeb17adb279c1e2489481bab24e40f97" + }, + { + "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" + } + ], + "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": "2c7534c8a35f3f0afb201a25bbf59f01" + }, + { + "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" + } + ], + "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": "a18fbb8e40c9a2962ddeb8f9619ee02a" + }, + { + "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" + } + ], + "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": "ddd4e7668e647cb236878ce992504d75" + }, + { + "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" + } + ], + "pid": "1334804699", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "1b31307228a559b8eaeabb9deb9840de" + }, + { + "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" + } + ], + "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": "db29455b8533c48997b387315583f4f7" + }, + { + "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" + } + ], + "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": "3a691c8a4d83cf06581be3fcc914b4da" + }, + { + "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" + } + ], + "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": "087d82c5ccc50f732412e40b40d596d1" + }, + { + "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" + } + ], + "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": "c25e4345e03e70bc9ca55e6e147394a8" + }, + { + "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" + } + ], + "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": "7e4ebbb869a0662b769e29fa4a700a24" + }, + { + "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" + } + ], + "pid": "1334205639", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "4adbf48f78d9c312b885477a99f99d04" + }, + { + "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" + } + ], + "pid": "1333849850", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "7ea974e53ce07bdaa3f876bece0ca42b" + }, + { + "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" + } + ], + "pid": "1333570651", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Weibliche Kranke" + } + ], + "related": [ + { + "authorized_access_point": "Multiple Sklerose" + }, + { + "authorized_access_point": "Multiple-Sklerose-Kranker" + } + ], + "md5": "2c29bf722e37927236c73b916639d364" + }, + { + "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" + } + ], + "pid": "1333353421", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Limousinisch" + } + ], + "md5": "c55848eea0317be2213cc6f65359b14b" + }, + { + "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" + } + ], + "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": "f88030001cf39672f1efb9d05be44b64" + }, + { + "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" + } + ], + "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": "c85cad9e477f9097af6e1d32f2dbd7a5" + }, + { + "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" + } + ], + "pid": "1333126433", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "md5": "e87355141ab51ba35b9dccc03172b4f4" + }, + { + "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" + } + ], + "pid": "1333115482", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Spanisch" + } + ], + "md5": "15947e75c26519c82935eb8bef30387b" + }, + { + "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" + } + ], + "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": "31973cacffd21a501ea9f858825e3ae1" + }, + { + "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" + } + ], + "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": "7b498fa2071fdf08e9a5c24585e10bfe" + }, + { + "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" + } + ], + "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": "695cf72185e672ec1794bba22fc5dc22" + }, + { + "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" + } + ], + "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": "c5683fb14804525da847f6959991531a" + }, + { + "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" + } + ], + "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": "e396ac6564b6667ec8566c75f5d13ec5" + }, + { + "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" + } + ], + "pid": "1332661327", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soldatin" + } + ], + "related": [ + { + "authorized_access_point": "Grenzsoldat" + } + ], + "md5": "c88ef51c01c22912d8b52d5c06521274" + }, + { + "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" + } + ], + "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": "8690c724a7560578aa7e24511bf8c2f3" + }, + { + "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" + } + ], + "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": "ca4cd5b587de87a5a10791128910c750" + }, + { + "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" + } + ], + "pid": "1331864321", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Schweizerdeutsch" + }, + { + "authorized_access_point": "Hochalemannisch" + } + ], + "md5": "1491d475814c2ab37162e5a2274b71c5" + }, + { + "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" + } + ], + "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": "e2547a00ee53470eca5d3b128d3f46b1" + }, + { + "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" + } + ], + "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": "a6a264114b788a05c2f7bec3bd7b8e0a" + }, + { + "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" + } + ], + "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": "1e93e217cde9ded6884cd9016ab9ed07" + }, + { + "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" + } + ], + "pid": "1330990056", + "type": "bf:Topic", + "md5": "406778358fbac4a8e604263ff686e119" + }, + { + "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" + } + ], + "pid": "1330988728", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Hochalemannisch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "md5": "86307d5a520274f0975cded5f402a7ef" + }, + { + "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" + } + ], + "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": "38dad197452c5fe5cfd3bcaf86cb3579" + }, + { + "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" + } + ], + "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": "42c5970e96a5ea99b0950623808bc792" + }, + { + "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" + } + ], + "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": "bee74d510f70e6ed7cee1d2b683e59d0" + }, + { + "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" + } + ], + "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": "2d3531f7d4e4378de1bb1c54bec48c4a" + }, + { + "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" + } + ], + "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": "04c738504dfd4d18e3581262473669c9" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt, soweit im Ausland lebend" + ] + } + ], + "pid": "1330126599", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Schu\u0308ler" + } + ], + "md5": "2d4f3c93c1f6e50117bdf711149fabda" + }, + { + "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" + } + ], + "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": "77fb3485dcb597539ef156220bb53d59" + }, + { + "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" + } + ], + "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": "8b5bda3c267907dcdba2dbba70a3c64b" + }, + { + "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" + } + ], + "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": "2c8342d880599b57aa8c09007d6aa211" + }, + { + "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" + } + ], + "pid": "1329174003", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Amerikanisches Englisch" + } + ], + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "variant_access_point": [ + "Missouri English" + ], + "md5": "08bee7e0ed51baafbe5dcac1beab454b" + }, + { + "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" + } + ], + "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": "1c15d29c9d56297a30de12cd1026d826" + }, + { + "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" + } + ], + "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": "06e47d979c4fc96cc5766326c436001a" + }, + { + "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" + } + ], + "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": "d5b7b382e9bb90d089a7fa82fba0c328" + }, + { + "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" + } + ], + "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": "a7856def5dc055dab42ccba4fc4733d4" + }, + { + "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" + } + ], + "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": "7420b3ff9db3611a2807be3ac7d64680" + }, + { + "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" + } + ], + "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": "20e552bfc3c51854b3206a9e625ac8f4" + }, + { + "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" + } + ], + "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": "1363e9bb27d71b2a1e7049c46c1bec87" + }, + { + "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" + } + ], + "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": "734d5f533e31cb330dfb394c3ceccfe5" + }, + { + "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" + } + ], + "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": "5d075793ed031ffb977c76a19d3ed6b5" + }, + { + "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" + } + ], + "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": "55ee9a41e27272f70e6e0e5ddcb818d8" + }, + { + "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" + } + ], + "pid": "1324590173", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Venezianisch" + } + ], + "variant_access_point": [ + "Dialetto fiumano" + ], + "md5": "3afdb4968394d49abc1bf00d8997a3fa" + }, + { + "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" + } + ], + "pid": "1324101318", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Sicherheitsbeauftragter" + } + ], + "variant_access_point": [ + "Arbeitssicherheit" + ], + "md5": "aeb50c16b4cef27dfe790a066f2104ab" + }, + { + "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" + } + ], + "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": "0ab52b907a1d58fe85a6917dba6b8fb5" + }, + { + "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" + } + ], + "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": "7ce5a7eff6286594f67506e32c46f0b4" + }, + { + "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" + } + ], + "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": "08c751a9db9f8ade1f5100d54e3d03dc" + }, + { + "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" + } + ], + "pid": "1323832262", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ostindonesische Sprachen" + } + ], + "variant_access_point": [ + "Lote", + "Rote", + "Rotinesisch", + "Rotti", + "Rottinesisch" + ], + "md5": "1a7d99c9c582784c0e13e18a76eadc5c" + }, + { + "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" + } + ], + "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": "ec21d1d7010dca8a4458021f740cf049" + }, + { + "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" + } + ], + "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": "408906e183c2481ab99afe8be018af75" + }, + { + "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" + } + ], + "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": "b02ddc9eda9c9d2012a5407881a7c6da" + }, + { + "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" + } + ], + "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": "2a4f526588e675dfce4e2f67467a63d0" + }, + { + "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" + } + ], + "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": "6039d607c03b4e5dba551bfc148dd1be" + }, + { + "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" + } + ], + "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": "667b1d786daabdcadd52c352fb87b651" + }, + { + "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" + } + ], + "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": "5ed62353dfe29ea629048104134bb123" + }, + { + "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" + } + ], + "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": "b8a283afabcf247984b0967f537739b6" + }, + { + "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" + } + ], + "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": "8a5baba491f34ac2108d4f718d91382e" + }, + { + "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" + } + ], + "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": "7e382e47b59f9d84910a80b6985332aa" + }, + { + "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" + } + ], + "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": "30eb9434d5e96f72073d230940103c71" + }, + { + "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" + } + ], + "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": "da83caf2a44b1f496565bdb8590d64c7" + }, + { + "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" + } + ], + "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": "c1ef82a7f238f73e95d48596f5b22b50" + }, + { + "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" + } + ], + "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": "9d6f36fb763e02b2afab8f9d9ff85618" + }, + { + "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" + } + ], + "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": "1b897eefea3bd3bcb8d2dcc819b0fb5d" + }, + { + "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" + } + ], + "pid": "1319390072", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Franzo\u0308sisch" + } + ], + "md5": "0e87a434cfc0725f654f18d206a314df" + }, + { + "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" + } + ], + "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": "c8c9a0ae09c1402415bfec4a4f0c3963" + }, + { + "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" + } + ], + "pid": "1318430968", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Hochalemannisch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "md5": "da2f47e104ae1cabe2beb51bfd4e8375" + }, + { + "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" + } + ], + "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": "1039e6af2c05451ffba9edeaf4b4c4da" + }, + { + "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" + } + ], + "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": "28ec5fa68b71f4eb31d8ce1932672dbb" + }, + { + "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" + } + ], + "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": "e054f042186db1bceb09d705343ccce8" + }, + { + "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" + } + ], + "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": "b593bbb848f1e663724e8d8ce7fe27d6" + }, + { + "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" + } + ], + "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": "f65f6d368952764deee4044ff753aea9" + }, + { + "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" + } + ], + "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": "7c18d7c186467b5c92853b2a0afaa17d" + }, + { + "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" + } + ], + "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": "b87a93b6834cc45d0c6eb4f54ce485e5" + }, + { + "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" + } + ], + "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": "90e91bead1c16be0a2d0234e47e70b70" + }, + { + "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" + } + ], + "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": "d42acbf6bc4fb77bf813b066fbac53b2" + }, + { + "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" + } + ], + "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": "5ff6cb949b4258165c6d42ce6fa86746" + }, + { + "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" + } + ], + "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": "71234a3b92a9920779e3d78fa70aba26" + }, + { + "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" + } + ], + "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": "3285fbfd4c867a3f1bededb6ed636a46" + }, + { + "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" + } + ], + "pid": "1310673683", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "md5": "34ae3fca85d7d2c3d563830515111892" + }, + { + "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" + } + ], + "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": "25bbcd4ee04e70d29ced4ea23a5d06fd" + }, + { + "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" + } + ], + "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": "dd04cee8b69cfd16b802adf5fcb96807" + }, + { + "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" + } + ], + "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": "2f20333849d0c7f1ed6a688fd61c4da2" + }, + { + "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" + } + ], + "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": "8e7c22bfe3751e4d31de63f3d4e8feeb" + }, + { + "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" + } + ], + "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": "8957a735790b4b95e26335a252762d9a" + }, + { + "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" + } + ], + "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": "f5c88bcd99995174d3b5ae2943178db3" + }, + { + "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" + } + ], + "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": "3c7096bee1ed26b6a81d324126edcc41" + }, + { + "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" + } + ], + "pid": "1302782517", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "md5": "ece305a2983e68fa5eded5326583d9c1" + }, + { + "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" + } + ], + "pid": "1302782274", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "md5": "1fd916224b75325b99454d30c27277b4" + }, + { + "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" + } + ], + "pid": "1302781162", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "md5": "5ab23a92fd82d975e5fc099d0230680d" + }, + { + "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" + } + ], + "pid": "1302592122", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "50c3e07a931f3762ed946e7e03475054" + }, + { + "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" + } + ], + "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": "ba5ea8eeb4f393ae21a0fbb78c8cc50c" + }, + { + "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" + } + ], + "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": "0a056733edbdf44ad477782158bc710d" + }, + { + "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" + } + ], + "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": "2ae7dd7534dc8435f4f8f8b9ec280b27" + }, + { + "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" + } + ], + "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": "35d8d5a57c553f86e0054ab4595ec826" + }, + { + "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" + } + ], + "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": "b5a4b96d9830aab08aba5cae3d7a63db" + }, + { + "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" + } + ], + "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": "ea8aa466c8ec607c6f9317bf08eff60c" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "nach antiker platonischer Auffassung Zustand der rauschhaften dichterischen Begeisterung" + ] + } + ], + "pid": "129400283X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Enthusiasmus" + } + ], + "md5": "8cc7e07e69fbcc93e4febce26d8373d8" + }, + { + "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" + } + ], + "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": "f79f058a76e10f1998c7fd32d3c5ae76" + }, + { + "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" + } + ], + "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": "3326070cf8f3ab4cf8c8fcf426b78300" + }, + { + "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" + } + ], + "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": "884b33f3603bdccde35c2a755eaff1ba" + }, + { + "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" + } + ], + "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": "181d55548ba953cf28d96fff278a6d2b" + }, + { + "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" + } + ], + "pid": "1285304527", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Prozessionsstange" + } + ], + "variant_access_point": [ + "Prozessionsstange" + ], + "md5": "b07807d6eecbc9e101b7239938e678b8" + }, + { + "authorized_access_point": "Zollvertrag Schweiz-Liechtenstein (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" + } + ], + "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": "464dd2cd46f8808e297c6d06ce823b90" + }, + { + "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" + } + ], + "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": "a593799fd2cdf271525628c85db98e09" + }, + { + "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" + } + ], + "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": "87a4f923e4f269a999b35db27e0d74bf" + }, + { + "authorized_access_point": "Georg Weerth (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" + } + ], + "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": "f2a4f626b0bf3b80ff61ca25bb5f274d" + }, + { + "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" + } + ], + "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": "2a6a0a16d1367b95fabe3349447aafd6" + }, + { + "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" + } + ], + "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": "9ee466dedf29d42560a2c8a59aeda99b" + }, + { + "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" + } + ], + "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": "3c27ae6ac87ba35090a903535a979339" + }, + { + "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" + } + ], + "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": "2f0555c30db9f258a8db6e86125f1fa1" + }, + { + "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" + } + ], + "pid": "1272439836", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "aedaa8bafee680403d28b99c133181c8" + }, + { + "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" + } + ], + "pid": "1272436322", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "9b8f87bccc0ebba354aa6bd752fe6763" + }, + { + "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" + } + ], + "pid": "127243124X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "3f7beb7a3bf8d3b3cdc082ca58fd4f6b" + }, + { + "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" + } + ], + "pid": "1272429997", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "401ce00d5c9342e485256f0e61df4df0" + }, + { + "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" + } + ], + "pid": "1272339785", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "a10991cd595cd49edb5b9454ea839791" + }, + { + "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" + } + ], + "pid": "1272271439", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "b191315fb7093b4cbe617727a79224de" + }, + { + "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" + } + ], + "pid": "1272267792", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "cf68a45f378e39f455b4f670e7d3feff" + }, + { + "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" + } + ], + "pid": "1272258963", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "6b0984eadc1541187206d2d5b4152f64" + }, + { + "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" + } + ], + "pid": "1271905698", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "b74d707bb3d720ae606a425e6ded0558" + }, + { + "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" + } + ], + "pid": "1271895765", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "f5f31b8dc7e9c39d6e24843a22714630" + }, + { + "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" + } + ], + "pid": "127188898X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "105ca53c01f1488b39483ed1995600ad" + }, + { + "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" + } + ], + "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": "73346def6ef883a03ca4ca605670dcc0" + }, + { + "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" + } + ], + "pid": "1271808897", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "588dd47d14e1586048a4a3e4b3eb2f1c" + }, + { + "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" + } + ], + "pid": "1271790165", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "51358cb59aa0ef11d3a2ecbb97420429" + }, + { + "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" + } + ], + "pid": "1271715899", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "6d0aa5fecd4b1a40b837b7028f56d459" + }, + { + "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" + } + ], + "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": "b3afb04011592cdca2ffcd2ffa9f11c4" + }, + { + "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" + } + ], + "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": "480e539da8472d9243a49865746f4dcf" + }, + { + "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" + } + ], + "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": "dd4e64c525a6ece9ad53399924931ce5" + }, + { + "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" + } + ], + "pid": "126750370X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "c52f1319fd2012d60fbac707545e665d" + }, + { + "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" + } + ], + "pid": "1267495847", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "e311563aecb9adaffb43bbc8daaad440" + }, + { + "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" + } + ], + "pid": "1267493216", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "a082795ee51291a18e67c7335f261605" + }, + { + "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" + } + ], + "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": "ffb12e56641dba2cc13a1dc5e03aca0c" + }, + { + "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" + } + ], + "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": "126386604810d20898f39851745016c2" + }, + { + "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" + } + ], + "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": "32fcdef3a915749d86f61fac9d44f947" + }, + { + "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" + } + ], + "pid": "1261254937", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "b01c652323ffb423f51748c90a3ed48e" + }, + { + "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" + } + ], + "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": "8c8ed9d473535daf8389ec01f23ffb17" + }, + { + "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" + } + ], + "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": "169dc1d220e50bd7b59cabce2537e271" + }, + { + "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" + } + ], + "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": "7efa4177a213f6c41faffd31ce9356c3" + }, + { + "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" + } + ], + "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": "b5d1feb70d6d514b68c7351291c3bd00" + }, + { + "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" + } + ], + "pid": "1254291482", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "684d159434602ec5886540b505235185" + }, + { + "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" + } + ], + "pid": "1251426239", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "6948c6723f0b7e875395f1075ef47f2a" + }, + { + "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" + } + ], + "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": "0ff3e713eb352745fecd3435b5d4a274" + }, + { + "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" + } + ], + "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": "a6544b1675a4256e984c85bb78ae3918" + }, + { + "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" + } + ], + "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": "e183ebb770a7e2004780c01fe70a8c56" + }, + { + "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" + } + ], + "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": "0b4de56c230585d973ff4e2069c84ff4" + }, + { + "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" + } + ], + "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": "a03d636c93598c50898915004f915e74" + }, + { + "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" + } + ], + "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": "25119d0ee5a06d1c165d2eca71e463a4" + }, + { + "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" + } + ], + "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": "72c137f214deaf37a6b00f056d038b0b" + }, + { + "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" + } + ], + "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": "9cf4542d3435e3692fd7adc749f37767" + }, + { + "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" + } + ], + "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": "118cb66a50e2269854560bc90b4c52e7" + }, + { + "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" + } + ], + "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": "71dc9a7ce03561b4179c0389765ca647" + }, + { + "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" + } + ], + "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": "5061c6a6875a169ceb463e400522ac87" + }, + { + "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" + } + ], + "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": "683704c00f81b71f2e3294d6e45bf2b2" + }, + { + "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" + } + ], + "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": "fdec3f4765edc3fad3ba2b8b8ffed946" + }, + { + "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" + } + ], + "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": "761ae75daf181370c76c40d01c74a5b3" + }, + { + "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" + } + ], + "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": "6cc70a380e9cc101b75403ad9c886837" + }, + { + "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" + } + ], + "pid": "1204138915", + "type": "bf:Topic", + "md5": "1d115af96067df401d552844592e5f02" + }, + { + "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" + } + ], + "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": "76b12d6cbf334d0bbabb57e6f8eac6da" + }, + { + "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" + } + ], + "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": "fdd99fd8de4de1f24d139c7d336cc3d0" + }, + { + "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" + } + ], + "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": "259deb12225319765cec11582dc94bac" + }, + { + "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" + } + ], + "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": "f2a51988ce4e179c7dddbbe7010cf32e" + }, + { + "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" + } + ], + "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": "4754c8739033c05f887afd724f160744" + }, + { + "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" + } + ], + "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": "287946289cd59982a084a7b54f55af1d" + }, + { + "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" + } + ], + "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": "e75a36e8e75d96de1c3abb08ef371e9f" + }, + { + "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" + } + ], + "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": "f7ed57efbf488a6f03f2f1745099ae7a" + }, + { + "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" + } + ], + "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": "cf64a7f08d9b1356805075300b896aa2" + }, + { + "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" + } + ], + "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": "993af2d291b3a4d91021d0935f1eeb7b" + }, + { + "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" + } + ], + "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": "b0157aa77a1120c9c9bd2e984286ab5f" + }, + { + "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" + } + ], + "pid": "1189251949", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "1c7578fd530f7449ec8b60a139588e86" + }, + { + "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" + } + ], + "pid": "1181270391", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Futura (Druckschrift)" + } + ], + "md5": "e8da64d9fcffec53ada77718229c10e3" + }, + { + "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" + } + ], + "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": "a0b4695216912f7e2470e7f24c208d73" + }, + { + "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" + } + ], + "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": "bf5501c7e9ddc5573ea4217e9ab96da3" + }, + { + "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" + } + ], + "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": "740100a05944467944a389f26a5e586d" + }, + { + "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" + } + ], + "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": "70d46d74eec448870eb03f9c89f23202" + }, + { + "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" + } + ], + "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": "d1405f8f1f3f8b74be8f6724cd7b5557" + }, + { + "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" + } + ], + "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": "b5450089fda7f4bb6d377c8369d25dd2" + }, + { + "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" + } + ], + "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": "64c5b4a68de4806e419a1c94e052f002" + }, + { + "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" + } + ], + "pid": "1161370048", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Su\u0308damerikaner" + }, + { + "authorized_access_point": "Einwanderer" + } + ], + "related": [ + { + "authorized_access_point": "Su\u0308damerikanische Einwanderin" + } + ], + "md5": "bd68b62b6559b7df61922ba1c918959f" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1904" + ] + } + ], + "pid": "1160916276", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "ed9a7231f3453132b142e7d2bdfb4d36" + }, + { + "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" + } + ], + "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": "2f7ed6d6949468fcfc68ac35286cbf2d" + }, + { + "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" + } + ], + "pid": "1159933278", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "534443dde7dba24975706a5da1580900" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1948, Rondo Fett: 1954" + ] + } + ], + "pid": "1159933006", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "6ecd26b2867d6f31c33399be95a1f7b6" + }, + { + "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" + } + ], + "pid": "115992869X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "f67d3b1e290445a20fff19307a1952ac" + }, + { + "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" + } + ], + "pid": "1159920850", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "1ec86f4c694dd91d0163598cfe70f313" + }, + { + "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" + } + ], + "pid": "115992063X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "6eea1a3df6a3e42966fcf2e1000d41cb" + }, + { + "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" + } + ], + "pid": "1159919828", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "cb241fda9b6499636d027a2c3e8036eb" + }, + { + "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" + } + ], + "pid": "1159716978", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "2ccaa24af2c74b75fca9eb770d9dd29e" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1928; Mammut Schmalfett 1932" + ] + } + ], + "pid": "1159673381", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "aa2aeb80cb941285a3bc42a8bf82c85d" + }, + { + "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" + } + ], + "pid": "1159652686", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "168760e548e73d34d1b6fa6ae176f19d" + }, + { + "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" + } + ], + "pid": "1158529643", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "0a160a4112dddf382bf2f7c1a8651a88" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verzierung d. Bucheinbands durch aufgeklebte Leder- oder Textilstu\u0308ckchen" + ] + } + ], + "pid": "1156463467", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buchgestaltung" + } + ], + "md5": "811dfe8119a7f632f825e764e3bb7a92" + }, + { + "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" + } + ], + "pid": "1153904039", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Etikett" + } + ], + "related": [ + { + "authorized_access_point": "Buchgestaltung" + } + ], + "md5": "2ba3da3c223fa9924efbbd74bcc77484" + }, + { + "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" + } + ], + "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": "b99902a8ef480eb86b40b4637ee0d4a2" + }, + { + "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" + } + ], + "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": "9ff9a9ccffdbe730bf74ba87035d2505" + }, + { + "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" + } + ], + "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": "f07ada28844c28bcc3f8d17784d0f91d" + }, + { + "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" + } + ], + "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": "12e161d22cca42dc60d523b506c8caae" + }, + { + "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" + } + ], + "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": "77e8066f3b6c0a651d72fea058d4edd5" + }, + { + "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" + } + ], + "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": "741b86e13689ad321612901fc47f6b06" + }, + { + "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" + } + ], + "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": "d239da13e46d92fdf0af109316f7d235" + }, + { + "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" + } + ], + "pid": "1136198113", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "variant_access_point": [ + "Bradford-Beta", + "Bradford (Druckschrift)", + "Beta (Druckschrift)" + ], + "md5": "0b73704f9315cd23a9808b38818c1076" + }, + { + "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" + } + ], + "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": "55341980fe2ec438e6e05565856a6b7e" + }, + { + "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" + } + ], + "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": "eb7e5f5193d112cd45c20047d580e5bc" + }, + { + "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" + } + ], + "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": "3fb0b88d60375097826f1e88328ecf70" + }, + { + "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" + } + ], + "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": "e988abcb71fa99f0694b0f17a697754f" + }, + { + "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" + } + ], + "pid": "1131360478", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Produktmanager" + }, + { + "authorized_access_point": "Produktmanagement" + } + ], + "md5": "114f82bf7f98f7163ac805b9c28c2de8" + }, + { + "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" + } + ], + "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": "de6a968fa719c480bc6db38434d17f7a" + }, + { + "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" + } + ], + "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": "ba62bd4b75ae4ab79259057e7827fda9" + }, + { + "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" + } + ], + "pid": "1124811885", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "dc7f7d9a9e212efc77ba8300b835f3d2" + }, + { + "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" + } + ], + "pid": "1124612114", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchliche Organisation" + } + ], + "related": [ + { + "authorized_access_point": "Hilfsorganisation" + } + ], + "variant_access_point": [ + "Hilfswerke" + ], + "md5": "b5a6203dfc197b15da0d394e770bd8a3" + }, + { + "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" + } + ], + "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": "d57ff07eb38e9cb1e662788fdc2be4b1" + }, + { + "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" + } + ], + "pid": "1120526310", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "variant_access_point": [ + "Nite Club (Druckschrift)" + ], + "md5": "54f5210fa8d04878f688533d57bf2f58" + }, + { + "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" + } + ], + "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": "ad665764a29554f46a7b4d3ff8a50ed7" + }, + { + "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" + } + ], + "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": "80f4dc0d92358f0a95e607485980972e" + }, + { + "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" + } + ], + "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": "6f66ddc811c67d7fefca4cdd3483d441" + }, + { + "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" + } + ], + "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": "35c01992c72553507f2fd29d885ab6b7" + }, + { + "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" + } + ], + "pid": "1111593051", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "f1b988a54792f58fd708735999b96a47" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Satzschrift, verwendet fu\u0308r das Gutenberg-Jahrbuch 2016" + ] + } + ], + "pid": "110642154X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Font" + } + ], + "md5": "6ee88c6fa0a89ba62ed5ea36885b11ca" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Angeho\u0308riger einer orthodoxen Kirche" + ] + } + ], + "pid": "1104861453", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Christ" + } + ], + "md5": "c60da99d2552f76a31e435bb129f431f" + }, + { + "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" + } + ], + "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": "f87ea0b534a94c16a7e080b3828c46af" + }, + { + "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" + } + ], + "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": "090526376219bc504687fec4957ce5a1" + }, + { + "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" + } + ], + "pid": "1101498900", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "54a085b41fb00c349b6bf860f613cc15" + }, + { + "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" + } + ], + "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": "293fba368d4aeb6567c30f417b1f5258" + }, + { + "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" + } + ], + "pid": "108229814X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "e6d360a290b306c458cae867e1f64dc2" + }, + { + "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" + } + ], + "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": "01c7a8eec54307c3dfa1cf9a40ac2b98" + }, + { + "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" + } + ], + "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": "3f1a57e8ad3e4151c08bfdc3c81e3c7a" + }, + { + "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" + } + ], + "pid": "1077065876", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Organisation" + } + ], + "md5": "c43f84aaabbb093972d481613267c7a4" + }, + { + "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" + } + ], + "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": "cb57389ea1f2f6926a384daab049e1f1" + }, + { + "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" + } + ], + "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": "dcd318e2309d2e2ea0a9459993f86337" + }, + { + "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" + } + ], + "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": "b604ed40aa8924d5308956916dfca34e" + }, + { + "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" + } + ], + "pid": "1068825820", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geometrie" + } + ], + "variant_access_point": [ + "Hilbert-Geometrie", + "Hilbert geometry", + "Hilbertian geometry" + ], + "md5": "58263dc3457777098ba6793ad007b01b" + }, + { + "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" + } + ], + "pid": "1068606975", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Marketingberatung" + } + ], + "related": [ + { + "authorized_access_point": "Marketingberater" + } + ], + "md5": "a22633352cad9046f82503b87e18b1bf" + }, + { + "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" + } + ], + "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": "25368a461f256c7286f05f4bba455ddb" + }, + { + "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" + } + ], + "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": "30c3a8eeaf9e8950f76d3ed989507fc0" + }, + { + "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" + } + ], + "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": "19db420e4ace4f824fe41f3aebe06ca7" + }, + { + "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" + } + ], + "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": "980bed165bb155a21dfa7f96e1609600" + }, + { + "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" + } + ], + "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": "46e7c9feb4145556a32633a319f66c14" + }, + { + "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" + } + ], + "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": "dbe83e9b0f423978d108eff0d78ad5ec" + }, + { + "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" + } + ], + "pid": "1055013458", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "6e28cb814b9d2b7ec50aae02b438f5b0" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Markengattung zum Frankieren von Zeitungssendungen" + ] + } + ], + "pid": "1054183104", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Briefmarke" + } + ], + "md5": "439543d703d1831fae2e654229223d67" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Markenart zur Freimachung bei Massenauslieferung von Gescha\u0308ftsdrucksachen" + ] + } + ], + "pid": "1054182779", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drucksachenmarke" + } + ], + "md5": "3e4a26cb8c6316f57b9aa72060f0c1a8" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Markengattung zum Freimachen von Drucksachen" + ] + } + ], + "pid": "1054182620", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Briefmarke" + } + ], + "md5": "24abf5117dc186f02271e77825ba13a6" + }, + { + "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" + } + ], + "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": "1825a3f4264053de730a6b925ded123e" + }, + { + "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" + } + ], + "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": "fa7a23fc5365386c52a68558151c2b20" + }, + { + "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" + } + ], + "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": "01f0f13d51b02fab258717c7c197e8e9" + }, + { + "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" + } + ], + "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": "95b945b3e47002f4425b65726abd9755" + }, + { + "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" + } + ], + "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": "ebfdd136d30207b3e665eab039f13331" + }, + { + "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" + } + ], + "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": "02259806d69c144b4d3c5b17c349a6c0" + }, + { + "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" + } + ], + "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": "5b52b373b8c0e7cd11b137c1701e0364" + }, + { + "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" + } + ], + "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": "d91acaddede4794d12b78c674f5e6fd1" + }, + { + "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" + } + ], + "pid": "1015187382", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kieselsediment" + } + ], + "md5": "c5699e8d2e97a0d0381b16c557663557" + }, + { + "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" + } + ], + "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": "db6d208975fd8974e160c596fd313a0f" + }, + { + "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" + } + ], + "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": "bdc9a386e97dbfbc88ef22786882026e" + }, + { + "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" + } + ], + "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": "437d351a52edd0c82d982a98d80821ac" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Zuru\u0308cklenkung der Aufmerksamkeit auf das Ich und seine Ta\u0308tigkeit." + ] + } + ], + "pid": "1009887017", + "type": "bf:Topic", + "md5": "4f9adc805ade0fcb5a82dfadf9eefef9" + }, + { + "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" + } + ], + "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": "ef4d9930547048797e76196f4a70f5be" + }, + { + "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" + } + ], + "pid": "1008049115", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zunft" + } + ], + "variant_access_point": [ + "Messerschmied" + ], + "md5": "230093fb0e0af9edec60f85c602daa64" + }, + { + "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" + } + ], + "pid": "100735531X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "a3889b451964b1606a3dc1877c6a9310" + }, + { + "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" + } + ], + "pid": "1006894675", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sa\u0308ule" + } + ], + "md5": "c20bc09d24ec0d389baf917047dc5b7b" + }, + { + "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" + } + ], + "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": "6b645af4a145850f9fb5cd621392886f" + }, + { + "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" + } + ], + "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": "d1d26860df8a6d7e2b8d89d153a1df2c" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1923" + ] + } + ], + "pid": "1000168972", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "md5": "a6cdb1147511ee788aaf84986808435a" + }, + { + "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" + } + ], + "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": "9a29e21147cd980434c2f2eb95ba23e3" + }, + { + "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" + } + ], + "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": "e077bfd805384199b09b955342f0a487" + }, + { + "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" + } + ], + "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": "e7a7163477aaa21132321b40c6c7b429" + }, + { + "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" + } + ], + "pid": "99405212X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "6f5dddc3c009408c462400d859efd866" + }, + { + "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" + } + ], + "pid": "99283600X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Brettspiel" + } + ], + "variant_access_point": [ + "Chaupad", + "Chaupar", + "Chaupat", + "Chaupur", + "Pat (Brettspiel)" + ], + "md5": "7df59078bb989ed29957ccb5b17f1258" + }, + { + "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" + } + ], + "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": "7336c2b6b3d0434301bc91cae0e2a530" + }, + { + "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" + } + ], + "pid": "992754909", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "65c1497c4be4e5da1d8d8848499186ae" + }, + { + "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" + } + ], + "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": "921ad26d0a30b907f67ffc3a27b83cc7" + }, + { + "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" + } + ], + "pid": "992754534", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "a1f728fb0ff31f94538aabd4e960871b" + }, + { + "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" + } + ], + "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": "3dcc5d1639267979dd19cb544b46f560" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1922, auch kursiv" + ] + } + ], + "pid": "992753694", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "md5": "aa2c9409a592a3ae7e6b851108be64b9" + }, + { + "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" + } + ], + "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": "cb5b42c5af7e4ac88e9f9b3f6e7b968d" + }, + { + "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" + } + ], + "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": "cc1083ab5c147e46ec3f4a655f2a81b3" + }, + { + "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" + } + ], + "pid": "992751020", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "c8ba1c2e2c3ce6176911b4c36604a8a4" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1901; Hausschnitt" + ] + } + ], + "pid": "99274881X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "md5": "c242a656918fb09132fb79a94e2241f3" + }, + { + "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" + } + ], + "pid": "992747031", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "2e31644969583550514f4dbccba342f3" + }, + { + "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" + } + ], + "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": "949c42e06e95fd043fbbaa05ad664c5f" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit: 1900" + ] + } + ], + "pid": "992746248", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schwabacher" + } + ], + "md5": "976233483a3b22107255e6f0bebab084" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1927; Schrift der Heuvelpers" + ] + } + ], + "pid": "992745969", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "variant_access_point": [ + "Meidoorntype" + ], + "md5": "cd9919e4f2a3e32c4bbaf8f62a556f08" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit vor 1940" + ] + } + ], + "pid": "992745292", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "7f422eb8e0081b539488eb8fc997600c" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1905" + ] + } + ], + "pid": "992745187", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "md5": "fbae9b8cf23fd5f1930c6af2ff6bbad6" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit um 1906" + ] + } + ], + "pid": "99274508X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gotische Schrift" + } + ], + "variant_access_point": [ + "Hupp-Liturgisch" + ], + "md5": "41e41abd0a0ab3200fc0001cd8285011" + }, + { + "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" + } + ], + "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": "123a66502253d7c7aee1a37ae3fe69a8" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Enstehungsjahr 1965" + ] + } + ], + "pid": "992744091", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "md5": "0b299a128d61221265e20e253623cbd7" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Nachgewiesen 2005" + ] + } + ], + "pid": "992743605", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "dbbc854ed960d40d9ab0864702316e7d" + }, + { + "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" + } + ], + "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": "fd0f9434a170529bd95d1a9f822bf7f0" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1924" + ] + } + ], + "pid": "992742889", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gotische Schrift" + } + ], + "md5": "9a27ff068c34f913460e1388ef3e2b7f" + }, + { + "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" + } + ], + "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": "0ac74b09ae6331cf06610b0578ba0dbd" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1934 (normal u.fett); licht 1937" + ] + } + ], + "pid": "992742722", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "8d0768da0197374416bb34626c7ee21b" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1939; mager, fett, kursiv, schmal fett" + ] + } + ], + "pid": "992742498", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "b088a612d5c70a6d219e7ad886ed0037" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1939" + ] + } + ], + "pid": "992741696", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schreibschrift (Druckschrift)" + } + ], + "md5": "10359bb5132b555bd55c6100fc751672" + }, + { + "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" + } + ], + "pid": "992741491", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "variant_access_point": [ + "Schlemihl (Schrift)" + ], + "md5": "6f79106ea7f49958de526a138d2ba30c" + }, + { + "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" + } + ], + "pid": "992739659", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "6808a98849bab2b37ad942f2930d28dc" + }, + { + "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" + } + ], + "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": "48fb49a98a7fd9ade4f17388c68a597f" + }, + { + "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" + } + ], + "pid": "992738172", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "2084c4e979deb391d3b851c7ae252098" + }, + { + "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" + } + ], + "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": "ada1507f52db66b677fdb6df0b77586b" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1931" + ] + } + ], + "pid": "992738075", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "45fda31a69572d3da798a536c0d8335b" + }, + { + "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" + } + ], + "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": "a97cc38c23484b527a222419c6ed2654" + }, + { + "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" + } + ], + "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": "e98710d81672775110b6a51f9b15bd0e" + }, + { + "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" + } + ], + "pid": "992737788", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "variant_access_point": [ + "European (Druckschrift)", + "Linotype European PI" + ], + "md5": "f1154e93cf2fc5c9422ede758bf2aaf5" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Enstehungsjahr 1936 (Typothek gibt 1928 an)" + ] + } + ], + "pid": "992737532", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "bb6c2700f81d5bdc2c2c40d9e19c4150" + }, + { + "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" + } + ], + "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": "4ad9df59c484cdaa9bd60acc2ff53f34" + }, + { + "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" + } + ], + "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": "72ff48a12ede8bcfbe6bc1f8a4b5a6c4" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1933, fett" + ] + } + ], + "pid": "992735858", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "md5": "4d6ae8dec4e97b2518e159c4e2374057" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: nach 1906 (nachgewiesen 1921)" + ] + } + ], + "pid": "99273584X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "md5": "49386a9fcb5d82a3a7b798920fd448e4" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1925" + ] + } + ], + "pid": "992735823", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Renaissance-Antiqua" + } + ], + "md5": "404e4fb759c628b91056b7d693a12c93" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr 1949; kursiv; halbfett" + ] + } + ], + "pid": "992735270", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "2cab2bad100deff69f280d28d46a1019" + }, + { + "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" + } + ], + "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": "8270b1b800beb97856a599a4e99effa8" + }, + { + "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" + } + ], + "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": "373a5d9843ab1f7f6bfd8243711f1435" + }, + { + "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" + } + ], + "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": "1b9d13db34ffa840da4b5fbe0c3a6ab7" + }, + { + "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" + } + ], + "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": "aedee40e3bcee0950a26b09c93c783db" + }, + { + "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" + } + ], + "pid": "992731496", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "646338ac712a35e4ad23efaec8ab16e5" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungsjahr: 1928 (Broadway Condensed 1929)" + ] + } + ], + "pid": "99273147X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "c5446764bce50c9c0fba0bae5b1ca222" + }, + { + "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" + } + ], + "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": "4da6c133a2d573803531c5af9966acb8" + }, + { + "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" + } + ], + "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": "3d6c99ab32404c48fa5359ed4c25e83d" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Entstehungszeit 1914" + ] + } + ], + "pid": "99273052X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Renaissance-Antiqua" + } + ], + "variant_access_point": [ + "Mediaeval", + "Media\u0308val" + ], + "md5": "aebe79d780e26b2c745e8965511a9b8c" + }, + { + "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" + } + ], + "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": "63cb47c1c9822c3e944a28b6ecbde399" + }, + { + "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" + } + ], + "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": "b4c6e1ceeebbfaf2a590de55707fb961" + }, + { + "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" + } + ], + "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": "e583e09f6f7d346a5ff302c0bc4b797a" + }, + { + "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" + } + ], + "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": "b2b32a7bb0bed523d28feb5527312c80" + }, + { + "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" + } + ], + "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": "8b33e1b93ddd125220b493ff46aef17d" + }, + { + "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" + } + ], + "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": "bde9ab58fd960fbf00d93c6a2a747af7" + }, + { + "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" + } + ], + "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": "fa49868dd8125dd57183c50a8e50ed47" + }, + { + "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" + } + ], + "pid": "981355196", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Informationsmanagement" + }, + { + "authorized_access_point": "Corporate Governance" + } + ], + "broader": [ + { + "authorized_access_point": "Framework (Informatik)" + } + ], + "md5": "c809a6a1106a5d77fc6ca02ca8d45926" + }, + { + "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" + } + ], + "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": "e97093a71a82ec96b1bb4d7f531cf545" + }, + { + "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" + } + ], + "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": "ec75a31caa66a9d89cd7665cebf229fd" + }, + { + "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" + } + ], + "pid": "980485371", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "3e2dbd77e07cd91f29e7a7ba5234424f" + }, + { + "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" + } + ], + "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": "1ae52b1797d5d10b99b0f0e0b559357d" + }, + { + "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" + } + ], + "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": "153a496a30abd9ddce585f66e8d42199" + }, + { + "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" + } + ], + "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": "0bfc57ea4004a5a5f9c75369ee0bbe00" + }, + { + "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" + } + ], + "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": "e8f9f680b7eacaa7c26eb7076cd0555c" + }, + { + "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" + } + ], + "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": "30e8043a1657038dd07d9bf1d6af949a" + }, + { + "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" + } + ], + "pid": "974924423", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Haushaltsbuch" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "variant_access_point": [ + "sCHECK up" + ], + "md5": "d16332df7e5ca2d7433d0121a3469f9e" + }, + { + "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" + } + ], + "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": "278247d49f942541fdc014bf5dd4e802" + }, + { + "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" + } + ], + "pid": "973073764", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musik" + } + ], + "md5": "ae5a04d0d14eb175d490f71360a74104" + }, + { + "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" + } + ], + "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": "7e1f398efc151f5dcc893509fd79cfcf" + }, + { + "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" + } + ], + "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": "e9a2dbada142fc2040914bc19e7f5832" + }, + { + "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" + } + ], + "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": "3855afb078fd5a1a862a2c5c442f7f6f" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Fo\u0308rder-, Transportmittel" + ] + } + ], + "pid": "971750289", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wagen" + }, + { + "authorized_access_point": "Flurfo\u0308rderer" + } + ], + "md5": "c7b7c6f89cebdd5c65ee465c38f60692" + }, + { + "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" + } + ], + "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": "2f0e681ba28d3450d8100318995a0a17" + }, + { + "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" + } + ], + "pid": "970782195", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ausbreitung" + }, + { + "authorized_access_point": "Modell" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "324e13e4a5431979a63c43a2bc0262ed" + }, + { + "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" + } + ], + "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": "995fabd6d0f0306b6be14d335d12eaf9" + }, + { + "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" + } + ], + "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": "d6b3f857a206b13db7accfe8f7b8b228" + }, + { + "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" + } + ], + "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": "ca435c30ce88e686f0d44896f1df1efa" + }, + { + "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" + } + ], + "pid": "969789726", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pietismus" + } + ], + "variant_access_point": [ + "Radikalpietismus" + ], + "md5": "80418c44886a6d4b2d84e7b3b6a7a8c6" + }, + { + "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" + } + ], + "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": "e75bcc00776a34df88d971519e9f4a21" + }, + { + "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" + } + ], + "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": "5625534380698e5df40fee1294ef5e76" + }, + { + "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" + } + ], + "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": "9f7f04bf1c5d6dfcce2a2be88ffdb7c2" + }, + { + "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" + } + ], + "pid": "967612896", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Model (Form)" + } + ], + "md5": "b064defc4e560291135c9a5ca1cc1cbf" + }, + { + "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" + } + ], + "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": "784d3c1c7c901f0be69a40d4573065ba" + }, + { + "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" + } + ], + "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": "b29849f9ae9208897333e5d70f3b9328" + }, + { + "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" + } + ], + "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": "1745ca5f551b88e9b33bb92b73ed6795" + }, + { + "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" + } + ], + "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": "83cbbaa433052e2cdea6b5c486b43c0e" + }, + { + "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" + } + ], + "pid": "965195686", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Angle-Klasse II" + } + ], + "md5": "388bbfbadf24be30fe03e3e8922177ba" + }, + { + "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" + } + ], + "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": "9b7483ec1578e049921e294e4c181617" + }, + { + "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" + } + ], + "pid": "964240300", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "10874a5db223a32c2b15d757bdc5cb0d" + }, + { + "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" + } + ], + "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": "6af78ba4dfed637713bee539c81e42dc" + }, + { + "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" + } + ], + "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": "0194d8d1e0ee3ecece03ec30bf5d1ca2" + }, + { + "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" + } + ], + "pid": "963711636", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Versuch" + } + ], + "related": [ + { + "authorized_access_point": "Untauglicher Versuch" + } + ], + "variant_access_point": [ + "De\u0301lit manque\u0301" + ], + "md5": "40d292e28390eaf404d94822bf861183" + }, + { + "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" + } + ], + "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": "60c27a7b699982e436a26597d23a8af1" + }, + { + "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" + } + ], + "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": "90bab6a1abfd5397f4e9f2c9942f7732" + }, + { + "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" + } + ], + "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": "b53934e5624f27232b9ccde50f32fed0" + }, + { + "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" + } + ], + "pid": "963553984", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ko\u0308rper (Algebra)" + } + ], + "md5": "d8d2b00700017c4bb18c96247f39384e" + }, + { + "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" + } + ], + "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": "a4b67f6f1efac3780374bc5e5fbc882c" + }, + { + "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" + } + ], + "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": "0366ba8ff8ddcb01032be065df35719e" + }, + { + "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" + } + ], + "pid": "961897546", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausstellung" + } + ], + "variant_access_point": [ + "Ethnologische Ausstellung" + ], + "md5": "0733fb6d1dd8af8814ec45b5b52d4279" + }, + { + "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" + } + ], + "pid": "961236752", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Du\u0308ne" + } + ], + "md5": "5d17566f4afda35385ea47205bd500be" + }, + { + "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" + } + ], + "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": "4252966f1ebfb9d451b1fe19c8765842" + }, + { + "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" + } + ], + "pid": "961049510", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sonde" + } + ], + "md5": "2ce4bf87fff5ea9dc780224c8b6fba30" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Markenname", + "Verknu\u0308pfe mit einer Produktgruppe, z.B. Motorrad" + ] + } + ], + "pid": "960895175", + "type": "bf:Topic", + "md5": "47df213a237c7fed54564dd789056d0d" + }, + { + "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" + } + ], + "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": "0479ac0fdf783e265526476fc04719ec" + }, + { + "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" + } + ], + "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": "dbcd7302498c3eeaaef749b153b70cb6" + }, + { + "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" + } + ], + "pid": "960175105", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Dokumentenverwaltungssystem" + } + ], + "variant_access_point": [ + "Dokumenten Retrieval- und Informations-System" + ], + "md5": "c067c7e1e2447b2a2e75447db5575b4a" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "O\u0308kologisches Computerprogramm" + ] + } + ], + "pid": "959959750", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "O\u0308kologie" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "36e47827e5d282e16e0adf40a6529ee9" + }, + { + "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" + } + ], + "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": "ba056c49921b869baa95f68fabec809e" + }, + { + "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" + } + ], + "pid": "959794921", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Ku\u0308sten-Dajak-Sprache", + "See-Dajak-Sprache" + ], + "md5": "bdfb8349ca8b4f3becd920b6045cda91" + }, + { + "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" + } + ], + "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": "e6ec1ec6bff6e7269d4f2a4a94b959e1" + }, + { + "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" + } + ], + "pid": "959740864", + "type": "bf:Topic", + "md5": "e3c5c6676a809bac4f957d7027f41741" + }, + { + "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" + } + ], + "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": "e506693fe8e6fe65fe7d3ce5dc1471b8" + }, + { + "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" + } + ], + "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": "485bb7b6c63ebf117af8691be7d77025" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verbreitung: Celebes, Distrikte Bungku u. Labota; Kabaena Is." + ] + } + ], + "pid": "959148485", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "md5": "ead7f6bb6d3d6d13ab682f2381c3d7f1" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Verbreitung: Su\u0308dcelebes" + ] + } + ], + "pid": "959148477", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Tolaki" + ], + "md5": "cc3ec095f427f275038a5e354d9c7eda" + }, + { + "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" + } + ], + "pid": "958503001", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sperrschichtgleichrichter" + } + ], + "md5": "e3f0ab22090baa35cd7cf2c592a0c7ac" + }, + { + "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" + } + ], + "pid": "958467102", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Kanay", + "Kenja", + "Kenjah", + "Kehja", + "Kinyah" + ], + "md5": "246aae2ce3ba7fc48f728175fa02e051" + }, + { + "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" + } + ], + "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": "0f921ac2e4ee1e725accece72d0d45e1" + }, + { + "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" + } + ], + "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": "1d97f9fdc28652b5e4b34620ff2fc994" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Erzstufen, die eine Handfla\u0308che ausfu\u0308llen" + ] + } + ], + "pid": "958190453", + "type": "bf:Topic", + "variant_access_point": [ + "Handstu\u0308ck" + ], + "md5": "ebcef59693eb4beac309175f24509938" + }, + { + "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" + } + ], + "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": "eea475445fb98f3acb2731e951777fa4" + }, + { + "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" + } + ], + "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": "be2f2d43f9321ba261a7898f6ecdd113" + }, + { + "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" + } + ], + "pid": "957331940", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "md5": "c8d356f61742eb8b282f9149303feb9c" + }, + { + "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" + } + ], + "pid": "957331673", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gie\u00dferei" + } + ], + "variant_access_point": [ + "Geschu\u0308tz" + ], + "md5": "c05379e4f8c77b9e8e3059efc2b25194" + }, + { + "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" + } + ], + "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": "a8a709f18f06c62db164065fa1cb00da" + }, + { + "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" + } + ], + "pid": "956838049", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "SAP R/3" + } + ], + "broader": [ + { + "authorized_access_point": "Programmierumgebung" + } + ], + "md5": "5ca95bccebd3591c7de128cd3d610843" + }, + { + "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" + } + ], + "pid": "956643221", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "md5": "1eb1e9c371f8c4bfb0c237758dfae378" + }, + { + "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" + } + ], + "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": "70da54b422ad151ea90c39bccc2c6e93" + }, + { + "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" + } + ], + "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": "6e28cf698f67abd6ae37957e232467c9" + }, + { + "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" + } + ], + "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": "e508071fb7961645f4a1929f5b20d7ac" + }, + { + "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" + } + ], + "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": "33b04556c150137fe7f88882a348ae29" + }, + { + "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" + } + ], + "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": "b55b3ecc76e45f9fb59a74ecd6f209de" + }, + { + "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" + } + ], + "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": "3a6fadcd5e1f6599cb9bc46810b1d862" + }, + { + "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" + } + ], + "pid": "954211774", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Chipkarte" + }, + { + "authorized_access_point": "Funktelefon" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "f6b300f57ee72106c75f24f89e77e772" + }, + { + "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" + } + ], + "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": "91f48e9784a0968b5df8b1e32b4fa173" + }, + { + "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" + } + ], + "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": "3f0b1f5a80c7dccc4b686eb2fa2bb46c" + }, + { + "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" + } + ], + "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": "85318d0cf73f2497e05acb08678962ee" + }, + { + "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" + } + ], + "pid": "953550346", + "type": "bf:Topic", + "variant_access_point": [ + "Indexzahl", + "Statistische Indexreihe", + "Dynamische Indexreihe" + ], + "md5": "469d55329ca84ef843e794d312992f08" + }, + { + "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" + } + ], + "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": "ce0281273ed27ecea3fa39dd2a2a6129" + }, + { + "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" + } + ], + "pid": "953056082", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hebra\u0308ische Schrift (Druckschrift)" + }, + { + "authorized_access_point": "Druckschrift" + } + ], + "md5": "d05607e13d5a193b85097eb119f7705f" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Den Entwicklungsprozess vorantreibender Akteur in der Organisationsentwicklung" + ] + } + ], + "pid": "952896605", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Organisationsentwicklung" + } + ], + "md5": "9057dd40f1ddd2b5a07218cf27f10618" + }, + { + "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" + } + ], + "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": "1178d4e659811f0ecd0d6a88f2addf68" + }, + { + "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" + } + ], + "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": "1a84bf1ba68151e0afa00a2e85fce93d" + }, + { + "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" + } + ], + "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": "4c232ded6a4895d7b706c92738c5ec6f" + }, + { + "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" + } + ], + "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": "c9d0793be2462c7ab4c0353c0e768e27" + }, + { + "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" + } + ], + "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": "7c78db4e9ec162105a95f1035f6d7400" + }, + { + "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" + } + ], + "pid": "951618563", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Reise" + }, + { + "authorized_access_point": "Aufbruch" + } + ], + "md5": "be51bd8e40d9c8b96b99f58958ffeef2" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "benutzt fu\u0308r den Stoff (O\u0308dipusthematik)" + ] + } + ], + "pid": "951607804", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Legende" + } + ], + "md5": "5cc37f10d02888a48475a438e9f5a6b6" + }, + { + "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" + } + ], + "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": "d3809f154637026405c2b0df7d6226a5" + }, + { + "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" + } + ], + "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": "f0a1719f9e7d9e434ee0f95bd9d5d271" + }, + { + "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" + } + ], + "pid": "95153047X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Sakai (Sprache)", + "Sakei" + ], + "md5": "387b2be322ee7efdbb90a11cb399d8fd" + }, + { + "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" + } + ], + "pid": "95152092X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "md5": "e9e7c77b06dc7995190ac16e4e347cbc" + }, + { + "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" + } + ], + "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": "8c4d4cda0a32de4c41b8a0e73a487118" + }, + { + "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" + } + ], + "pid": "950693413", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Minahasa-Sprachen" + ], + "md5": "b1472ba6b4c2c9e277ed7bac0fa5b8a5" + }, + { + "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" + } + ], + "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": "8ad1b076fc5d326d0a350cb20d1fd58a" + }, + { + "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" + } + ], + "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": "582fbc7ed816a945cac694db22cfafbb" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "PPS-Modularprogramm" + ] + } + ], + "pid": "950632481", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "PPS" + } + ], + "md5": "e95254460da6761265f2c8b9cdfc3932" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Pflanzenparasit, zu der Gattung der Kleeseide geho\u0308rend" + ] + } + ], + "pid": "950276014", + "type": "bf:Topic", + "md5": "a878c5a509ce8bf982159c60353f6be6" + }, + { + "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" + } + ], + "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": "fb5c0e7f8267d162a2a251e64ca04819" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Bezeichnung fu\u0308r die Diktaturen in Portugal (1933-1974) und Brasilien (1934/1937-1945)" + ] + } + ], + "pid": "949435015", + "type": "bf:Topic", + "md5": "906988a7dfd46c5ffffb7988251978dd" + }, + { + "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" + } + ], + "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": "09d0b8beeae53fe3b07371d9ef1762d5" + }, + { + "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" + } + ], + "pid": "948567341", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Andian", + "Mandar (Sprache)" + ], + "md5": "e2e59c82001d78eeed43e47393391e75" + }, + { + "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" + } + ], + "pid": "948567317", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Mentawei", + "Mentawi" + ], + "md5": "126bcb3390ff291a9c66d71210a60f7c" + }, + { + "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" + } + ], + "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": "dcdb97d1a5728068661b16ea39407d62" + }, + { + "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" + } + ], + "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": "f9d941db0e0869a302bccb66c4c420ac" + }, + { + "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" + } + ], + "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": "147201c636e4676d5e472770cc0f8492" + }, + { + "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" + } + ], + "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": "e0550680416160c4abb4f0899b866727" + }, + { + "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" + } + ], + "pid": "947572090", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Finanzmathematik" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "b57cda29d2b6481cb36dfb5dbd7fde79" + }, + { + "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" + } + ], + "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": "3f067a69d65368e920684f603dbc3e36" + }, + { + "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" + } + ], + "pid": "947024387", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Installateurhandwerk" + } + ], + "related": [ + { + "authorized_access_point": "Klimatechnische Wirtschaft" + } + ], + "variant_access_point": [ + "Klimatechnik", + "Klimatechnik", + "Klimatechnik" + ], + "md5": "f76743b8c9ef6decb811a7f5c1a26ff3" + }, + { + "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" + } + ], + "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": "2c396aba8eaecc06386e067d0da2ce1f" + }, + { + "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" + } + ], + "pid": "94683203X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Algebraischer Funktionenko\u0308rper" + } + ], + "md5": "bba39b2d4a7e7e11b8703d33000b05e4" + }, + { + "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" + } + ], + "pid": "946538506", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tiere (Motiv)" + }, + { + "authorized_access_point": "Tierdarstellung" + }, + { + "authorized_access_point": "Motiv" + } + ], + "md5": "e00abbea28cc9640c7ed6d20673c53c2" + }, + { + "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" + } + ], + "pid": "946529981", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Fakturierung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "4b4927368c62b1302c43ed4cba4296d4" + }, + { + "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" + } + ], + "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": "5146c62cd8ff8d219b76ffac8ad32d78" + }, + { + "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" + } + ], + "pid": "945831749", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "md5": "86dcfa3ca7089ae4f0980a84905eb299" + }, + { + "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" + } + ], + "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", + "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": "5191bbf3873d0026d6eaddf2abdded12" + }, + { + "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" + } + ], + "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": "80f80a2b700f4539c894bfccde000eda" + }, + { + "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" + } + ], + "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": "ae13aa69f4063787780545fb2737b63b" + }, + { + "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" + } + ], + "pid": "945325150", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vo\u0308lkerrechtlicher Vertrag" + } + ], + "variant_access_point": [ + "Zollvertrag" + ], + "md5": "a887d64dcace9c687d3d7844fe2447c6" + }, + { + "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" + } + ], + "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": "f9f47d7ea315ea58ff1accd9ef3dc972" + }, + { + "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" + } + ], + "pid": "94392961X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Bolaan-Mongondou", + "Mongondow" + ], + "md5": "1a50ce3c879c3297408b6a76e83b1082" + }, + { + "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" + } + ], + "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": "bcaa5b6105327668f770e7953ae8e8c2" + }, + { + "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" + } + ], + "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": "a0fa6429bbb3b1a22c234907c1b86798" + }, + { + "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" + } + ], + "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": "c70288a3952bc109a9c8f7b4a5f3d412" + }, + { + "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" + } + ], + "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": "7c137a0a634fe1eab0d6cb8dc7709669" + }, + { + "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" + } + ], + "pid": "943138604", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zellaufschluss" + } + ], + "md5": "d70f3ecdde4e5ba403aaca9ff828104c" + }, + { + "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" + } + ], + "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": "02d23d984175a3f776fbfa858425be4e" + }, + { + "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" + } + ], + "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": "7dbb7e968a5526050a85080d2e577faf" + }, + { + "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" + } + ], + "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": "dfc9134150a73066ba607cc47584a413" + }, + { + "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" + } + ], + "pid": "941781437", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "9d6ad81bf4c4058b38c0135e55d4e443" + }, + { + "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" + } + ], + "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": "22f19712fdc00adb627b9160d0648a57" + }, + { + "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" + } + ], + "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": "5c1fcae3966d82e4ecc13cf61b3d8228" + }, + { + "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" + } + ], + "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", + "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": "1405b420266eb0c497f1a7c9d9a69645" + }, + { + "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" + } + ], + "pid": "940594919", + "type": "bf:Topic", + "variant_access_point": [ + "Leinen" + ], + "md5": "539e2498d3b8dbb5e19167a05479360f" + }, + { + "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" + } + ], + "pid": "199289190", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "d06fd164ad3c361e125a7db9d930fd8b" + }, + { + "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" + } + ], + "pid": "199281823", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "md5": "91336f81c96e538e754ed47e7836163b" + }, + { + "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" + } + ], + "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": "6389992bf281519385a9fceec9497aa8" + }, + { + "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" + } + ], + "pid": "19917606X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handel" + }, + { + "authorized_access_point": "Seilerware" + } + ], + "variant_access_point": [ + "Seilerware", + "Seilhandel", + "Seil" + ], + "md5": "7e0b01a5ac1414f8446822680db89084" + }, + { + "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" + } + ], + "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": "b3f258847dc3f7b2d6951080959dbd3b" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet - http://www.miz.org/themenportale/musikfoerderung" + ] + } + ], + "pid": "19915046X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturfo\u0308rderung" + } + ], + "md5": "7ee514828f0d8f00cbcc884f75843aff" + }, + { + "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" + } + ], + "pid": "199129215", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Versicherungsteuer" + } + ], + "md5": "85bcb92c9b03e4d1c5ad5c60ce781e4e" + }, + { + "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" + } + ], + "pid": "130791008", + "type": "bf:Topic", + "md5": "96810d2cf447e7c57dee58abfda60efa" + }, + { + "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" + } + ], + "pid": "130750085", + "type": "bf:Topic", + "variant_access_point": [ + "Homophilie", + "Schwule Liebe", + "Schwule Orientierung" + ], + "md5": "6eba53f7cd3f508d121abfc824c0ef22" + }, + { + "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" + } + ], + "pid": "130741094", + "type": "bf:Topic", + "md5": "4b0771d61a1c8e8a6e72c1343f1f4c6d" + }, + { + "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" + } + ], + "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": "c305b906a56b4da917104f4178ed3f95" + }, + { + "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" + } + ], + "pid": "130715387", + "type": "bf:Topic", + "md5": "4dcb52e815f679bd3a37d643a41fbe07" + }, + { + "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" + } + ], + "pid": "130714941", + "type": "bf:Topic", + "variant_access_point": [ + "Betrieb", + "Betriebsorganisation", + "Unternehmensstruktur (Organisation)", + "Unternehmen" + ], + "md5": "ea0eabbea598f6bdaccfe952e0afabb1" + }, + { + "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" + } + ], + "pid": "130708291", + "type": "bf:Topic", + "variant_access_point": [ + "Ehe", + "Eherecht der katholischen Kirche" + ], + "md5": "29dd89a1c7aa523a712fd7da5503d308" + }, + { + "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" + } + ], + "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": "6e240123670a13dd25f8338cf08da060" + }, + { + "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" + } + ], + "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": "bae724b4faa4f672ba77df8561d9afa9" + }, + { + "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" + } + ], + "pid": "13069374X", + "type": "bf:Topic", + "variant_access_point": [ + "Verfassungsma\u0308\u00dfiges Gesetz", + "Verfassungswidrigkeit von Gesetzen", + "Verfassungswidriges Gesetz", + "Nichtiges Gesetz", + "Gesetz", + "Gesetz" + ], + "md5": "1e73dbe92f42d6a36376e32668583655" + }, + { + "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" + } + ], + "pid": "130692476", + "type": "bf:Topic", + "variant_access_point": [ + "Literarische Interpretation" + ], + "md5": "53ecda7bec11befda9da31c92cd85423" + }, + { + "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" + } + ], + "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": "957b391b2654d390d76eb7ef1618f416" + }, + { + "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" + } + ], + "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": "79924e3235f8597b528f59d466ecb1f4" + }, + { + "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" + } + ], + "pid": "04328213X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geschwindigkeit" + } + ], + "variant_access_point": [ + "Deposition (Meteorologie)" + ], + "md5": "ee1232f0882b78cf70cb65c5386cd087" + }, + { + "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" + } + ], + "pid": "043274994", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bewegliche Sache" + } + ], + "related": [ + { + "authorized_access_point": "Wiederherbeigeschaffte Sache" + } + ], + "variant_access_point": [ + "Bewegliche Sache" + ], + "md5": "311136f6ec65bd6d93b6efb8a216d1ce" + }, + { + "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" + } + ], + "exactMatch": [ + { + "authorized_access_point": "Soviet Union", + "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", + "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": "59200264f12a8da98cf8b93074ef0e99" + }, + { + "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" + } + ], + "pid": "043203469", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hanfwirtschaft" + }, + { + "authorized_access_point": "Pflanzenbau" + } + ], + "variant_access_point": [ + "Hanf", + "Cannabisanbau", + "Cannabis-Anbau" + ], + "md5": "384efa7d5e584be8d477df407d826160" + }, + { + "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" + } + ], + "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": "be2635b7fcd20431033867ec65cf15b9" + }, + { + "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" + } + ], + "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": "3a8dc78ea8049ad5390250e3490342f2" + }, + { + "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" + } + ], + "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": "2360b79cdbd7e625ef89f414ad16b4b0" + }, + { + "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" + } + ], + "pid": "043128629", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Anlagenbuchhaltung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "c7140384b07fc4d50a41d6739751f5ce" + }, + { + "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" + } + ], + "pid": "043062008", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "md5": "5971239cdcf82827dedbea3d8bf55857" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Su\u0308d-Sulawesi" + ] + } + ], + "pid": "04304929X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Luwu-Sprache" + ], + "md5": "3566f96cd3193abcec6c8af5da9f663a" + }, + { + "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" + } + ], + "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": "c5cb7055495e04268de30731ff249968" + }, + { + "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" + } + ], + "pid": "043022790", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Pitu Uluna Binanga" + ], + "md5": "fb614b1fb433ff7805b4646207efe1dd" + }, + { + "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" + } + ], + "pid": "043004164", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "A\u0308olisch" + } + ], + "variant_access_point": [ + "Boiotisch" + ], + "md5": "bfa801ee897f69af8e66171670f87f99" + }, + { + "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" + } + ], + "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": "8696ec194b0add4cae35c1363219062d" + }, + { + "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" + } + ], + "pid": "043001173", + "type": "bf:Topic", + "variant_access_point": [ + "Feuchtigkeitstransport", + "Feuchtetransport" + ], + "md5": "a6c64a6043a0388b382ee7121dad1402" + }, + { + "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" + } + ], + "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": "9521a8fe5f7fbc2cb5971931206671d8" + }, + { + "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" + } + ], + "pid": "043000150", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Fakturierung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "ad048db24f89116d40b9017361c41aec" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Breast", + "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", + "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", + "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": "6792946ab8c1881ad06ef7928e235c3e" + }, + { + "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" + } + ], + "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": "40c951f42772168a048868e857572b9a" + }, + { + "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" + } + ], + "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": "5eb29639f179fd34fd73fd34f79df96c" + }, + { + "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" + } + ], + "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": "cc0386294d58384990d6f03888e5bee5" + }, + { + "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" + } + ], + "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": "4fce8fff35f2fe7b977b76134ee617dd" + }, + { + "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" + } + ], + "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": "7aaae42025f831372c2c3b5fc160e38b" + }, + { + "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" + } + ], + "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": "3773dfa6dee78740bcd7a4f12d59421d" + }, + { + "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" + } + ], + "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": "f059d72d85a145bd2e2f665f821085ce" + }, + { + "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" + } + ], + "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": "2256ce966746e9bd3c177273d724058a" + }, + { + "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" + } + ], + "pid": "042863627", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Schulu\u0308bergang" + } + ], + "md5": "e898511faf6289d6616643534e2fb404" + }, + { + "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" + } + ], + "pid": "042848792", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Finanzmathematik" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "9353d7967667584cc748f9ff4f6c3319" + }, + { + "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" + } + ], + "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": "909e6920a12600413bc2aa68a966a558" + }, + { + "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" + } + ], + "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": "c429609695c7f7c48a23c462b06961cd" + }, + { + "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" + } + ], + "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": "033cfd6760fc526d26fbabf568ce8cbb" + }, + { + "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" + } + ], + "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": "8b988065a4d8f8e971754176655d10d9" + }, + { + "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" + } + ], + "pid": "042765315", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fertigung" + } + ], + "related": [ + { + "authorized_access_point": "Fertigbauteil" + } + ], + "variant_access_point": [ + "Vorfabrikation" + ], + "md5": "4ed9f107f4a19baabe96da0b7163c6b4" + }, + { + "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" + } + ], + "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": "cdabbdedd419820f50f6052c72049d13" + }, + { + "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" + } + ], + "pid": "042731437", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schaltverhalten" + } + ], + "md5": "174d9b0d7ee26c6aa5ac27f1169b2d97" + }, + { + "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" + } + ], + "pid": "042720133", + "type": "bf:Topic", + "md5": "65e55981eed4b97165303334675220e8" + }, + { + "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" + } + ], + "pid": "04266702X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "U\u0308bergangsmetallkomplexe" + } + ], + "md5": "a7a3e3f0541025413980fc4efa01c036" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Anlageform am Geldmarkt ohne Wertpapiercharakter" + ] + } + ], + "pid": "042653304", + "type": "bf:Topic", + "md5": "ad4ecfa39f8acd3ef3e679540ff077d4" + }, + { + "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" + } + ], + "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", + "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": "0a0762eeb1869592a707848b4f535146" + }, + { + "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" + } + ], + "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": "f2bc2b65f987c1e597f919f94a3ca9a8" + }, + { + "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" + } + ], + "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": "73bb656890257ba636eb3ade024c89c0" + }, + { + "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" + } + ], + "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": "5834389a2e4da9ca0e8fee638f58d95f" + }, + { + "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" + } + ], + "pid": "042573254", + "type": "bf:Topic", + "variant_access_point": [ + "Teilchen" + ], + "md5": "7a7d19d4c923875971652a45a794d606" + }, + { + "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" + } + ], + "pid": "042536367", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Naturheilverfahren" + } + ], + "variant_access_point": [ + "Autoregulative Therapie" + ], + "md5": "581e323287e4a1a253e7c5d6c7cd12b1" + }, + { + "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" + } + ], + "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": "bae08ff6e1b7a85dafbff6a09c786c0a" + }, + { + "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" + } + ], + "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": "e76b68efb59f5999074bafa39eb640a6" + }, + { + "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" + } + ], + "pid": "042447690", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Orak Lawoi\u02be-Sprache" + ], + "md5": "ad30b0b0c86c934e93e5d24f77b7be33" + }, + { + "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" + } + ], + "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": "0a1a673b3f6eed9da665ea00ed836f71" + }, + { + "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" + } + ], + "pid": "042425875", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Trainingsplanung" + } + ], + "related": [ + { + "authorized_access_point": "Jahrestrainingsplan" + } + ], + "variant_access_point": [ + "Periodisierung (Training)" + ], + "md5": "ef86ffc3a667e4ba30912f1cf08ef983" + }, + { + "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" + } + ], + "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": "e8b545f7c5c4e1f3ca7b6dba5580035d" + }, + { + "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" + } + ], + "pid": "042380480", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Mina-Sprache (Westindonesisch)", + "Muna (Sprache)", + "Mina (Sprache, Westindonesisch)" + ], + "md5": "0df1a3e08c4a69b73ec3dd45fa795afa" + }, + { + "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" + } + ], + "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": "bd286ebba414d20bf8e652e087a269e6" + }, + { + "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" + } + ], + "pid": "042325900", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Epithelzelle" + } + ], + "variant_access_point": [ + "Beta-Zelle (Hypophysenvorderlappen)", + "Adenohypophyse" + ], + "md5": "794b3edf37176ed79da4c4bd610913ab" + }, + { + "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" + } + ], + "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": "4d77d9f233c0f2729072ea5d471b749f" + }, + { + "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" + } + ], + "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": "20b8a33bbc560f38324bebd75ecdf22b" + }, + { + "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" + } + ], + "pid": "042277558", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Badjau-Sprache", + "Sama-Sprache (Austronesische Sprache)" + ], + "md5": "1e98a8f50e3c47dd7c09bab2c72277b9" + }, + { + "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" + } + ], + "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": "eda7342dab0b3242f2b7e7c339b30595" + }, + { + "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" + } + ], + "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": "b9f08eb9680cf208e36eb795d0c2d054" + }, + { + "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" + } + ], + "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": "6ce947184d15a82c223f221a177b24ea" + }, + { + "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" + } + ], + "pid": "042213010", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Relief (Geografie)" + } + ], + "variant_access_point": [ + "Erosionsform" + ], + "md5": "81703fe60ff33d33d0a55bdd03311703" + }, + { + "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" + } + ], + "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": "2376e203642b73bf1fc2009170fb052d" + }, + { + "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" + } + ], + "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": "696e060199b306932b6189bf71438c6c" + }, + { + "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" + } + ], + "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": "5bd2687b5e9d0bbc7385943bcbfd3257" + }, + { + "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" + } + ], + "pid": "042147670", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programmiersystem" + } + ], + "md5": "63313ec47049e6b4c015f105c12277b6" + }, + { + "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" + } + ], + "pid": "042142237", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kartenauswertung" + } + ], + "variant_access_point": [ + "Kartenmessung" + ], + "md5": "54adf26e95d1a513cf1da65633a7ab6e" + }, + { + "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" + } + ], + "pid": "042137519", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Insolationsverwitterung" + } + ], + "related": [ + { + "authorized_access_point": "Grus" + }, + { + "authorized_access_point": "Vergrusung" + } + ], + "md5": "41eb72552fcece6e14436e19d3c2c941" + }, + { + "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" + } + ], + "pid": "042124093", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Kadazan (Sprache)" + ], + "md5": "3585db47d0e4832351128a604f81f226" + }, + { + "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" + } + ], + "pid": "042123909", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kennlinie" + } + ], + "variant_access_point": [ + "Isentrope" + ], + "md5": "b70a826e34bd4f5dec18146e51ced993" + }, + { + "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" + } + ], + "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": "fb1aac0f10f987a853f5ba36c4cd9de9" + }, + { + "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" + } + ], + "pid": "042104378", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Fertigungskontrolle" + }, + { + "authorized_access_point": "Simulation" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "7105ee2e50e6ac810fbef1ecc7587b3e" + }, + { + "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" + } + ], + "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": "5ac35003859de5e233c10070df27f536" + }, + { + "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" + } + ], + "exactMatch": [ + { + "authorized_access_point": "Breast", + "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": "40559e1a4a0618f3490ba3edba342bbd" + }, + { + "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" + } + ], + "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": "dc5997cd43ec545e9608fb6a81ec6231" + }, + { + "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" + } + ], + "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": "85136fce5acf273b2f0f5ce3b8ec3907" + }, + { + "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" + } + ], + "pid": "042044529", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stadt" + } + ], + "md5": "4b5b818638dd320188d4ae1ab775e0b4" + }, + { + "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" + } + ], + "pid": "042033276", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Kapitalanlage" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "8b2c18d19417077f8222032e92be43cc" + }, + { + "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" + } + ], + "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": "e9895eebb505fef5c5ba8eaed4ae3db9" + }, + { + "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" + } + ], + "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": "2d980cf14f52a80a2ddd2d10b7788183" + }, + { + "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" + } + ], + "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": "6588f4d5d1e831c727e12fdacea52f36" + }, + { + "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" + } + ], + "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": "1427eb0232e72d0ef86348075c5e0594" + }, + { + "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" + } + ], + "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": "8f7c41a028af2d13b4787f34f4aa5280" + }, + { + "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" + } + ], + "pid": "041961080", + "type": "bf:Topic", + "variant_access_point": [ + "Philosophiegeschichtsschreibung" + ], + "md5": "41695d9958eec5289213c1cb289423fb" + }, + { + "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" + } + ], + "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": "2d6e46bdbbd3ea9c3bb6d79890d5a72a" + }, + { + "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" + } + ], + "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", + "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": "6e810c9259784a0ea9421b61144f0e60" + }, + { + "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" + } + ], + "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": "a58eb0db69773f9a6ec4efc3fdb8ec7e" + }, + { + "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" + } + ], + "pid": "041920287", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Niveaufla\u0308che" + } + ], + "md5": "521d2a0f6e98e3e23b5ec02fb5345561" + }, + { + "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" + } + ], + "pid": "041920279", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Niveaufla\u0308che" + } + ], + "md5": "326dec08b80472ef36e5d1dac7861705" + }, + { + "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" + } + ], + "pid": "041917413", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fachzeitschrift" + } + ], + "variant_access_point": [ + "Ethnologische Zeitschrift" + ], + "md5": "be080d8eb4d8066ec90f8e4d3c357a34" + }, + { + "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" + } + ], + "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": "d4c65df471a034d6927c5eef5911273f" + }, + { + "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" + } + ], + "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": "b379be6393f8b4a8b2186641775d6770" + }, + { + "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" + } + ], + "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": "693f05d94148c1635debdfd62516ab31" + }, + { + "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" + } + ], + "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", + "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", + "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": "9002b05638d68b66bfabeaa9a101a683" + }, + { + "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" + } + ], + "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": "d9ba87f2343f588bfa21fd46fe9a1ac7" + }, + { + "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" + } + ], + "pid": "041890353", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schra\u0308mlader" + } + ], + "md5": "5c12ea1a8e5f902bcbc1faed5504fc71" + }, + { + "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" + } + ], + "pid": "04188566X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wirtschaftswissenschaftler" + } + ], + "related": [ + { + "authorized_access_point": "Volkswirtin" + } + ], + "variant_access_point": [ + "Diplomvolkswirt", + "Nationalo\u0308konom", + "Volkswirtschafter", + "Volkswirtschaftler" + ], + "md5": "e8a3b1ae9f6e1e1939d279fd2dff69cc" + }, + { + "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" + } + ], + "pid": "041856333", + "type": "bf:Topic", + "variant_access_point": [ + "Toluol" + ], + "md5": "34ca7e27ecffba1168a63e94d0006aef" + }, + { + "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" + } + ], + "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": "801ca160a72277611c12fd55e420fd23" + }, + { + "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" + } + ], + "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": "6f446adf69854d27affc2e7e184d8093" + }, + { + "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" + } + ], + "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": "7a9757ccbbc3a38aa97d3c14e0bfd6bb" + }, + { + "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" + } + ], + "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": "b8ca826690129d85d5fe6d3be0c1c57d" + }, + { + "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" + } + ], + "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": "15475091c2a39f8c63ac5fae1d90e808" + }, + { + "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" + } + ], + "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": "e8ea5aada4bd65664e8cbefc77f3e540" + }, + { + "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" + } + ], + "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": "0a9d71deff43b2e0967ff58be68ac095" + }, + { + "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" + } + ], + "pid": "041815173", + "type": "bf:Topic", + "md5": "8cc0f1e1288846a699ce14e6e19df885" + }, + { + "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" + } + ], + "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": "1b50506be9309071d8e2dfc0878173ea" + }, + { + "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" + } + ], + "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": "eaa3adbe22ef531a713c98191f5b1e9f" + }, + { + "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" + } + ], + "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": "fc8e87575378ea1adcb874bf67f6d8d9" + }, + { + "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" + } + ], + "pid": "041794923", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Unterwelt" + } + ], + "md5": "d0a6e0f8b6611e4140c02695458b10a8" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Salt", + "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", + "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": "6e6c95780ff4f4e5b6fe6bd7a30279ab" + }, + { + "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" + } + ], + "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": "1a4bbf0e5b93903a56ed9b3ed6fd8b28" + }, + { + "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" + } + ], + "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": "dcb834265088647daf01c2b84421f29a" + }, + { + "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" + } + ], + "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": "8a6f6cb25d094c8b818e05897c3bc93c" + }, + { + "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" + } + ], + "pid": "041766040", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bildanalyse" + } + ], + "variant_access_point": [ + "Bildanalyse" + ], + "md5": "c5a388e1b6e5adbc32061ff4b00791f8" + }, + { + "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" + } + ], + "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": "27f721f41afb2b316b37bb91f959023b" + }, + { + "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" + } + ], + "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": "4ae1627dd999077e632dd16d2d0bbae5" + }, + { + "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" + } + ], + "pid": "041748379", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Plasmaphysik" + } + ], + "variant_access_point": [ + "Plasma" + ], + "md5": "7f61137425bc8bc99b4e2536cb68348a" + }, + { + "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" + } + ], + "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": "6a8f5c68db5df7bd5b0e611f34424b3c" + }, + { + "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" + } + ], + "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": "7fc27f637ae16049adc4f77739ec81cd" + }, + { + "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" + } + ], + "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": "518897d13ae81b5a8a08a46ba7f831ae" + }, + { + "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" + } + ], + "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": "f1613cadcac2c597b3ee9f7e0b972c67" + }, + { + "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" + } + ], + "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": "431ae66289d53adcfd36683c08235077" + }, + { + "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" + } + ], + "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": "32b359d7276ea84d971811e79bd11441" + }, + { + "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" + } + ], + "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": "106431918b21530d1f84452b909165fc" + }, + { + "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" + } + ], + "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": "24936afafc08d21db1145858afcf047f" + }, + { + "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" + } + ], + "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": "54d839843783d00f2cbb40ebb67bc103" + }, + { + "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" + } + ], + "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": "04caba5849a44ece07b45132b8158e2c" + }, + { + "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" + } + ], + "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": "450d4cac7068a8c4da6d20f9c7582ffc" + }, + { + "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" + } + ], + "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": "126e8c89510e0ecd6b1f0216b89a8165" + }, + { + "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" + } + ], + "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": "947bf1e0e4a55f1bbf6ccfbbf93fa5f5" + }, + { + "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" + } + ], + "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": "e1e4b4be7a336a1d5754a71618fb7beb" + }, + { + "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" + } + ], + "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": "e9186b82b4f4499a2c294e4ac71990bf" + }, + { + "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" + } + ], + "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": "588a953fdd76c0c92fbb58384e37ba07" + }, + { + "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" + } + ], + "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": "bc02c16febf003006d4af4881e289b3e" + }, + { + "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" + } + ], + "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": "665bd02e366f365e76eea34029f529e6" + }, + { + "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" + } + ], + "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": "e44b0e224d4b4a28e9e407552d859c92" + }, + { + "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" + } + ], + "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": "7ef52627bffdb26377e9aeaae2147950" + }, + { + "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" + } + ], + "pid": "041655974", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kompass" + } + ], + "related": [ + { + "authorized_access_point": "Kreiselgera\u0308t" + } + ], + "md5": "085dfcdfd4046c23dd55b4a504f4c4ba" + }, + { + "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" + } + ], + "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": "372e985d566e6278c6073463df67c7c7" + }, + { + "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" + } + ], + "pid": "041654013", + "type": "bf:Topic", + "md5": "0881ae8fe51a45a2ea47c783a73f8478" + }, + { + "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" + } + ], + "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": "e1675a836cc68a15da7ea449265b8066" + }, + { + "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" + } + ], + "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": "de7751a2bb51c2e8c67e53b75b9b22b2" + }, + { + "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" + } + ], + "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": "97f067070ecbb8c562632cc4571711aa" + }, + { + "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" + } + ], + "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": "1c8911a52d29869dba022c7ff790ed2a" + }, + { + "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" + } + ], + "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": "989750ca88ffcb4b3c7db5135aac2d51" + }, + { + "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" + } + ], + "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": "797760432b52492785c2d3ee29aae2bb" + }, + { + "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" + } + ], + "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": "051fc6629a67a3a6d48f1baffbbc90a3" + }, + { + "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" + } + ], + "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": "c2e8974a95e5f66a76791fe3715aacff" + }, + { + "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" + } + ], + "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": "10a74f82e8fccafaa24cb229f59775ba" + }, + { + "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" + } + ], + "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": "913be6808b7aec10773b306ac3c0e6ac" + }, + { + "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" + } + ], + "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": "b2280e406e961a7e799c398b8d548f6b" + }, + { + "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" + } + ], + "pid": "041599470", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gehirn" + }, + { + "authorized_access_point": "Zelle" + } + ], + "variant_access_point": [ + "ZNS-Gewebe" + ], + "md5": "97552f01381dd80804b9249e714cc890" + }, + { + "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" + } + ], + "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": "835644ad85f873257f2c76a1af26f09d" + }, + { + "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" + } + ], + "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": "8a66ca641e8156dbdb0dc642070fb244" + }, + { + "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" + } + ], + "pid": "041591267", + "type": "bf:Topic", + "variant_access_point": [ + "Fourier-Synthese" + ], + "md5": "60edc23c17a198a4b45d521d16af83ac" + }, + { + "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" + } + ], + "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": "d9b56152a074ae01035ad8bf99146c8f" + }, + { + "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" + } + ], + "pid": "041584929", + "type": "bf:Topic", + "variant_access_point": [ + "Guanidin" + ], + "md5": "688447ad1c16483c440895be37588165" + }, + { + "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" + } + ], + "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": "e16327956c450417c85831fc7f9d22c6" + }, + { + "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" + } + ], + "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": "e6ea1d2af781347887666ec9be2d996a" + }, + { + "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" + } + ], + "pid": "041570103", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stereotyp" + } + ], + "variant_access_point": [ + "Geschlechtsstereotyp", + "Geschlechterrolle", + "Geschlechterklischee" + ], + "md5": "ddf7232d0725ba99937c307444971c76" + }, + { + "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" + } + ], + "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": "bd56660775d27b20580d5489e4b0969f" + }, + { + "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" + } + ], + "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": "78cd14b2778063b973c7b3fd6e8ac911" + }, + { + "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" + } + ], + "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": "59500827ddd8f1210d7f50ac4d7c5c81" + }, + { + "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" + } + ], + "pid": "041544323", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handwerk" + } + ], + "variant_access_point": [ + "Fingerhut", + "Fingerhutherstellung" + ], + "md5": "a3aebff71c6ebb938f0c80f3e2c9d516" + }, + { + "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" + } + ], + "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": "f038ce30f415c408468b67e1069a9f79" + }, + { + "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" + } + ], + "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": "641e9903de4914107bffd910f36635d0" + }, + { + "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" + } + ], + "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": "f9423ae3da5d6df2e161765b73eed7d6" + }, + { + "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" + } + ], + "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", + "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": "6d12394c44f7b00a18e141fd02ea1c32" + }, + { + "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" + } + ], + "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": "79b1f109e301f9035b3421035a02ecf9" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Gegner der Mittelma\u0308chte im 1.Weltkrieg" + ] + } + ], + "pid": "041523318", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erster Weltkrieg" + } + ], + "md5": "a5aa1879cbb83035e8a163ff31a6f8b9" + }, + { + "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" + } + ], + "pid": "04151923X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kontaktloser Schalter" + } + ], + "md5": "94573f9b8a768114bbd91e8899534282" + }, + { + "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" + } + ], + "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": "a8de6cd42799d8bbe49f5b5ebcea024d" + }, + { + "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" + } + ], + "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": "a3c6e24c4705ef9596f0b84d9d824b9e" + }, + { + "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" + } + ], + "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": "e4506c1b5765cbb28303f7ffd3be2164" + }, + { + "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" + } + ], + "pid": "041512820", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Umsatzsteuer" + } + ], + "md5": "0ec20764eee05410d65ab1b5988a8502" + }, + { + "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" + } + ], + "pid": "041509412", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebissanomalie" + } + ], + "variant_access_point": [ + "Fehlbiss", + "Kieferfehlstellung", + "Zahnfehlstellung" + ], + "md5": "7354ab30ddb7339afd83db94d29a65dd" + }, + { + "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" + } + ], + "pid": "041505336", + "type": "bf:Topic", + "md5": "81d8cb7637e709932031200e852f72c1" + }, + { + "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" + } + ], + "pid": "041505077", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Dozentin" + }, + { + "authorized_access_point": "Lehrer" + } + ], + "md5": "fc8c497994c2e83176c530df7451180d" + }, + { + "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" + } + ], + "pid": "04150335X", + "type": "bf:Topic", + "md5": "9aa8c9e4a677991de9febce3aec82345" + }, + { + "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" + } + ], + "pid": "041502264", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebissanomalie" + }, + { + "authorized_access_point": "Okklusionssto\u0308rung" + } + ], + "variant_access_point": [ + "Distalbisslage", + "Ru\u0308ckbiss" + ], + "md5": "03f143bf68cd8c52f238718dd0772578" + }, + { + "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" + } + ], + "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": "efc2ae64d45074fbe6fe91b22e389f61" + }, + { + "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" + } + ], + "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": "2d4b5c3a2d1e8c7cac24c1ec7a601a6c" + }, + { + "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" + } + ], + "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": "12c4b8cc06a7dc33c16b512c21607fe0" + }, + { + "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" + } + ], + "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": "f001c6e8d2693eddbbf1768616e152f4" + }, + { + "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" + } + ], + "pid": "04146768X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Mamma" + } + ], + "variant_access_point": [ + "Papilla mammae", + "Mamillae" + ], + "md5": "6d244747af97edfcb613907d8310d618" + }, + { + "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" + } + ], + "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": "1e6c180443a55fd945e39cce1d1b0d80" + }, + { + "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" + } + ], + "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", + "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", + "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": "b6d62e9a2a1d2ae92975ffff02a62795" + }, + { + "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" + } + ], + "pid": "041466365", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bromverbindungen" + }, + { + "authorized_access_point": "Chloride" + } + ], + "md5": "4223734c1bb37fd630d54df46aabaad3" + }, + { + "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" + } + ], + "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": "1c5216afb44143ea3c1145f0043522d1" + }, + { + "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" + } + ], + "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": "0b59368107626373db7c8472ab43dc7a" + }, + { + "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" + } + ], + "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": "c19799e7d1475739bdcc37bdbce5aaa3" + }, + { + "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" + } + ], + "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": "f859d952dac6801f097e70f35a070fe0" + }, + { + "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" + } + ], + "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": "8d96baa97f2428701b1c7009bb79fbed" + }, + { + "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" + } + ], + "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": "57e665f44d3254ab1c914aaeb8800a3e" + }, + { + "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" + } + ], + "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": "8b7411548ff0f61b0c30d67016d2b969" + }, + { + "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" + } + ], + "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": "829b6cc1c0ab5c8489b02bcc99c980e7" + }, + { + "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" + } + ], + "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", + "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", + "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": "ecd8a039a72ad34decb47a1574ee5d7f" + }, + { + "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" + } + ], + "pid": "04143028X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "md5": "957451aa1e49384d0dd8be0bd5ca012d" + }, + { + "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" + } + ], + "pid": "04142641X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Anthracenone" + } + ], + "variant_access_point": [ + "CAS 90-44-8", + "Anthracenon (10H-Anthracen-9-on)" + ], + "md5": "16ef00a46b3d94cc811ef01d1e8990f2" + }, + { + "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" + } + ], + "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": "2241cbead61ef02660603d73dd3c7b23" + }, + { + "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" + } + ], + "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": "4b066d09be11ccd41e42cae5704bcbae" + }, + { + "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" + } + ], + "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": "7dee49491a9e8d28ab830d597ce0da56" + }, + { + "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" + } + ], + "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", + "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": "b68347d9ef402b66afd98ca1d3dd478b" + }, + { + "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" + } + ], + "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": "0546782f0101dcf34e2a0b782231e149" + }, + { + "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" + } + ], + "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": "d60064c65fe08b9b651fc9648d0f8a65" + }, + { + "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" + } + ], + "pid": "041411137", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feuchtigkeit" + } + ], + "md5": "df8c0a6b54f068ff890d362b5db5eee1" + }, + { + "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" + } + ], + "pid": "041409965", + "type": "bf:Topic", + "variant_access_point": [ + "Abelsche Erweiterung von Ko\u0308rpern", + "Kommutativer Ko\u0308rper" + ], + "md5": "9d000102b9cd0048a9217583b720918d" + }, + { + "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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Bildqualita\u0308tsmerkmal, mit der die U\u0308bereinstimmung zwischen Bild- und Objektgeometrie bewertet wird." + ] + } + ], + "pid": "041409760", + "type": "bf:Topic", + "md5": "a0c36f6a8cd099f964221a953e7aa5b8" + }, + { + "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" + } + ], + "pid": "041392450", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vertrag" + }, + { + "authorized_access_point": "Arztrecht" + } + ], + "variant_access_point": [ + "Arzt", + "Behandlungsvertrag" + ], + "md5": "b64b36bb4fbeb292c083c5662e94b640" + }, + { + "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" + } + ], + "pid": "041388984", + "type": "bf:Topic", + "variant_access_point": [ + "Ersatzsicherheit" + ], + "md5": "e29257f99731ea3cd9d5898e120fa96c" + }, + { + "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" + } + ], + "pid": "041378407", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bauernhof" + } + ], + "md5": "8f2ef7efbd55e81cd8bfd2e0c6ae98f6" + }, + { + "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" + } + ], + "pid": "041374444", + "type": "bf:Topic", + "variant_access_point": [ + "Fettsteuer" + ], + "md5": "3ea9decb2b7841a1dd78e44ee6ac7449" + }, + { + "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" + } + ], + "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": "a7af7468f0c8bef119784686c8fb6522" + }, + { + "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" + } + ], + "pid": "041368517", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Fru\u0308hwarnsystem" + }, + { + "authorized_access_point": "Unternehmen" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "5c4e9721e008b9954df2411c1cf7711a" + }, + { + "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" + } + ], + "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": "c64acf095edc59fc90485a5284cc8dfb" + }, + { + "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" + } + ], + "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": "f8b8091cfa2d097ce9eb25cd6d77ea33" + }, + { + "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" + } + ], + "pid": "041354710", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handlung" + } + ], + "related": [ + { + "authorized_access_point": "Affekt" + }, + { + "authorized_access_point": "Affekttat" + } + ], + "md5": "181e764ab59af72e2cf9b4062e5622d8" + }, + { + "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" + } + ], + "pid": "041345835", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ladungssicherung" + } + ], + "variant_access_point": [ + "Niederzurren", + "Festzurren" + ], + "md5": "63334d969db525e01f9bc3a7f3d0ddc3" + }, + { + "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" + } + ], + "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": "8b86e6d7730b32e3572f6a969cc1930f" + }, + { + "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" + } + ], + "pid": "041340892", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Arbeitsmarkt" + } + ], + "broader": [ + { + "authorized_access_point": "Statistik" + } + ], + "md5": "bbac97812ab15f707e32546c04e79a2b" + }, + { + "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" + } + ], + "pid": "041333004", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Alemannisch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "md5": "b07ac797b63117cfb3d1ac616e92aa21" + }, + { + "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" + } + ], + "pid": "041332997", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Alemannisch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "md5": "abc73512dee4671826f04b7f275d7993" + }, + { + "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" + } + ], + "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": "c6750e5fdd88e5d5935ca511cffb0321" + }, + { + "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" + } + ], + "pid": "041326202", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Niveaufla\u0308che" + } + ], + "md5": "1fdf6c24a5ff4e1a0480f00db44e54d4" + }, + { + "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" + } + ], + "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": "989e47b1970eea7977622d474e27e319" + }, + { + "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" + } + ], + "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": "4bc778c9b61daf625742494af9057832" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Troy (Extinct city)", + "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)", + "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": "b1c9dd64caa7fbab9bb9f5c561f45ff6" + }, + { + "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" + } + ], + "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": "1103a2308ed14155012a7469f657d909" + }, + { + "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" + } + ], + "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": "06349153d7344d3dd5695b4e7f93ef15" + }, + { + "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" + } + ], + "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": "edc059a66c715807cda14ef5139d2710" + }, + { + "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" + } + ], + "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": "20f92e09723a4130f61ac1d35c4b331b" + }, + { + "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" + } + ], + "pid": "041308107", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verfassungsma\u0308\u00dfige Ordnung" + } + ], + "variant_access_point": [ + "Staat", + "Staatszielbestimmung", + "Staatsziele" + ], + "md5": "46c1a89d16adf76b7deecb6711b050b6" + }, + { + "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" + } + ], + "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": "5360f8e4198808d6699abab1c3f4046a" + }, + { + "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" + } + ], + "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": "2c19c88cc8bbc78d492d3bd7eb759315" + }, + { + "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" + } + ], + "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": "e5d07e181f4287c60093d9ff970a5e92" + }, + { + "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" + } + ], + "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": "445d0df391db108ef7e62ed1941e4eaa" + }, + { + "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" + } + ], + "pid": "041281632", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Prognose" + } + ], + "variant_access_point": [ + "Kriminalita\u0308tsprognose", + "Legalprognose" + ], + "md5": "c9a2ef91cf1f27b3fcdfee9e39213b70" + }, + { + "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" + } + ], + "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": "f5a380dd3c9ff2bd459432c239cafbaa" + }, + { + "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" + } + ], + "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": "119025a0fb0ceed7fc15946ed453acbf" + }, + { + "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" + } + ], + "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": "0099ee4849c434ecbc99cfb6ccf479c3" + }, + { + "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" + } + ], + "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": "4fbebfff1da9511bd56a2334e76838a1" + }, + { + "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" + } + ], + "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", + "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", + "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": "224ca96ee8b730c001cdd28da7bf0437" + }, + { + "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" + } + ], + "pid": "041245296", + "type": "bf:Topic", + "variant_access_point": [ + "Betriebsmittel" + ], + "md5": "a63e44d7e01a22f53b704d98a8525e63" + }, + { + "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" + } + ], + "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": "f41db8a13d2b225d7630d962396f1619" + }, + { + "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" + } + ], + "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": "597832018a786ba5ca8e1492ef1679c8" + }, + { + "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" + } + ], + "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": "3195176767afd8ff50ee056060e3ec93" + }, + { + "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" + } + ], + "pid": "041236599", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Liquidita\u0308tsplanung" + } + ], + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "md5": "7f8af601a82d1565383d06452899eee8" + }, + { + "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" + } + ], + "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": "7278f9c7f1067e70c75a03a92af42247" + }, + { + "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" + } + ], + "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": "03e80aaca77d10ed56fcfbdac955f969" + }, + { + "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" + } + ], + "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": "4297b2ccba36f523fd15d1b0628d54d0" + }, + { + "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" + } + ], + "pid": "04121952X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verpackungspfand" + } + ], + "md5": "a19476fcd24a7ae4649ce7636a89f4c1" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Environmental protection", + "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", + "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": "2e5563cede1438d723e1a8b496e57b28" + }, + { + "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" + } + ], + "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": "9aa847acdbda739433f5c61341299cba" + }, + { + "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" + } + ], + "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": "149ea5e3a3fc75ee98b34672a977e720" + }, + { + "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" + } + ], + "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": "26b9c33aead686cdff46e8f8b025ff77" + }, + { + "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" + } + ], + "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": "0baa8c333dd12a8972174ecd3b9efea5" + }, + { + "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" + } + ], + "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": "abc83ac9793584326f7d987a9214b7cb" + }, + { + "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" + } + ], + "pid": "041184432", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "variant_access_point": [ + "Sassak" + ], + "md5": "85f52224c4d8f74ac33a81e734c056ef" + }, + { + "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" + } + ], + "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": "c180aa6e9b3b827482932907a01067d8" + }, + { + "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" + } + ], + "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": "7cbafeb4ced4689afb3495a725651f1d" + }, + { + "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" + } + ], + "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": "e424ecb18af764e1e8784acc1c1811a7" + }, + { + "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" + } + ], + "pid": "04114516X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Marketing" + } + ], + "broader": [ + { + "authorized_access_point": "Controlling" + } + ], + "md5": "71f626be586118114ba34bc84531e6c8" + }, + { + "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" + } + ], + "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": "81e78b37c01a20ad4563eee529779096" + }, + { + "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" + } + ], + "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": "63dbfda3c32786bae5f7035e417330d9" + }, + { + "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" + } + ], + "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": "48c1ed1933099e3ff9cd43bd6b3e78a4" + }, + { + "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" + } + ], + "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": "151096832413ed4d17322387e2ca3f46" + }, + { + "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" + } + ], + "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": "5fc1152e05e5f84d1aa811882e0eeb42" + }, + { + "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" + } + ], + "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": "e835e45fc082f9afd1aa54833805ad2d" + }, + { + "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" + } + ], + "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": "635cdf6e0459daa42e19f017ba7959fe" + }, + { + "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" + } + ], + "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": "9a0986fd79655dcdb9212e8ecc3b62c2" + }, + { + "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" + } + ], + "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": "9437e203dcd08b4c77e4f0e8ecabd840" + }, + { + "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" + } + ], + "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": "9f4e465409a28517ec5de4a7564d29fc" + }, + { + "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" + } + ], + "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": "7305c62eacaaacb7d99ab8b953ef2844" + }, + { + "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" + } + ], + "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": "44a545f8605af913621c692d5ab7fd8d" + }, + { + "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" + } + ], + "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": "c92d43167aa0e6193a351bf4b3d7e1bb" + }, + { + "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" + } + ], + "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": "8cd7a80b0960fbf819029264fe6f6715" + }, + { + "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" + } + ], + "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": "9997dde9c023220f45bb448acdd5d8e4" + }, + { + "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" + } + ], + "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": "caa2426e20ea04c5f182d87b672143ab" + }, + { + "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" + } + ], + "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": "db4ce210649df8d78688b8df9a43d140" + }, + { + "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" + } + ], + "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": "0e997780907b19bb68cfd9de225afd24" + }, + { + "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" + } + ], + "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": "51c82eeabd454f60852bf808dd20f224" + }, + { + "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" + } + ], + "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": "a2b0a881f6d51ef14632ed8d1f2cf851" + }, + { + "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" + } + ], + "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": "19bb4bd577ab800fd7380eb5a2aa7fc5" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Political science", + "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": "5e143f44d4e6a2eb14d3696f7f8f28ed" + }, + { + "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" + } + ], + "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": "4d0a239ad009706000fcbb366382bd0b" + }, + { + "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" + } + ], + "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": "004ed7911e764b5e09dc2b038e5177eb" + }, + { + "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" + } + ], + "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": "a3d5f899639aac45dabf86acb450bae8" + }, + { + "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" + } + ], + "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": "944bd42e917db661a551ec055b2b8522" + }, + { + "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" + } + ], + "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": "c9cc25243ac8f9be161b80f2448c7ae5" + }, + { + "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" + } + ], + "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": "44cc37ab34d08f99e001ef0161e143bd" + }, + { + "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" + } + ], + "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": "1a3bb16fcb1a987f4004bdd37c18308d" + }, + { + "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" + } + ], + "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": "d1ca36de8bd4383fa0d759e732464438" + }, + { + "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" + } + ], + "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": "d6a385a337f1642de85cc82261940fb0" + }, + { + "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" + } + ], + "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": "4f2fa8fecca06a134a903aa44701e11a" + }, + { + "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" + } + ], + "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": "19b58b780269fab78b0a5042f272494c" + }, + { + "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" + } + ], + "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": "e5c3f6c59462ae08b492f314d8d3efc2" + }, + { + "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" + } + ], + "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": "547677721cacb60dcaacaa515e9975ac" + }, + { + "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" + } + ], + "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": "65569ab96449f6e76c5cae58fac79a7c" + }, + { + "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" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Breast", + "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", + "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", + "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": "4c884a8d42ffae6fb3071b33803c6187" + }, + { + "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" + } + ], + "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": "3d5056a7ca092928d58cc76d166764e7" + }, + { + "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" + } + ], + "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", + "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": "ba1beca5055ae3096c132481fc7b27a4" + }, + { + "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" + } + ], + "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": "6e5cf1062da15f816ca03652255055bb" + }, + { + "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" + } + ], + "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", + "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": "65f069e637c07b2e5758cc20e2e18b29" + }, + { + "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" + } + ], + "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": "a33d77f907bd71b0e8dc92cb955072d1" + }, + { + "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" + } + ], + "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": "d48ff120a152fb5e27acb6c8f2c886d8" + }, + { + "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" + } + ], + "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": "bce302e17b5666c08872764dd430c275" + }, + { + "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" + } + ], + "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": "7ff23ac20da6465952f2ed950404fa4c" + } +] \ No newline at end of file diff --git a/data/cognd_deleted.json b/data/cognd_deleted.json new file mode 100644 index 00000000..89f4d24a --- /dev/null +++ b/data/cognd_deleted.json @@ -0,0 +1,716 @@ +[ + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.650803+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": "6d747a67bdbf900de327f0f5ced5b48d" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.658164+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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "1286745764", + "type": "bf:Topic", + "md5": "007b77fda03fcff14996d97f072d8d71" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.667680+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": "af658464b5338654479c5336d5258431" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.671752+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": "fa018fb265348ea851c74b9b1e372870" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.746701+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": "9522c53192f0fda44e2c733edc2f7b20" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.752754+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": "5af8856740e6ce0b5ce9cc611797653d" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.762557+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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130736090", + "type": "bf:Topic", + "md5": "79da8c78b4d2c08274060597296c168b" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.762668+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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130726133", + "type": "bf:Topic", + "md5": "8e19dee65a0f841fd63801985228c214" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.763449+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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130705012", + "type": "bf:Topic", + "md5": "056b76cee2548b14dfd1d70768064520" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.764090+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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130693782", + "type": "bf:Topic", + "md5": "1cdc41b628ff96c37502dfe772518948" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.764185+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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130693774", + "type": "bf:Topic", + "md5": "d9d49d4ec81e1659a1b835c315fd4eeb" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.764279+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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130693766", + "type": "bf:Topic", + "md5": "d8982c3458d86ff97ab9eaa487aff75d" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.764370+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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130693758", + "type": "bf:Topic", + "md5": "f01ff0cebe4b82946fd7401deceb1cb9" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.764495+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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130693731", + "type": "bf:Topic", + "md5": "3764a9cebdd777765478e1e41162fe66" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.764600+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" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Der Datensatz wurde gelo\u0308scht" + ] + } + ], + "pid": "130693723", + "type": "bf:Topic", + "md5": "3ffdc79f5a1e57ac28f39c8d05b661bc" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.774928+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": "a7a8606c357c980c1893a64e0854c33e" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.791253+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": "806f9e7b4676c93e9e87f911a2fe75a6" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.793947+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": "b05563b48acb4d8dafcaba71c6fc5370" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.877068+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": "de5374daa843e8519e0802a80dbddda6" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.912753+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": "7f514e79ea2abb52fcfe21b5af3972b1" + }, + { + "authorized_access_point": "Uab Meto", + "deleted": "2024-08-07T12:45:17.917577+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" + } + ], + "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": "7468c8431aadc13223fcb2e5d210597a" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.944489+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": "d7444f58ae5d5d8e8b9ada33c4780230" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:17.983152+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": "b951e4a4b184ac8ad636ce622eebd6d0" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:18.011827+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": "d99091b58cd0ae2fcf8d61307fc96043" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:18.011927+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": "21a58b23058d6e991d9f79179bc6e4be" + }, + { + "authorized_access_point": "TAG: 150 NOT FOUND", + "deleted": "2024-08-07T12:45:18.031065+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": "1d2f4c80b39e0cc034a4b6f4f5fc6619" + } +] \ No newline at end of file diff --git a/data/cognd_metadata.csv b/data/cognd_metadata.csv new file mode 100644 index 00000000..1f7e58b0 --- /dev/null +++ b/data/cognd_metadata.csv @@ -0,0 +1,2124 @@ +2024-07-30 15:26:13.431886 2024-07-30 15:26:13.431888 1a33feaa-4da3-43da-8fe3-4044100c9cf2 {"md5": "225ea2dda78ff465a51ccdfdd240446c", "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"}], "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-07-30 15:26:13.512965 2024-07-30 15:26:13.512968 55bcc1a9-89c5-4410-96c2-cd975860f5d9 {"md5": "8696eac82d52063b0db85626d7d76187", "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", "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-07-30 15:26:13.564012 2024-07-30 15:26:13.564014 ebfa58cd-3bb2-4978-bfcc-9842a3aca173 {"md5": "92f37f26b093f11a1fc0c9e68abad196", "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"}], "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-07-30 15:26:13.605094 2024-07-30 15:26:13.605097 3d03a871-b95e-4f28-b87f-e6efa26a7435 {"md5": "bbe380994a49c76fb1375ff6ee64c665", "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"}], "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-07-30 15:26:13.649271 2024-07-30 15:26:13.649274 d1391432-2dda-4269-9aca-8f42efd39092 {"md5": "7be1cdf42c834b417c371d4a87ec1176", "pid": "1334320462", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Betrieb"}], "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-07-30 15:26:13.69342 2024-07-30 15:26:13.693422 b65007a6-b1fe-49f0-8f4e-a878e08a488c {"md5": "6ad8d81762161b6d05011d8da5e2fb62", "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"}], "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-07-30 15:26:13.739125 2024-07-30 15:26:13.739128 1d97b4be-de60-4bbc-9a09-71b0f441b309 {"md5": "052fed01d674eeffb4b6e741e315d9d4", "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"}], "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-07-30 15:26:13.792728 2024-07-30 15:26:13.792731 c4d3e8f3-7080-4223-84b5-47d9045a817d {"md5": "647b26e74f6f0d388c14678a32839753", "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"}], "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-07-30 15:27:07.342258 2024-07-30 15:27:07.34227 85ede1a5-0e47-466d-86b4-8350470f22bb {"md5": "3b288b59d795d9c4d8166b55e794ad5b", "pid": "130741531", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:26:13.85967 2024-07-30 15:26:13.859675 9e8bf773-451f-47c9-b413-3c2cc433e9e7 {"md5": "1e566c495ec1bfa52b6f77b57e505e08", "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"}], "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-07-30 15:26:13.925171 2024-07-30 15:26:13.92518 8e54ead1-8ec4-45f6-932c-a5aa3efc4d0f {"md5": "f22793b76e6e6f62252605ce7e0bfa44", "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"}], "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-07-30 15:26:14.00322 2024-07-30 15:26:14.003228 0e33bbc7-bdfd-441b-8788-6398e2e01b06 {"md5": "2641ff23199b411b6ad52a1b7f5d521f", "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"}], "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-07-30 15:26:14.079195 2024-07-30 15:26:14.079204 4444c930-978e-47b5-aee5-751cca175350 {"md5": "141b8f7de73536a2d9b43d7751d03278", "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"}], "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-07-30 15:26:14.173898 2024-07-30 15:26:14.173906 b36a592e-46df-4d40-9f6f-70e7d28246ea {"md5": "f267b12110dcd1c063b370fc0a79ed44", "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"}], "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-07-30 15:26:14.259069 2024-07-30 15:26:14.259076 5b9c377d-98f9-4b91-b371-3fff1f63aaef {"md5": "769dfada13db8f6a413aa1e7cf190f4f", "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"}], "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-07-30 15:26:14.337436 2024-07-30 15:26:14.337439 dd2d659e-b2d7-43b7-a6cb-015983b7c790 {"md5": "c46ea796d402a04fccf11030e5dfd052", "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"}], "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-07-30 15:27:07.422342 2024-07-30 15:27:07.42235 6f75d614-61c7-44b9-961d-635590a5e6bd {"md5": "99b1613a623e828cb71948173524340a", "pid": "130722529", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:26:14.407197 2024-07-30 15:26:14.407206 3cac52d2-2f2d-4c08-9937-546077704968 {"md5": "5efc3eccac036915a69635e44515f96b", "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"}], "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-07-30 15:26:14.472733 2024-07-30 15:26:14.472742 5978381f-b9b6-4a3b-9dc4-7ab202281c99 {"md5": "1c948cb7608b1a1f49a6ec86b21a7ede", "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"}], "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-07-30 15:26:14.528435 2024-07-30 15:26:14.528437 be08218c-c790-494d-99da-c7aefbe98a4d {"md5": "9327a3db1ce633c8bbc0fd701db07909", "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"}], "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-07-30 15:26:14.61634 2024-07-30 15:26:14.616351 818d5bac-2ca8-48c0-8f2c-bf7692f61d1e {"md5": "a208ff11d549085fafa854bb735b88c0", "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"}], "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-07-30 15:26:14.735414 2024-07-30 15:26:14.735425 1ec9c6f0-fce4-43c8-9264-ea2bee8dadce {"md5": "89e21ce165c5fb7e1312715cec74aaa7", "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"}], "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-07-30 15:26:14.830357 2024-07-30 15:26:14.830365 54b64757-9e85-4b38-89aa-d1d189d88b32 {"md5": "fc23646788a2cf752c8867d29f0be3d9", "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"}], "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-07-30 15:26:14.898913 2024-07-30 15:26:14.898921 7d35b28c-988d-440a-9534-41519a9a23c0 {"md5": "9e0c470361e8298621d87bbb2b6e6591", "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"}], "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-07-30 15:26:15.020556 2024-07-30 15:26:15.020564 4cf571ad-d716-4403-bb73-073be645c521 {"md5": "d9fb3d2299891d658bcd356821a5f30f", "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"}], "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-07-30 15:26:15.088775 2024-07-30 15:26:15.088784 cd1af1b2-588a-4fcf-b044-753862630112 {"md5": "c69b88d43d13204af636555627fb6812", "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"}], "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-07-30 15:26:15.17425 2024-07-30 15:26:15.174258 a1f0bfc8-fd51-4889-b242-198c34a9d5d8 {"md5": "0e67f562a831f96aba75b9c65acb3e15", "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)"}], "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-07-30 15:26:15.256952 2024-07-30 15:26:15.256962 7fd85a05-e960-40ea-81ea-c849f3a91bd4 {"md5": "6965cd416b112695c58a2e874e9443f5", "pid": "1333853084", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bison"}], "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-07-30 15:26:15.363353 2024-07-30 15:26:15.363362 ae24cb7c-ee66-4867-9403-47db9ee25efe {"md5": "1d38c20835ee33c18becde893699dd72", "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"}], "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-07-30 15:26:15.429034 2024-07-30 15:26:15.429041 b72f150d-dce7-481d-a5f2-cb13c50bd4e1 {"md5": "b40d764000fafafd707f41c5f28f5260", "pid": "1333849788", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:15.506266 2024-07-30 15:26:15.506276 0cf1a171-9c53-4630-b270-77a283fba0f0 {"md5": "f3c6d497133f093fc5c075eb89cd6c3c", "pid": "1333849435", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:15.566398 2024-07-30 15:26:15.5664 72b8b6aa-d2d0-418a-9b53-0bdcae27dac0 {"md5": "996829b52e513e6c95bd7f7219cbe986", "pid": "1333729863", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:15.628725 2024-07-30 15:26:15.628734 e97e2df7-3c80-45d3-8419-ea510c434bc5 {"md5": "40dd7c72af7a6fc064640ecba027f3ca", "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"}], "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-07-30 15:26:15.717777 2024-07-30 15:26:15.717786 a3a7eac3-8bb7-4747-88b0-9c991b33b25e {"md5": "6ee99ba9984586d976e0238b6a460fec", "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"}], "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-07-30 15:26:15.792772 2024-07-30 15:26:15.79278 fac872c6-78a4-45e2-a69b-88534b4c0948 {"md5": "37853b4eec39e1d6774b7744de13f714", "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"}], "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-07-30 15:26:15.877299 2024-07-30 15:26:15.877306 f2fa0cb8-c532-4f4c-a6a5-4f2b08bb7ab5 {"md5": "75233850468f339fd64cd8e06ec80d14", "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"}], "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-07-30 15:26:15.950516 2024-07-30 15:26:15.950524 bd2776ac-78d4-4ec2-9e92-f63cfade8fe4 {"md5": "038131b6fa129d160d0fd6edcdc4f8bb", "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"}], "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-07-30 15:26:16.059 2024-07-30 15:26:16.059012 f577c1f1-c9a2-409f-8ae5-b0007781541b {"md5": "05727840980bba47d7aa10a35c9eecef", "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"}], "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-07-30 15:26:16.169994 2024-07-30 15:26:16.170006 8462cbfa-eec0-4d8f-90bc-4fd26264b40d {"md5": "bb612301917ca69e453dde15dc33663b", "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"}], "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-07-30 15:26:16.274429 2024-07-30 15:26:16.274439 29ed97fb-159f-4096-ace8-6028bf745b85 {"md5": "5e13498e5562b019a629838b8e1e12fb", "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"}], "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-07-30 15:26:16.378119 2024-07-30 15:26:16.378129 0985f5a9-b0e8-4d28-bde0-fe53aecf8cc0 {"md5": "fbf221478a35077e5fab85ebac9af9b3", "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"}], "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-07-30 15:26:16.470833 2024-07-30 15:26:16.470842 e27f0db1-80cf-47f6-a242-1797180fdddd {"md5": "162c5e4699214273dd669daea77975bb", "pid": "1333312326", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zupfinstrument"}], "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-07-30 15:26:16.556529 2024-07-30 15:26:16.556533 fa62935b-a3cb-4487-867b-f8c83460c75a {"md5": "da6e10213075ac9fc4f5ab6dbc284f0c", "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"}], "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-07-30 15:26:16.610988 2024-07-30 15:26:16.610992 02a0addc-c99c-40e5-bff1-e3a061066f57 {"md5": "60d08fb0e6463535d5bcc26b29b0c376", "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"}], "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-07-30 15:26:16.678816 2024-07-30 15:26:16.678823 801f8448-7c9c-4679-b099-b47dbbffce2e {"md5": "91cf1c4df806ec6ce269f9f5fd7edc86", "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"}], "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-07-30 15:26:23.20985 2024-07-30 15:26:23.209858 d6d4058c-dd36-49d2-a83d-38791960e835 {"md5": "cdc1ccbfc845d74086e5f837281d6ab7", "pid": "1329573331", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:16.759987 2024-07-30 15:26:16.759995 9a6ea5d3-3344-45a8-b605-701a91811d33 {"md5": "49be048007e91ddf31e81ecfd75ebcd1", "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"}], "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-07-30 15:26:16.861948 2024-07-30 15:26:16.861957 31a4ee9d-02f4-4c0a-8d68-96e7104fe4a3 {"md5": "d9f752f258ac0c1e5f30138b0e8b7343", "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"}], "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-07-30 15:26:16.941062 2024-07-30 15:26:16.94107 b58b765a-5897-4ea1-95fc-2dcba984744f {"md5": "373a597775088713337af0d0210fbccb", "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"}], "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-07-30 15:26:17.019098 2024-07-30 15:26:17.019107 94b3bf18-7b5a-4ea5-80dc-a463003ad556 {"md5": "0855be49d018b8fda466d4e0aeec73c8", "pid": "1333210043", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tuba"}], "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-07-30 15:26:17.104228 2024-07-30 15:26:17.104236 7d475fbf-fdf3-4c19-b042-c383d6dff322 {"md5": "d67621d7c89283d36328ac7257c0f905", "pid": "1333209908", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlaginstrument"}], "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-07-30 15:26:17.181338 2024-07-30 15:26:17.181346 b51acd06-8276-4833-8d76-d1add4b1f541 {"md5": "5dc740e726cfba94797f268aa4032e4c", "pid": "1333208901", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musikinstrument"}], "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-07-30 15:26:17.269328 2024-07-30 15:26:17.269335 7024b9d4-fdb7-41dd-a3dd-94dff4337460 {"md5": "92c43f2a0564071e1579db9c02b23cf9", "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"}], "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-07-30 15:26:17.346988 2024-07-30 15:26:17.346997 1384b0ef-02e6-4ca3-958c-ccc7d2849537 {"md5": "ac85f996cbbe45524ea41e12596cb591", "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"}], "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-07-30 15:26:17.432985 2024-07-30 15:26:17.432994 0c1b638e-3334-4e28-bf0e-3b39349b6f2b {"md5": "30d27aedba73926a1df43e072486f5f3", "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"}], "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-07-30 15:26:17.518911 2024-07-30 15:26:17.51892 a0a8ee1d-7dc0-430c-9766-f47158fb6891 {"md5": "a2b0c1178973e3141c7190a52194d3fb", "pid": "1333118023", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Groteskschrift"}], "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-07-30 15:28:32.287301 2024-07-30 15:28:32.28731 085e63e7-8e33-4201-9ffb-d10e22899537 {"md5": "4b0771d61a1c8e8a6e72c1343f1f4c6d", "pid": "130741094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:26:17.589018 2024-07-30 15:26:17.589021 bcaf4139-1957-4747-b186-61db37e094a2 {"md5": "ea9ebf6981c01cdb60899d028659fcec", "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"}], "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-07-30 15:26:17.650906 2024-07-30 15:26:17.65091 b505d06b-f078-44a3-b802-00c8f02b7865 {"md5": "2f2981704ae72d7e5bfc63c131e72b76", "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"}], "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-07-30 15:26:17.720105 2024-07-30 15:26:17.720113 b998312e-300a-456c-b0ab-e9361e415fd9 {"md5": "c6153c5df3a8f83f707bd425b8e5e0fa", "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"}], "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-07-30 15:26:17.799679 2024-07-30 15:26:17.799687 3488449c-0636-40ac-80f3-6d3d10e7cf74 {"md5": "17c678fa081cc113c411b0eb82fbb425", "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"}], "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-07-30 15:26:17.891196 2024-07-30 15:26:17.891205 775d3741-981d-4323-b763-ab3f165883c6 {"md5": "b029793292df95f84bb6eb80e91ac54b", "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"}], "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-07-30 15:26:17.970346 2024-07-30 15:26:17.970355 f3f3ff89-505e-4437-a546-ffa20181291b {"md5": "1d4f0910e1e13d975c6d7f958fbc14ff", "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"}], "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-07-30 15:26:18.05779 2024-07-30 15:26:18.057799 a67ee5a0-ae65-425e-beb7-a8b62ec45026 {"md5": "6876fcfe72b723c1ef0062e943e3ab6d", "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"}], "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-07-30 15:26:18.142536 2024-07-30 15:26:18.142544 441e7636-6b2b-4581-ac94-1f49af10e040 {"md5": "857edd3248cc66a9361e1eb8586fe85b", "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"}], "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-07-30 15:26:18.225965 2024-07-30 15:26:18.225973 2c60335d-bc5e-48e2-ac2b-8b6f27931d1b {"md5": "80b862c3f0a6c82c56c0d57772440e7a", "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"}], "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-07-30 15:26:18.332279 2024-07-30 15:26:18.332291 062311d1-736d-4808-b027-9bfa9416185d {"md5": "79b7748043c7f1768ba23e23921b32a0", "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"}], "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-07-30 15:26:18.425965 2024-07-30 15:26:18.425976 04d44075-9092-4a6e-bfca-21508a9bbfb1 {"md5": "d8d4adf069926538d847b2bd98228e7d", "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"}], "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-07-30 15:26:18.506941 2024-07-30 15:26:18.506949 6fec7601-400d-4807-93a8-e22208ccbdfc {"md5": "b36438a0e34c32e63c1a4fc22723431b", "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"}], "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-07-30 15:26:18.604393 2024-07-30 15:26:18.604403 521c6f44-dfd6-45b1-94e0-e72d2fb87c6b {"md5": "fc314265cb652d8ea8327908439cb49b", "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"}], "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-07-30 15:26:18.659062 2024-07-30 15:26:18.65907 d8c6d26a-08a6-4a76-950e-37e8fa152c3b {"md5": "7f203c553ee819ed65ce4d58b2316270", "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"}], "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-07-30 15:26:18.721234 2024-07-30 15:26:18.721243 67f2565f-38b4-4eff-bfe4-c98e6808fe74 {"md5": "c9bc8e6add7511887ea7c3079f71fb57", "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"}], "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-07-30 15:26:18.808016 2024-07-30 15:26:18.80802 e5931ef6-9424-4ed5-808a-e62f05d93f07 {"md5": "40d25324dcca992cc0b411d063299cb1", "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"}], "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-07-30 15:26:18.876089 2024-07-30 15:26:18.876097 a0b573de-7132-4223-90fc-5d7a0fb8e036 {"md5": "fab788043c833668ce8d1141279f1ac1", "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"}], "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-07-30 15:26:18.9516 2024-07-30 15:26:18.951609 c21e35a9-f926-4138-9a7c-9d636f66778d {"md5": "aed99b42795f7790bf8ad736941fc012", "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"}], "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-07-30 15:26:19.030752 2024-07-30 15:26:19.030762 35ddc251-6ecb-42d4-863b-290aa12fe55f {"md5": "9e173a2ad0ff58ee5d47fb72143eaed3", "pid": "1332688047", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:19.124325 2024-07-30 15:26:19.124333 fe831670-e73b-48cc-8d83-24310d07c937 {"md5": "9fc5a83045fbb5e38b8ba35d576a4486", "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"}], "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-07-30 15:26:19.217092 2024-07-30 15:26:19.217101 4d319866-a844-468e-b068-4a20ac0db36b {"md5": "6776aecb139f56a5536b9ba9193b8c1c", "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"}], "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-07-30 15:26:19.294636 2024-07-30 15:26:19.294644 89109d26-ced8-49ea-9ef1-e82546143937 {"md5": "1093afd76249eb4eafc6c9ce9b72d785", "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"}], "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-07-30 15:26:19.371166 2024-07-30 15:26:19.371174 aafc8c76-c1ae-46db-8de1-b4305b8d697f {"md5": "0943f5aca1b1d455078c218c52e32738", "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"}], "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-07-30 15:26:19.442892 2024-07-30 15:26:19.4429 5e79f481-1c5d-49a2-ba83-ae4c74779bac {"md5": "50f4628e6023e29ae2b9c281e9921383", "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", "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-07-30 15:26:20.144159 2024-07-30 15:26:20.144166 40c49f39-c21c-4d63-8694-2a9629c423f1 {"md5": "65fa919bfbf8acd6931ff910ae51eaf7", "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"}], "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-07-30 15:26:19.509454 2024-07-30 15:26:19.509461 9986f580-cf49-4e05-b639-1c44a62c4fc0 {"md5": "44579fd652506f4fcbbcd490831c54ff", "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"}], "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-07-30 15:26:19.591399 2024-07-30 15:26:19.591407 2c6f2469-ff1b-4a67-8c84-966b9ff80fdb {"md5": "6db608211b8e0aca694c534870737236", "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"}], "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-07-30 15:26:19.648723 2024-07-30 15:26:19.648726 96b1c62b-df23-4f3e-bc56-0b55d4fdad22 {"md5": "cee4353c2dae75f307cc1d33f25b8be7", "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"}], "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-07-30 15:26:19.71555 2024-07-30 15:26:19.715559 fda2a43d-3c86-4051-8fb7-8bb038846d1e {"md5": "14c8f4d1c23afd1b8a8fdc56c236c0bc", "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"}], "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-07-30 15:26:19.800906 2024-07-30 15:26:19.800916 5a0579ca-01fb-45a0-a324-c5c18025a7cd {"md5": "c3581590eeb71b2ff15a4e28bb2729c9", "pid": "1332095119", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:19.891483 2024-07-30 15:26:19.89149 58499136-03f3-4a6f-af36-544454209004 {"md5": "8d86663428bd364155b161145757571f", "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"}], "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-07-30 15:26:19.969679 2024-07-30 15:26:19.969688 be269391-1388-49fa-b78f-26e26bc5d242 {"md5": "969b9261ce1e8f646680b136b8ad17fd", "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"}], "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-07-30 15:26:20.056144 2024-07-30 15:26:20.056153 d4bc8321-478e-453e-9542-7d4b2e21c5cf {"md5": "9b32921f1ece7d8afed678cf8e6e8aff", "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"}], "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-07-30 15:26:23.141068 2024-07-30 15:26:23.141073 0b8cf54a-0163-4d59-bbef-ef7a7acd6e88 {"md5": "4d2ba0232b9998f5f1147cb247502ea6", "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"}], "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-07-30 15:26:20.223852 2024-07-30 15:26:20.223877 d78601fc-1faa-4a8c-b010-0bfa5edcba47 {"md5": "eaa452c191dc86b1d9d8c12c529744be", "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"}], "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-07-30 15:26:20.295557 2024-07-30 15:26:20.295565 b22c5fcb-12ac-4ab5-a3ce-b19a376856ac {"md5": "62d166d2d2f50b309052005ccc96ec63", "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"}], "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-07-30 15:26:20.367128 2024-07-30 15:26:20.367136 da9d98eb-bf08-434d-877f-b2ea1ad2bb2e {"md5": "754739e86a3642e54860e9aa00342446", "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"}], "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-07-30 15:26:20.453762 2024-07-30 15:26:20.45377 24346260-adbb-4734-9e42-ccc424fde98a {"md5": "01f24df377adbfa81a3b0ee07f629caf", "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"}], "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-07-30 15:26:20.526869 2024-07-30 15:26:20.526877 808efcd1-b7f2-4553-8427-2e9959bc56f7 {"md5": "018727ed8bb6f230a848e5beb1895a62", "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"}], "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-07-30 15:26:20.600837 2024-07-30 15:26:20.600846 b41c94d4-5977-485b-87c9-353beffa2ea9 {"md5": "9f2256b2a2ba76ebc34ab87c4c610d16", "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"}], "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-07-30 15:26:20.688361 2024-07-30 15:26:20.688365 544cc01c-203b-4d43-aea8-a1ffdd2526cd {"md5": "4dcdd1495702898aa92c42a3ce3e8626", "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)"}], "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-07-30 15:26:20.767148 2024-07-30 15:26:20.767159 d19c3e2b-61d3-4dde-8018-f3043b50d348 {"md5": "503b9c11a871749e57b989643a20e8b6", "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"}], "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-07-30 15:26:20.859241 2024-07-30 15:26:20.85925 38293e17-bd91-4182-ae1e-a4419ada0a08 {"md5": "0ff944471fa810d6d2bc11ee43ae8e98", "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"}], "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-07-30 15:26:20.936498 2024-07-30 15:26:20.936518 d3582212-0014-49bb-bc2d-9ebd653e4a56 {"md5": "4dbb0317be0fa3a81cf0dc7eca6ec43a", "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"}], "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-07-30 15:26:21.015992 2024-07-30 15:26:21.016002 dca476e5-9e5d-4cae-a031-38170a4d6f0d {"md5": "d1dfd30fc4b29118c7c655009752ee23", "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", "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-07-30 15:26:21.098192 2024-07-30 15:26:21.098201 49d476b5-5eea-4c50-83f3-a362ad51a72c {"md5": "6e176db5861f157fb9d9a4abb7423b5e", "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"}], "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-07-30 15:26:21.194071 2024-07-30 15:26:21.19408 360b8944-cfd3-4912-9fa5-c0c5a8f54b74 {"md5": "cf1e332d632fb83128a199af4daa7c64", "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"}], "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-07-30 15:26:21.26778 2024-07-30 15:26:21.267788 ec79b0df-d6fe-420f-8ee5-45f023e3c1c0 {"md5": "a1b666a2e780b578b9d57cca6b57c70a", "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"}], "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-07-30 15:26:21.3673 2024-07-30 15:26:21.36731 e8ae9290-9da5-482e-94b6-d46660a466c2 {"md5": "8fe75a6e2078c02066418bb8aac9e509", "pid": "1331605091", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:21.452369 2024-07-30 15:26:21.452378 d49f35ba-bd09-4c17-af44-3d01f1eae67e {"md5": "6da79c77abd4e76d4c32c61e19d8f23f", "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"}], "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-07-30 15:26:21.537637 2024-07-30 15:26:21.537645 9e0e1154-4d05-4848-b186-6a9cd50e98fd {"md5": "47e448ae88849a063bbf9dc4d972b480", "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"}], "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-07-30 15:26:21.621852 2024-07-30 15:26:21.621861 a0ad9110-d90b-49e3-a9ee-0b774a597fd1 {"md5": "311ef9b1d6a3a12b2fc348fb59b5c19a", "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"}], "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-07-30 15:26:21.691683 2024-07-30 15:26:21.691686 5ac703f7-82c1-450e-9af9-3d729fd7170d {"md5": "ecbf2fc6359c6fad4a9128b4e86304e8", "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"}], "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-07-30 15:26:21.758041 2024-07-30 15:26:21.758049 d8fcd4be-9658-4546-8b8d-cbdbda89a92c {"md5": "6cba5f2007e19f6533ac3aa60f4c781a", "pid": "1331584167", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Vizekanzler"}], "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-07-30 15:26:21.839115 2024-07-30 15:26:21.839124 31d1dda8-e444-48a3-833b-fd60a14b3c48 {"md5": "bc138a62000ea9ca9637e4a5e2d40057", "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"}], "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-07-30 15:26:21.919998 2024-07-30 15:26:21.920007 78358789-a4c8-46a7-ba6e-91b5bace5da8 {"md5": "a1e2a1dd2cc0f7a52c6ae05cd673c5e4", "pid": "1331496918", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wasserstoffionenkonzentration"}], "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-07-30 15:26:22.005745 2024-07-30 15:26:22.005754 0bbfdf8f-b4cc-4d31-bd39-59d7ea97804a {"md5": "63fa0adaa10d24783bc44cb5930ed115", "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"}], "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-07-30 15:26:22.093628 2024-07-30 15:26:22.093637 49368307-a877-422f-bdfd-38f953afeac5 {"md5": "421d4582d65376dd9751c0150aec8c9c", "pid": "1331380073", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:22.176156 2024-07-30 15:26:22.176163 7e52c555-3859-43a4-b230-1e1324a1aad8 {"md5": "d468e5ac990a2a0450d8e8d55f93c1da", "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"}], "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-07-30 15:26:22.258501 2024-07-30 15:26:22.258511 fd0282dd-ade8-4f1e-88d6-2a7980e0fbb1 {"md5": "dd9643f4bfa190608fc001bd16355330", "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"}], "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-07-30 15:26:22.337579 2024-07-30 15:26:22.337586 2410e784-cbc3-47e4-87ca-3c4a1e59e8a4 {"md5": "b3f887931f3cabfb2574c0ebf9a60816", "pid": "1330843584", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:22.415525 2024-07-30 15:26:22.415535 fc3dbec3-635b-4296-8883-8f563638b454 {"md5": "f02677042b265da19912b5ad1ebb09e7", "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"}], "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-07-30 15:26:22.492321 2024-07-30 15:26:22.492329 b417ab7d-9ad5-429d-bc5f-33d2edddefbb {"md5": "873becbcbb01e7febbadce604a34a1df", "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"}], "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-07-30 15:26:22.573831 2024-07-30 15:26:22.573838 2ce33138-d4ad-49b1-934d-363fd25fd1b5 {"md5": "a45220636c987d51d8f74b48f158351b", "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"}], "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-07-30 15:26:22.673259 2024-07-30 15:26:22.673268 1dd7c378-2e27-4a3f-8f4a-11dc17f62c31 {"md5": "5717dc3a9ac3dfdebfb70be25eb4c17c", "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"}], "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-07-30 15:26:22.767636 2024-07-30 15:26:22.767639 12ab52a7-3cfb-40c6-a6d0-79730e5ca7b2 {"md5": "ea66feb7fa7edad6b0b95a0f2f0213f8", "pid": "1330447611", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:22.826465 2024-07-30 15:26:22.826478 8c656e85-c1a5-44da-abe1-d580f34f5e34 {"md5": "eb11ce43aa1d121a232f2d2e8f95450b", "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"}], "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-07-30 15:26:22.903708 2024-07-30 15:26:22.903716 b02c58f8-5aa3-410d-bb74-4f02f149d86e {"md5": "a751bd0662abfde0f0fac7e04f521048", "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"}], "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-07-30 15:26:22.981921 2024-07-30 15:26:22.98193 0387ef95-9db3-4dc7-88da-fffa4be1a033 {"md5": "95b30a180876bd00714d038ddaf62d00", "pid": "1330343085", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:23.05985 2024-07-30 15:26:23.05986 6d257cc3-467c-4360-8bd5-1e654f569d8d {"md5": "3d902ce7d0065a7c27f3c1eefd75b769", "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"}], "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-07-30 15:26:23.285109 2024-07-30 15:26:23.285116 05d766d5-50a2-4c9b-9fa7-2d936d8adab8 {"md5": "b1477ceedf7966661a19d4b01c771bca", "pid": "1329325958", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:23.363096 2024-07-30 15:26:23.363104 c385c05b-2b06-49f5-8bcb-1dca5d67f07e {"md5": "334c2bbe64c98c3a30d862da3d97cfc0", "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"}], "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-07-30 15:26:23.436325 2024-07-30 15:26:23.436333 b6f39500-b9b6-441b-954a-9d8f1d615089 {"md5": "304be4bdd58dd619b62418264d8b074d", "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"}], "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-07-30 15:26:23.515215 2024-07-30 15:26:23.515222 d5f5d850-e64c-4e9e-b61b-44a4cd597f64 {"md5": "5f46ad95228d2df56cf639eacbfd1424", "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"}], "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-07-30 15:26:23.606665 2024-07-30 15:26:23.606673 6da6657b-4ebd-48bf-881e-89e493c67720 {"md5": "0a939c434ab7295e074f9343ac24fe9d", "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"}], "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-07-30 15:26:23.683607 2024-07-30 15:26:23.683617 ef8a1db1-7bcf-4f2f-9721-962bcc732c50 {"md5": "5f99b660e6c44c5f65f9c0548ad7bb00", "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"}], "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-07-30 15:26:23.752226 2024-07-30 15:26:23.752228 07d7441b-49b2-482a-94ab-7678d3cc9365 {"md5": "28f076de9ea01075eef0306c8603425c", "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"}], "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-07-30 15:26:23.815378 2024-07-30 15:26:23.815387 68abe75e-309e-441e-a28d-c4aded9d95ac {"md5": "1dae5ea975e056c675b2372307afa102", "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"}], "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-07-30 15:26:53.412275 2024-07-30 15:26:53.412288 76936aab-5538-4b85-b40e-652499954dd2 {"md5": "fb6b8eae8e92d906bcc8af52ceaeaffc", "pid": "963125125", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausschuss"}], "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-07-30 15:26:23.888243 2024-07-30 15:26:23.888252 78ca8049-bf08-4e63-baa0-a2d1cd2c280d {"md5": "3dd2a8d9ced3609f1caa9aff13a1d2f7", "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"}], "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-07-30 15:26:23.96917 2024-07-30 15:26:23.969179 3e1519b5-5d3d-436e-af93-cb4fe43bb06d {"md5": "e1425a9de2ecc4f92596386fe5fae5bc", "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", "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-07-30 15:26:24.038912 2024-07-30 15:26:24.038922 263ddd0e-6e9c-412b-9d26-ddd5548751a1 {"md5": "6c06a55749be45803ab40af548a0cd67", "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"}], "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-07-30 15:26:24.110616 2024-07-30 15:26:24.110625 17600ed9-7dc2-4f81-89c9-c10ab0c5d199 {"md5": "7b947b3c23902e4e82ab900e6585e9cb", "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"}], "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-07-30 15:26:24.189618 2024-07-30 15:26:24.189626 d3b7d795-0d85-419c-b26b-3bf091c8bde8 {"md5": "4dc4d490e1fc73f71d298a2a056d9b1e", "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"}], "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-07-30 15:26:24.270781 2024-07-30 15:26:24.27079 4edace3c-3a38-4bb2-ae9f-425b67d771a1 {"md5": "433b20245e60d95f08eaa19320b515a8", "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"}], "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-07-30 15:26:24.342654 2024-07-30 15:26:24.342664 241e4e4d-8a78-4246-8d8c-7ef3ad9a2de2 {"md5": "f8ecb9e4630789e9ad7af005bb878751", "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"}], "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-07-30 15:26:24.412375 2024-07-30 15:26:24.412383 4dd9adc2-5a34-43d9-a624-7f1d702b804c {"md5": "8dea0b3387c0ba873b45890d52cda1d4", "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"}], "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-07-30 15:26:24.475541 2024-07-30 15:26:24.475549 24fb0b97-07ea-421e-be8b-119ed57f307b {"md5": "c49b735f6c8d41d6d653378319ae1d3e", "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"}], "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-07-30 15:26:24.553012 2024-07-30 15:26:24.55302 f1aa4842-8291-4e03-a6d6-8d960a537078 {"md5": "2b7297a143e04b65da89f205ebffeb76", "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"}], "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-07-30 15:26:24.62411 2024-07-30 15:26:24.624118 59faabc2-629a-4f8e-9fbd-15d1ce05a3e7 {"md5": "f85fa82175b3451e039405228d41c00c", "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"}], "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-07-30 15:26:24.692355 2024-07-30 15:26:24.692364 41a90c0c-dd5c-4444-82c1-641a7b216828 {"md5": "881b0e00098077a473cd4901c0eb4bac", "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"}], "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-07-30 15:26:24.760292 2024-07-30 15:26:24.760297 222c1133-b5cd-4bd0-9176-9dbf4b650ef1 {"md5": "c1894cae11cb454fc88138517ac09fa1", "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"}], "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-07-30 15:26:24.812615 2024-07-30 15:26:24.812627 8ce3578a-bcea-4d98-8d7b-3c6663224f74 {"md5": "dc55968fd93071bce15fae2a66e0d544", "pid": "1315344238", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufenthaltsrecht"}], "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-07-30 15:26:24.882202 2024-07-30 15:26:24.882212 43103d67-8ac8-43ee-ae39-c8529cdbaeb8 {"md5": "45bbaad5ead1f2ca2d33ed9197ab5510", "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)"}], "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-07-30 15:26:24.94982 2024-07-30 15:26:24.949828 2a5149ba-825e-4b38-b70e-06ab46085b51 {"md5": "cf60b6ab9b859b9ea203d3d8eeac3ec2", "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"}], "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-07-30 15:26:25.021389 2024-07-30 15:26:25.021398 7ab5cb3f-9d59-422a-acae-27f2abefce64 {"md5": "98ce1135ac7c2a4a76d5ff3591616cc6", "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"}], "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-07-30 15:26:25.095888 2024-07-30 15:26:25.095897 3d91357e-7421-49f6-939c-b240803c2ab8 {"md5": "8664bda48f7dd5027fd4c98426ec48e9", "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"}], "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-07-30 15:26:25.174468 2024-07-30 15:26:25.174477 580ca5ae-d9eb-4d44-b5c5-0b726e7ace38 {"md5": "04e30fd2aa8ad59c46fcf424b3aae7d6", "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"}], "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-07-30 15:26:25.25158 2024-07-30 15:26:25.251588 2d10c3a9-d839-4974-8d0b-8a4a66d148d1 {"md5": "2dac0d5f5bd2578a930facc18776dda2", "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"}], "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-07-30 15:26:25.327505 2024-07-30 15:26:25.327513 7a059199-0a39-4c69-8b23-2fee14ea9b4c {"md5": "95d905340b4e1a3876544b94d2220470", "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"}], "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-07-30 15:26:25.410892 2024-07-30 15:26:25.410904 5ef65e99-3c49-4a8b-9c27-4e29b0bda429 {"md5": "896a7f887ba4d32f3d552287feebb2cb", "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", "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-07-30 15:26:37.004111 2024-07-30 15:26:37.00412 72691977-8295-4c48-ad93-c13504da30e6 {"md5": "52f1593fbd3368738ce85c0d09c6651d", "pid": "1059383780", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Raumsonde"}], "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-07-30 15:26:25.486968 2024-07-30 15:26:25.486977 c7d55a34-f921-4d05-a487-024b7d98c08d {"md5": "3d9bebdbcff8b3584533b928a0defc22", "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"}], "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-07-30 15:26:25.560433 2024-07-30 15:26:25.560441 f511c127-6df4-4292-8790-91e0681559e9 {"md5": "0562b8920bc67f735f7dadfc7f60dd28", "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"}], "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-07-30 15:26:25.64351 2024-07-30 15:26:25.643517 ea313a92-d5c8-4bd6-9bfd-38e1c169df39 {"md5": "7695ccd213bbbab4063ed6615c5473f0", "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"}], "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-07-30 15:26:25.713132 2024-07-30 15:26:25.713141 80678d81-a277-4967-bb97-4a62cf487a36 {"md5": "c3c38caed7390f4a5d317c1687ed4816", "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"}], "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-07-30 15:26:25.7817 2024-07-30 15:26:25.781708 4b669bd8-8acb-44d5-9579-9b38cd8f47b2 {"md5": "e225cf2e6dca9109acf03982f214a4fe", "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"}], "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-07-30 15:26:25.836817 2024-07-30 15:26:25.836825 fae8a839-0790-4a76-b6d3-6d300a94b36c {"md5": "f609d80061a5c4907a8ea30b9a550034", "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"}], "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-07-30 15:26:25.909824 2024-07-30 15:26:25.909832 e6b9152f-dede-4d6f-a906-bdcb67e7ee76 {"md5": "ed41ab6de1b673841769a7e36b004a56", "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"}], "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-07-30 15:26:25.982429 2024-07-30 15:26:25.982438 3e505284-c6a0-48d6-af6e-97dc5205958b {"md5": "dce7e5688954c58e1e4015acc54f8b3f", "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"}], "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-07-30 15:26:26.049261 2024-07-30 15:26:26.04927 01b35b0d-fef3-4728-87f1-624319415595 {"md5": "cab35cf8eb019c469e70147c9f278743", "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"}], "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-07-30 15:26:26.11637 2024-07-30 15:26:26.116378 63f3405d-86fd-41bf-90ef-e3f47558ff45 {"md5": "53339b17236050804cb2772b1bf9a72f", "pid": "1293306673", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Familienname"}], "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-07-30 15:26:26.193822 2024-07-30 15:26:26.193829 95cc34fa-60b2-47a9-bbb7-1387539666b7 {"md5": "0f1a50ff096409ad42855738b74cf206", "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"}], "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-07-30 15:26:26.267425 2024-07-30 15:26:26.267433 4d6910e2-2751-4c9c-b48d-89513f18f29c {"md5": "8e6249bc262de31002710012c207b6b7", "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"}], "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-07-30 15:26:26.338413 2024-07-30 15:26:26.338421 cf5a01d8-1ff9-45fc-b069-673c30d01548 {"md5": "f5b96dc92a6e0177b93d359cf93aa46d", "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"}], "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-07-30 15:26:26.411458 2024-07-30 15:26:26.411467 b0bedc03-0f2e-40ac-bcbd-3ac6b6de8d86 {"md5": "15c8befd4b2ec7ce5f5d539474a51faa", "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"}], "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-07-30 15:26:26.490057 2024-07-30 15:26:26.49007 35dbd53a-0f5b-49d8-a13e-389eae3cf4e8 {"md5": "1c148459684cc08c4e9c22ef046514a7", "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)"}], "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-07-30 15:26:26.559827 2024-07-30 15:26:26.559835 358d348f-63f5-4af2-999e-6c80915d79e1 {"md5": "66bd6fecae2b1cbe4e7ce7337fbe61c9", "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"}], "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-07-30 15:26:26.627791 2024-07-30 15:26:26.6278 02a87380-4d99-47e6-bdd7-84f837941867 {"md5": "63c84a2ed81ea4c79864c026c2532ccd", "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"}], "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-07-30 15:26:26.697277 2024-07-30 15:26:26.697287 6514ca1a-9331-44bf-aa38-8b0d932efe31 {"md5": "ab0d6258344a4b96c62a2fc7b6e8ea2d", "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"}], "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-07-30 15:26:26.777551 2024-07-30 15:26:26.77756 65bb1170-608f-494c-8dbd-36eede107561 {"md5": "e837fd909ffec989a17982d1cb3863c8", "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)"}], "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-07-30 15:26:26.846991 2024-07-30 15:26:26.846994 ed3823a2-04e4-4ca4-8fb6-15f05a0b5677 {"md5": "5eab9a2a684d672138d5e0c633aca710", "pid": "1274948169", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:26.905794 2024-07-30 15:26:26.905803 c85b3507-fa21-49ba-976e-6d5acd8a6efd {"md5": "f45a90c58064c5dbc4be39f1d497aa17", "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"}], "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-07-30 15:26:31.149647 2024-07-30 15:26:31.149655 4cf02fc4-83c0-4684-b3dc-fafe307d1764 {"md5": "8394afb2ecc1cf47164bf4eda066eede", "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", "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-07-30 15:26:26.98569 2024-07-30 15:26:26.985699 02d2303e-4655-4376-9ee4-34c56b226eca {"md5": "b095df2493c23dfacee83b95a00bbcc1", "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"}], "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-07-30 15:26:27.056922 2024-07-30 15:26:27.056957 61e7da71-74f5-47f5-8540-35cc772ec619 {"md5": "51ed440e89efd927f946c55a3494d3f7", "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"}], "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-07-30 15:26:27.135125 2024-07-30 15:26:27.135134 caada930-bb71-445a-81df-b7b97a771ec4 {"md5": "df7d4257ea87f96433c331c2dc4c9350", "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"}], "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-07-30 15:26:27.223747 2024-07-30 15:26:27.223756 fd8ffc44-aae2-49e0-9d2e-2b635d9e0219 {"md5": "56994f8a19ec702224637260c295571a", "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)"}], "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-07-30 15:26:27.318206 2024-07-30 15:26:27.318215 e1938d05-c76c-4028-9c8f-0592b81d3092 {"md5": "60c0527e6958fe4517c1b1baa11f62ae", "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"}], "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-07-30 15:26:27.402472 2024-07-30 15:26:27.402479 5d1e6623-5cee-4cf0-b10c-d774b18d4629 {"md5": "60b9049f8443964ab4eb7a67fd6e3c68", "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"}], "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-07-30 15:26:27.486778 2024-07-30 15:26:27.486787 c43c682b-f86a-41ab-b34a-716861f8cd75 {"md5": "1cff6e1d4cd3a629a3e5cc706ce15650", "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"}], "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-07-30 15:26:27.567309 2024-07-30 15:26:27.567317 e856e4a9-d3c9-43a1-8f05-79b8c3a077e3 {"md5": "38a1d93a2a32a685912c0545a9cd57dd", "pid": "1267358122", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:27.649105 2024-07-30 15:26:27.649114 65262d1d-3260-4534-b6a7-9736f9f48a13 {"md5": "3caab3a0b30501ae7995cb6d3e263eb4", "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"}], "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-07-30 15:26:27.735636 2024-07-30 15:26:27.735644 2c9f08e1-b3c1-49ea-bdcf-7b08efc57299 {"md5": "aa7d827ccceacff19e5f06c84a088e06", "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"}], "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-07-30 15:26:27.81922 2024-07-30 15:26:27.819228 2e78967c-8e8a-4f82-ac85-befec30785b8 {"md5": "773ed67c172b056927ec7586a02ccdc9", "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"}], "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-07-30 15:26:31.216403 2024-07-30 15:26:31.216411 149fd533-b824-4532-9f3d-6a58dca994a8 {"md5": "17158d8643d8a5e5ab90e5171a3ab817", "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", "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-07-30 15:26:27.883371 2024-07-30 15:26:27.883375 64503599-3654-485b-8454-244ba71c6e26 {"md5": "a3d47e385d2b4d79de44100acfb9b370", "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"}], "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-07-30 15:26:27.948307 2024-07-30 15:26:27.948317 35195da4-a91b-4467-b2b6-8ba6f121f8cf {"md5": "91d306222d937c5b957d37cce98085de", "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"}], "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-07-30 15:26:28.024496 2024-07-30 15:26:28.024504 b4f5bfd7-4699-4a40-bc3c-ccddb376bb75 {"md5": "28ce0994e264f4ba6b597e69d2f09cc4", "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"}], "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-07-30 15:26:28.094869 2024-07-30 15:26:28.094877 e01c37f0-14b7-4f67-b6cb-ae6762f75469 {"md5": "036d56f26a3af3ed2f8f37406156230e", "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)"}], "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-07-30 15:26:28.166681 2024-07-30 15:26:28.16669 9b45ae48-4e99-4edb-a85d-8ffd381926ce {"md5": "96823bcc6755776a0b0a773dcaf5a52c", "pid": "125746423X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Reis"}], "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-07-30 15:26:28.240953 2024-07-30 15:26:28.240962 043b3d9b-51d6-4fda-9ace-7b40248888b3 {"md5": "6ad856e091ae23fa7c7e9568a0ed8418", "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"}], "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-07-30 15:26:28.320964 2024-07-30 15:26:28.320973 499abe58-7e3a-4d40-ba2d-533a3cc808d2 {"md5": "846cac083f9b5ae69ecc388373e276f5", "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"}], "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-07-30 15:26:28.401696 2024-07-30 15:26:28.401705 27d2b08d-c6f1-4601-82a2-6e35ae78d54c {"md5": "6a51c05334d46073f02dc1c2d54a80ae", "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"}], "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-07-30 15:26:28.480899 2024-07-30 15:26:28.480909 d41ea307-db75-4c0c-89bb-c6c383201176 {"md5": "2ccadc831208459b7e9feefb50823ebe", "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"}], "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-07-30 15:26:28.559231 2024-07-30 15:26:28.559243 d0fa6668-7bda-43c7-8506-1033d31446aa {"md5": "64957bb0685f5819f88d2dbe3fada760", "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"}], "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-07-30 15:26:28.646481 2024-07-30 15:26:28.64649 4b89d674-cc3c-4839-976d-61d41e9ae7d8 {"md5": "8fc7f9c27efb794d09e69cd981c28a0d", "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)"}], "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-07-30 15:26:28.724246 2024-07-30 15:26:28.724254 eb17275f-1788-4315-90a2-a546a1ba553f {"md5": "7b25ec7580d7f9e64c3217981b22736c", "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"}], "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-07-30 15:26:28.807615 2024-07-30 15:26:28.807623 784cf90d-c46b-4c11-b8b9-dbc14ca9cede {"md5": "39899d42f14eb614dc5613a0e477e5c9", "pid": "1251536492", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:26:28.875368 2024-07-30 15:26:28.875371 368604e4-79d7-41af-8307-3de1dfe8b3c8 {"md5": "7da1cd6e92c096545bce957677caaf0e", "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"}], "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-07-30 15:26:28.927488 2024-07-30 15:26:28.927496 7d215d93-de09-443a-ad1e-8506544d6162 {"md5": "33027595a14e71a34b5457ca24616c88", "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"}], "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-07-30 15:26:28.995731 2024-07-30 15:26:28.995737 70f7a4fd-70c4-48b7-bd59-da2733b7a21b {"md5": "18f403f3050e6d922aed0b037918f9a6", "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"}], "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-07-30 15:26:29.070997 2024-07-30 15:26:29.071006 8777328b-0c3a-4ff3-ad51-81e7760df4f7 {"md5": "62b6e07da426d3075891a5383d55b464", "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"}], "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-07-30 15:26:29.152496 2024-07-30 15:26:29.152506 739b1305-303f-4f3b-8c4b-c169c151b6b9 {"md5": "c11fa240e362b00c6338c0357efc73bc", "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"}], "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-07-30 15:26:29.238868 2024-07-30 15:26:29.238875 98aa1179-4c64-4572-9c6e-0885092ed3cf {"md5": "d1f2671a93ecae54b97df4d0cb18d201", "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"}], "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-07-30 15:26:29.31468 2024-07-30 15:26:29.314688 d1c2ccd9-6130-4cee-ab33-3c9787b966af {"md5": "6ea24b1a4e98c236edefb9174e610453", "pid": "124608841X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Gesundheitszeugnis"}], "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-07-30 15:26:29.389493 2024-07-30 15:26:29.389501 a404871c-aae4-45e1-8ef0-e8b42df70634 {"md5": "8a4af882df955863733a2e04836255e8", "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"}], "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-07-30 15:26:29.469238 2024-07-30 15:26:29.469246 fb704bc9-801c-4b28-b987-50fe48b3a277 {"md5": "8585306353c2b1a8803fbf24548bf551", "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"}], "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-07-30 15:26:29.554955 2024-07-30 15:26:29.554964 f2400d94-fdd3-48fe-839b-4332137555c0 {"md5": "e378659d1c1d27d605a23c9854677145", "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"}], "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-07-30 15:26:29.634743 2024-07-30 15:26:29.634751 ad148533-c235-45f6-825e-93eef9ecdad4 {"md5": "58368546d0dc3e175753e2e3ab63407e", "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"}], "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-07-30 15:26:29.716295 2024-07-30 15:26:29.716303 5bdddc33-5ab4-4700-a967-05536781752e {"md5": "ee678fbba3498a7cb3a53e9c6448ab67", "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"}], "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-07-30 15:26:29.807751 2024-07-30 15:26:29.80776 76887294-681a-4ff6-9ab1-b1e8b5895484 {"md5": "7b7bdb707bddce5af47849d0999d75b3", "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"}], "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-07-30 15:26:29.899064 2024-07-30 15:26:29.899072 13cd5073-f047-401d-b90d-0c4fad1cd974 {"md5": "520fa8b393b2e9c1d472aac1f04d3841", "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"}], "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-07-30 15:26:29.952929 2024-07-30 15:26:29.952937 8ff6d2ca-9e69-4e2a-a8af-23b85f8ec913 {"md5": "b77ead35baab2e9c38cbdc0394b40e27", "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"}], "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-07-30 15:26:30.451315 2024-07-30 15:26:30.451324 c92ff2f1-4e21-4339-82a6-d88fc9b7eb62 {"md5": "0e2f5aee9080c325eff829d4b2d880f9", "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"}], "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-07-30 15:26:30.02883 2024-07-30 15:26:30.028838 8828c778-6d39-4b08-a3cc-9dc3ce50d985 {"md5": "9b2c55613975bb8e219b8fbb53cb7e2e", "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"}], "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-07-30 15:26:30.105677 2024-07-30 15:26:30.105687 e0e3bb08-df03-47cf-89de-309355c0288b {"md5": "d93904f7054fb1102ad711b1c80150f5", "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"}], "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-07-30 15:26:30.202488 2024-07-30 15:26:30.202495 cdde9d47-cbb9-4570-b20a-3116ed096654 {"md5": "9d0dc9953f357908ac5084ce5432c24e", "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"}], "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-07-30 15:26:30.292638 2024-07-30 15:26:30.292648 caf1a060-5630-4d5e-b53f-19c7f669d295 {"md5": "0b79c07170cf3a0a76315348411d0947", "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)"}], "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-07-30 15:26:30.370728 2024-07-30 15:26:30.370736 961ecf55-c333-4fb3-98c9-43692dfd4696 {"md5": "2749b4cf608dc9073add32cfcf5be39d", "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"}], "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-07-30 15:26:30.525857 2024-07-30 15:26:30.525864 5263164e-b9fa-467e-98a5-0985c630ca82 {"md5": "63aeefbe7a4e620faefe7f637e299ff8", "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)"}], "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-07-30 15:26:30.614799 2024-07-30 15:26:30.614837 2b820f0e-2954-45f8-98cd-2014fd551e0d {"md5": "a763db69c4973da9f70563fbaa974fe9", "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"}], "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-07-30 15:26:30.689545 2024-07-30 15:26:30.689554 5aeacb6a-440b-48a6-93ae-7bbfe4661796 {"md5": "467f65b7d0f667e1b00e128a9d848823", "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"}], "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-07-30 15:26:30.760505 2024-07-30 15:26:30.760513 4d8099c2-c663-4772-a3de-37bdcb634efe {"md5": "82dca7df6618f124224deef22211381b", "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"}], "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-07-30 15:26:30.845963 2024-07-30 15:26:30.845972 6095e77b-b96c-4ddc-9091-bd75a3a2503a {"md5": "31f9056e9c2043f235d6e59ad459f13f", "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"}], "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-07-30 15:26:30.930765 2024-07-30 15:26:30.930769 66a1b48e-6b76-4c8e-ad4f-ac416adf8695 {"md5": "1be5140ba878839e5af89d2d14c91e7d", "pid": "1166161722", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:30.993579 2024-07-30 15:26:30.993602 5cc42c8d-af93-402b-89a0-d21ccd72ce39 {"md5": "b798e4742d27e65067e5dc6f6051a893", "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"}], "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-07-30 15:26:31.065009 2024-07-30 15:26:31.065018 461fc882-fe58-4571-ad38-7794433618f4 {"md5": "65e8105582872c78e2d75a91454e01c6", "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"}], "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-07-30 15:26:31.285836 2024-07-30 15:26:31.285845 3ebdda27-5025-4389-8985-cd3a7e036e15 {"md5": "4c3e79d29cbf6bc3310bdde34b027367", "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"}], "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-07-30 15:26:31.371807 2024-07-30 15:26:31.371815 5d86a074-98f4-408e-a284-25388bf5332b {"md5": "27f5ae5f02f884b87c27684f40666ba7", "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"}], "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-07-30 15:26:31.467855 2024-07-30 15:26:31.467864 80376a71-ec4d-41ce-b588-44324c1098b2 {"md5": "0d70a8984e13ab8ce17dacbc6a468b56", "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é"}], "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-07-30 15:26:31.539208 2024-07-30 15:26:31.539215 cbd18d88-15d4-45a7-a9ed-204a275cc3fc {"md5": "155bf341c7cff419ef496a50727b2d63", "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"}], "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-07-30 15:26:31.614378 2024-07-30 15:26:31.614387 d8df40db-2314-40a8-941f-aef1d55ddd50 {"md5": "3eae990cdf3ab7c5a7119da2c31275a5", "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"}], "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-07-30 15:26:31.693047 2024-07-30 15:26:31.69306 fbd6cd25-3d95-41c2-ae2a-298cfb546528 {"md5": "a7d46e9d8c9e940b0771b97cd206ec31", "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"}], "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-07-30 15:26:32.336283 2024-07-30 15:26:32.336291 7c7eecb5-6fe1-4564-9e0e-967f2a6a98b4 {"md5": "4013fda6bf34b398584d17449c021646", "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"}], "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-07-30 15:26:31.772035 2024-07-30 15:26:31.772044 5b3a010a-3c49-4b74-9d59-e5bb4b28fe55 {"md5": "e3a91c32bb6f982484954fd7785a3fff", "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"}], "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-07-30 15:26:31.856249 2024-07-30 15:26:31.856259 63e47006-1082-4f55-b923-1feebc4aa7fa {"md5": "bb40623c666f36885b1602aca80fea20", "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"}], "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-07-30 15:26:31.926502 2024-07-30 15:26:31.92651 bcad1f4a-a535-4631-a7d8-0afe4642915a {"md5": "c81ac3844cf8f5df96462ca3d283b0cd", "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"}], "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-07-30 15:26:32.000212 2024-07-30 15:26:32.000222 5d626da0-ae8d-40b1-b8df-9f660d89cf8c {"md5": "4bc83dad4cc2c4ff4bfbffacc1241d71", "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"}], "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-07-30 15:26:32.068442 2024-07-30 15:26:32.06845 8dbbe65e-ca46-433d-9c19-bb3e730df6fd {"md5": "4153f388b0c68a99ac8c87abd65834e4", "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)"}], "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-07-30 15:26:32.155163 2024-07-30 15:26:32.155175 fa939a61-939c-4f67-b29f-f97c23e31bc3 {"md5": "ddd1eac8cccd275328b7d998c618cc0c", "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"}], "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-07-30 15:26:32.247631 2024-07-30 15:26:32.247644 6e6b1cf2-9688-4609-917c-924aa51df6d2 {"md5": "926b02502dc1983b9b3ca1e99973ec19", "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"}], "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-07-30 15:26:32.402739 2024-07-30 15:26:32.402746 812507da-585f-4a60-b33e-e9e8fd04f7d4 {"md5": "2ad2e70796bcce51acd158e526a5bd14", "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"}], "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-07-30 15:26:32.471369 2024-07-30 15:26:32.471375 241fbedd-0180-4262-b0e8-7ea1916355af {"md5": "43e2c47fe7b178a089071cc4b8f00a91", "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"}], "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-07-30 15:26:32.550669 2024-07-30 15:26:32.550677 7acb7d97-64b7-4dce-925d-00af1224cac9 {"md5": "57aaefd782b422210c7ad3a4dc3f4a6f", "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"}], "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-07-30 15:26:32.61489 2024-07-30 15:26:32.614898 dcd0fbfd-3019-474f-9d24-5779af57f78c {"md5": "e0b1e16fd04ad08692d32174ba86c0ab", "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"}], "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-07-30 15:26:32.685647 2024-07-30 15:26:32.685655 e3c25765-bee4-4737-82d8-1a8d6a3bcbb0 {"md5": "b01fac1f4240de45d0635205639e6b53", "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"}], "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-07-30 15:26:32.773773 2024-07-30 15:26:32.773782 9a786882-c27b-4b0c-9052-e30afe5aa9c3 {"md5": "6b0b0a340402b577d220f4d23afc5e0c", "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"}], "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-07-30 15:26:32.849772 2024-07-30 15:26:32.849782 7c1c1b93-a6f3-4bea-a15b-20e3bb15e83a {"md5": "6cbf432c93da9cb558e035975dc7e566", "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"}], "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-07-30 15:26:32.923257 2024-07-30 15:26:32.923266 9445c422-a6c9-4ef4-967b-1d8587a86d72 {"md5": "a807b5129735974bf3f293dd939c2f32", "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"}], "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-07-30 15:26:32.995946 2024-07-30 15:26:32.995948 01de26e2-4c34-4357-8568-93829a5d6c9d {"md5": "97458cb5d17c7a0d5947f0f5bfffe482", "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"}], "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-07-30 15:26:33.064574 2024-07-30 15:26:33.064583 2db124c0-e481-4ebe-a013-10a93a66c992 {"md5": "60c62804fd24d49be7ada019721cae59", "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"}], "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-07-30 15:26:33.149109 2024-07-30 15:26:33.149117 08f5b14c-259c-4259-87d3-a407448f490e {"md5": "7692064c6f472f50880008ac1d516e06", "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"}], "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-07-30 15:26:33.220368 2024-07-30 15:26:33.220376 ceff1fa3-1e7f-47fe-a2d4-90744ba89835 {"md5": "05a6c3035d4dbccd7ad77c436d2dec70", "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"}], "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-07-30 15:26:33.290206 2024-07-30 15:26:33.290213 c86284c7-9901-4815-9cba-a37905125b04 {"md5": "62f4c21cb8807a8c32ee9a42ce924391", "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)"}], "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-07-30 15:26:34.017608 2024-07-30 15:26:34.01761 c12a78ca-d2bc-4343-8e50-64bec6e08628 {"md5": "d2e805a1d8a4a372e6ea98f851c7cb74", "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"}], "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-07-30 15:26:33.371827 2024-07-30 15:26:33.371836 bc9e3181-4c1e-4b17-a729-523de05ab9b4 {"md5": "dd368f632e905644e747d9c0abe81111", "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"}], "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-07-30 15:26:33.454482 2024-07-30 15:26:33.454492 2f81d439-db30-484a-ab40-192d6a804a1a {"md5": "ebf873d9019c9da72daa293bcd4f48a7", "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"}], "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-07-30 15:26:33.529966 2024-07-30 15:26:33.529975 13e4b7c8-7d2e-4e7d-b918-083cc10a9019 {"md5": "5fad01809f1e1c365f4be60bee8e03fe", "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)"}], "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-07-30 15:26:33.610095 2024-07-30 15:26:33.610103 49fc0d80-2035-46af-bb6b-18cc7e900d90 {"md5": "c3bddf1e775d727f460ea2d99a58c9b1", "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)"}], "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-07-30 15:26:33.692172 2024-07-30 15:26:33.692182 20df9fd4-5443-4c4e-b328-8523703718a6 {"md5": "7e2f7dbfec16f0b7494ffa522fe3a4a9", "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)"}], "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-07-30 15:26:33.787069 2024-07-30 15:26:33.787078 c0cf4080-bef0-4a2d-8d1e-f5c21da635c4 {"md5": "3627824ff98d481c9c829803eb2e7b1d", "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"}], "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-07-30 15:26:33.867852 2024-07-30 15:26:33.867862 af75e4bc-8c8c-4f62-a795-d62bba0d1667 {"md5": "ea762322027dc143e1a2b7326c4b79fb", "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"}], "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-07-30 15:26:33.947622 2024-07-30 15:26:33.947631 38a053e2-4578-4519-b5d2-1c8dd5c4e69d {"md5": "b3b07181f83b72ca443f4e7a753f6eb9", "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"}], "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-07-30 15:26:34.080349 2024-07-30 15:26:34.080358 6fe84289-3449-4fdc-8b3f-80eb58397210 {"md5": "43f311c8737d899cf3d557b9a8b93991", "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)"}], "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-07-30 15:26:34.163197 2024-07-30 15:26:34.163199 cc20e122-dde4-4cfd-a6f8-52a5f20dcffe {"md5": "9f464356bc55af5ad7adc41b63836acd", "pid": "1062937325", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:34.231559 2024-07-30 15:26:34.231567 f6b36839-82ca-45e6-9e9f-a273048ee5bd {"md5": "d038c0eca0c833e8db8a3de916015c08", "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"}], "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-07-30 15:26:34.297222 2024-07-30 15:26:34.29723 6fcd2ae4-3823-405f-92cb-58bf30fd1531 {"md5": "f51b57f6db664b8d04dd9d7201b6a31e", "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"}], "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-07-30 15:26:34.372008 2024-07-30 15:26:34.372017 c8927e54-955d-435d-b5a8-430a85cda5bd {"md5": "53ea007bfaa55f3f9e97da1ea8fadbee", "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"}], "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-07-30 15:26:34.445886 2024-07-30 15:26:34.445895 a5b6202b-87aa-4273-9273-0f28a467c55e {"md5": "e5ee79a78b92ecebba615579f5a42af3", "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"}], "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-07-30 15:26:34.51886 2024-07-30 15:26:34.518869 dc4e1ebd-8166-4cd9-a295-1c8f0ed4c091 {"md5": "b3096f780f5fca05a214676c0a2e4d29", "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"}], "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-07-30 15:26:34.596509 2024-07-30 15:26:34.596516 1e54aa3a-418f-4030-a8a9-44e8145f3542 {"md5": "9ca5fbce202074e0cb5d99a59e84e48d", "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"}], "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-07-30 15:26:34.696452 2024-07-30 15:26:34.69646 e07230bd-4a8c-4594-be88-95813e278e96 {"md5": "7e3e45d8412292a28816c148eaa67622", "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"}], "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-07-30 15:26:34.770978 2024-07-30 15:26:34.770986 e70c5ab1-efcc-4b44-acbd-34106fdea8a6 {"md5": "b5960baa4178b6eb382e03ed3daaf656", "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"}], "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-07-30 15:26:34.861863 2024-07-30 15:26:34.861872 3e13cb02-cf79-47cc-8ff2-821f7b162fcf {"md5": "7008375508eb09b27ecd6e5662545b3e", "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"}], "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-07-30 15:26:34.932415 2024-07-30 15:26:34.932424 75aed422-c29b-432a-8ca4-08e05e8439e6 {"md5": "a1913e5b5bbace69a3eecf46f830f90e", "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"}], "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-07-30 15:26:35.009068 2024-07-30 15:26:35.009077 8809b204-cc68-4702-82a4-8a6787659fc2 {"md5": "f1a8666b4237c7ba31fb20f250cb05dd", "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"}], "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-07-30 15:26:35.093493 2024-07-30 15:26:35.093501 c3611820-cc0e-45b0-bfcb-449a36acc3f2 {"md5": "f1119d0ec47663e363498d95c32de90f", "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"}], "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-07-30 15:26:35.16898 2024-07-30 15:26:35.168989 50f3e15d-eadf-4696-9ac3-b1ec9c180ff3 {"md5": "96b2ab44f2d0e39388b41d0f7025e151", "pid": "1060674483", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:35.240472 2024-07-30 15:26:35.24048 0b02f7cf-29f1-4bff-ac24-89e1a9dcd287 {"md5": "13e5f4dc84fddf9d4e502cc3e600a7e7", "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)"}], "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-07-30 15:26:35.306735 2024-07-30 15:26:35.306744 4631a242-cabf-4ac4-b19e-f466ba704fc2 {"md5": "2758859678bebcb211615e1a33250a79", "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"}], "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-07-30 15:26:35.378593 2024-07-30 15:26:35.378601 0cd565e5-4143-4155-9b38-2769a32de654 {"md5": "3fefcfcd42efafdf518d2559d6d8d1c4", "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"}], "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-07-30 15:26:35.446719 2024-07-30 15:26:35.446728 b470eecc-d2c6-486f-be7f-f98253591cde {"md5": "cab432db595df57401ef652f6bff8400", "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"}], "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-07-30 15:26:35.525643 2024-07-30 15:26:35.525652 c67cbbfc-19af-44be-8751-d9bf8d82fe40 {"md5": "39a6ff727f431b34b3e2cd4844cf8ed6", "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"}], "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-07-30 15:26:35.59554 2024-07-30 15:26:35.595549 e55aff55-1c4a-4d89-9824-18c3ede8b78a {"md5": "0ff5d8738bb9b95cc31197cc3b282a50", "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"}], "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-07-30 15:26:35.663339 2024-07-30 15:26:35.663348 3d47f93f-8982-41e1-8864-a549f06602b0 {"md5": "4d10929df36dd7950b6ea76d239da791", "pid": "1060358328", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:35.729648 2024-07-30 15:26:35.729657 a83f49c3-fac5-4af8-bb03-650734868f14 {"md5": "ae72701b002a5a903770200dd534a44c", "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"}], "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-07-30 15:26:35.802677 2024-07-30 15:26:35.802686 6db2c194-7d19-47d4-8b2a-d2c6a2d054b2 {"md5": "17fcb586f00d191c9762af5e7accbab9", "pid": "1060114909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:35.874971 2024-07-30 15:26:35.87498 e5faa147-a0bb-46e9-9e43-2517c991c060 {"md5": "7037a066f5a0e7ca1df70d3f99b3669d", "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"}], "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-07-30 15:26:35.94344 2024-07-30 15:26:35.943447 1d0a6d04-8f18-4bcd-85c8-eddb742fcdfa {"md5": "620436e0c1d4fe2d936772c38bcfe32f", "pid": "1060077914", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:36.011639 2024-07-30 15:26:36.011648 6dd1125c-fdf4-4a00-ae95-da79795b81fa {"md5": "68bc0f6cf85297f1df8d6e3c9c1f6cf9", "pid": "1060077817", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:36.078063 2024-07-30 15:26:36.078066 f0e01846-dea6-4d30-88ee-9cf6d0f2d055 {"md5": "7579ed9f84a60c6325fdae3f13ce28db", "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"}], "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-07-30 15:26:36.145612 2024-07-30 15:26:36.145616 07f836c6-239f-45fc-b839-6d60a44e07ed {"md5": "7888ff47cc250de324cd2ef82fb69ca0", "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"}], "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-07-30 15:26:36.204499 2024-07-30 15:26:36.204508 c3ff473b-2fec-43a1-b43c-a2392a97fe82 {"md5": "a9026d24ceb026d3e16d2e94ec07ba09", "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"}], "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-07-30 15:26:36.271782 2024-07-30 15:26:36.27179 ab230087-df6b-4996-a3e0-8fa19d241f5c {"md5": "574ddc7c96fc86582a3d8075c341dc74", "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"}], "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-07-30 15:26:36.34637 2024-07-30 15:26:36.346379 acaea840-62d4-4eac-8df6-116fdaa728ec {"md5": "853759904c27393f1ec562dd12dfa546", "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"}], "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-07-30 15:26:36.415361 2024-07-30 15:26:36.41537 84a663d9-807d-4af9-b095-258f7f394f14 {"md5": "71f1585fb8956c7545b4a4bc1f675450", "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"}], "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-07-30 15:26:36.492648 2024-07-30 15:26:36.492656 0bc1ccd1-f89b-435d-9821-af49a0eb1b16 {"md5": "b35b092108e20b3a225fc16b697371c6", "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"}], "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-07-30 15:26:36.570767 2024-07-30 15:26:36.570776 354f426e-995a-4f29-a50d-f1227be5449e {"md5": "2f3c4e55f1ae14fa6ebea1ecebe75acc", "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"}], "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-07-30 15:26:36.644662 2024-07-30 15:26:36.644671 a639c439-e453-4534-b802-e415e03a84db {"md5": "c45ce63a15fe31b0a510e41ed516634a", "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", "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-07-30 15:26:36.715444 2024-07-30 15:26:36.715452 2b57649f-4f5c-43e9-bc1c-851a555cf03e {"md5": "bf625233abe4476df9638943da2b1dfa", "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"}], "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-07-30 15:26:36.787785 2024-07-30 15:26:36.787793 334d125c-5a50-418f-99e0-085c26c8afef {"md5": "1d8043095743649302c270de9a519732", "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"}], "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-07-30 15:26:36.86094 2024-07-30 15:26:36.860948 9d6c4a3f-6575-4499-af68-e908162cfced {"md5": "18894f1714603d720da5d460ded85153", "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"}], "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-07-30 15:26:36.934965 2024-07-30 15:26:36.934974 d98b2b63-80b8-4ca8-8a40-ad80c416e79d {"md5": "3a8695d3ffda9079f8a6562910e1c79e", "pid": "1059384434", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Raumsonde"}], "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-07-30 15:26:37.077304 2024-07-30 15:26:37.077313 57f290b1-4942-4805-9bb1-e25fa5ce1e23 {"md5": "1f5404925075efb9c73272953dc505cc", "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)"}], "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-07-30 15:26:37.140519 2024-07-30 15:26:37.140527 af986c7a-3a36-4b44-8ad4-d24c03ee941c {"md5": "d124700a6a3f1d6eb9fa349b054ac091", "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"}], "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-07-30 15:26:37.219497 2024-07-30 15:26:37.219506 6aeb7ac8-7e71-4a22-9bab-3f12450c37f2 {"md5": "29123a745e5c137cc6c19fb295c887d4", "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"}], "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-07-30 15:26:37.29285 2024-07-30 15:26:37.292857 ce8d2e29-b15a-45b5-aa1c-fa0bc2e769d3 {"md5": "a9c35553dfcb2d8c8965a509f86d9e06", "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"}], "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-07-30 15:26:37.367879 2024-07-30 15:26:37.367889 278cb01a-5f46-4d83-b4af-5c3dbe7f52c3 {"md5": "fa551a9328a2552e96261cf10a816228", "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"}], "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-07-30 15:26:37.441462 2024-07-30 15:26:37.44147 aa16f6eb-708a-4fa3-ba31-cd6a279af4dd {"md5": "8498e13dd9dba90b76997aa3b8502a7e", "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"}], "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-07-30 15:26:37.516355 2024-07-30 15:26:37.516364 19e970be-a8fa-4823-a8f8-6ce62f9ff2ab {"md5": "ba1e52512db6647dbb86a022021b9502", "pid": "1059103257", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:37.584605 2024-07-30 15:26:37.584614 d998bef5-b8b9-423c-8af6-557b48cdffaa {"md5": "8e078f4919362ce52d2afc4018077377", "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"}], "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-07-30 15:26:37.652816 2024-07-30 15:26:37.652826 7a0450e2-5643-43af-8468-c574e528c497 {"md5": "15ae84129a63a86c5bbc837600234c06", "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"}], "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-07-30 15:26:37.724702 2024-07-30 15:26:37.72471 ee580049-eb8d-47df-9c94-c26b9f87a8ff {"md5": "2a2cfb38e5d7fa71c0f6100ddc92ed62", "pid": "1058986295", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sazspiel"}], "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-07-30 15:26:37.796146 2024-07-30 15:26:37.796154 99a3484a-3eee-41d9-8d05-1fbb0e36eddc {"md5": "68a70afb620e89e113ded448bf8e280d", "pid": "105896920X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Theodolit"}], "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-07-30 15:26:37.868497 2024-07-30 15:26:37.868505 cc603011-d3b6-498e-8bb8-09f17526ad5b {"md5": "9b3978e33c7b50b1e99a5429b34c7ce7", "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"}], "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-07-30 15:26:37.939188 2024-07-30 15:26:37.939198 34b45e7f-b9bd-4905-b1a7-89fb0122caba {"md5": "dad1977d8f748e64a3e8ed84c65bdc18", "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"}], "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-07-30 15:26:38.076489 2024-07-30 15:26:38.076497 7077d87e-70ec-4282-8a57-f8ebaf0bd436 {"md5": "3de55bd1b038f880426d2153e80bdb0c", "pid": "1058674900", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Holzeinschlag"}], "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-07-30 15:26:38.144597 2024-07-30 15:26:38.144599 372a83d4-6695-4a2c-9222-c50866e36729 {"md5": "be71cab0e6ff7376a7eb1b88249276b5", "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"}], "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-07-30 15:26:38.20476 2024-07-30 15:26:38.204768 8a46617b-2ded-4185-87ec-116a40ad5636 {"md5": "8d68b09b370169d579bea6b6c093bf57", "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"}], "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-07-30 15:26:38.274969 2024-07-30 15:26:38.274977 e51f99e4-3dcc-4670-affd-8716e70784ba {"md5": "0e594e1eb8662f1ffab98a22d46d0f02", "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"}], "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-07-30 15:26:39.979726 2024-07-30 15:26:39.979734 7d6654c6-f353-4a2d-a537-6a0ebca30e8a {"md5": "fd9fed7c88ef6722abb17d6c6b2dc274", "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"}], "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-07-30 15:26:38.337606 2024-07-30 15:26:38.337614 2762ed16-c0b9-4000-940d-200c87c7f40c {"md5": "0e0d92ddbc5deb0266b4bbd65aaaf62d", "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"}], "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-07-30 15:26:38.401757 2024-07-30 15:26:38.401764 c83c33d0-0811-46e3-8cba-67f962408fde {"md5": "fec990af264ad90b7b340e9e5702e8da", "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", "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-07-30 15:26:38.46565 2024-07-30 15:26:38.465657 98095a5d-ff83-45ec-a0d8-c5a7fb800cd0 {"md5": "3a48803f0095f4bafc4d06ef28b62e51", "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"}], "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-07-30 15:26:38.542461 2024-07-30 15:26:38.542469 17defc0b-eaa2-4a09-90f2-df81c9d34a71 {"md5": "786668fb78bd73815f9b84e68f25e86a", "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ß"}], "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-07-30 15:26:38.608202 2024-07-30 15:26:38.608209 1a0baefb-d7f0-4d8a-a4b1-a7486d3d1a44 {"md5": "a723f7bf8c90f4d7ce2d9713abdb9811", "pid": "1058370677", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:38.68154 2024-07-30 15:26:38.681551 3914a809-d33b-45c5-a6d9-806ead6f0853 {"md5": "6f405e5259f23afd1bb47b209e737aad", "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", "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-07-30 15:26:38.748384 2024-07-30 15:26:38.748393 8fb2d5f4-8728-4c33-a545-0245ea64c1b5 {"md5": "d4027af298ae717ed0d000761dbff3db", "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", "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-07-30 15:26:38.820732 2024-07-30 15:26:38.820741 094c2fd5-3bd6-434d-bd32-44be69ba3aa1 {"md5": "85b00a92812766f0d2297d1a6eda4d44", "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"}], "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-07-30 15:26:38.892658 2024-07-30 15:26:38.892665 a508e33a-6614-47a6-8467-6cc2f4e570ed {"md5": "b18dea8ba973d110d44e2b2785616e95", "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", "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-07-30 15:26:38.965225 2024-07-30 15:26:38.965298 b8eac63c-d12c-47a9-babb-5e9e36975d16 {"md5": "f570b2838cbe3cbe3ed3248061fe93d4", "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"}], "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-07-30 15:26:39.031608 2024-07-30 15:26:39.031616 ce2f0036-f19a-45d1-8375-46f6e590ff8d {"md5": "beaf5131c9f7ecef6a218bb7426470b0", "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"}], "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-07-30 15:26:39.104505 2024-07-30 15:26:39.104514 b94f41f2-ee7c-4a6a-a06f-d657804e8943 {"md5": "7aae1390443bc9c79b702f20833e00ab", "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"}], "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-07-30 15:26:39.176714 2024-07-30 15:26:39.176717 cec1bf64-8d3d-4cbd-8c44-b323bc4e0c65 {"md5": "84c4d76ccaf32de675ae112f00b05055", "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"}], "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-07-30 15:26:39.233494 2024-07-30 15:26:39.233502 b83a0590-925a-4742-a6ed-7402ad3d149e {"md5": "8229c7a12707ea1f68b964b63d987952", "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"}], "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-07-30 15:26:39.307282 2024-07-30 15:26:39.307291 565272ab-da92-4025-8401-2aed02a9ef54 {"md5": "6bc464c47e581708c377e902fbec1eb8", "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"}], "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-07-30 15:26:39.390467 2024-07-30 15:26:39.390474 53fc775f-a402-44c1-a69a-4b8ab302d8e8 {"md5": "89afa3191c30c0b522209ca59291bd2e", "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"}], "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-07-30 15:26:39.458429 2024-07-30 15:26:39.458438 f9943a8f-fea5-463b-a6fd-e9ade25074d1 {"md5": "53eb1d4398a48c6ade9c5a7ae8e2df72", "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"}], "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-07-30 15:26:39.530072 2024-07-30 15:26:39.530126 8c67b2d5-4630-45c9-9c00-977c0ebeb821 {"md5": "24434869dbb0d5b84d52fb58f02951f5", "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)"}], "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-07-30 15:26:40.054214 2024-07-30 15:26:40.054222 bb144efc-1ed5-4c8e-879c-ce8472b57cd4 {"md5": "14e0bc44092997c7b9deb82138503037", "pid": "1034281828", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:39.601313 2024-07-30 15:26:39.601321 5920373e-b8b5-420a-9b84-e399848d986c {"md5": "c062c5a1ced2417bccb2f9b2c0a0645d", "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"}], "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-07-30 15:26:39.676043 2024-07-30 15:26:39.676052 9e5ecaec-49dc-4787-b603-60d41bc4a012 {"md5": "b1e87676de0f78b446d8a515eb0b0d4b", "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"}], "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-07-30 15:26:39.750457 2024-07-30 15:26:39.750465 18e32a49-ad5f-4d44-8bb2-8d488baa5d5f {"md5": "b0e89bef94de4d39ceb042eca111d18d", "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"}], "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-07-30 15:26:39.829605 2024-07-30 15:26:39.829614 64ee9015-92a0-4d8f-8bc7-975c3aeb77f2 {"md5": "de00fd36ccbb6c96f852d7802b3796ed", "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)"}], "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-07-30 15:26:39.905567 2024-07-30 15:26:39.905576 8521c951-e5e0-4b06-a29a-24b5d5f78825 {"md5": "51af0deae7800ffec767bd3cb41d1f86", "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"}], "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-07-30 15:26:40.125199 2024-07-30 15:26:40.125206 8499ef4e-bbb9-48b8-b40a-58b959eefe15 {"md5": "4fcf465ac4b257262d9537a331e3d184", "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)"}], "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-07-30 15:26:40.19464 2024-07-30 15:26:40.194642 0eb1af7a-470a-4a26-ae00-a7f37a0a747b {"md5": "18d2a2f0580a7db8585745ca50c3fd11", "pid": "1030464197", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:40.255216 2024-07-30 15:26:40.255224 b1f0fed3-ebe4-4a73-97f0-bbca44c56855 {"md5": "d571c4fde4f255b621b1ace416f39b51", "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"}], "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-07-30 15:26:40.321285 2024-07-30 15:26:40.321293 eff92d14-f8c9-45e0-89d4-676d21a729c7 {"md5": "8c249912aef0c4ea84cf1a919f1593a5", "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"}], "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-07-30 15:26:40.393199 2024-07-30 15:26:40.393207 99ae0b5c-9d2e-4146-b593-c02df20d2d75 {"md5": "8c88a6c6534a05fb7d9d4cb777362e9c", "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"}], "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-07-30 15:26:40.467801 2024-07-30 15:26:40.467809 ff425a4f-bc06-489c-8e34-21621e4bd845 {"md5": "dc759b4de205887805de52d08f477fbc", "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"}], "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-07-30 15:26:40.545817 2024-07-30 15:26:40.545826 6f73c810-d723-41f0-9845-3481aec08aff {"md5": "19d24a325a1a81729435b039e90686c5", "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"}], "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-07-30 15:26:40.623651 2024-07-30 15:26:40.623659 76124230-ec87-4c3e-97d0-5a4ae49bcdd0 {"md5": "6585d469260d24f1a715a9efaaceeefd", "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"}], "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-07-30 15:26:40.697557 2024-07-30 15:26:40.697566 2d1f55df-f600-49e8-8fa9-5974fd9e6198 {"md5": "e10c89ac68929424a160add0f37b85ef", "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"}], "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-07-30 15:26:40.780504 2024-07-30 15:26:40.780513 4c1dfa7d-ce90-4c74-a793-9016cb72a172 {"md5": "7b375e94b72e3d24f613a5cbc5081ea6", "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"}], "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-07-30 15:26:40.861649 2024-07-30 15:26:40.861657 f00229d3-5866-4c4d-b0dc-cfb57b6fbd8e {"md5": "bfcbede0edf11ea0bb35da9574b46d2c", "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"}], "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-07-30 15:26:40.934819 2024-07-30 15:26:40.934827 f3290c94-0743-415a-a3f8-d67d67198639 {"md5": "944566984ec273311e8e13500b170513", "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)"}], "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-07-30 15:26:41.016849 2024-07-30 15:26:41.016857 c213e1ef-ec25-4498-a6cd-f36559d52bbb {"md5": "f5adacb632ee5afc1ddac954233c5847", "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"}], "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-07-30 15:26:41.089555 2024-07-30 15:26:41.089564 853f1340-8281-4d3c-a29e-2d72b5e8fcc7 {"md5": "97a794212fd5a58c71316591a27fca97", "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"}], "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-07-30 15:26:41.162068 2024-07-30 15:26:41.162076 32896c5e-b4fb-448b-9cd0-3449b3e49901 {"md5": "df236aed2a273e7044bc7ba3313240db", "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"}], "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-07-30 15:26:41.227607 2024-07-30 15:26:41.227615 32edc9ac-74e2-486b-9b35-439340e7e9df {"md5": "21b432860e806602105c31d2629252b2", "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)"}], "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-07-30 15:26:41.293083 2024-07-30 15:26:41.293092 1831737a-6868-4c86-80d8-ada43fa89f9b {"md5": "1dce1c0726ebeca373d422b1627428a0", "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"}], "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-07-30 15:26:41.366244 2024-07-30 15:26:41.366252 f1ca8d49-4f32-441b-bdcb-8ee0e8c5a1ab {"md5": "7ed05fc94a7f6661fa6525d88c89308a", "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"}], "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-07-30 15:26:41.447034 2024-07-30 15:26:41.447043 9ef0a8fa-5281-4a4d-8f46-68f1fef2109d {"md5": "2d51af55b6a15b0ef9082eeaf73248d5", "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"}], "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-07-30 15:26:41.526821 2024-07-30 15:26:41.52683 cfb91511-aa35-43ce-9b2a-e12f06f629bf {"md5": "c1729f6af51d5ae73c55b4cab13c5b93", "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"}], "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-07-30 15:26:41.606566 2024-07-30 15:26:41.606574 3c59729a-4069-4f8b-b987-abd8671230a1 {"md5": "a23d26b606abe80fb6bec928f0217e40", "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"}], "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-07-30 15:26:41.682675 2024-07-30 15:26:41.682683 03a7980e-f239-4225-8179-0da9f1b53490 {"md5": "7035c5f9a2a269400b9e86f65eb4d45f", "pid": "1015079253", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:41.763346 2024-07-30 15:26:41.763355 aa400b08-e044-4b65-a28c-9ae8a292efe0 {"md5": "10371644ed9b393073574683660a0f34", "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"}], "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-07-30 15:26:41.844783 2024-07-30 15:26:41.844792 077c00bc-c264-411a-87e5-274c35a0d8c3 {"md5": "6b4e02509e1c636efcbc58c710de4ab1", "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"}], "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-07-30 15:26:41.976012 2024-07-30 15:26:41.976016 75d9fa74-488a-41cb-b125-a19cca9475d0 {"md5": "d0b5943d41e3cad0acd2f9079dcddddc", "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)"}], "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-07-30 15:26:42.024273 2024-07-30 15:26:42.024276 055c68ca-59b6-4475-887e-e59403a5cdee {"md5": "a5d04cbae1e84427721abc3ea6b54b8b", "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"}], "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-07-30 15:26:42.067949 2024-07-30 15:26:42.067951 419bf6d1-47e0-4ce1-a714-cf6fff3bf605 {"md5": "9a38673c7bc169ced0fe04e8e0116a85", "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"}], "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-07-30 15:26:42.110112 2024-07-30 15:26:42.110117 24b00983-b068-41d8-8a6c-78cae0b000ab {"md5": "4335b4bf1cf61cd6d4de01d2aaa59559", "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"}], "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-07-30 15:26:42.159168 2024-07-30 15:26:42.159181 5202d120-1620-41e2-9c9e-2142e1db2a32 {"md5": "13da36da922a68e5205f4b1c815dc4b2", "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"}], "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-07-30 15:26:42.225284 2024-07-30 15:26:42.225292 a363e20f-af87-4f28-8130-45327891d81a {"md5": "144ff904ff334d0a45dd6a35b850bee0", "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"}], "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-07-30 15:26:42.277873 2024-07-30 15:26:42.277881 2d2e081e-473a-48cd-8bf1-fec4f39d5862 {"md5": "fcc29ffd2888890dd020984348321fc4", "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", "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-07-30 15:26:42.342213 2024-07-30 15:26:42.342222 dc72b44a-dbaf-4a12-975e-9b81d8ff49c9 {"md5": "fedc053512dab16697c231c5173b96a7", "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", "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-07-30 15:26:42.416471 2024-07-30 15:26:42.416479 c541c7d2-f737-431f-8f8f-6c0bf933011c {"md5": "49d4aca6cd467fea7339553f502f8b6a", "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", "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-07-30 15:26:42.488552 2024-07-30 15:26:42.48856 3245b498-e4db-4836-8016-58cd9271932a {"md5": "8da5dabcfcf991d8fdc1524c26716f34", "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", "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-07-30 15:26:42.563094 2024-07-30 15:26:42.563103 9e7289bd-b6eb-400f-8652-8cad4926a8ac {"md5": "2bca381a5cb2117c3c07f5f55dde2253", "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"}], "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-07-30 15:26:42.646449 2024-07-30 15:26:42.646458 3988ae34-862a-4a8c-b301-784ad33344a8 {"md5": "c534d967659db5a811f8ff79d0fd10cb", "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"}], "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-07-30 15:27:08.355126 2024-07-30 15:27:08.355138 baf8611c-9503-46b7-8ad8-23d57701efe7 {"md5": "476af237c2574b61c9368e99f0e842b7", "pid": "043269605", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kreatur"}], "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-07-30 15:26:42.728815 2024-07-30 15:26:42.728824 e24ef86a-7e1e-4c59-b136-f93d86a90f8c {"md5": "2f8cf3b0caf66b663197f63339d3ced7", "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"}], "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-07-30 15:26:42.805261 2024-07-30 15:26:42.805269 55e79f48-0409-4a18-ac0e-abb9e14107da {"md5": "ff374966e68874ce1ab570362c34af24", "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"}], "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-07-30 15:26:42.90686 2024-07-30 15:26:42.906869 83c2a4a6-bb8a-448a-a2f5-7b6f1fe1d735 {"md5": "a0e8eed6d728438877c437292b8f5045", "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", "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-07-30 15:26:42.987628 2024-07-30 15:26:42.987636 3250ce14-ef62-44cb-8687-0a696aa82894 {"md5": "abc8ddf751869bf2f3ac240f3cecfcc6", "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"}], "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-07-30 15:26:43.086039 2024-07-30 15:26:43.086049 c095b1ef-ffd2-4b6d-b2c5-97c58c6c99c3 {"md5": "f20ed873b786d6c67ee847e897d89dd8", "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"}], "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-07-30 15:26:43.16507 2024-07-30 15:26:43.16508 004ce92d-031d-4ea1-a326-8f8899fa734d {"md5": "5ebbba3f4794844837ea55eb28678266", "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"}], "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-07-30 15:26:43.238175 2024-07-30 15:26:43.238184 10147a7f-f137-43e6-9b16-7cd2467d3694 {"md5": "007a7b5f3514937fa9bb0de4e4e38873", "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"}], "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-07-30 15:26:44.301991 2024-07-30 15:26:44.301994 efdde8a3-a807-4820-ad2f-840a74da9136 {"md5": "806d1aafdb5c67ffcda8397884f736d7", "pid": "998759074", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:26:43.288972 2024-07-30 15:26:43.288975 81b2ca67-2737-4152-9e40-d2267a79d10a {"md5": "c8bdde462cafcf5057ee07380da3ef6f", "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"}], "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-07-30 15:26:43.350992 2024-07-30 15:26:43.351001 dd9f98b4-00bc-4bc7-a495-5c389a423580 {"md5": "2026786bcfa92389c4fa5aab4f16a14d", "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"}], "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-07-30 15:26:43.425596 2024-07-30 15:26:43.425607 6f51a064-ea7c-40af-acb1-367fcbb0487e {"md5": "2dfcf2dc13bd08e9cd1676909529365f", "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"}], "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-07-30 15:26:43.516518 2024-07-30 15:26:43.51653 692ace8f-4519-4032-8eea-9254ebad43a8 {"md5": "49e04d38d3bff902f2122735ed08ff60", "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"}], "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-07-30 15:26:43.595616 2024-07-30 15:26:43.595623 e7578e5c-515b-44cc-a320-1d9cf6822bb6 {"md5": "e1f9760f57ef34b98c2bb853a67a21f3", "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"}], "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-07-30 15:26:43.669066 2024-07-30 15:26:43.669074 6b0750bf-25e8-4076-807b-45543ce15640 {"md5": "a4d096ed5dbc00b67ec43bb0e19200e6", "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)"}], "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-07-30 15:26:43.741492 2024-07-30 15:26:43.741498 7146b7f7-291d-4689-b160-b4a83c43409a {"md5": "4a6759a5bffcc409eb5727248112f09a", "pid": "1005003262", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Signaltransduktion"}], "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-07-30 15:26:43.809346 2024-07-30 15:26:43.809353 c7f68bce-d9fa-4532-bfab-8ad48f545fac {"md5": "f8ac2b375477c143ef2ee9e4d2599be5", "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"}], "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-07-30 15:26:43.876332 2024-07-30 15:26:43.876339 fae8aa71-13b0-4a32-a0bb-467c6e5ff0d7 {"md5": "13133e59f48e969c5ec0505c637a4f7e", "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"}], "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-07-30 15:26:43.94037 2024-07-30 15:26:43.940379 8b906d8c-d465-458f-892d-742aaf6bf288 {"md5": "32eb6c2d1e7bea244dfb4da5fe81a889", "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"}], "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-07-30 15:26:44.011881 2024-07-30 15:26:44.01189 00f41df9-f5de-47c8-b731-a28d2a6077f9 {"md5": "aaf8e2318d90d7716496ed3e0e9bdb81", "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"}], "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-07-30 15:26:44.084376 2024-07-30 15:26:44.084386 8d55583c-70ad-42db-9b0f-2a4b968d373b {"md5": "9403bf0b97ee93ebd0ad3fa643384b35", "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"}], "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-07-30 15:26:44.162235 2024-07-30 15:26:44.162506 5e7d7587-882a-47e7-9703-71be584d94ef {"md5": "c55d0a260db71a47470699c00df34e37", "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"}], "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-07-30 15:26:44.230151 2024-07-30 15:26:44.230158 b031d79b-b95f-4122-b89a-e74f386911ce {"md5": "29803e63901d5a9476172b93432c3b18", "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"}], "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-07-30 15:26:44.359154 2024-07-30 15:26:44.359162 ab6bfb15-ae8e-4a7b-9090-63de583c6d6d {"md5": "320ff81421ecfec9f9a1a24d013de0de", "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"}], "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-07-30 15:26:44.42098 2024-07-30 15:26:44.420987 269f5b14-b0aa-47d6-944c-4e63697ce080 {"md5": "796b82098da046610275523cd93f7a1f", "pid": "994660987", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zahl"}], "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-07-30 15:26:44.48557 2024-07-30 15:26:44.485578 70198892-62d3-49dd-b980-2715f8dfc638 {"md5": "a9e85a71647ad902675770e66e4b4f06", "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"}], "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-07-30 15:26:44.557439 2024-07-30 15:26:44.557447 f5cfebb4-6fd6-42d7-a62c-6f2a732dfff6 {"md5": "3282477a3281ec2afe8eda9832ffb480", "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)"}], "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-07-30 15:26:44.642722 2024-07-30 15:26:44.642735 71a648f0-97e9-4515-b769-a5a374f9f9be {"md5": "d05b8701f2ea2e9b1e66f7a00ce6e3d3", "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"}], "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-07-30 15:26:44.714913 2024-07-30 15:26:44.714922 d9da6e85-cd58-41f7-bf28-64a7ac65c83f {"md5": "fa3eaab0a9ddecb464c29405d1ca18d9", "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)"}], "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-07-30 15:26:44.790767 2024-07-30 15:26:44.790776 f6c209f7-2bb8-40c0-8b21-abe8b86a2768 {"md5": "fa447ab21bc67cb52eaa9a78440aae44", "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"}], "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-07-30 15:26:44.867136 2024-07-30 15:26:44.867144 2bfd91e3-7f27-43fa-acf4-888ea3476157 {"md5": "7d18c1815ae5a5ba3373900f18c77517", "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"}], "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-07-30 15:26:44.947266 2024-07-30 15:26:44.947274 ff0a2cb0-1e28-4d95-bdfb-bc16c74bac57 {"md5": "6d04a03bcae06114559f97ab376c7b10", "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"}], "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-07-30 15:26:45.021228 2024-07-30 15:26:45.021237 c35dfac3-96a0-44d2-a722-aad66741656b {"md5": "06af1af06cf50bc92bdcf49ff66d2eb6", "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"}], "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-07-30 15:26:45.094445 2024-07-30 15:26:45.094455 d1a94d0f-b820-49b0-b686-addfe58dc2aa {"md5": "6bb500221b4b7f259ed7a18095e42f13", "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"}], "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-07-30 15:26:45.175142 2024-07-30 15:26:45.175148 18a34a3d-ab8a-409a-a60e-f985469b229c {"md5": "1699bcf0bf4594686ac22c52d626d11b", "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"}], "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-07-30 15:26:45.254958 2024-07-30 15:26:45.254967 c7a8a552-2c71-4c15-bacd-d0d65db9a665 {"md5": "92c5c91cdaee557ebb96f38167ac23e7", "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)"}], "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-07-30 15:26:45.322567 2024-07-30 15:26:45.322571 5bd2bf70-a89a-418d-b4f5-5bdb689d8199 {"md5": "de840f0e8bc5a3a20bf018e9aada601e", "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"}], "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-07-30 15:26:45.379716 2024-07-30 15:26:45.379724 f2cfb314-d4a4-49ba-b541-a09bb79ea6cf {"md5": "859264ddf8b653c9edb22b44379781b0", "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"}], "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-07-30 15:26:45.43106 2024-07-30 15:26:45.431067 08545613-28cd-46b6-b623-69b9779f2956 {"md5": "72868ca8dfe11e5d8db2ab88b0ba91ba", "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)"}], "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-07-30 15:26:45.490681 2024-07-30 15:26:45.490689 4ff77d3e-52bb-4dcf-a27e-1396a66f85ac {"md5": "ce13fed911c5154cdc3be65e4f87ae25", "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)"}], "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-07-30 15:26:45.566687 2024-07-30 15:26:45.566697 417ee163-8446-46f9-a825-2c6da7161dbd {"md5": "563ff9da97d0e613b4d2d80230dd2238", "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"}], "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-07-30 15:26:45.642133 2024-07-30 15:26:45.642143 a735f77b-82e8-4e1f-8eae-44001ed0f644 {"md5": "f550aa720a32970343b26c8c58d91c71", "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"}], "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-07-30 15:26:45.721913 2024-07-30 15:26:45.721922 196711ac-7767-47a8-ab52-79d411e6d508 {"md5": "c07aac8dac888fc738bb7af7ba53ac9b", "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"}], "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-07-30 15:26:45.793714 2024-07-30 15:26:45.793723 9816d255-a050-4661-93f0-0272dc3c23ef {"md5": "f53d90028c8717fe229cf7c730772eb8", "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"}], "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-07-30 15:26:45.873498 2024-07-30 15:26:45.873507 156953c7-198a-493c-bebf-e1d35ac1c519 {"md5": "50b4b3c5047f292265a74e388030ddc9", "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"}], "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-07-30 15:26:45.945586 2024-07-30 15:26:45.945595 e28478af-a937-40db-9b49-5917bd810599 {"md5": "4c8b5a355ee24f049205aa600629029c", "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"}], "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-07-30 15:26:46.030178 2024-07-30 15:26:46.030189 86060c58-e061-407c-bbe5-41b1f8ea6723 {"md5": "a0d6f064f2e2337c0a0030a8cec419ba", "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", "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-07-30 15:26:46.117741 2024-07-30 15:26:46.117752 48781c22-a2ef-4b6f-9e85-92d2f97d77ff {"md5": "0d20f390ab571d92806816cbf364cfae", "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)"}], "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-07-30 15:26:46.2079 2024-07-30 15:26:46.207913 062d6f2a-12ff-45f3-8d2e-c7c9239ab9a9 {"md5": "6c9a6803d83ea0bd88ab84dc4384c97d", "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"}], "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-07-30 15:26:46.294654 2024-07-30 15:26:46.294667 f23aac0c-cdbf-462c-b443-0562875b5fac {"md5": "0c71db3b4e40743155878bcfc199e624", "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"}], "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-07-30 15:26:46.363232 2024-07-30 15:26:46.363236 6053daee-1b12-4994-b092-4a0268c13079 {"md5": "f26fe5bfd20f77b68413f5aa29302df3", "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"}], "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-07-30 15:26:46.430311 2024-07-30 15:26:46.430325 306c2719-15f5-42ac-9e97-bb0b74d28be9 {"md5": "f3d92b152b706d7ba8aeaa60f9b50c8c", "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)"}], "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-07-30 15:26:46.509124 2024-07-30 15:26:46.509132 5d823d4a-172b-43ae-8eef-db2d517f9858 {"md5": "ab4183a00ed797fe78754bf23c5f9075", "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"}], "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-07-30 15:26:46.581929 2024-07-30 15:26:46.58194 cf503a28-f263-44b5-b3ed-eebb700c644d {"md5": "1c04b0361a0e189c552c9d9c638b3584", "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"}], "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-07-30 15:26:46.67001 2024-07-30 15:26:46.670022 7760228f-724b-4537-821c-aba4b97ab42c {"md5": "6d08c5c66500125f47aa7592537f3a21", "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"}], "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-07-30 15:27:10.532238 2024-07-30 15:27:10.532248 7af00a30-81e7-4431-b22f-95de0100fd1a {"md5": "f69d1db0ca31a3cb9819d933768dfed3", "pid": "043047815", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:26:46.758529 2024-07-30 15:26:46.758537 99cb510b-0d2c-4cec-b758-4b8737815339 {"md5": "c268ac47c0c959a37b3cc575f948c62b", "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"}], "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-07-30 15:26:46.836061 2024-07-30 15:26:46.836069 8dd98821-0c96-4e21-9e31-bedcc73cc5f8 {"md5": "badbcfc9e887482173993dd42b470dc0", "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"}], "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-07-30 15:26:46.90676 2024-07-30 15:26:46.906768 8a797478-2853-4fde-a892-9e70b7b35c84 {"md5": "2957b051e7d70e051b5a02ac84475199", "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"}], "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-07-30 15:26:46.971638 2024-07-30 15:26:46.971645 ff905f16-358e-4c44-85a0-e60edd072e6a {"md5": "14a4b0e243581107b2ce676e4ae533b5", "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"}], "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-07-30 15:26:47.036353 2024-07-30 15:26:47.03636 95352ea6-30fa-417b-bb38-cec60f999503 {"md5": "06f99d96f4fc81f5f2abe1206f6f7ce7", "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)"}], "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-07-30 15:26:47.110688 2024-07-30 15:26:47.110697 1fe9cbd5-a3f4-4fc1-a493-071835f27456 {"md5": "09e4e187b357c16d8dea755e227578ae", "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)"}], "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-07-30 15:26:47.20232 2024-07-30 15:26:47.202327 051ab9e9-a533-4133-99ac-fda3a7d96434 {"md5": "d8cc6074f9d62bf03afb504dbded4e48", "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"}], "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-07-30 15:26:47.291963 2024-07-30 15:26:47.291973 84244b0c-8baa-4c78-ab3f-fb383ea4af04 {"md5": "23196fd2951e36cac8b45d0cd530bc46", "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"}], "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-07-30 15:26:47.371018 2024-07-30 15:26:47.371026 c80d70e3-c351-40eb-aed3-aaf02a6b6e36 {"md5": "8f08217c4b451e93f7e2ee7e437bd72b", "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"}], "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-07-30 15:26:47.438961 2024-07-30 15:26:47.438969 1b1e53e5-6e7a-4e77-88c4-52fac348bdf2 {"md5": "7fe8328db91f2d8a68ffed67fc286c18", "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"}], "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-07-30 15:26:47.506708 2024-07-30 15:26:47.506717 5040f2a2-4dc4-4202-9549-fa0ee5158942 {"md5": "2a343cf763f6cff8a8bba4d014d91a4b", "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)"}], "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-07-30 15:26:47.58631 2024-07-30 15:26:47.586317 7c564e4e-a1c3-4927-99e6-6b1c45ff375f {"md5": "98b4bfe51a8127f1f3964b3281a6b0d5", "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"}], "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-07-30 15:26:47.65673 2024-07-30 15:26:47.656737 77c42aeb-2778-403a-90cc-7b37fe2ea2f3 {"md5": "4ade0ad17b7bc0a83b7c607aad14cd7b", "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"}], "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-07-30 15:26:47.720599 2024-07-30 15:26:47.720607 40f12ae5-7762-4faf-b4dc-ef4ac6add11e {"md5": "640dfca43d867744db28449d4751d63c", "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"}], "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-07-30 15:26:47.785044 2024-07-30 15:26:47.78505 c851d4e2-b1e4-4d49-acac-430f79fad153 {"md5": "3537f7e6c62fb63aa7a66bc03d6c6528", "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"}], "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-07-30 15:26:47.854085 2024-07-30 15:26:47.854095 340caed5-fee7-4dd8-85bd-65520b074bf7 {"md5": "86e3d428d10ddbe14708327a471d7994", "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"}], "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-07-30 15:26:47.931057 2024-07-30 15:26:47.931067 771d3a41-76ac-4db8-bcc1-d6f0fbdbecfc {"md5": "0effac53abdc4d228b6670a3297258b6", "pid": "977294390", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sichtfeld"}], "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-07-30 15:26:48.000832 2024-07-30 15:26:48.000841 814b1871-a891-4435-9f3e-55759be4b252 {"md5": "ab03585fa3788d9124bb72816280a4c0", "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"}], "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-07-30 15:26:48.077972 2024-07-30 15:26:48.07798 f9dfd707-ad36-402e-87fa-102a8a051f0f {"md5": "c58eba599945023e1a62646bcd071bde", "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"}], "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-07-30 15:26:48.166583 2024-07-30 15:26:48.166593 a070d940-bf4b-4213-911f-9a9616728333 {"md5": "6dd0a108851399bc4530cd256354b662", "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"}], "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-07-30 15:26:48.243782 2024-07-30 15:26:48.243791 61ed2fc5-ce8d-4cdd-8deb-156662e72992 {"md5": "d42edfcefb070bb64c63f3df54821213", "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"}], "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-07-30 15:26:48.347989 2024-07-30 15:26:48.347997 17f694d9-fe93-40d2-9516-87d41aa32bfe {"md5": "1dcbb925d2ae9db4e3ee9ab73ca74943", "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"}], "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-07-30 15:26:48.434759 2024-07-30 15:26:48.434763 de6d5a71-a8c9-4b18-aeaa-739f03a3560b {"md5": "5362ca31c9b9eb50b020e548f2924748", "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)"}], "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-07-30 15:26:48.521484 2024-07-30 15:26:48.521493 b8942dab-4322-4835-ae43-fcb7a3355ead {"md5": "b2a2b223eb4df2a50981876d0eb81775", "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"}], "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-07-30 15:26:48.605659 2024-07-30 15:26:48.605666 f5b52d70-fcab-420f-8c35-6d6088315f25 {"md5": "0723c75659ead86971b9b2f6d328b83a", "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"}], "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-07-30 15:26:51.160495 2024-07-30 15:26:51.160506 07f9767d-3c94-4b7f-b0cc-d1106d873bb5 {"md5": "dce2971cad2f34256d1a00322090c3b2", "pid": "96717757X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Metallbauteil"}], "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-07-30 15:26:48.679551 2024-07-30 15:26:48.679559 3ea6f0b2-ca6d-4e07-9ae9-85a29737c070 {"md5": "6ecfcdb8e959cd66391e5cd5d0c21772", "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"}], "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-07-30 15:26:48.757187 2024-07-30 15:26:48.757196 6bfdea33-f83e-4e13-8f89-c30d535a1b37 {"md5": "182e20684b67a3758d0437ac0fb81cfb", "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"}], "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-07-30 15:26:48.837894 2024-07-30 15:26:48.837902 78e9cc23-28a4-410d-b562-1193f1544504 {"md5": "aecf1032c164af645854a128fd69916b", "pid": "972391010", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tumor"}], "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-07-30 15:26:49.113128 2024-07-30 15:26:49.113139 8252a9c9-b887-4844-9c75-4c9e974ed33a {"md5": "3682ec5488c476e2b6b6bf54f108f1b5", "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"}], "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-07-30 15:26:49.40136 2024-07-30 15:26:49.401371 31716369-64ba-4339-acdf-9e47f1aef0e9 {"md5": "9d2abd87482d924363e0c4091889a168", "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"}], "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-07-30 15:26:49.489509 2024-07-30 15:26:49.48952 74c3907a-704a-4c4a-b63c-3116bb8cc72a {"md5": "33de2e9a532948db010f63d9178e637f", "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"}], "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-07-30 15:26:53.326333 2024-07-30 15:26:53.32634 c9dfae58-f8fb-48e9-a4a0-94f9e713717a {"md5": "0faa18eea6937ee6a983d11c6eb19349", "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)"}], "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-07-30 15:26:49.79576 2024-07-30 15:26:49.795775 58dd4f33-2c7c-46ae-be5e-e7108bc8d5e7 {"md5": "5b44e347ec912af5f75cea8f6555a1ef", "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"}], "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-07-30 15:26:49.908267 2024-07-30 15:26:49.908275 c942a667-8f4d-4d8d-8be4-0a8c1c28583d {"md5": "23690fc23b1f5a321404e1699f9f05ca", "pid": "969678363", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:26:50.0009 2024-07-30 15:26:50.000911 60330c73-c8f0-43f2-b01f-4d0199301321 {"md5": "be494cd4f02806b8ed490eb7508ef0c6", "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"}], "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-07-30 15:26:50.101878 2024-07-30 15:26:50.101887 18a4ae49-44f5-4c28-a0bc-5bb4baffc220 {"md5": "e40857e85cd60e9241be20a9f3dccd32", "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"}], "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-07-30 15:26:50.192134 2024-07-30 15:26:50.192146 9d2bda90-46e4-42f0-962b-a63851f3d9b2 {"md5": "c8b74e29c1c9072cc50f0fc4681dcf2f", "pid": "968634737", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:26:50.293144 2024-07-30 15:26:50.293155 19c44309-67f5-4d22-9731-25ba489a3bb2 {"md5": "3ded776044acf1fc2957dc0c4eb07cdd", "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"}], "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-07-30 15:26:50.381484 2024-07-30 15:26:50.381493 de5e9011-aea9-4712-b87d-51709c2d8d6c {"md5": "9f9093468238019d3df30fa5deb8ba9d", "pid": "968387705", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kegel"}], "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-07-30 15:26:50.464018 2024-07-30 15:26:50.464022 591cb70b-3593-4c94-9596-b3dd64ae49b8 {"md5": "b1ec5994d65d346fa9104269c256e8e7", "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"}], "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-07-30 15:26:50.51831 2024-07-30 15:26:50.518318 5cfb729b-ce3d-4fd7-bb69-12dbeccaffc6 {"md5": "903bea04b693efdae890c91f35dbcb3b", "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"}], "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-07-30 15:26:50.594071 2024-07-30 15:26:50.594081 b591bafb-fc9f-4e60-ac5f-bbb1df91c176 {"md5": "e2a0284b5449ffbde232b0771324c3f9", "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"}], "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-07-30 15:26:50.698066 2024-07-30 15:26:50.698075 543afad2-f3b3-4b9d-8b4b-67a967f988e9 {"md5": "7fb874053ff876421507344e04664f59", "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"}], "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-07-30 15:26:50.791876 2024-07-30 15:26:50.791881 0011a45d-7378-432e-b12c-a54de22faf73 {"md5": "160aa41ae3d0cf6d0e2ed35a309c58bb", "pid": "967734657", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Onkologie"}], "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-07-30 15:26:50.871708 2024-07-30 15:26:50.871716 aa75cd9a-0935-47ef-ad3b-b37a69330e4f {"md5": "4b3d3494ddc9651439240c10211c91e4", "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"}], "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-07-30 15:26:50.977749 2024-07-30 15:26:50.977761 0fe5b1c4-3d0a-4cda-9fd9-16fc259fbb4f {"md5": "ee2a49647e815ab0167e349845223b3f", "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"}], "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-07-30 15:26:51.071039 2024-07-30 15:26:51.071049 65298705-8e1b-49a7-b637-9f04b71f8994 {"md5": "2e05b2b0dc3c1ee48be282f5c74e945f", "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"}], "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-07-30 15:26:51.269942 2024-07-30 15:26:51.269952 7175a0a6-8e3e-4677-a9f5-b41a1f48755d {"md5": "a5a133c0d40b0c2a82412a3bf068bd50", "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"}], "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-07-30 15:26:51.361875 2024-07-30 15:26:51.361888 c9c9a724-1e1a-485d-8d4b-726427615207 {"md5": "43f7db7727456c68c63ffc5c0775d7eb", "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)"}], "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-07-30 15:26:51.45332 2024-07-30 15:26:51.453333 7696f9a5-a05b-49d9-a5b1-83a8bc1122eb {"md5": "797e1c7582848a227de4ffbd877a9f95", "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"}], "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-07-30 15:26:51.520588 2024-07-30 15:26:51.520596 e0455554-b2c2-4234-9e55-c1e0248e2258 {"md5": "a9284b20c577b6d806d5367e66237c3e", "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"}], "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-07-30 15:26:51.595544 2024-07-30 15:26:51.59555 d707c632-9154-4cd6-94e9-598efb8d4765 {"md5": "0381a1f335c318c5e8bda68295ab1ca0", "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"}], "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-07-30 15:26:51.666177 2024-07-30 15:26:51.666185 f9909759-5701-4f00-98d7-0b7e3036a2f5 {"md5": "27e31c61860f1f02f5864ab191c5bad7", "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)"}], "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-07-30 15:26:53.14674 2024-07-30 15:26:53.146754 19867ce3-a738-49b3-b796-94463d25271c {"md5": "913dadb82b152a401d684f5e9e8e35b8", "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"}], "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-07-30 15:26:51.741894 2024-07-30 15:26:51.741902 bd4fa5c7-6301-4e89-92a2-e88ab0e462de {"md5": "4207f03d6d295db538756e2d8ba0acd5", "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)"}], "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-07-30 15:26:51.812312 2024-07-30 15:26:51.81232 5f75bb15-e536-46b5-9138-53c8c17e1f6d {"md5": "061deb0f263404f7852b4f01564770de", "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"}], "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-07-30 15:26:51.879402 2024-07-30 15:26:51.879409 76bed7e9-7e47-4811-842c-91ddc5e8047c {"md5": "927b1321ac7c6f44151b312d4a79177d", "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", "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-07-30 15:26:51.951359 2024-07-30 15:26:51.951367 a0da5d05-88c6-448f-a400-738c3a61ecb7 {"md5": "cc62ed1034f2b2350caade0c15c7e8db", "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"}], "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-07-30 15:26:52.028611 2024-07-30 15:26:52.02862 81fad9e9-9b73-4a99-ad4f-83dcab71cd56 {"md5": "2fdad8e35365a19657ef0af7004030ca", "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"}], "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-07-30 15:26:52.106503 2024-07-30 15:26:52.106511 a0bef7e2-e1e4-48e3-a645-d260f4d47320 {"md5": "2dd4a2da97628aced7ea6b2808f3762b", "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"}], "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-07-30 15:26:53.240092 2024-07-30 15:26:53.240103 7f125981-a8e3-4aef-8a39-5f99cb061c64 {"md5": "82976cce95be23d95fffe38e0f7db17e", "pid": "96317066X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Manufaktur"}], "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-07-30 15:26:52.188545 2024-07-30 15:26:52.188554 d89be3f8-c12d-4c00-99e2-e736492074a8 {"md5": "a85ef1a82974d7904ea1da51f77e0f22", "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"}], "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-07-30 15:26:52.264527 2024-07-30 15:26:52.264539 cc50be18-64dc-465e-84f8-0e5a58ce58ce {"md5": "5fccda872780bc3151b9bcbf0c7b3fa1", "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"}], "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-07-30 15:26:52.353905 2024-07-30 15:26:52.353913 1842c896-9807-49d1-ab80-ce1871f06742 {"md5": "f258fa42fdcd17ec98b64d3f92760999", "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"}], "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-07-30 15:26:52.435986 2024-07-30 15:26:52.435994 aa2129bb-c92c-4289-a14e-d1bd217bc436 {"md5": "daf76e38e824dbd5502e5428cdfb768e", "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"}], "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-07-30 15:26:52.512108 2024-07-30 15:26:52.512112 90abece7-f384-4502-bc95-4c46483a7061 {"md5": "ae51212867ed59568647c8353a03b533", "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"}], "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-07-30 15:26:52.574732 2024-07-30 15:26:52.574736 696fa9a3-5cb8-4c18-83f0-b8246f075518 {"md5": "6458a201774e2f762dbc6b6bdcd8e920", "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"}], "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-07-30 15:26:52.642539 2024-07-30 15:26:52.642548 4997691e-3754-4caa-a7b6-b1724f18a226 {"md5": "f71d5f2e8e9054eceff6a9f07f5ed53d", "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"}], "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-07-30 15:26:52.715594 2024-07-30 15:26:52.715603 ce8f1bb0-0d45-4f4e-a048-9189a3290884 {"md5": "a322bfff6655e6a56ab89bb92e445971", "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"}], "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-07-30 15:26:52.795423 2024-07-30 15:26:52.795431 c48ae50a-74dc-4b94-8337-b34f19d4da9b {"md5": "8bcadbbd9ca9e2a25c727fe561d7aac5", "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"}], "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-07-30 15:26:52.883041 2024-07-30 15:26:52.883051 019eb8aa-7f68-4f29-afef-c5348ac8f46d {"md5": "6fbedff0740e6bb7a39715eeb02a91ab", "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"}], "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-07-30 15:26:52.975567 2024-07-30 15:26:52.975575 68896165-11d4-4946-bb53-0302a7564e93 {"md5": "538d06c5aef9623dc306f2aa77bad751", "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"}], "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-07-30 15:26:53.057234 2024-07-30 15:26:53.057243 05cc33b4-5b57-4d56-a2d6-0e0e2562c38a {"md5": "801b809969689850711a91a8dd64881e", "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", "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-07-30 15:26:53.503323 2024-07-30 15:26:53.503336 e8cea216-a3ea-4210-9f27-9ec5f7df2a08 {"md5": "c036c10fcf094f05d9ac400acc5f9d47", "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"}], "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-07-30 15:26:53.571904 2024-07-30 15:26:53.571908 e0734273-a13e-4478-aaf2-cbad0166666c {"md5": "6cb028b64c5b599484618f387e971683", "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"}], "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-07-30 15:26:53.645422 2024-07-30 15:26:53.645432 a30694fa-f449-4e77-8252-0ce7f5beecf9 {"md5": "80f8f33e8cffd7c73ddd1140a10bd269", "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"}], "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-07-30 15:26:53.731361 2024-07-30 15:26:53.73137 23ab9302-d6d5-48d5-9998-ea6c3ec0ab39 {"md5": "9b6186f1c64aef9ff16794ff899b2c5d", "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"}], "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-07-30 15:26:53.8196 2024-07-30 15:26:53.81961 63bac490-2f17-424e-a75f-a6c003225542 {"md5": "241f4a33aceaff4b7c9d6523b4311268", "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", "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-07-30 15:26:53.904521 2024-07-30 15:26:53.904531 13bff0b0-438b-4bbb-ae0e-c93ecd73f680 {"md5": "d73c9ed4e19421ac0a753a9cbd9c7e91", "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"}], "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-07-30 15:26:53.979962 2024-07-30 15:26:53.97997 f5736997-8b3b-4f46-898c-4454d0723ae1 {"md5": "0fd2b99733e887b8a37108362f0e7185", "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"}], "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-07-30 15:26:54.054366 2024-07-30 15:26:54.054373 ee7af1d6-2db8-48cc-8782-ef8537dc18ce {"md5": "ccf78f8b6c9cd70bb9ab2d6a2afb8951", "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"}], "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-07-30 15:26:54.126824 2024-07-30 15:26:54.126832 97a87a38-0166-44e5-bfcc-0d86b380fe04 {"md5": "b1bf46c04a927e23ed5c808c5b7affb3", "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"}], "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-07-30 15:26:54.201851 2024-07-30 15:26:54.201858 9e70b634-6424-4ddc-9aae-02d4c495473b {"md5": "ecbbc39db6fac83a5390b954d21d1db3", "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"}], "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-07-30 15:26:54.286442 2024-07-30 15:26:54.286449 7c4b833c-6ec8-438d-b0c3-8bc80d278735 {"md5": "f04e27fc8114b34c3efb221c20a38771", "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"}], "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-07-30 15:26:54.367448 2024-07-30 15:26:54.367457 345e8bcf-b623-4a7b-beb0-5f7f4c4eec15 {"md5": "e06ecc714871e91a1ae9de83926c30aa", "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"}], "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-07-30 15:26:54.45472 2024-07-30 15:26:54.454728 f0872763-d54c-41c7-a298-53b23bf301d7 {"md5": "7d20f3651fe0ac72b88131530cd70a54", "pid": "960161872", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Konstruktion"}], "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-07-30 15:27:10.599518 2024-07-30 15:27:10.599526 6cc66d86-46f1-4482-97c3-b0c0e4d01383 {"md5": "22861ed87c3469d921c36e924a668401", "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"}], "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-07-30 15:26:54.559181 2024-07-30 15:26:54.559184 a1c9ecf8-c0d5-4a10-894c-b771fd4e1211 {"md5": "fa10eb297fe01ba2f9ac982dea9b8296", "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"}], "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-07-30 15:26:54.653948 2024-07-30 15:26:54.653956 3a9e552a-ccfb-4c6d-952f-40f088832abf {"md5": "b8bd47fa607f04b440129ce3b43cd8d2", "pid": "959960775", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Honen"}], "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-07-30 15:26:54.724895 2024-07-30 15:26:54.724907 838db970-2a0c-41e3-a0bb-3dfb7e470579 {"md5": "e0471b82ba74f4ec35df181c66af84f2", "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"}], "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-07-30 15:26:54.821428 2024-07-30 15:26:54.821437 333798ec-0d84-4f1c-a059-113af88daa3c {"md5": "e6ce97448048233d742f19ea87a78217", "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", "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-07-30 15:26:54.911169 2024-07-30 15:26:54.911176 72dcf807-4be1-4071-9e62-fb5e835858c1 {"md5": "394cd20bb3397d02c163545a53b39059", "pid": "959710248", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Abgeschlossenheit"}], "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-07-30 15:26:54.985057 2024-07-30 15:26:54.985065 53214d8a-f80e-465e-b96f-e701b0639951 {"md5": "aa037ce4f600daf4cec162c75a391042", "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"}], "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-07-30 15:26:55.063149 2024-07-30 15:26:55.063157 e9203507-6fd0-4ad9-83ca-7d6d5edd0108 {"md5": "b28e5984c200eb0fc06389ca3f08069f", "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"}], "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-07-30 15:26:55.766615 2024-07-30 15:26:55.766625 c7617397-1507-4c5c-9159-6c89fd3d4068 {"md5": "e0e17567a171462a6ffb3d35a3fa2837", "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", "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-07-30 15:27:12.195991 2024-07-30 15:27:12.196006 1c5f01ae-3f10-48b8-9d16-300c31a7b2bf {"md5": "5b6ccbc374e7d10d215f55cae9fde9c8", "pid": "042829194", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Operatoralgebra"}], "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-07-30 15:26:55.155866 2024-07-30 15:26:55.155876 355e5610-eba3-409c-be2f-8a83032a327a {"md5": "8fc970ae6f6884763bf398b312add87d", "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"}], "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-07-30 15:26:55.237222 2024-07-30 15:26:55.23723 8fb1a4a1-0c87-421b-8fc1-a1c312b44e94 {"md5": "a38d509d8771024d03ed9974ba0adf2b", "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"}], "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-07-30 15:26:55.32453 2024-07-30 15:26:55.324532 a1e168d6-cfb8-428b-8d87-a9b18712e188 {"md5": "9415c4db60274f8e3f78ef4c78da70d2", "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"}], "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-07-30 15:26:55.393599 2024-07-30 15:26:55.393608 9e366a8c-f558-46f0-b3f4-4373633882f8 {"md5": "4581ada1627e58db273d814f544d651d", "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"}], "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-07-30 15:26:55.465568 2024-07-30 15:26:55.46558 a0fe46ae-b09f-4972-ae23-4eb6113e25dc {"md5": "c522b1917cf37cf99186862dfb9b989a", "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)"}], "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-07-30 15:26:55.542029 2024-07-30 15:26:55.542039 e0dd3cc1-d345-429c-b8d8-9c76050b6e42 {"md5": "6c26d6044b181c5e1edac427c2d413fc", "pid": "958121966", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Linguistik"}], "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-07-30 15:26:55.616234 2024-07-30 15:26:55.616236 f6d6f87b-a055-49ca-93d1-3f0d459bc54f {"md5": "3b87ffd85a47edec8160bb122fb6b8f5", "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", "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-07-30 15:26:55.685941 2024-07-30 15:26:55.68595 e8b86e36-6d6f-456d-9e2d-b8ffb09163d2 {"md5": "408b3cb2f312c6025f582437f4046668", "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", "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, 1871)"} 1 +2024-07-30 15:26:55.845608 2024-07-30 15:26:55.845615 f58736d0-49e7-411a-bf28-f8e6ca12662f {"md5": "ed9de9648f7f31cc9573bcca8ac75e63", "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"}], "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-07-30 15:26:55.929148 2024-07-30 15:26:55.929156 2b34a388-0dfe-4e98-9541-454d9e28161b {"md5": "176edc170d48815d32f60f31fad0cbe5", "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.)"}], "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, 1814)"} 1 +2024-07-30 15:26:56.024036 2024-07-30 15:26:56.024045 28d54543-4fe4-4160-8182-dd6fdeba17cf {"md5": "a271df780322faf5863b2ec02dbf053b", "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"}], "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-07-30 15:26:56.103975 2024-07-30 15:26:56.103984 5c781995-b971-4c43-8b2a-a330bcfc1952 {"md5": "4ee953e4da64869bca787c260d9fe637", "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"}], "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-07-30 15:26:56.189299 2024-07-30 15:26:56.189308 0ac7ae51-8104-428e-ac6b-f99c4103ea66 {"md5": "b3c04172cc10284288e9669ef12096f3", "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"}], "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-07-30 15:26:56.259657 2024-07-30 15:26:56.259664 30266837-d2c1-4487-b9a8-41a7f783a84a {"md5": "319155cd3ed123dc20d4ecf446aaaa3b", "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"}], "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-07-30 15:26:56.33205 2024-07-30 15:26:56.332059 73cc00f1-b61f-46dc-83d7-0bc38794b4f0 {"md5": "ce069b7a611f18bfceddc811b8515c66", "pid": "955633087", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Windkanal"}], "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-07-30 15:26:58.411829 2024-07-30 15:26:58.411838 f38ac348-00f0-4444-8344-60f30caff973 {"md5": "93e1388c73f1cd10c25dd0196890f6d5", "pid": "952966336", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gemischbildung"}], "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-07-30 15:26:56.425271 2024-07-30 15:26:56.42528 1229089a-cf03-4531-93f5-4b4093fd3399 {"md5": "19c483c13e3ce84bbd7caca44c7a2d41", "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"}], "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-07-30 15:26:56.509711 2024-07-30 15:26:56.509719 6d9ec4a5-161b-4d01-afd9-f41171ce1eea {"md5": "95b4c171b00fff1d6f9d88649984080c", "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"}], "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-07-30 15:26:56.582235 2024-07-30 15:26:56.582244 4e2264e8-cb0a-4d8c-9c27-0e3fede06fe9 {"md5": "bc3262ee42b3e3e4bf09e98c21dc2d4d", "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"}], "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-07-30 15:26:56.650338 2024-07-30 15:26:56.650341 67e90977-631a-4382-aaf4-889c1f9c3065 {"md5": "1718322024d0d2868364f92e7b00eb4c", "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"}], "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-07-30 15:26:56.714422 2024-07-30 15:26:56.714431 4d709192-4cb6-4f10-b7c5-b3d500c5ad93 {"md5": "1726540cedecbcfbedbb36541c5588a8", "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"}], "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-07-30 15:26:56.786155 2024-07-30 15:26:56.786164 2199f94b-3167-4da5-9166-8220660d7371 {"md5": "05fe917d95bf6e9e1a9910a54ca9fd4f", "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"}], "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-07-30 15:26:56.859014 2024-07-30 15:26:56.859023 9bcd1253-2e29-4220-a732-37da9971ffd8 {"md5": "b7f4c3806967de8152087e72d1f02f31", "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)"}], "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-07-30 15:26:56.938888 2024-07-30 15:26:56.938896 dfb93503-310b-415c-87c4-7e802620cd0f {"md5": "be60837ede0469fea2e2adc2eb035eab", "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"}], "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-07-30 15:26:57.017047 2024-07-30 15:26:57.017055 a31017a1-3645-4557-91c6-946176d5f734 {"md5": "281300961f33cbd9610d9bf1921790cb", "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", "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-07-30 15:26:57.098053 2024-07-30 15:26:57.098062 662c2cc9-6648-466b-8d45-b0673f41e072 {"md5": "2a5b9c812159777fd06d72c5b91c00e7", "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"}], "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-07-30 15:26:57.175957 2024-07-30 15:26:57.175966 918ff78e-381f-42ce-9077-cb343c9d1dbb {"md5": "73d366a09e46609c906785c0856c8f70", "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"}], "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-07-30 15:26:57.25749 2024-07-30 15:26:57.257501 efa0beb5-fc06-4af9-bc4e-6bdc2910c559 {"md5": "79e47c3cf4a97c78e1318d09b4dcd581", "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"}], "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-07-30 15:26:57.354312 2024-07-30 15:26:57.354324 5360acb3-3f15-489a-84dc-b6669cceff86 {"md5": "0b2cadd9179e2ae15fc558e5cb759ffe", "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"}], "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-07-30 15:26:57.446272 2024-07-30 15:26:57.446281 b92d8b32-0585-4d5d-9c6c-f6c2a79f7464 {"md5": "473d5b83e968b0171bb1fb802f66807b", "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"}], "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-07-30 15:26:57.517008 2024-07-30 15:26:57.517015 41184b64-6335-4617-9c5f-19f1180f149c {"md5": "7df6852beaee5f7b12dc9e9585e088a5", "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é"}], "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-07-30 15:26:57.581087 2024-07-30 15:26:57.581095 9a2f2b83-f4dc-4682-8143-32c6ca929ea4 {"md5": "b4c715d7b2cde5e10d6fcd68703e4021", "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", "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-07-30 15:26:57.652022 2024-07-30 15:26:57.652031 628c1dcb-3cf3-4169-8f59-5498a960d8cc {"md5": "5f7383e34edb00965992ce211927d8dd", "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)"}], "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-07-30 15:26:57.715206 2024-07-30 15:26:57.715214 7509ca1f-8041-4bb9-92f2-3d24ed8c29b9 {"md5": "6137b4a04467b89998b9fea77ed24620", "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)"}], "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-07-30 15:26:57.809764 2024-07-30 15:26:57.809779 27aafd85-a6a0-4c55-b59f-13edd09e8583 {"md5": "7efdf33e888cfb50b3c7e58f36ae26aa", "pid": "954021185", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:26:57.883871 2024-07-30 15:26:57.88388 1f40ae76-8035-4924-b67c-0af86946e993 {"md5": "c65740d3e7750f8deb0aa5814e15e9a2", "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"}], "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-07-30 15:26:57.958682 2024-07-30 15:26:57.95869 222d896b-67cd-4a20-a81e-8868f3d93abc {"md5": "3d2063e74b6683162b25132bf1731868", "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"}], "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-07-30 15:26:58.022529 2024-07-30 15:26:58.022536 3dd088dc-bea9-4cc6-9496-6df9043eaa17 {"md5": "68ffa365faf4510b53d4d0f31fd6b7b3", "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"}], "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-07-30 15:26:58.093386 2024-07-30 15:26:58.093394 ec30a0ab-d052-4c64-aa41-cb5feb2780dd {"md5": "9b31e3ff7385fa156eb2206859f30db4", "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é"}], "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-07-30 15:26:58.160672 2024-07-30 15:26:58.16068 23c64af3-9904-4765-bbbc-bc74655bed64 {"md5": "7667fe529a5fe80b79019d9045ce2950", "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"}], "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-07-30 15:26:58.232087 2024-07-30 15:26:58.232096 42986dc2-a099-4fab-9de6-d16c9896db50 {"md5": "afd0ea3ead2176e05af4fae08b8dcd0e", "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"}], "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-07-30 15:26:58.319775 2024-07-30 15:26:58.319787 6d9ec97e-d71e-4e85-9cbf-b6397a991d3a {"md5": "92de3f088712d56bb5f6edefce784465", "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"}], "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-07-30 15:26:58.494752 2024-07-30 15:26:58.494761 019819f6-9ece-4e67-b5a8-099e2cbf9e83 {"md5": "7089538793f90d73ef219bfb017484c1", "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"}], "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-07-30 15:26:58.587267 2024-07-30 15:26:58.587275 44a2b171-a913-4477-8d5d-6b528c1ef4a9 {"md5": "bf143dee15e5fd3da51fa854ac32a4d5", "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"}], "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-07-30 15:26:58.684729 2024-07-30 15:26:58.684737 c2547612-e843-4259-93a8-64c9f203bb78 {"md5": "dc88a798d285cb919116f77fbbc00824", "pid": "952794357", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Decodierung"}], "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-07-30 15:26:58.738887 2024-07-30 15:26:58.738891 aa1307d5-0fa1-4cd5-ada5-4605c195894f {"md5": "d52ec1e81f167f6cae4b8157e6b14e43", "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"}], "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-07-30 15:26:58.802804 2024-07-30 15:26:58.802814 5cf4eb9c-80d8-4f06-abf8-a385384bf2d5 {"md5": "3758180b9060f1b711e51adf28abb63b", "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"}], "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-07-30 15:26:58.943243 2024-07-30 15:26:58.943255 d7322da5-6dfb-42dc-91f4-2849902327fe {"md5": "bbb2bdc4f7f5ea31a0e5cd383d219414", "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"}], "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-07-30 15:27:00.445565 2024-07-30 15:27:00.445578 474f8fc0-5e65-4cc0-bea1-f620bdf25b96 {"md5": "2b329d0c277f5f9213152134fbc540e3", "pid": "950268593", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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 (1743)"} 1 +2024-07-30 15:27:44.033147 2024-07-30 15:27:44.033155 e3131277-365b-4dff-b423-9a1486b559cc {"md5": "186fe461a01b1bd2ec593179bc60ebe6", "pid": "040654648", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verantwortung"}], "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-07-30 15:26:59.173925 2024-07-30 15:26:59.173937 8bf63f0e-acb2-4720-99cf-155c6ca966eb {"md5": "7d2da45c98becab5c4676c888babbb34", "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)"}], "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-07-30 15:26:59.331823 2024-07-30 15:26:59.33184 f9ffd410-d2b5-4329-964e-084336f64885 {"md5": "e1a6a0ed7e407bfb3be7cf11b92ea1bf", "pid": "95171337X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:26:59.412428 2024-07-30 15:26:59.412441 e0a615c9-26bc-4a8c-a075-f7ee51c5af06 {"md5": "987255721041869cd96c89363fa8cccd", "pid": "951567241", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einbau"}], "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-07-30 15:26:59.502236 2024-07-30 15:26:59.502245 fb653521-6a43-4418-a0be-3891b36fe842 {"md5": "392a4ed93a7b1285a049534ab7915239", "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"}], "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-07-30 15:26:59.595065 2024-07-30 15:26:59.595078 2bfbadc6-cbfc-4c73-8883-eae9dfd39b05 {"md5": "0777fee4539c0604bb89c09cb161d6c0", "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"}], "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-07-30 15:26:59.692727 2024-07-30 15:26:59.69274 b537dbbd-c3ff-4a21-869d-c1380104ec23 {"md5": "e381b7f8499ca402438380de84a0927f", "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"}], "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-07-30 15:26:59.758668 2024-07-30 15:26:59.75867 6cc743c9-54d0-479d-931a-6b5662f08518 {"md5": "d80c6c6c981cac482c23ef9fd2f94314", "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"}], "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-07-30 15:26:59.832555 2024-07-30 15:26:59.832565 363966c6-b5e2-44ed-8fa4-4baffede10da {"md5": "97d281fbc4e0111910bd68814640632b", "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"}], "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-07-30 15:26:59.91718 2024-07-30 15:26:59.917191 7eb01f58-b9a0-4548-8d6b-7956f0587749 {"md5": "3d2fa25f3ed8082e87e3c937c7a45f97", "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)"}], "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-07-30 15:27:00.02223 2024-07-30 15:27:00.022237 dbacf287-699a-4cf7-ae5e-b2f5cdd5033d {"md5": "4ef7742ff17182d3ea3ca478c544ca54", "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"}], "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-07-30 15:27:00.085836 2024-07-30 15:27:00.085847 f7724c6d-0188-4deb-b3a6-b230e6b636fe {"md5": "98dc674daa20aae9dd13f8971e4f61df", "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"}], "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-07-30 15:27:00.16973 2024-07-30 15:27:00.16974 6e3b77a8-9ce4-44dd-9ea6-f4cc6dda455b {"md5": "c574b5692da43415d761872af7bbe4f7", "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"}], "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-07-30 15:27:00.261714 2024-07-30 15:27:00.261727 05004b84-e003-4e2d-b551-c5bdef8470ed {"md5": "d12acf9181b17c92dbd7137e923388d1", "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)"}], "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-07-30 15:27:00.349114 2024-07-30 15:27:00.349128 5398414e-0bba-4491-8f87-c41514935ff5 {"md5": "2f5a08ccd9f1a7f34f7db5d7a1711b19", "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"}], "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-07-30 15:27:00.535208 2024-07-30 15:27:00.535218 a72f22dd-2c95-45c1-8a3a-e73163bf2e68 {"md5": "ea9811c0ef5eb2853b490e3244f68b84", "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"}], "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-07-30 15:27:00.623166 2024-07-30 15:27:00.623179 7ad0d3d8-3916-4f07-995f-e5033f4273a5 {"md5": "09d37efe294ef88d34fc04d65ce010bb", "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"}], "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-07-30 15:27:00.701939 2024-07-30 15:27:00.701945 76c7dd64-40a2-4f2d-8dec-c37880c85d0e {"md5": "6c1ca1e037131af8bac37345d7fab005", "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"}], "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-07-30 15:27:00.767841 2024-07-30 15:27:00.767844 3518ab44-a57a-4f63-be08-de90e0d1e2b5 {"md5": "6345898ef2c79f6bee1f2c359e138241", "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)"}], "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-07-30 15:27:00.830667 2024-07-30 15:27:00.830673 1f13db57-d1d9-4062-a141-54b92267cbb2 {"md5": "79cd558bd91beed173b383123ce33ff7", "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"}], "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-07-30 15:27:00.892021 2024-07-30 15:27:00.892028 0d43b2f8-2e0d-4440-af4a-82edb086a80a {"md5": "68075759bc0556228ab7e6414e3d6a55", "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"}], "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-07-30 15:27:00.955337 2024-07-30 15:27:00.955346 d37257d0-29ff-4767-b23d-36ed07c6cb87 {"md5": "6cbfb9dd8855b5af8d3bd390450b9917", "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"}], "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-07-30 15:27:01.027097 2024-07-30 15:27:01.027105 92453d89-4180-4981-86ce-ecc8f4ba3af3 {"md5": "3dc92b4b59e1f824204feb8beb873749", "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"}], "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-07-30 15:27:01.110276 2024-07-30 15:27:01.110285 0834f2f7-efdf-4d36-8d8a-611cc83c679a {"md5": "4e3c465c76dcd8303bf1f5553177a523", "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"}, {"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"}], "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-07-30 15:27:01.192581 2024-07-30 15:27:01.192594 1313b738-341f-47ea-b30f-853d8d2fa7f7 {"md5": "c994952999941f3c781acea0a0b86857", "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"}], "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-07-30 15:27:01.277234 2024-07-30 15:27:01.277244 d3d9a996-b4ab-4308-9512-a2864fbb5176 {"md5": "3427f3c89e1afb175dc4ba48c3d0a2dc", "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"}], "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-07-30 15:27:01.374981 2024-07-30 15:27:01.374991 aa6a7922-2e24-4573-9170-103e89f3e5d3 {"md5": "8deb39adac273a58a3d2f382d7d1b974", "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"}], "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-07-30 15:27:01.47032 2024-07-30 15:27:01.470332 f38e4185-4eb2-4e20-9c18-918d6caecc2b {"md5": "6f04307ad1cda113d794c2f43f9a6970", "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"}], "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-07-30 15:27:02.573507 2024-07-30 15:27:02.573515 3f643ab8-e245-44dd-adb4-1ebd88264515 {"md5": "4893cca718734c7941278c0c23171129", "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"}], "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-07-30 15:27:01.563356 2024-07-30 15:27:01.563367 7bc5ed27-b3e3-4775-9c96-7fc136c2de71 {"md5": "d547faf469e60331d35eac571df3bd5c", "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"}], "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-07-30 15:27:01.640629 2024-07-30 15:27:01.640637 afcd3f0a-6289-4aa2-9b7a-3a7fba4b0290 {"md5": "73b03c2f243bdc38b587658a79f9350a", "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"}], "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-07-30 15:27:01.70928 2024-07-30 15:27:01.709288 56c4f273-e2f9-468d-b921-d50cd1d71725 {"md5": "2c50e51b3c4eb0deae7a5a29af510b04", "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"}], "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-07-30 15:27:01.784807 2024-07-30 15:27:01.784812 df956444-f9b5-414c-aa25-f7a1d71962e5 {"md5": "07dfb817bd52e39ac7961d092dff0804", "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"}], "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-07-30 15:27:01.839518 2024-07-30 15:27:01.839527 5bd554c9-1e93-4cb3-a7b3-a4a6e3064e08 {"md5": "5b43ed4fa0a506787eb82f70a2a1336f", "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"}], "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-07-30 15:27:01.914791 2024-07-30 15:27:01.9148 c0022a51-2944-45a2-a80c-dc13e8adca69 {"md5": "320c2a87695ca33ff83df67914d1bb81", "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"}], "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-07-30 15:27:01.995881 2024-07-30 15:27:01.995892 f0d4c6dc-8257-4d3f-8090-6e95ab996630 {"md5": "6dbb49df54105dbfdf18103aa9d8ad2c", "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"}], "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-07-30 15:27:02.081783 2024-07-30 15:27:02.081794 ff19a41c-a72e-4527-ae16-2ea6ccc985a1 {"md5": "77a994e27d3d74a03accc2c226867d18", "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"}], "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-07-30 15:27:02.166319 2024-07-30 15:27:02.166331 5ecb6ce7-e9a9-4101-9deb-024e1d30643b {"md5": "26290c8b7850a66e02e28bdf595dd88c", "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"}], "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-07-30 15:27:02.23774 2024-07-30 15:27:02.237747 d6008a09-5014-4670-805a-ad6fea60cd31 {"md5": "ba207337804ec6eb1a75fdee5f3380a4", "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"}], "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-07-30 15:27:02.306527 2024-07-30 15:27:02.306539 025cfc2f-db89-4b89-b311-72801d708599 {"md5": "85a2874446cec258f2eaad068b31349d", "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"}], "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-07-30 15:27:02.376257 2024-07-30 15:27:02.376264 63738c92-2158-4a3c-a91c-36e86f826c30 {"md5": "baacd7e57ecf66637931509ee2d2f769", "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"}], "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-07-30 15:27:02.442655 2024-07-30 15:27:02.442691 48bf1d45-3ff8-4ed7-a9c5-b308862fa557 {"md5": "7c40ad38e35091ddb5f555ca371c1be8", "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"}], "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-07-30 15:27:02.506578 2024-07-30 15:27:02.506586 67065d03-6b82-43be-a2fa-4f27e8ee7b13 {"md5": "d2c1e3719f97e4c819b698804dd8ed5f", "pid": "94736093X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:02.641524 2024-07-30 15:27:02.641532 5dbfd98f-65a5-428f-8a10-a015d0881a89 {"md5": "3332258540edffd4cc52d412bc75be63", "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"}], "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-07-30 15:27:02.712573 2024-07-30 15:27:02.712582 4ac9b3bb-7afa-4a96-a421-68d864287dd6 {"md5": "645f1175084e22fe1d125c6ee7d4ee0a", "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", "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-07-30 15:27:02.798052 2024-07-30 15:27:02.798062 aee2476c-1634-4ecf-8ce9-67178919b2f2 {"md5": "5df210a59cb3b5b35aecf152464881e9", "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"}], "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-07-30 15:27:02.847932 2024-07-30 15:27:02.847935 3c8c7ca6-8967-4cb9-aafb-e674c670c66c {"md5": "71b2e7e334691afcfc9e9c6af545ec9c", "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"}], "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-07-30 15:27:02.909586 2024-07-30 15:27:02.909595 293de3db-3351-4438-ae18-51423163f485 {"md5": "042bab32250e3563846ccf290ce2a6ff", "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)"}], "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-07-30 15:27:02.979719 2024-07-30 15:27:02.979727 19719c0e-9be2-40b4-ac8b-125bf7a41756 {"md5": "85854dfff3841479760283c64109a50e", "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"}], "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-07-30 15:27:03.057576 2024-07-30 15:27:03.057585 4042f369-88fd-4a70-8ce2-ad522dbf7576 {"md5": "c9634b2e73f31bd3ba0dc09cb518d708", "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"}], "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-07-30 15:27:03.135847 2024-07-30 15:27:03.135855 8dd7119e-06f2-43ae-91c1-35a42c7dd154 {"md5": "35e245985b806b35c2fa85c33a7b5403", "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"}], "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-07-30 15:27:03.20597 2024-07-30 15:27:03.205978 5e4efe22-bde0-45bf-a16c-844f4caac944 {"md5": "a7aa5d3b6f30136cb573777dd75f43c9", "pid": "946530629", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "AutoCAD"}], "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-07-30 15:27:03.282834 2024-07-30 15:27:03.282844 c48d9b29-7a80-4b4b-9e0d-9f98c9796d77 {"md5": "77975a87f871f60711a6705ff4f2b539", "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"}], "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-07-30 15:27:03.35301 2024-07-30 15:27:03.353019 60073d46-3be3-4e97-9c10-6719b8441039 {"md5": "a575b2e1fc894f06760f4da3b7855e25", "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"}], "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-07-30 15:27:03.420793 2024-07-30 15:27:03.4208 14ab2ae7-eba1-41b5-9c30-d2d5ffd8eee5 {"md5": "891eed9d377bbc9fb1532b071a98819f", "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"}], "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-07-30 15:27:03.909087 2024-07-30 15:27:03.909096 1f6fc192-b852-41e7-a011-84e080d821e4 {"md5": "8340af21b20f80240debac9c4fdccd87", "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)"}], "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-07-30 15:28:44.901904 2024-07-30 15:28:44.901911 5fb76bba-470d-4572-ad8f-4051feabe814 {"md5": "688447ad1c16483c440895be37588165", "pid": "041584929", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:03.493372 2024-07-30 15:27:03.493379 d2084e8e-f3a7-4b9f-adf2-3a3be57230d8 {"md5": "a1a39c1e8dc1997d8429c43b2280f733", "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"}], "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-07-30 15:27:03.566309 2024-07-30 15:27:03.566317 1f318fa4-dc9b-4dbe-b337-b45490e6d17d {"md5": "4b7658d27c38c82fe14107077a56a30e", "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"}], "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-07-30 15:27:03.646352 2024-07-30 15:27:03.646381 930eb584-30ab-4303-ac50-f7ba39c7c9f7 {"md5": "bab2390c400ce41dcf3780f4ccbbf74e", "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)"}], "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-07-30 15:27:03.727855 2024-07-30 15:27:03.727864 07fe75fd-7517-4cc0-a146-e4bcb009e6aa {"md5": "75d8067d41a5998f4ab7a130dcc73c1a", "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"}], "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-07-30 15:27:03.837063 2024-07-30 15:27:03.837069 5dd14622-2298-49f6-b886-8946b1d72a75 {"md5": "c56c3b7a3167d52dfe83df21aee5d377", "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)"}], "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-07-30 15:27:03.981811 2024-07-30 15:27:03.981819 fcbe8560-d79e-420e-90c9-1dda357b4091 {"md5": "115e5a8973969ed862325a318a0c69f8", "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"}], "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-07-30 15:27:04.057374 2024-07-30 15:27:04.057383 ae294791-5ebf-4f60-97c7-e6db0eed297b {"md5": "867195a126f690c8330e3d7e1695d2b5", "pid": "943836476", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Erinnerung"}], "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-07-30 15:27:04.143509 2024-07-30 15:27:04.143516 2d7400b0-aff0-423c-8a54-8f3a1c95d929 {"md5": "c6be583f63aff2d4d4086225b54f231b", "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"}], "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-07-30 15:27:04.220091 2024-07-30 15:27:04.220099 5e985415-7c9f-4f12-b828-fc1dc51b2721 {"md5": "34099f243d2f55544ece2e4e4fa5b9f6", "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"}], "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-07-30 15:27:04.288905 2024-07-30 15:27:04.288912 52cd3be9-ae2c-4e23-920b-8ba8896d4863 {"md5": "49b4e775d694ec4875d75594d636838d", "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"}], "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-07-30 15:27:04.360155 2024-07-30 15:27:04.360164 f6f220fe-fac6-4fd2-bf7b-6fd8a7cc7d57 {"md5": "4fa899c2fde21f7645d3fe293acd8b23", "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"}], "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-07-30 15:27:04.446995 2024-07-30 15:27:04.447004 742e6b65-36c1-4a1b-820d-e5adea4a42db {"md5": "0529f970bb68b53c9e8019263ca2ed36", "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"}], "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-07-30 15:27:05.584858 2024-07-30 15:27:05.584868 c9359495-ddca-46dc-b4ba-99348c98886e {"md5": "e08d224ec6f8b44b672e5bbeaef889b5", "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"}], "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-07-30 15:27:04.520691 2024-07-30 15:27:04.5207 f2bd991f-37fe-48f5-90bc-b6212973704a {"md5": "9dd60ace93b2faa29694e5fa1db308f7", "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)"}], "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-07-30 15:27:04.597009 2024-07-30 15:27:04.597021 35474641-8763-45c9-8c5d-28c84e78879a {"md5": "01e440cabcf600c97880af3448b3705d", "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"}], "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-07-30 15:27:04.676961 2024-07-30 15:27:04.676972 9a0216e2-6654-45bf-943c-123f7c39446d {"md5": "5af942dd4f9a3d6efe30e4743860cbe4", "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"}], "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-07-30 15:27:04.755478 2024-07-30 15:27:04.755487 69c616ab-485a-4634-9c64-f85824a08ae9 {"md5": "8e8766e2bf1f0007edc83bcc109992e1", "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"}], "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-07-30 15:27:04.840162 2024-07-30 15:27:04.84017 57200ff2-9223-49b6-9940-190dbe1398da {"md5": "f7245c9ad104b60117993ca765175fab", "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)"}], "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-07-30 15:27:05.496424 2024-07-30 15:27:05.496433 bf279367-b040-4b41-8fa4-09b2530eebbd {"md5": "f699861fad6a1659b304bb18bfa3ccac", "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"}], "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-07-30 15:27:04.901434 2024-07-30 15:27:04.901437 ca029d40-79b1-446d-b62e-31eb33fc356b {"md5": "ca3e801c5cd9426810edb80a5190b720", "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"}], "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-07-30 15:27:04.981418 2024-07-30 15:27:04.981427 829eee81-c629-43d1-97bd-680a1d2da8f1 {"md5": "2167a373ee8c5d6bcfc50f0f3ccfac0d", "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"}], "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-07-30 15:27:05.056893 2024-07-30 15:27:05.056901 aa5245a4-5a31-42f7-b76a-ebbf78f303e9 {"md5": "7f1ceab2f81d931a1b8ade367bef6c39", "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"}], "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-07-30 15:27:05.142137 2024-07-30 15:27:05.142149 3078cec8-16c0-46fc-badb-e825904991dd {"md5": "85b658a7865efadc03ef6278d5d1707d", "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"}], "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-07-30 15:27:05.223432 2024-07-30 15:27:05.223439 c1e1aada-c48f-4730-a7fc-b95d536ce146 {"md5": "34019ee3b8b429784d9868b0302f4a57", "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)"}], "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-07-30 15:27:05.308885 2024-07-30 15:27:05.308893 466721b4-cf64-417d-9126-c83f84349bed {"md5": "498793c1f7874fec96ecec6f046aa260", "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"}], "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-07-30 15:27:05.401213 2024-07-30 15:27:05.401223 a8173065-6e46-49b1-aebe-a9802467fa13 {"md5": "f6de86e59145717d3aeec210ce39440e", "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"}], "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-07-30 15:27:05.658664 2024-07-30 15:27:05.658671 73fc24f2-19c4-48d8-9a8d-88fee3037c98 {"md5": "929704c916d9506b341d00aedcf64a82", "pid": "941131572", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ordnung"}], "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-07-30 15:27:05.737343 2024-07-30 15:27:05.737351 ada81d7c-ea7e-46f6-9fcb-522571e45b98 {"md5": "6d66f56129bb359c91bf284828299644", "pid": "940921588", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Butanole"}], "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-07-30 15:27:05.806177 2024-07-30 15:27:05.806185 51e7ccf1-48a9-4a63-81cb-69a9c99be157 {"md5": "50be3b13df83574969fd84a25db017a5", "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"}], "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-07-30 15:27:05.886422 2024-07-30 15:27:05.886431 9cd0558a-d76a-4a82-a18e-da493420dc63 {"md5": "76ef60c634f5c8ed58377dd97fa000d1", "pid": "940788187", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Baukonstruktion"}], "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-07-30 15:27:05.942864 2024-07-30 15:27:05.942872 80367c8f-3087-4c73-adf1-87641516f4f3 {"md5": "bab5283a46ec3d9479dd13ee84d994bf", "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"}], "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-07-30 15:27:06.018391 2024-07-30 15:27:06.018401 e0f8b44a-4de2-4e40-bddf-e91dce3e9992 {"md5": "b69bb4442408b706d03a2320f398704a", "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"}], "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-07-30 15:27:06.091066 2024-07-30 15:27:06.091074 21633c68-ef14-4059-bfac-23941e4e5ec3 {"md5": "2bbf1444bebc1465b70079960e098472", "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)"}], "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-07-30 15:27:07.202079 2024-07-30 15:27:07.202087 498d76cb-640f-4860-bd76-62f35c131494 {"md5": "8e07d334f592be118a20470e49f0505b", "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", "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-07-30 15:27:06.165776 2024-07-30 15:27:06.165782 82f85593-d076-40b3-9a82-ed0a6de00bc7 {"md5": "e61f3354abb3682f7b44411934ccbd1d", "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"}], "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-07-30 15:27:06.25436 2024-07-30 15:27:06.254371 a3a0955b-407f-4126-995d-3365aeb6f974 {"md5": "0b5242f685f36f9dc2df1b0ddee66bef", "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"}], "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-07-30 15:27:06.351719 2024-07-30 15:27:06.351735 b61caae4-ecd4-4941-8ce5-9d1d6a1138c0 {"md5": "c3dbdc8d3b69d55b7beddd89ae3653e3", "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)"}], "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-07-30 15:27:06.433767 2024-07-30 15:27:06.433776 4ee5cd2f-0635-41c9-9ee0-17da2d436de8 {"md5": "00f5f7db3d479c3cb4b94b0779771401", "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"}], "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-07-30 15:27:06.525705 2024-07-30 15:27:06.525718 f6ae4153-48ba-42d2-9c6b-cfaf32ec069f {"md5": "aaa4bc49e0e1fe00b268c55fa14120b4", "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"}], "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-07-30 15:27:06.601047 2024-07-30 15:27:06.601054 656cd784-ccdc-45e3-872f-5a25005a5208 {"md5": "af48f28532f1cdf195a0a247b96c9861", "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"}], "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-07-30 15:27:06.66587 2024-07-30 15:27:06.665878 57a5d28a-b74d-42e3-8af8-250eedcf9e47 {"md5": "dd9273ed5f8120a169ab27429d1a6264", "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"}], "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-07-30 15:27:06.730618 2024-07-30 15:27:06.730625 d3b55f10-dff3-4661-af19-861373601ed4 {"md5": "365d774d2a78b41d4bc5592b37d2347e", "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"}], "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-07-30 15:27:06.797192 2024-07-30 15:27:06.797199 3af1e565-ca92-4338-96e8-1cc97317b832 {"md5": "16ea406b353ef61956172510b58dd191", "pid": "940049570", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bekanntheit"}], "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-07-30 15:27:06.860692 2024-07-30 15:27:06.8607 96fca5eb-19e2-40bc-bc90-338d40dbc9a6 {"md5": "87b7b59954ce8ecad562639719481956", "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"}], "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-07-30 15:27:06.927718 2024-07-30 15:27:06.927722 4f4ef235-a6a9-4a17-bcea-31bb4ab181a8 {"md5": "5234baafad867f0dd5166525e55b6306", "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"}], "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-07-30 15:27:06.979099 2024-07-30 15:27:06.979107 ddfdf775-2b9b-4003-a3a8-2d01fa3a55e7 {"md5": "24a2e3920dd5af977e1197644d5e9842", "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)"}], "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-07-30 15:27:07.053 2024-07-30 15:27:07.053009 f4d905d5-49fc-45ac-b7d0-bb28439bec22 {"md5": "0eeb357b51a39869b673d23dffc5772a", "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"}], "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-07-30 15:27:07.123101 2024-07-30 15:27:07.123109 4780b10a-4162-494f-b02d-c0bc09f25868 {"md5": "cde1c9cbe572c37cc0443e7991938361", "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"}], "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-07-30 15:27:07.273346 2024-07-30 15:27:07.273352 9cf30be5-ddcd-41da-89c1-747d13ba3ea0 {"md5": "792a32aeb6416e0ba1022321bd57e159", "pid": "130749478", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:07.497936 2024-07-30 15:27:07.497945 b4bbce8e-1c15-4519-890e-a74d9649f26e {"md5": "9ae7ef7e7fd0e146888c61e09b1beb2d", "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", "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-07-30 15:27:07.575624 2024-07-30 15:27:07.575632 3e298d62-367c-40e2-8151-dc15f47097af {"md5": "ca7b4c0ce5b13fc3eb471142f25d449e", "pid": "130712930", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:07.650952 2024-07-30 15:27:07.650961 6d3dd512-5f38-47b4-93b7-1cc2423b87b5 {"md5": "f7637ca3d3d5fd4d5edc91620f6fa41d", "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", "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-07-30 15:27:07.725977 2024-07-30 15:27:07.725988 77f084c5-d980-4603-a5a6-45dc63a4fc35 {"md5": "14c098750d76f5168ea071e62d6cc311", "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", "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-07-30 15:27:07.801179 2024-07-30 15:27:07.801189 682b3699-ec52-491c-a0ae-8d9e45f34ffa {"md5": "501ce04b70435a06c2970fb954fbecfd", "pid": "130699152", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:07.880945 2024-07-30 15:27:07.880995 77bca441-f143-4295-a185-e41ff8b45f1e {"md5": "e0939910cf5534c907dbe5a0018c70b0", "pid": "130699101", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:07.964831 2024-07-30 15:27:07.964834 2c4bfd1f-141e-4d34-8962-257a1042e220 {"md5": "01a30df4e6c8c57a72836ab755cb7c2d", "pid": "130698644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:08.016313 2024-07-30 15:27:08.016318 51f6f869-954c-4e64-85f2-fc200c91df5d {"md5": "8a5d95515789966e55a1696f3e22dd17", "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"}], "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-07-30 15:27:08.171066 2024-07-30 15:27:08.171075 fa629bd4-2515-4d97-b5cc-547913500d24 {"md5": "de35b08243bcf872ab6edec12a3b9853", "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)"}], "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-07-30 15:27:08.259016 2024-07-30 15:27:08.259025 22fe5055-558f-4593-84d2-68e15b041041 {"md5": "184e1ea1e39cca77573c34adf64106f7", "pid": "043270328", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aluminiumhydrid"}], "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-07-30 15:27:08.44094 2024-07-30 15:27:08.44095 316d2942-0bc9-4af7-a39f-4c156661df52 {"md5": "dbee6ecab4ddb3493870604d6a6a4bb2", "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"}], "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-07-30 15:27:08.545343 2024-07-30 15:27:08.545355 d317f1e0-9347-410c-9f54-879c1f792f4e {"md5": "3880e3f29a3cc1a48af0204501b6f064", "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"}], "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-07-30 15:27:08.634621 2024-07-30 15:27:08.634631 8596dffa-2285-41ff-93f2-aa6d9d9e5163 {"md5": "785b513c4de599dde324d5442594c151", "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"}], "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-07-30 15:27:08.716364 2024-07-30 15:27:08.716374 420737c8-414a-4544-9e3a-241ed35e329e {"md5": "1fcf2c0958d1763c802e9f709faf3ad5", "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"}], "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"}], "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-07-30 15:27:08.798611 2024-07-30 15:27:08.79862 b6d7fdd0-9f44-4ee5-be8b-c803073263f1 {"md5": "97fffa4cc032cdc500a3fdbc6d55a07d", "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"}], "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-07-30 15:27:08.874455 2024-07-30 15:27:08.874464 76f2276d-7142-4aee-920a-6bc933362968 {"md5": "5000492df2c1685a619081171c42e011", "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"}], "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-07-30 15:27:08.95481 2024-07-30 15:27:08.954817 61359c10-9b9b-4961-b8d0-6727a10bae90 {"md5": "eb5bd44096c588867bd262672921e2fb", "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"}], "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-07-30 15:27:09.020728 2024-07-30 15:27:09.020735 4c100818-39cd-44b4-a8bf-d758e6bf848f {"md5": "b704034193c01fcab03964328663adeb", "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"}], "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-07-30 15:27:09.092194 2024-07-30 15:27:09.092203 6514947e-f49a-43bd-89e0-826dfdedc32f {"md5": "20cf71b1a74b8f5becbf46502230c3c3", "pid": "043166202", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "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-07-30 15:27:09.16148 2024-07-30 15:27:09.161487 1a394d12-8114-4015-a25c-a401bec6e12c {"md5": "7e5ba097a0e1ea98cdc04280f0845cf2", "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"}], "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-07-30 15:27:09.230737 2024-07-30 15:27:09.230744 82c57528-68ee-4b1a-8038-26f6bf8eb55c {"md5": "54e82cf5e7b6bd393db0ca70bf207e85", "pid": "043153607", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Halbleiterlaser"}], "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-07-30 15:27:09.293644 2024-07-30 15:27:09.293652 bfd3db0f-269c-4de8-9c8c-ead4d4289070 {"md5": "28617aade62f5c3a0470d1228130b2c8", "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"}], "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-07-30 15:27:09.382402 2024-07-30 15:27:09.382411 f72c48e9-d75b-4eef-9f2d-eec9eaa53662 {"md5": "9188a2e7a8d7ad3245ad8eb57c73008e", "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"}], "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-07-30 15:27:09.464305 2024-07-30 15:27:09.464313 0f84e010-b7af-49b1-a733-0e3f2b632e34 {"md5": "47a54df497cee4d86e9ce96d9244ba7d", "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"}], "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-07-30 15:27:09.533601 2024-07-30 15:27:09.53361 de9100b0-bd8b-4f4e-a7f8-7b36dd2030fa {"md5": "8a11676d22c21f0e9e49157b10c67ca0", "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"}], "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-07-30 15:27:09.617822 2024-07-30 15:27:09.617832 7f161e5a-65a6-4a9a-a2c3-c66e1d630c8a {"md5": "f77b3692e732fd64b6e45cf9b7033eeb", "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"}], "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-07-30 15:27:09.691951 2024-07-30 15:27:09.691959 c2f9f867-44ca-44a6-8602-4e0750db6210 {"md5": "a3aabd1fdb343bae496350332b88a6ef", "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"}], "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-07-30 15:27:09.770244 2024-07-30 15:27:09.770254 38c5f772-61b7-4a34-896f-8e06f2d6dc29 {"md5": "fb5697f213b88bc9d224fe5be5375e72", "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"}], "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-07-30 15:27:09.848276 2024-07-30 15:27:09.848284 104d7b3d-5853-4c2d-9849-b1792a96aafa {"md5": "3153fa84eb695938d9cc84e576c7c07f", "pid": "04311704X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Regelung"}], "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-07-30 15:27:09.926219 2024-07-30 15:27:09.926227 f388f4de-43ca-4a0e-92ee-5387c51805af {"md5": "7f17cf2af8540501dbcddc514f05ca25", "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"}], "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-07-30 15:27:09.996361 2024-07-30 15:27:09.99637 50d7b841-c16f-487c-be2f-c46c35637fd1 {"md5": "42fb42d7faffa91aca717712e3243e58", "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"}], "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-07-30 15:27:10.045284 2024-07-30 15:27:10.045286 d757a3ea-1374-41a0-b977-eee2be352f63 {"md5": "7b9fe667fa06aad025c50b16db4bf775", "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"}], "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-07-30 15:27:10.107291 2024-07-30 15:27:10.107301 9b842f45-8cba-4294-a359-5f661c044169 {"md5": "63090521f42bed777df9aa8f8daaf810", "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"}], "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-07-30 15:27:10.178492 2024-07-30 15:27:10.178499 c46299ee-cb04-4d5e-a4ce-2a636e02afcd {"md5": "8bcb27e294e29fe98e770900381f2885", "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"}], "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-07-30 15:27:10.242214 2024-07-30 15:27:10.242222 941c0fb6-d2c3-4d7a-aee8-535956eb8530 {"md5": "8c874c7bb162c73ad875b6aef8904676", "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"}], "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-07-30 15:27:10.316193 2024-07-30 15:27:10.316201 ebba05a3-5339-4499-9da4-255cd07d554e {"md5": "e4e020888e82bb05b3553ef37ffd014b", "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"}], "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-07-30 15:27:10.39135 2024-07-30 15:27:10.391359 8a9db2cf-790c-42cf-acb7-f0a65d7afbd3 {"md5": "bf286f3324c64ab58d2ce9563ee183fb", "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"}], "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-07-30 15:27:10.464668 2024-07-30 15:27:10.464676 3503cfe4-a5e0-4502-85ae-818efd833bd2 {"md5": "c46c2d79d9b0790fb440463c5bfe3979", "pid": "043049354", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bibliotheksinformationssystem"}], "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-07-30 15:27:10.665152 2024-07-30 15:27:10.665162 6f73ed25-4a58-4e64-bb25-3ef368c374fa {"md5": "02abae30c9a9f690031eb03f499d35af", "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"}], "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-07-30 15:27:10.747508 2024-07-30 15:27:10.747516 b0b4944a-4d2b-488d-991f-9c2dd551aae5 {"md5": "546e096f37b69e4f237c15d97ee1b8cc", "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"}], "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-07-30 15:27:10.823747 2024-07-30 15:27:10.823755 331efc85-49d4-412f-9f04-50619931e673 {"md5": "ecbeb5656fc366c8f75d124a90022108", "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", "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-07-30 15:27:10.897527 2024-07-30 15:27:10.897535 6a3348f9-5edd-4b7e-bb49-5c966c19884b {"md5": "0f76eabdc651b5a9c2466cca0197eb35", "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"}], "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-07-30 15:27:10.971221 2024-07-30 15:27:10.97123 ffb24336-b73e-487d-92b2-8154b30733a8 {"md5": "c138594f80382c80e94f2efbb64a4b27", "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"}], "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-07-30 15:27:11.049102 2024-07-30 15:27:11.049105 cc867c8b-d35f-49a4-bf60-afd8a0e42d29 {"md5": "b6a8271eda56437b7dac8a11565c33a2", "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"}], "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-07-30 15:27:11.099841 2024-07-30 15:27:11.099844 4bfa37fc-667b-4915-931d-8e497e10440c {"md5": "8f4ba60b756e5ad75d9c21b91e8b1352", "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"}], "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-07-30 15:27:11.168411 2024-07-30 15:27:11.168419 5911af61-1853-4032-82f2-fb05b277b8d1 {"md5": "76037902b5e02def26451a2b163f3d15", "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"}], "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-07-30 15:27:11.242968 2024-07-30 15:27:11.242976 2c2703be-3dbe-4830-8fab-ffee72e2daea {"md5": "65e44aa7e065cc82786963aaf3b97eff", "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"}], "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-07-30 15:27:11.322149 2024-07-30 15:27:11.322157 3b48be67-c027-4d7e-befb-278cbc84c3a3 {"md5": "9c8159c517102c68f21ce78911ea53ce", "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"}], "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-07-30 15:27:11.396208 2024-07-30 15:27:11.396216 978f8095-b290-47fa-bcb1-8e780d46a171 {"md5": "4622742d491234353b4d31fd16116408", "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)"}], "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-07-30 15:27:11.470633 2024-07-30 15:27:11.470646 7e207867-8339-4dcd-817f-44025d9db3da {"md5": "62694956b3d9bc06d68734c5a63376f1", "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"}, {"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)"}], "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-07-30 15:27:11.550054 2024-07-30 15:27:11.550063 d69f2523-f876-4223-929d-fa5c20d66055 {"md5": "813c1f3983f6f64fc5c4318bd033a976", "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)"}], "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-07-30 15:28:05.063672 2024-07-30 15:28:05.06368 8d53b4d5-11d7-4fe9-ad44-a1cff4369556 {"md5": "aedaa8bafee680403d28b99c133181c8", "pid": "1272439836", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:27:11.630293 2024-07-30 15:27:11.630301 2fc25036-f50c-4b32-9efe-d4cceabba477 {"md5": "c8f6f4ae9902cb32dbfd297c6780b416", "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"}], "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-07-30 15:27:11.728885 2024-07-30 15:27:11.728894 9478ae66-3c4c-43fd-be0d-4a6f5d0ba9c1 {"md5": "18aca1965ab7d8fd3a5f1d4b6dc6ed15", "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"}], "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-07-30 15:27:11.815368 2024-07-30 15:27:11.815377 15766ba0-b3ab-4656-8a64-b66bdf30f396 {"md5": "95ca24942d4baf38b0296ae069120241", "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"}], "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-07-30 15:27:11.902657 2024-07-30 15:27:11.902666 f9bb44c9-bb4e-4046-b8a9-1fd90e8b6f5b {"md5": "305024fd18d042b7bceecb8856760df5", "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"}], "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-07-30 15:27:11.985342 2024-07-30 15:27:11.985351 dda7e06b-7e99-4711-b7b7-9e94ed8dc741 {"md5": "f895c5bb07a407fa3330aa550e32e4f0", "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"}], "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-07-30 15:27:12.061162 2024-07-30 15:27:12.061171 f2a46f8b-9ee3-4fd7-a846-19fd6650f393 {"md5": "d1c24f6e02ff55eb672b2ba9455ba15e", "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"}], "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-07-30 15:27:12.121511 2024-07-30 15:27:12.12152 1bd68a85-5588-4971-b482-3b14475e2d01 {"md5": "a89bb763a70a7685b5e61b6718889083", "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)"}], "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-07-30 15:27:12.281471 2024-07-30 15:27:12.281481 9113cf06-6334-4525-ba45-7fff97b04f67 {"md5": "646caff391621ed7bc5fe93a6c41611d", "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"}], "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-07-30 15:27:12.383333 2024-07-30 15:27:12.383344 51b12304-d9cb-4f18-815f-052a8fa671e0 {"md5": "ec2f8f02ced8a4f4012c303ae2a4d34d", "pid": "042825210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:12.456036 2024-07-30 15:27:12.456043 6b149d6b-1e8d-4b96-af91-bdedb5be57af {"md5": "a9877c9a936c29625e53aa9f3fa2b6d2", "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)"}], "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-07-30 15:27:12.523841 2024-07-30 15:27:12.52385 4f9a7699-33a3-4124-bd7e-f60c31c72ccb {"md5": "3532fff8f8733a1b26917531b8ad3613", "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"}], "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-07-30 15:27:12.601163 2024-07-30 15:27:12.601172 a606bf37-b20d-4f76-86f1-d033f7dbf586 {"md5": "25815339f06162e017c9af8cb127e555", "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)"}], "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-07-30 15:27:12.678277 2024-07-30 15:27:12.678285 bf5ae2ce-6f72-41a1-91af-77564323ea8c {"md5": "46f1e2141d52e1e652f502fbbc1a39b7", "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"}], "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-07-30 15:27:12.749214 2024-07-30 15:27:12.749222 51d85ed3-1b20-40c3-af5c-c1ff9a425601 {"md5": "9a6224b62b65b0a5d8a553af523ba011", "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"}], "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-07-30 15:27:13.674683 2024-07-30 15:27:13.674692 8e36b316-afca-4d7a-89b0-670a06da314d {"md5": "ed5237924acf8ef954567434c96afa08", "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"}], "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-07-30 15:27:12.82788 2024-07-30 15:27:12.827889 3c631d83-49b8-4466-8e96-6b07b70ffed8 {"md5": "7e620e1fc511be003c58faee2b4055fd", "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"}], "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-07-30 15:27:12.918136 2024-07-30 15:27:12.918141 75df9839-98bb-4325-8291-7f3f96cbce88 {"md5": "d6cc3f732f9eea5ea74beacd937af57f", "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"}], "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-07-30 15:27:12.991497 2024-07-30 15:27:12.991506 8adbe069-a346-42c4-926a-efab77314c1f {"md5": "685c4c4e914551e2747450cbc396c53f", "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"}], "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-07-30 15:27:13.073264 2024-07-30 15:27:13.073273 3108ab72-c550-46df-ac41-d5e8a49be342 {"md5": "9987f7988fdd610b5137f9b6a7f6fcd1", "pid": "042763568", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:13.139928 2024-07-30 15:27:13.139933 e4536576-eb8d-41fb-9282-d26e25534294 {"md5": "88852d51adbc499e4ed8f2d01b60f26a", "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"}], "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-07-30 15:27:13.763102 2024-07-30 15:27:13.763111 69e202ef-2f3a-4dfd-92a8-ed97f9855fa1 {"md5": "31b32b499594874bf5339777d4bc5819", "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"}], "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-07-30 15:27:13.223917 2024-07-30 15:27:13.223927 5ac6aa2d-fa50-4e75-b38d-30add1353905 {"md5": "8684b2b14a7beb67cced17b5aa241ebc", "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"}], "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-07-30 15:27:13.319364 2024-07-30 15:27:13.319375 eb9b19bc-b4f5-464e-b138-674957bb89d5 {"md5": "517c17edeead32950b6dd90eb7222b3f", "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"}], "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-07-30 15:27:13.392804 2024-07-30 15:27:13.39281 2c490722-e749-4e57-b535-7705bb65c300 {"md5": "1b0ce592494df0c20a0a959cad1d8d12", "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"}, {"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"}], "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-07-30 15:27:13.460696 2024-07-30 15:27:13.460704 7f40685b-ba22-4bd1-9ba1-9f6221a0395a {"md5": "f16899eecbe3ada6b688d5f3d84d832b", "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"}], "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-07-30 15:27:13.524737 2024-07-30 15:27:13.524746 7a21a907-38aa-4f83-9209-a486e5528565 {"md5": "5f44615d1d422735dc6c5973cf0c9a68", "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)"}], "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-07-30 15:27:13.60187 2024-07-30 15:27:13.601878 cb5ef061-96ce-434a-b32e-55db546b6055 {"md5": "8ce9b0e953e132712e09ea6cb68089ae", "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"}], "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-07-30 15:27:13.847724 2024-07-30 15:27:13.847733 1d273055-3c12-4e18-8112-a9d009f16825 {"md5": "1da534933675b7650042f83317ecbb0a", "pid": "04264044X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ostozeanisch"}], "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-07-30 15:27:13.939615 2024-07-30 15:27:13.939624 e333a7e9-0ecb-47d7-ae6c-36a631310313 {"md5": "6510e08153a49ea1a336b6e139a0cbf4", "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"}], "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-07-30 15:27:14.023821 2024-07-30 15:27:14.023831 627a0f20-9271-4a9e-9f3a-4f632fb2019d {"md5": "67e4f618a17d852546fb234bbdca3fcd", "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"}], "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-07-30 15:27:14.094919 2024-07-30 15:27:14.094927 52de3928-0074-482b-9fe7-c58fe97034d4 {"md5": "d11307a98c1f4a14f55c01f44864aac8", "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"}], "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-07-30 15:27:14.163303 2024-07-30 15:27:14.163316 b35ebf23-015c-4053-8083-e614447e7d35 {"md5": "6ad0080257a6e7d44974711657dcd5a4", "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)"}], "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-07-30 15:27:14.231301 2024-07-30 15:27:14.231314 539bd98d-28d8-4091-b485-f8c75a017558 {"md5": "67c090fb8aa22a2f6cee689340a14027", "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"}], "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-07-30 15:27:14.315469 2024-07-30 15:27:14.315479 99914ee4-c27d-4654-a6a9-af6f6f52ee2e {"md5": "30b8af12cd9bb45053592a336e1cb26e", "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"}], "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-07-30 15:27:14.420047 2024-07-30 15:27:14.420058 4636c086-df40-47f8-bb6c-6d61d8e2c6bd {"md5": "b5935dd403bae1022accaf8004c251b6", "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"}], "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-07-30 15:27:14.515492 2024-07-30 15:27:14.515504 292bdab2-8d2f-47a7-8bb1-d4ee2e64fd98 {"md5": "bcbdf2b61a67f1b85be2a62593d3e753", "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"}], "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-07-30 15:27:14.600884 2024-07-30 15:27:14.600891 4c18073e-3278-4a35-b8c7-781836aadd29 {"md5": "6d0143932c745780a85b1595e12809a6", "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"}], "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-07-30 15:27:14.66431 2024-07-30 15:27:14.664317 2798cddc-1eb7-4321-b5b2-2a91b988afa0 {"md5": "44fc7e32d65529e252f7e3a915934be6", "pid": "042491010", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:14.727412 2024-07-30 15:27:14.727418 d4c75113-88c6-442c-baaa-a9b25f9c8f52 {"md5": "e7cf97061b45c4f068761c371d1a5e5a", "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)"}], "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-07-30 15:27:14.795742 2024-07-30 15:27:14.79575 f49c8e89-ad67-4133-91fb-41cc906f01ca {"md5": "ee83e7b5e8d1f16bbb68c0924ce801ca", "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"}], "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-07-30 15:27:14.87428 2024-07-30 15:27:14.874289 37193e09-f0f7-4e31-a9b5-569c33aa1d9c {"md5": "e00a03d16d5f656f14e00aac10b658d9", "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"}], "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-07-30 15:27:14.950681 2024-07-30 15:27:14.95069 98e0bea0-d376-42fb-8dad-125562ec8ce3 {"md5": "a253dc963b6cddf37cba9c62e456213e", "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", "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-07-30 15:27:15.045198 2024-07-30 15:27:15.045206 2db4595f-4442-41a0-92f0-52d611eab814 {"md5": "f8b9a8732f5afc44b820b14da8eadcc5", "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"}], "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-07-30 15:27:15.125986 2024-07-30 15:27:15.125995 98f4a5b8-4612-4efb-84ed-0cf79f0f42ca {"md5": "ed53bef1f80d774f36afb98ed5010a7f", "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"}], "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-07-30 15:27:15.201796 2024-07-30 15:27:15.201804 6707870f-06e7-4952-9721-ebc031a8ab2c {"md5": "48d674a18429045a5cbb71c92bfa3a41", "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"}], "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-07-30 15:27:15.271811 2024-07-30 15:27:15.271819 0269eea2-beef-4557-ba43-8db2add931cc {"md5": "05168bbc132cd82bb5aea4289a93c8fa", "pid": "042402883", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:27:15.354078 2024-07-30 15:27:15.354101 6bbaad9f-8992-44e4-acdc-0a361a0352cb {"md5": "f77d87a1a9e8ca553601f17f134dfacb", "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é"}], "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-07-30 15:27:15.437582 2024-07-30 15:27:15.437591 546372b8-73a7-42e3-a492-ff1bfd409370 {"md5": "c317d7bfe77c7b9cbd95d37488746052", "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"}], "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-07-30 15:27:17.613641 2024-07-30 15:27:17.61365 01fdd377-6e7c-4399-89f2-aecfeafddded {"md5": "daf667e1d220788673cf59dfb2a7db8f", "pid": "042137268", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Array"}], "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-07-30 15:27:15.516278 2024-07-30 15:27:15.516288 0183a29e-9b1c-4457-8c88-eaf46ff2cd2f {"md5": "535a540449850e4ac59813914ef6cfc6", "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"}], "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-07-30 15:27:15.594001 2024-07-30 15:27:15.59401 7a517c55-6a6b-4674-afc4-2ac6f43ff894 {"md5": "543a56e0ba96221fce0d4672dfa6e732", "pid": "042349885", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:27:15.672374 2024-07-30 15:27:15.672382 07187278-4bcc-4727-baa1-7fba6a5334ea {"md5": "2737dde3cd7b5c74034aeeb522669ec6", "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)"}], "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-07-30 15:27:15.753246 2024-07-30 15:27:15.753255 19983d41-63cf-46f7-8096-0d1755d48840 {"md5": "92445baf124bed4291d5ee2024553e66", "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"}], "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-07-30 15:27:15.831375 2024-07-30 15:27:15.831383 e6f930c6-6729-4dd6-b8c5-ca67b3ea76bb {"md5": "ba1f993c7687bc49fa7a8201d874e8e1", "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"}], "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-07-30 15:27:15.917377 2024-07-30 15:27:15.917385 911f6242-8af2-4a1c-9d24-9b2e17fcadcd {"md5": "b9ac248efd2914da188408988931b847", "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"}], "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-07-30 15:27:17.722166 2024-07-30 15:27:17.722175 ab9a5aab-86a2-4b11-b560-d663d4b3fe7f {"md5": "c79672afe42ed490b27ed8164374a1cf", "pid": "042108160", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dimorphismus"}], "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-07-30 15:27:16.017494 2024-07-30 15:27:16.017506 1b833ee5-fee9-45a6-9d53-ac152d9b4666 {"md5": "0d03945e853468703b30979127d84391", "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"}], "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-07-30 15:27:16.11935 2024-07-30 15:27:16.119358 39d7bd5d-8192-4112-a883-61e77eb2f454 {"md5": "4e5f54403dc8f1aa412bd4c868cd90b8", "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"}], "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-07-30 15:27:16.206676 2024-07-30 15:27:16.206679 1e269ab5-6392-4f5a-a1e2-31659461c23c {"md5": "d8c09f9d9d3522a9bf80a97262160972", "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"}], "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-07-30 15:27:16.270804 2024-07-30 15:27:16.270812 7e13339d-430c-49fc-9a53-f1a3efb13b68 {"md5": "e3e6dba088b614149da8bc22530fb067", "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"}], "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-07-30 15:27:16.341868 2024-07-30 15:27:16.341877 4c389bf8-ebb7-4707-a286-336c1dae6020 {"md5": "e3f5764f0693bf6a7423e82474a41695", "pid": "042208408", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beamter"}], "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-07-30 15:27:16.429364 2024-07-30 15:27:16.429373 61dbc367-e5fb-4b65-bef7-872a32f98605 {"md5": "021ca00bd04b57ecf3a4c8cdb0dcba22", "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"}], "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-07-30 15:27:18.820129 2024-07-30 15:27:18.820138 31d65e01-2ee4-4e22-af69-95f2c3e1bc1f {"md5": "947ef2545a188b3590b46db476476f37", "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"}], "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-07-30 15:27:16.525011 2024-07-30 15:27:16.525023 dafc7d83-132f-456a-8a9a-c33601c55ef7 {"md5": "8a0d18175523eb90ec8b2bcb5e03affe", "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"}], "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-07-30 15:27:16.626719 2024-07-30 15:27:16.626729 c10ab3f9-4890-455a-9309-10a4a72835bf {"md5": "07a6f5bbd25802a62d8f1855d418405d", "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"}], "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-07-30 15:27:16.728013 2024-07-30 15:27:16.728023 a44a6ad1-b4e2-4595-bd32-9e321d9aa4d4 {"md5": "b6815efa28c2ffcf38f1328732bcbe66", "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)"}], "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-07-30 15:27:16.816473 2024-07-30 15:27:16.816483 83ed753f-bb36-470a-800d-b67c5eda95dc {"md5": "6c884a383c3aed56fe945cdbf3ebd5b1", "pid": "04219007X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:16.912373 2024-07-30 15:27:16.912384 76a25e8f-4117-4a34-bd3d-c3cef024c7b5 {"md5": "824d6f74cd360703b6a52fb0e15c0b12", "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"}], "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-07-30 15:27:17.018281 2024-07-30 15:27:17.018294 ce4a2e27-3333-4f88-92f6-7f61389206fd {"md5": "6f628ca25f51065b2d5f9ac6306c1e74", "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"}], "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-07-30 15:27:32.54744 2024-07-30 15:27:32.547449 193c10ef-0f9f-4066-826d-77947d907f6e {"md5": "f706b7cd2c01f7b9b02f53e71a52db3f", "pid": "041445082", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kraftstoff"}], "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-07-30 15:27:17.107013 2024-07-30 15:27:17.107021 eeb15251-bfb4-4666-b7bb-459b295fe6b9 {"md5": "f592dc093974cd4383f111c26d118de5", "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"}], "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-07-30 15:27:17.195701 2024-07-30 15:27:17.195709 3191b5d4-6e54-4c76-b706-b65a935074ea {"md5": "7202b965c7948d396c93fbc64284e00e", "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"}], "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-07-30 15:27:17.257393 2024-07-30 15:27:17.257397 f3108d93-8c5f-4f92-ab85-f1f4c9e5273b {"md5": "48a28a8d136b43effc42c15c83885113", "pid": "042154316", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Phasenumwandlung"}], "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-07-30 15:27:17.335885 2024-07-30 15:27:17.335952 74ec4a4b-aa0f-42c5-b4f7-9131f308aba6 {"md5": "2d76726c79ba915f24ca6573f9f3f5ec", "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"}], "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-07-30 15:27:17.419888 2024-07-30 15:27:17.419898 1fb88917-f1bc-4c3a-b7b5-57680c0c89f1 {"md5": "5642abd1576a9f9b65ade96dc1a8d227", "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"}], "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-07-30 15:27:17.516358 2024-07-30 15:27:17.51637 f5e373e9-11a2-4fcb-88ad-1380cb0d5d67 {"md5": "d8b2aeb0426fad718f9d5297858f471c", "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"}], "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-07-30 15:27:17.796212 2024-07-30 15:27:17.796219 6c4d6a7c-af2b-4f39-8c8e-3fd5b17970b6 {"md5": "3d149de018874b50cef10bc46248ea15", "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"}], "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-07-30 15:27:17.876748 2024-07-30 15:27:17.876756 2e87fed0-94bb-4148-a8c7-ff4cfec3fa9f {"md5": "ab46f9d9bf71eadd47b7a9456e52ad37", "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"}], "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-07-30 15:27:17.961117 2024-07-30 15:27:17.961125 329d0d67-8e10-4b03-8a79-561972ff2aaf {"md5": "0cfbdf4aaae2322bcd339e4724507d01", "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"}], "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-07-30 15:27:18.049798 2024-07-30 15:27:18.049808 7933c34c-22c4-45b3-84a0-6a82f6392456 {"md5": "63b2f9b69791b96981345dada30f6f24", "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"}], "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-07-30 15:27:18.143787 2024-07-30 15:27:18.143797 3b473e47-232e-4715-b46a-54b94af80b5c {"md5": "1d9944ee1b80ddba55d119e754497e0c", "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"}], "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-07-30 15:27:23.054855 2024-07-30 15:27:23.054863 a45da906-704d-44d7-87c4-711184495edc {"md5": "8051e1c9eb2439527bf20b0baf595690", "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"}], "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-07-30 15:27:18.232846 2024-07-30 15:27:18.232854 aaf5d6ea-5349-40b9-8886-d6ace052442f {"md5": "6689f7e49b67ee8b8ff6fcc67c84047a", "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"}], "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-07-30 15:27:18.309429 2024-07-30 15:27:18.309437 05f5f838-283e-4be5-95d5-32c594da74e9 {"md5": "a5ea175434206a37e3d1d6f562f7759a", "pid": "042066107", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Genauigkeit"}], "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-07-30 15:27:18.376295 2024-07-30 15:27:18.376303 2f8be949-2453-4d79-8ec5-858b2bb3f054 {"md5": "509f4f5ae979a0fad8adec1996098942", "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"}], "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-07-30 15:27:18.44853 2024-07-30 15:27:18.448538 3c0e3852-de3a-4470-92aa-618e6ac2c0e3 {"md5": "6a316ec57d78ef7cbb8590233fc16c16", "pid": "042017793", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:18.517012 2024-07-30 15:27:18.51702 f579d11d-5a43-48f1-9145-b0a8d50e8c18 {"md5": "50264b443c946033242a7066017a1f60", "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"}], "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-07-30 15:27:18.5841 2024-07-30 15:27:18.584109 8f44afbc-cb1f-4d25-bbd7-799c17924b55 {"md5": "1b5e5c3f5afeb57941f5a78a8dd8814f", "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"}], "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-07-30 15:27:18.661669 2024-07-30 15:27:18.661678 57ffe25a-d0d5-4039-ab37-c6a3eab3909d {"md5": "0a1cb6f8f845028da5be01d82d695dde", "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"}], "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-07-30 15:27:18.741684 2024-07-30 15:27:18.741692 f8f75d58-c9a7-4367-bd11-6d67469b5bf7 {"md5": "c548330c8aa0d19ca08ef5dabdd8e3db", "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"}], "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-07-30 15:27:18.89052 2024-07-30 15:27:18.890527 fb582757-c5f4-42c4-ab2f-8f4e7acc046a {"md5": "08e21c3999f50b5fe2f7a1cbd39eaa2a", "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"}], "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-07-30 15:27:18.969234 2024-07-30 15:27:18.969243 d25a17b4-5a8c-429e-971b-385088352827 {"md5": "cc09ea952483bdb781ca819d19b65e3d", "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"}], "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-07-30 15:27:19.044354 2024-07-30 15:27:19.044362 3c643dae-9337-40c1-8279-16fec1e1eb06 {"md5": "7990d3983ad83a6fbcbac810fe20008f", "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)"}], "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-07-30 15:27:19.118645 2024-07-30 15:27:19.118654 4b1ab624-e71a-4c24-a63a-21762dec6cce {"md5": "d47fbabd6b16533394ddb14e59b29db7", "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"}], "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-07-30 15:27:19.200863 2024-07-30 15:27:19.200872 ff4b2fbb-ae92-4cdd-a00f-87b5bdeee6fd {"md5": "a38230721d31fd824152f647ade395a5", "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"}], "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-07-30 15:27:19.271854 2024-07-30 15:27:19.271856 469b0292-c514-4213-b670-5b33465b1c35 {"md5": "7096c6487a67a632c505372405b226f6", "pid": "041943236", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Emissionsverringerung"}], "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-07-30 15:27:23.14148 2024-07-30 15:27:23.141491 e2ebddb7-c869-437d-bd76-836900baa23f {"md5": "2fbb2815f779e7f1bbb37f57177bd884", "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"}], "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-07-30 15:27:19.314197 2024-07-30 15:27:19.3142 0bde4a39-d1c4-41ae-a4b0-98f2ecb5744e {"md5": "428299a2c2c3cbfa4601267818855954", "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"}], "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-07-30 15:27:19.377522 2024-07-30 15:27:19.37753 e625efc9-970e-4d75-9e76-9f71d1c12a72 {"md5": "43b616b42bcfe16611de8b4dea56cf70", "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"}], "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-07-30 15:27:19.444403 2024-07-30 15:27:19.444413 6297f7b0-5337-400b-9b1e-fa1504bc9ed6 {"md5": "efd278b13e0c05b3c6f0ffe681cdde2b", "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"}], "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-07-30 15:27:19.520315 2024-07-30 15:27:19.520324 afd8eaa1-97ee-45dc-ac36-98ad978c2e8a {"md5": "e27bebc2b2d603de573256ed120b75c8", "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)"}], "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-07-30 15:27:19.595815 2024-07-30 15:27:19.59586 1099478b-94f0-4f96-be10-b395778bd0b7 {"md5": "f4113641978bff2e7669d411a016b4ab", "pid": "041913272", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volkstanz"}], "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-07-30 15:27:19.667069 2024-07-30 15:27:19.667078 718e9c09-6629-4baa-8848-725cb351810a {"md5": "9664a4f567e039399d70f73366f432eb", "pid": "041911849", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:19.74637 2024-07-30 15:27:19.746379 eba22565-6500-483c-9b01-4e4618cdccbb {"md5": "d81433481aa94190b40a8f7ed029af1f", "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"}], "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-07-30 15:27:24.270982 2024-07-30 15:27:24.270996 57433cc2-d4a7-432a-add4-96636f139b44 {"md5": "2760667d8de9b071ca22708aa9264f2a", "pid": "04174604X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Akustik"}], "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-07-30 15:27:19.823522 2024-07-30 15:27:19.82353 989851be-b1dd-4e37-88a1-72cc640f59ba {"md5": "7622da94b0b520bb723f43d33a248546", "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"}], "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-07-30 15:27:19.896266 2024-07-30 15:27:19.896273 a930065b-ad38-4e65-a159-9b43f65d37d9 {"md5": "50832a6f7f7034ee6fdb3bd7da9b0f72", "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"}], "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-07-30 15:27:19.965579 2024-07-30 15:27:19.965588 dba20f79-40b2-45e9-8b54-4682e14fc113 {"md5": "e7463b0f11c9bd43f803856cd2a4e55c", "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é"}], "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-07-30 15:27:20.042997 2024-07-30 15:27:20.043006 6d5f3b4f-ee4f-404e-84cf-c74bcbfa08ba {"md5": "a496fb7b9a838bcb78e5e26f26382b50", "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"}], "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-07-30 15:27:20.117116 2024-07-30 15:27:20.117126 33db9ddb-2fee-4294-9ed5-023f97f02c7a {"md5": "2671f8ea368b040bfd14e2a1d3495ae9", "pid": "04190186X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Miete"}], "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-07-30 15:27:20.192364 2024-07-30 15:27:20.192374 39b5a8e7-e41c-4f3b-8ab7-5e0a4b81c196 {"md5": "18f836bccec9f2abd919dff2c9d65cc6", "pid": "041900804", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verwaltung"}], "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-07-30 15:27:20.263194 2024-07-30 15:27:20.263201 63a6c061-7a8a-4946-aedc-adc74cdccc88 {"md5": "18d5a65a7e1dc19b14ab2c6d2ddc07e0", "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"}], "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-07-30 15:27:20.317727 2024-07-30 15:27:20.317735 13c5f082-9b17-4886-a607-8e1a3cf9cecf {"md5": "4d71655d2cbc096e015b5a4c307761f4", "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)"}], "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-07-30 15:27:20.381453 2024-07-30 15:27:20.381461 cedca4ac-b3d5-4bf2-a4dc-b88c21cb6fae {"md5": "dcf9d1b72bd5b4678eaed298d693b393", "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"}], "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-07-30 15:27:20.463515 2024-07-30 15:27:20.463523 6c94d446-fef5-4dba-83b1-6f5daafc4654 {"md5": "4c60e4d43e745917efb4089105bb224c", "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"}], "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-07-30 15:27:20.526623 2024-07-30 15:27:20.526629 b04679a2-1656-4a30-b3b6-78d70d29617a {"md5": "ab74f91f894b1ca24c5d306f7fd04416", "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"}], "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-07-30 15:27:20.593889 2024-07-30 15:27:20.593897 182df7a6-681e-42fc-b363-0ff007f70acf {"md5": "503acd11ac9d2f02ad0be542811d68d7", "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"}], "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-07-30 15:27:20.672676 2024-07-30 15:27:20.672685 2a6db505-9458-4467-a887-201372fbe483 {"md5": "cc97fffa1018e20aae17f0cf5e9d64d0", "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"}], "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-07-30 15:27:20.747313 2024-07-30 15:27:20.747322 c74379fe-eadc-4f92-8ebb-0456e6fcdbf0 {"md5": "e151403973979519707b2fc142041dbf", "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"}, {"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"}], "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-07-30 15:27:20.820947 2024-07-30 15:27:20.820989 2277db6c-bc0e-4785-b09a-6568ec9bef92 {"md5": "330900056f706fc1f1fa1bfbe066a181", "pid": "041884612", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Vizekanzlerin"}], "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-07-30 15:27:20.894516 2024-07-30 15:27:20.894523 77c6d398-7abd-4c63-8460-cba8d630d2e8 {"md5": "d7ca4e1e29df0fd112be3c57ae9f3861", "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"}], "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-07-30 15:27:20.968393 2024-07-30 15:27:20.968403 14476124-755a-4694-b77c-6dbe9278ee9a {"md5": "b05734e7b9010ca1875d6132228af6d5", "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"}], "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-07-30 15:27:21.038766 2024-07-30 15:27:21.038775 dbcd8093-1e2a-46ff-bfb7-3dbca4bb87eb {"md5": "6255bda70c6adb8aee2f0363cbc8a8f4", "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"}], "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-07-30 15:27:21.112453 2024-07-30 15:27:21.112461 a4fa4aaa-5686-4c06-b13a-c2f991f4332e {"md5": "b42e76a9cde46381596e7e73f36485a8", "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"}], "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-07-30 15:27:21.191478 2024-07-30 15:27:21.191487 7e7d1745-f263-41e2-87d0-4350b60743bc {"md5": "d0e0b92c803203c39b3193606f3cea1e", "pid": "041874919", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Schiebersteuerung"}], "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-07-30 15:27:21.270103 2024-07-30 15:27:21.270111 a6264a64-410b-4f9a-a20e-a34c48a48683 {"md5": "9a9b3af18fc20c5426cf8f14195c6ff4", "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"}], "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-07-30 15:27:21.328488 2024-07-30 15:27:21.328491 559bf5d0-dcea-48a9-94fb-88c9447043bb {"md5": "ca9356e0539d0d404eb3ec7df0d3a5be", "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", "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-07-30 15:27:26.32222 2024-07-30 15:27:26.322227 e76af340-0e5f-472d-baa1-48b00ab2ca55 {"md5": "2e1e6ad760feff75c93afabe2ecafe93", "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"}], "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-07-30 15:27:21.382201 2024-07-30 15:27:21.382205 e2602ba2-2a57-4aae-a732-183fe82049d5 {"md5": "9f46c3040b47dac35dd8ff09a1c394ed", "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"}], "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-07-30 15:27:21.443196 2024-07-30 15:27:21.443204 953498f5-8564-43c5-88ef-2c4f36e309cb {"md5": "3577a5aa16977ba9604010c803c3c0dc", "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é)"}], "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-07-30 15:27:21.506942 2024-07-30 15:27:21.506949 52703801-7605-4dd3-a7ef-d2e54ec8e1e6 {"md5": "6b6ef600efcf3d18f98895da84502333", "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"}], "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-07-30 15:27:21.576645 2024-07-30 15:27:21.576652 e5793d20-0df1-4f1b-a4eb-2aa0144f453f {"md5": "db860da49c35a9dfe082a1ab281c6f6e", "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"}], "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-07-30 15:27:21.647579 2024-07-30 15:27:21.647587 e396d128-dc73-4d42-8b94-534d6ba0146e {"md5": "003dafac7e4284f2fbb678c92883f81d", "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"}], "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-07-30 15:27:21.718485 2024-07-30 15:27:21.718493 ded173f7-8133-4992-8dd6-f32c1578cd1d {"md5": "ccb8904d236b665a7ec98e1b48923441", "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"}], "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-07-30 15:27:21.810156 2024-07-30 15:27:21.810164 ac24360a-73c8-4685-ab2e-7ca7817e5cc4 {"md5": "610d82774e4e0d3fe71e27d9bcf166d8", "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"}], "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-07-30 15:27:21.892576 2024-07-30 15:27:21.892584 2ca404d4-896a-45f6-8145-33dedf0e80c6 {"md5": "985c3bc19f8826b94f00aa66a0d857f8", "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"}], "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-07-30 15:27:21.964666 2024-07-30 15:27:21.964675 37b15982-d811-473e-9a5a-2075f5e7e88d {"md5": "c5100b7b5b2c0bc1f245316c6d4564f8", "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"}], "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-07-30 15:27:22.048107 2024-07-30 15:27:22.048117 67ac99be-0431-4555-8dae-55b2737b3831 {"md5": "18ed15a4b83e29cc5a93d5f7a80850ff", "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"}], "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-07-30 15:27:22.124238 2024-07-30 15:27:22.124246 316ea167-4e66-42b1-9157-98ef582aed7f {"md5": "b93f254dbf5cb51499ee1ef938c170ba", "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"}], "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-07-30 15:27:27.608169 2024-07-30 15:27:27.608176 ef3865af-5ede-49e9-aa1a-b3330c0708d9 {"md5": "075c42dbd43f198a857f953c4a297555", "pid": "041616375", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tragwerk"}], "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-07-30 15:27:22.196461 2024-07-30 15:27:22.196469 a222581f-e0aa-4126-bc36-8e01ff6f3763 {"md5": "8ed818963de2a28e9e95d5584cefdb4a", "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"}], "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-07-30 15:27:22.262514 2024-07-30 15:27:22.262522 5976369d-317d-4b83-9a12-aad7d008c781 {"md5": "45596d3b2ac7e9c1d49380b3540436db", "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"}], "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-07-30 15:27:22.330883 2024-07-30 15:27:22.330892 26484cc9-952b-469b-b3eb-985d0284c467 {"md5": "45f62e4b059af8a2d4a8aaf167652962", "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"}], "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-07-30 15:27:22.389886 2024-07-30 15:27:22.38989 f484970f-0444-4625-b69a-f334cbadf022 {"md5": "e4c21e8550367cb1ced82c38f5ab7586", "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"}], "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-07-30 15:27:22.459375 2024-07-30 15:27:22.459383 82821e2d-c33c-4b12-8d47-63f37a2386b2 {"md5": "6ffbf31c1349bda28c303239ba24a455", "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"}], "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-07-30 15:27:22.527595 2024-07-30 15:27:22.527603 ec6d9339-8fc1-4cc3-bb14-d8918b9398f4 {"md5": "3d4cf874ece55f8489044f178c0a512a", "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)"}], "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-07-30 15:27:22.603187 2024-07-30 15:27:22.603196 79be3954-74f6-4bc3-babb-f70c4dc3f5fc {"md5": "b07487380df958652a3bc35030f2e1d3", "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"}, {"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"}], "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-07-30 15:27:22.676193 2024-07-30 15:27:22.676201 a3bf666f-be40-4610-90b1-755db0b0bd45 {"md5": "37a3df47b580ea94146c4eaec23fe58c", "pid": "041802659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Inertgas"}], "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-07-30 15:27:22.747321 2024-07-30 15:27:22.74733 a25ce37d-bbdf-4c51-9302-73bbefbe8f24 {"md5": "6b1325738f2224d8c8a14c6613984128", "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"}], "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-07-30 15:27:22.8274 2024-07-30 15:27:22.827408 ead181f8-aa3a-47ab-8f42-ba98ab782940 {"md5": "254fa3ca3353d93fb58d8c7398072d27", "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"}, {"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"}, {"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"}], "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-07-30 15:27:22.899022 2024-07-30 15:27:22.899031 12ddf388-387e-48e8-af27-be5b7bb3ce25 {"md5": "cacf79100e1f7782d2050b39d126320e", "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)"}], "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-07-30 15:27:22.973392 2024-07-30 15:27:22.973399 7488b10b-2858-46b8-8056-a564321a8cbe {"md5": "b339dfd530ade37f49995d901c99548f", "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"}], "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-07-30 15:27:47.238859 2024-07-30 15:27:47.238872 3d549458-3309-4928-bfb5-d6c8dca7630b {"md5": "3c64f0945f3b04e28834130427573cc4", "pid": "040299848", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kirchengemeinde"}], "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-07-30 15:27:23.213538 2024-07-30 15:27:23.213546 13a792f7-2c9f-4972-80b2-465a6c34cecc {"md5": "dab13e75f7bf3c0eba75eb83bf9e6495", "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"}], "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-07-30 15:27:23.304409 2024-07-30 15:27:23.304421 fff9e73b-8a30-4583-8489-e1c4f63a6d83 {"md5": "3bd0a2adc8681363abb5c726e338bc77", "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"}], "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-07-30 15:27:23.387341 2024-07-30 15:27:23.387344 10cbb605-f55a-4b5a-9e4f-4e26d81fc0ab {"md5": "a70e88f0c374440d66b2e238371ee2c7", "pid": "041772822", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:23.44024 2024-07-30 15:27:23.440245 d4ef293e-4b0c-4bfc-babb-d6c88780893f {"md5": "36ee4e99a0ce46d6aee3dd965955f342", "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"}], "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-07-30 15:27:23.502142 2024-07-30 15:27:23.50215 05f10749-e1eb-405f-ab4d-aed8343bf39a {"md5": "5f1776f845edde10b77f7fc3a7bc6d3f", "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"}], "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-07-30 15:27:23.566125 2024-07-30 15:27:23.566133 0b476bca-616f-499c-823d-fc72fe00383f {"md5": "4d1e828c628a7fb91f8361a4e4cac936", "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"}], "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-07-30 15:28:05.143429 2024-07-30 15:28:05.143438 0840f55c-f392-4ef4-81eb-ff7c03278371 {"md5": "9b8f87bccc0ebba354aa6bd752fe6763", "pid": "1272436322", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:27:23.632409 2024-07-30 15:27:23.63242 c79ae275-1a59-4678-bcc3-4edb46240d92 {"md5": "9efce3103067e47e783e6f666f84d752", "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"}], "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-07-30 15:27:23.71726 2024-07-30 15:27:23.717269 543297b1-f0cb-4d7b-87fb-3c5df3e11043 {"md5": "1692555d784dfb6ba2bfa3b934bd251c", "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"}], "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-07-30 15:27:23.790189 2024-07-30 15:27:23.790197 9463427b-08fe-49fe-ba23-df3eca5f555f {"md5": "a741331b4bc6c064db90fa7fb0390035", "pid": "041759834", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Protamine"}], "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-07-30 15:27:23.868426 2024-07-30 15:27:23.868436 01a67ec0-52a2-4bef-afe6-557ed0e3a2d3 {"md5": "b22572de9e797a310af529134c242a99", "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"}], "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-07-30 15:27:23.949632 2024-07-30 15:27:23.94964 091535cc-c355-4a6d-a53f-69b1d20e77d0 {"md5": "c63f5e3a83a2fc03799bfda3d6cd396a", "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"}], "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-07-30 15:27:24.022499 2024-07-30 15:27:24.022509 c1e2bbed-9c50-419d-bee1-a7d8235c4a49 {"md5": "85843e7bc95776b6979e5a50c0a4e0d2", "pid": "04175431X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Operatorhalbgruppe"}], "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-07-30 15:27:24.104336 2024-07-30 15:27:24.104345 d9cefad2-484f-489b-9680-676fec18a523 {"md5": "3004a7bd772c98e402b9324a2c97ca45", "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"}], "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-07-30 15:27:24.203099 2024-07-30 15:27:24.203104 e67d8ef2-068d-40d6-8d3c-f058ba440d1b {"md5": "4abf2743d5673ecd917b0f44240a2679", "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"}], "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-07-30 15:27:24.354245 2024-07-30 15:27:24.354253 8d1da953-a458-40d9-b28a-0e8372a1006a {"md5": "8af987e8b0713799ad3bb1d7cfa5002a", "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"}], "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-07-30 15:27:24.428393 2024-07-30 15:27:24.428397 bd28578f-843a-404e-a7c8-e2e8572934b5 {"md5": "b2530cd0e63feecc50f9c0afae58c157", "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"}], "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-07-30 15:27:24.499318 2024-07-30 15:27:24.499325 a761f03b-6180-4967-be2c-6c48ff52a661 {"md5": "b6874f9d0525fc4204fb392fa608683a", "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"}], "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-07-30 15:27:24.570565 2024-07-30 15:27:24.570573 ada04214-848d-4626-95e6-8888ec84902d {"md5": "17cbdb8bef9dea73f457f81e59713649", "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"}], "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-07-30 15:27:24.645096 2024-07-30 15:27:24.645104 6a8a45d0-1159-4ebe-a806-391dd357f179 {"md5": "cd70fcd042fe7161c0e83f012663bd31", "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"}], "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-07-30 15:27:24.713144 2024-07-30 15:27:24.713178 a1457a39-f258-4a11-9ec3-1a115dbd9a83 {"md5": "2604c67de8d200d7d288c4714caa0baa", "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"}], "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-07-30 15:27:24.781854 2024-07-30 15:27:24.781861 b605cdc8-b57e-4343-a0d5-e24d74c57cc1 {"md5": "c157da1d5144a649d175cdbacd0e4241", "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"}], "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-07-30 15:27:24.862164 2024-07-30 15:27:24.862172 f65bec94-074d-4d86-9423-10230c9c0496 {"md5": "66a12b1e120722e28cc943f234a4249e", "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"}, {"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"}], "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-07-30 15:27:24.938075 2024-07-30 15:27:24.938082 d9475f5a-2917-4dd0-bbdf-6e551a19b8d1 {"md5": "e5d9c63c05c49c57482f98be3f36ccd2", "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"}], "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-07-30 15:27:25.020849 2024-07-30 15:27:25.020858 ade847d0-b7d4-4b09-b36e-1d8d1061a75a {"md5": "af998127c0007cbeb8e0894b519117e7", "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"}], "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-07-30 15:27:25.094089 2024-07-30 15:27:25.094097 9e83d071-6df3-48a1-9c23-82b42d9d9880 {"md5": "cb5fd691e65f2dfe415b06e0138f1b75", "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"}], "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-07-30 15:27:25.177929 2024-07-30 15:27:25.177937 13621622-d513-4fe8-9cbf-a3c772e2819e {"md5": "f36b69559cfbbcfc11974b3b6a340f9c", "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"}], "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-07-30 15:27:25.245806 2024-07-30 15:27:25.245814 f8758ca3-7f7f-4c9d-a35f-c9e394688848 {"md5": "e250b83457e05060968b3deb279ae980", "pid": "041716159", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Teilchendetektor"}], "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-07-30 15:27:25.317605 2024-07-30 15:27:25.317612 5a8bf030-e634-4435-9bfc-ef86ca7bf589 {"md5": "800a114ee35002107380fe5d15524437", "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"}], "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-07-30 15:27:27.67131 2024-07-30 15:27:27.671319 685372a9-80b9-465b-89b4-d644f4f6f317 {"md5": "2d96eb84aa7d9762de2bb7e845230e74", "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"}], "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-07-30 15:27:25.387133 2024-07-30 15:27:25.387141 6a8a972a-43fd-4f39-bb18-2f262fb76b99 {"md5": "1270b5a24e0f6c4e4fd8253c8ad65ce3", "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"}], "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-07-30 15:27:25.459235 2024-07-30 15:27:25.459243 93952b0d-11f0-4ce7-9dca-dd07fbcacc23 {"md5": "faa1d0240d670d9269b81b99b1ae7ab5", "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"}], "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-07-30 15:27:25.524348 2024-07-30 15:27:25.524356 bd26622a-e2fe-49ec-8679-a815c4f27696 {"md5": "940aa47919687e55e005ed27870e77ae", "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"}], "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-07-30 15:27:25.599496 2024-07-30 15:27:25.599505 41c559dd-5b17-41c2-b684-41e982f86a11 {"md5": "1654346c39fe454b7b2331c50abc2011", "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"}], "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-07-30 15:27:25.666702 2024-07-30 15:27:25.666711 c72bf0c0-2527-4ba8-bded-cd69a3a3f1df {"md5": "698a9567100564dc9571550762e08434", "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"}], "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-07-30 15:27:25.733929 2024-07-30 15:27:25.733939 1b1ca6b6-e34f-4413-8545-68d10fd3b3c1 {"md5": "4897e1bcda91462b0c76848cd8a78b81", "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"}], "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-07-30 15:27:25.803598 2024-07-30 15:27:25.803607 5f261aea-e963-4a34-b784-39e23aff1a0b {"md5": "8675c2a1bea18c3c4d628fade420ee54", "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"}], "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-07-30 15:27:25.875332 2024-07-30 15:27:25.87534 7272230e-fb90-408e-b811-372549a976f3 {"md5": "abae6a15556e381980fba427af655717", "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"}], "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-07-30 15:27:25.951595 2024-07-30 15:27:25.951603 f09f7765-5a61-4e3b-8c4f-63b73b8e8029 {"md5": "0367a930c41fdca1d3f50c6a010277fc", "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"}], "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-07-30 15:27:26.025809 2024-07-30 15:27:26.025817 f982070a-b3c7-43fe-a231-1abc64aa11b1 {"md5": "c1403f250f57ef966e9dfd807d0cd762", "pid": "041691504", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zwergmoschustiere"}], "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-07-30 15:27:26.100267 2024-07-30 15:27:26.100277 ef989758-bbba-4ed1-a78a-b59eb77317a5 {"md5": "1e157aa7c984dc3d934906fe460b71af", "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"}], "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-07-30 15:27:26.176712 2024-07-30 15:27:26.176719 47f00e9f-d91d-4703-82ac-b67c95d55c12 {"md5": "b6cf542c891be9ef494d153747aad36e", "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é"}], "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-07-30 15:27:26.252364 2024-07-30 15:27:26.252369 2151ef92-c643-45ad-afca-4fad52606f77 {"md5": "21ff2f9d3ae7ae991f48bbc5fd231853", "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"}], "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-07-30 15:27:26.396733 2024-07-30 15:27:26.396742 80558c3e-9171-4d08-928d-a729ac5e6f03 {"md5": "0d4de7748719b3e9ec7d9c3284f62b40", "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"}], "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-07-30 15:27:26.462993 2024-07-30 15:27:26.462996 29422ed3-606b-410a-9338-945de7c4c5a6 {"md5": "faaf3e65fa297ae21c0a35ae636e3f5a", "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)"}], "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-07-30 15:27:26.512834 2024-07-30 15:27:26.512842 addf8439-a60a-42f5-aa02-f1346578825b {"md5": "cd40c22119f3db6281f404fb883e3692", "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"}], "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-07-30 15:27:26.577944 2024-07-30 15:27:26.577951 db1b90ab-9e39-4bce-9972-c563637b6719 {"md5": "b98cddd42bd29478527e28f65735adf6", "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"}], "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-07-30 15:27:26.645701 2024-07-30 15:27:26.645706 6659de1e-a45f-4703-9b99-e51d6feb4b4f {"md5": "2a7ae1a34fe62fdbc8b91832234581c2", "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"}], "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-07-30 15:27:26.71266 2024-07-30 15:27:26.712669 d7250837-6618-4861-a970-3430c4328a5c {"md5": "dd0039fceba17539742665cf1088d2ed", "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"}], "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-07-30 15:27:26.784921 2024-07-30 15:27:26.78493 7b5f0f8d-6721-4eb2-b48c-e6297e7c202e {"md5": "8c4c42fe43e79132847117a8d006bc2e", "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"}], "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-07-30 15:27:26.864886 2024-07-30 15:27:26.864896 2bc4f7d2-131e-40d2-a26d-38d328145b57 {"md5": "110eb2fb0cdd67e8a48d82b36c968790", "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"}], "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-07-30 15:27:26.946563 2024-07-30 15:27:26.946571 4ec52bec-9ff4-48d3-ba20-804b3eca04fa {"md5": "8711b06503946a2e7bef5ff128b7108a", "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"}], "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-07-30 15:27:27.017359 2024-07-30 15:27:27.017368 52dcd423-ee05-4fc6-9563-c37c7a3857ae {"md5": "ff5047663ac2d3d5d6db228700c2181c", "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"}], "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-07-30 15:27:27.08576 2024-07-30 15:27:27.085768 f81f4c0d-e590-4acd-9e7c-72502f0a2e61 {"md5": "b3601793787a3244275f2bc9ebadd5fd", "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)"}], "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-07-30 15:27:27.72743 2024-07-30 15:27:27.727437 89191e9d-8da9-4d5f-9665-a1c54e5ea6a1 {"md5": "69f0ea47f484fa2888d2f98406ddffe5", "pid": "041607988", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Humoristin"}], "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-07-30 15:27:27.167913 2024-07-30 15:27:27.167923 6021612a-319c-4d87-a5a6-d9806c7fd97d {"md5": "0bd2cf58c37ff0822778e6c5e91d00e4", "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"}], "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-07-30 15:27:27.254747 2024-07-30 15:27:27.254756 9db5397b-5cc1-4e64-8cdc-16640a3c0a10 {"md5": "3d03dbc88d25d751ff02e742b36709d6", "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"}], "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-07-30 15:27:27.329243 2024-07-30 15:27:27.329252 edafb1bc-76a1-4100-834e-e7b4e60f4fc1 {"md5": "8a0db843f632e5ba92d2f36a90d808fd", "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"}], "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-07-30 15:27:27.403333 2024-07-30 15:27:27.40334 5cb716a8-0d04-474f-b28e-17c54fd5099b {"md5": "2d33668ca92e5e587a93d44563387cd4", "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"}], "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-07-30 15:27:27.476883 2024-07-30 15:27:27.47689 3c04a178-8aa6-4768-b498-cc5fb1d4020d {"md5": "3a2578182c6484b691196ba302428dac", "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"}], "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-07-30 15:27:27.547427 2024-07-30 15:27:27.547431 e48b1a88-9439-49ca-8e05-3ee14b9efd3f {"md5": "c0afea7cc64561233266fe403dada66f", "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"}], "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-07-30 15:27:27.794293 2024-07-30 15:27:27.794301 8f61a444-e841-41b0-9bfb-4a0375bd73fe {"md5": "b364e3c5940c63c2d710ce8ed315ef36", "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"}], "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-07-30 15:27:27.866939 2024-07-30 15:27:27.866947 55b04453-3e29-424c-acf3-a70b96ff2b37 {"md5": "00b8bb1af2e89a36f1cca64e72987e6b", "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"}, {"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"}], "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-07-30 15:27:27.937988 2024-07-30 15:27:27.937996 9d53c9f7-a9f4-4cda-82f1-19d058d0aed7 {"md5": "d7995adabbebfd272022dd0c04950e3b", "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"}], "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-07-30 15:27:28.008927 2024-07-30 15:27:28.008936 ef5d3bfe-1c21-4d9c-9655-3161901c7f83 {"md5": "778d9d96b5d5e5cdc10bef8f2939d8f0", "pid": "041600622", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geometrie"}], "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-07-30 15:27:28.084534 2024-07-30 15:27:28.084545 305d13c3-ec95-462e-9cc8-251cd193f9ac {"md5": "023fa24c101ce5643b3934f8aa9b1407", "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"}], "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-07-30 15:27:28.167953 2024-07-30 15:27:28.167962 78f552a0-fa74-41ac-bdc2-e9fdf2e732da {"md5": "5aaaed475b2a7524269fd904d4d1fcb1", "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"}], "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-07-30 15:27:28.264803 2024-07-30 15:27:28.264812 84118474-6206-4e7a-88cd-f17201c6ccc0 {"md5": "9de58fd35071bd9e60f5fe1eb9682bcc", "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"}], "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-07-30 15:27:28.3581 2024-07-30 15:27:28.35811 50796155-e725-484b-82a1-b9a5d52cd852 {"md5": "8614c72063a7fff6b1f1a62b0c27723d", "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"}], "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-07-30 15:27:28.449032 2024-07-30 15:27:28.44904 1d1e0b70-a2d9-4ac7-bd93-866f4ee02429 {"md5": "89c2971b7f7fe603aedc7d861caf101a", "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"}], "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-07-30 15:27:28.513009 2024-07-30 15:27:28.513012 fbcdf96b-2c30-470e-8a68-b302e40941e4 {"md5": "e5c5c473a209394305b3494128f0a292", "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"}], "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-07-30 15:27:28.573122 2024-07-30 15:27:28.573129 32b9e6e9-6c6b-4f0e-9095-75798a1403c6 {"md5": "e3732a2564368fc000af81ab5f928e9f", "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"}, {"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"}], "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-07-30 15:27:28.639543 2024-07-30 15:27:28.639549 58f3128c-78a3-4b9f-b553-cc0267350d1d {"md5": "71ba87f4039d6d815adb5ca430b9cdeb", "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"}], "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-07-30 15:27:28.705791 2024-07-30 15:27:28.705799 a78546f7-6d6c-4d47-a8f1-04ad42b335f3 {"md5": "1a45b6f79437fe2e151ae71bf31a0500", "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"}], "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-07-30 15:27:28.773768 2024-07-30 15:27:28.773775 ac7db5dd-cc41-45e0-96fc-97365684645c {"md5": "6ae1444029e0f3dfe29830fda20ea053", "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"}], "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-07-30 15:27:28.845809 2024-07-30 15:27:28.845817 53096f7f-f71b-451b-b1e0-f845e6234c47 {"md5": "ff94caa93bb49ed7b7193c336eb46e49", "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"}], "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-07-30 15:27:28.921394 2024-07-30 15:27:28.921403 756e00ef-ed8e-443c-a113-dd13fa146c1a {"md5": "287b24873b1111a70f0d755d31bec180", "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"}], "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-07-30 15:27:28.993403 2024-07-30 15:27:28.993411 8a78e091-8dd2-4cc8-82aa-c206c479870b {"md5": "78b1a9bd88281ff3ff400e935f771c2a", "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"}], "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-07-30 15:27:29.067736 2024-07-30 15:27:29.067745 e0d9fe95-7055-4360-baf2-f20003254488 {"md5": "a10b922e5d76379d2e3282d447f1b20d", "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"}], "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-07-30 15:27:31.688285 2024-07-30 15:27:31.688295 b7c45e82-a42c-4209-99ce-ac85271ad07f {"md5": "447d7de876c109fae4db6758cbede9d7", "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"}], "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-07-30 15:27:29.151522 2024-07-30 15:27:29.151528 b1f339e1-6995-463c-8fc5-c0ee3cd22dbe {"md5": "4fc67536c7b2368c22160a862887da5b", "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"}], "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-07-30 15:27:29.217157 2024-07-30 15:27:29.217166 41e5b894-9036-40b3-b89d-522f88ec0b75 {"md5": "9d335ed733b808db8df4e41d479a8bbc", "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)"}], "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-07-30 15:27:29.277394 2024-07-30 15:27:29.277402 bf8987fb-5c89-4955-8a7c-a08acccf7b45 {"md5": "334cfe98562b65c1aeeecc8923d00b47", "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"}], "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-07-30 15:27:29.342747 2024-07-30 15:27:29.342755 e3b6455b-2620-4793-bdb1-7eb394e47136 {"md5": "1fc044659c0d1baaabceb9efd929d019", "pid": "041555252", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:29.411405 2024-07-30 15:27:29.411414 7239e211-ea11-4244-af87-283d3f1cf6b8 {"md5": "b2a6f9f36d741174111f9fe1ca8055c3", "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"}], "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-07-30 15:27:29.485015 2024-07-30 15:27:29.485025 bee6e555-f792-4884-b6e0-df886563935e {"md5": "c07376da1860ef52a6efc681ae764715", "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"}], "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-07-30 15:27:29.551681 2024-07-30 15:27:29.551684 a1fa9740-9e7f-4531-9f44-d6c4eace744a {"md5": "885a1c5acab1cea59b428c46cf771219", "pid": "041549457", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wagen"}], "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-07-30 15:28:05.216865 2024-07-30 15:28:05.216873 e421b314-d84a-4fab-a5ee-f7eb2ba172fe {"md5": "3f7beb7a3bf8d3b3cdc082ca58fd4f6b", "pid": "127243124X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:27:29.615999 2024-07-30 15:27:29.616008 6bdf29f1-13f6-4024-adb4-482d5e5f7e63 {"md5": "1387a93b15552b99b0bf861d4d71192c", "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"}], "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-07-30 15:27:29.703409 2024-07-30 15:27:29.703418 550b8b79-8fa5-41f0-8e51-d11faac8bde0 {"md5": "62329cc248a6eb7bbb4158a4264500fa", "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"}], "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-07-30 15:27:29.798321 2024-07-30 15:27:29.798329 d67ef8b9-8548-4123-b15d-9fc3c58fe9ca {"md5": "0bd5c98b15996c67b3aba799d75cee7c", "pid": "041540387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kommunikationssatellit"}], "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-07-30 15:27:29.87253 2024-07-30 15:27:29.872537 04814f98-a102-416f-8bfc-568f04bfe832 {"md5": "00e64fae656dd9b5ad5d8a718141c071", "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"}], "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-07-30 15:27:29.944954 2024-07-30 15:27:29.944957 58517b82-c809-4b3e-af51-b102a8ba3972 {"md5": "0bf584d91c25f63f0fceec4a7488cf1c", "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"}], "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-07-30 15:27:30.012384 2024-07-30 15:27:30.012392 9f8f53e8-3ffe-46eb-8026-5ed53aa65ec0 {"md5": "3392dc8aba066f38a00bd9fd38f8c899", "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"}], "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-07-30 15:27:30.08115 2024-07-30 15:27:30.081158 22cc900b-1161-4adb-8ab8-03efa1bb7535 {"md5": "d144c77e4545027e5a5c5cf1a28ec98b", "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"}], "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-07-30 15:27:30.163062 2024-07-30 15:27:30.16307 30aa43b2-ae68-4358-a4e0-89dd141e3214 {"md5": "25441be29841e494e7fb1af17fdfd359", "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"}], "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-07-30 15:27:30.24326 2024-07-30 15:27:30.243269 b43bb90c-d049-4bc2-a31c-ff5c3a221906 {"md5": "75aa6363958b6ab337f197fbfac6b805", "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"}], "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-07-30 15:27:30.323926 2024-07-30 15:27:30.323934 47cf24f1-6a83-4ca2-86a6-d9cec6c82fd6 {"md5": "841d68f0f37c57a588e0151ae5d447f1", "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"}], "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-07-30 15:27:30.397058 2024-07-30 15:27:30.397066 acfbe9b1-6ccb-4d06-bf71-c5b57d80522e {"md5": "d605a387b4fb829a80f6acd0969cc564", "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"}], "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-07-30 15:27:30.469521 2024-07-30 15:27:30.469529 8424e8e3-dacf-4203-8c3b-f637d4b693ab {"md5": "5e650f369a855a9e7152eddf4f3b06df", "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à"}], "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-07-30 15:27:30.552929 2024-07-30 15:27:30.552938 6135f3fc-6a99-4740-a3ee-bd2cde60b5b3 {"md5": "4b6d3aff450706c452a5e87e60059ed7", "pid": "041507983", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:30.608061 2024-07-30 15:27:30.608065 f6b35712-a944-47cc-9b84-160918d64d78 {"md5": "eefee24027b1c28db5702c674d5a96ea", "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"}], "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-07-30 15:27:30.666319 2024-07-30 15:27:30.666326 7f926873-f4f9-403c-857a-0b635b8242b0 {"md5": "9acb45838317770e017d8f59df700c3f", "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"}], "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-07-30 15:27:30.734242 2024-07-30 15:27:30.73425 0b211b99-bcac-4411-a839-0754ac6a0b12 {"md5": "8c1c646331fc811011a8751aeb22f0be", "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"}], "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-07-30 15:27:30.829451 2024-07-30 15:27:30.829464 37c3956c-8d49-4dc2-8f9a-f103ec1d60f8 {"md5": "30b4a4726e9feb365ff36c76915d9016", "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)"}], "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-07-30 15:27:30.914889 2024-07-30 15:27:30.914902 db0a9f18-e26e-4332-9e0c-4a4f18d2ded7 {"md5": "3b29c2d8d79dfb4c9968fffa652b46b0", "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)"}], "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-07-30 15:27:31.005105 2024-07-30 15:27:31.005117 f7344d98-997a-47a6-b18c-2318939f85bd {"md5": "62aaf39bc1bdb4c65cf28530f88c5f61", "pid": "041497848", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Transformator"}], "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-07-30 15:27:31.100816 2024-07-30 15:27:31.10083 84729724-bb9a-43fc-bdf4-8ddb287821f1 {"md5": "7e98db2544357e4ecf2ae1c0f7277eef", "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"}], "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-07-30 15:27:32.356255 2024-07-30 15:27:32.356264 7a425aa2-f97b-4596-a746-b0ff6aa48e41 {"md5": "79fdd97a4a2880103193da29a92231d3", "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"}], "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-07-30 15:27:31.186715 2024-07-30 15:27:31.186723 fd11e0c8-7a07-4549-b230-936d2811eb91 {"md5": "1af068a594f2ba6309dab479dda97d86", "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"}], "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-07-30 15:27:31.272422 2024-07-30 15:27:31.272432 b09ed5fb-7324-4141-bc10-fb89c7dba0c6 {"md5": "ee8e7994ee2c67ca07db42944d14ad1f", "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"}], "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-07-30 15:27:31.360648 2024-07-30 15:27:31.360658 45da6991-cfb0-4b0a-ab23-b76c4052c92e {"md5": "0db49a8bc4fe57b0ac4fb267ea7006c6", "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"}], "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-07-30 15:27:31.451829 2024-07-30 15:27:31.451838 bf0f3390-de3a-4b05-a53b-bd041e914171 {"md5": "b94b087f042c35d6f79abca5d994a9b5", "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)"}], "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-07-30 15:27:31.542098 2024-07-30 15:27:31.542108 007aaa85-aaa8-417d-ab94-522791fc1d59 {"md5": "19f5f299da974c1aff9529a1fc64c5fa", "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"}], "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-07-30 15:27:31.615967 2024-07-30 15:27:31.61597 080b0468-a699-423e-8a4f-1bb6f409b9f3 {"md5": "2512d7f91367f6bcbaba6dfd5bf05424", "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"}], "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-07-30 15:27:32.450547 2024-07-30 15:27:32.450559 b21bec43-6845-46f5-8117-874151f02ee4 {"md5": "fb5fc0f4ca1c4facbca027f5229d0537", "pid": "041445120", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Methanolkraftstoff"}], "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-07-30 15:27:31.779701 2024-07-30 15:27:31.77971 4fdf1d01-905f-4da7-a120-123d5b0268b8 {"md5": "3d717f940fd99dd91d9d44b61082891f", "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"}], "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-07-30 15:27:31.861242 2024-07-30 15:27:31.861251 97f634ff-3f5b-4377-86c9-99ca7fb521b2 {"md5": "38622f89ac183a033aa5c44d48058d27", "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"}], "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-07-30 15:27:31.950811 2024-07-30 15:27:31.950822 b1d83823-f061-4ce7-8c52-6feb90ba08a8 {"md5": "32ed8147f6da2e83df806576e2026a97", "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"}], "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-07-30 15:27:32.04963 2024-07-30 15:27:32.04964 4dad30ea-f4d2-4ac1-a5db-9f82336393e9 {"md5": "b54af7d9be154e58b1acf29fe3744e46", "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"}], "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-07-30 15:27:32.152854 2024-07-30 15:27:32.152866 629af789-271a-411c-9eba-a0e5d7fbbf75 {"md5": "4f4d5fe13b09464ca11427b968c8696a", "pid": "041451732", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beweisverbot"}], "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-07-30 15:27:32.256832 2024-07-30 15:27:32.256845 480dec5b-2183-4476-af66-056c74cf0753 {"md5": "092227e9f6ea3117fc40e98ec0b82506", "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"}], "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-07-30 15:27:32.626431 2024-07-30 15:27:32.626433 439fcf6f-c8e2-449c-8f8e-22f9ec4885e0 {"md5": "2055c38d270c9fb99826fedbcb180160", "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"}], "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-07-30 15:27:32.709871 2024-07-30 15:27:32.709879 a2e87956-f42e-431a-b5f6-5ce377dc6c7f {"md5": "ea70cf83c5b4aa72a651f61630e62aed", "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"}], "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-07-30 15:27:32.794883 2024-07-30 15:27:32.794893 3a19f8a5-39c2-45df-84e3-bf861cf125ec {"md5": "8db39014d6bd41832f85497f7a27c3b2", "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"}], "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-07-30 15:27:32.862067 2024-07-30 15:27:32.862074 15151d84-1f01-467f-9a54-b1141b52ee60 {"md5": "282f6afe88d595d53e1057d83fd7563e", "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)"}], "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-07-30 15:27:32.928621 2024-07-30 15:27:32.928628 c4b2056f-63e1-4926-ac59-d9af72356788 {"md5": "c2be82457676985c3ea212896353af22", "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"}], "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-07-30 15:27:32.996974 2024-07-30 15:27:32.996982 6997c055-13b5-40ac-8e11-2a9109ff9abd {"md5": "a31eae305f8e28233223dbd2769a335d", "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"}], "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-07-30 15:27:33.062517 2024-07-30 15:27:33.062525 cda6e404-af69-4ca9-9725-33edb51af355 {"md5": "2a298e024d929c787755ac6617a21cfd", "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"}], "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-07-30 15:27:33.13577 2024-07-30 15:27:33.135779 4d5f098d-37eb-4716-baf2-7518c4e15cba {"md5": "abc6c9486f098d3e8fe6432e11b98aae", "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"}], "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-07-30 15:27:33.206602 2024-07-30 15:27:33.206609 67ebb238-fa76-46b6-96e0-867c35fae3a3 {"md5": "0af5463c48466ff795aae0841500dee3", "pid": "041427548", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:33.281961 2024-07-30 15:27:33.281969 672b8a7d-5abd-4392-b22e-b791047edf4c {"md5": "c02e672ab669522d90f1a67c6abfa3df", "pid": "041424654", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:33.362809 2024-07-30 15:27:33.362818 78e6a16e-94f1-4b3c-829c-2e35bcc1444b {"md5": "4bba16a4561f1f015ebcdf5bb2b82a1c", "pid": "041419464", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Energieversorgung"}], "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-07-30 15:27:33.436557 2024-07-30 15:27:33.436566 d99141e6-f122-41b1-b752-f214a6ad61ab {"md5": "e1727dba8c1c5579acdfec8889f7a80d", "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"}], "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-07-30 15:27:33.522783 2024-07-30 15:27:33.522791 8e444a4b-ce8f-4bd6-8cc8-3944bd7562ec {"md5": "fa37b1e824fd72b6dbe233da8aa92ef8", "pid": "041413083", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:33.612556 2024-07-30 15:27:33.612565 5a032943-7067-40aa-a221-936f614cd71d {"md5": "3a6a6709677916a57b4b78414ec0484e", "pid": "041410513", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:33.673448 2024-07-30 15:27:33.673452 d3dc1f63-5a46-4e27-ab43-030f40a14132 {"md5": "1477fb045d5994495da3d8316e5deb8e", "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"}], "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-07-30 15:27:33.74162 2024-07-30 15:27:33.741644 9b36c38a-bfac-4b81-b2b4-688977a0f4e9 {"md5": "c643ffed117fd2e530e59a4119e73930", "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"}], "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-07-30 15:27:33.822905 2024-07-30 15:27:33.822913 1a796d89-38fb-4427-8fed-688161fdfc4c {"md5": "1f909d1ebd74a7884f0f08e4b2a37d94", "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"}], "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-07-30 15:27:33.913543 2024-07-30 15:27:33.913551 09b3e278-c816-4262-b725-321f3753debc {"md5": "5a36b55f5cb67c210cdb85eec70b4106", "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"}], "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-07-30 15:27:33.988269 2024-07-30 15:27:33.988275 2d48cffc-6f71-46d1-af5d-ab90c551e3f9 {"md5": "51dc353f4717c9b8350324052bae85fd", "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"}], "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-07-30 15:27:34.068867 2024-07-30 15:27:34.068877 153dbdea-6fd2-4fc4-b618-b394d9266d0c {"md5": "bad2b1ee7bfc958df9f6c5666148f871", "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é"}], "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-07-30 15:27:34.15249 2024-07-30 15:27:34.152498 5814e88a-4c44-4d6f-8d3c-3433942a0c5c {"md5": "8ec977e54617c0962e99ba8355b5eeae", "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"}], "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-07-30 15:27:34.223598 2024-07-30 15:27:34.223606 08af2abf-1119-44c0-9693-42019ed73cc2 {"md5": "dd3bbdb16953fe497177b859214443c6", "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"}], "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-07-30 15:27:35.72172 2024-07-30 15:27:35.721724 6b837c75-79d0-4409-9684-cf94ac628be3 {"md5": "5bff64ab230ada6cfed1e30e2c935fb8", "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"}], "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-07-30 15:27:34.299176 2024-07-30 15:27:34.299183 c6779024-9ac1-4533-a999-442b6d342bba {"md5": "e8568469ac69765add65a595d891a598", "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)"}, {"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"}, {"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"}, {"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"}], "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-07-30 15:27:34.388565 2024-07-30 15:27:34.388621 66af502b-15fb-4bf5-941f-7edbad37019f {"md5": "f09404d475962fc1f91097c711b04566", "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"}, {"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"}], "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-07-30 15:27:34.466832 2024-07-30 15:27:34.466839 5c9e8cbb-3682-4954-ab90-c318bccdefe6 {"md5": "b951b47c11cf89e967e0af3cfab70055", "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"}], "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-07-30 15:27:34.541664 2024-07-30 15:27:34.541673 2f10c257-8c1a-478c-baa8-d37fcafd5f31 {"md5": "755cf6d522f4c9d39400a954d654b355", "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"}], "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-07-30 15:27:34.626602 2024-07-30 15:27:34.62661 e9985cce-d18b-4a31-a7af-591cff7121ad {"md5": "bee79e5d7fc340cdfa56876279affb2b", "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"}], "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-07-30 15:27:35.798872 2024-07-30 15:27:35.798881 85f3b796-7773-43dd-afae-112cc5cad69b {"md5": "60aba997826e0c9d7087a0eda74c0c46", "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"}], "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-07-30 15:27:50.80964 2024-07-30 15:27:50.809653 e95eec17-0171-45a9-ac12-20735b323eac {"md5": "59b9440d4c429937bb1c8723bd9e96b8", "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", "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-07-30 15:27:34.701628 2024-07-30 15:27:34.701632 a71fa80f-1a8d-45d5-8a11-5149bf198510 {"md5": "5e60ac3aac6b4f8650d14d58b5a25ccf", "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"}], "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-07-30 15:27:34.793291 2024-07-30 15:27:34.793301 f38695ed-7dcd-496c-b581-eeb3dcfa3c2a {"md5": "780dfe239b67d866db68553f3d52c0d6", "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"}, {"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"}], "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-07-30 15:27:34.888495 2024-07-30 15:27:34.888505 46ecdb89-b062-4977-a5b5-328a659416ed {"md5": "7411dde21367b66e3d6a59ab4a062844", "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"}], "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-07-30 15:27:34.97926 2024-07-30 15:27:34.979273 c24a1a33-10f1-4e83-9d30-a729633d1adf {"md5": "ce12446b55a2ed890aac83ec75460926", "pid": "041380827", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bankenaufsicht"}], "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-07-30 15:27:35.068714 2024-07-30 15:27:35.068723 241fd3e8-5daf-42cc-9fce-da7d55d64122 {"md5": "698fdcdbcbc1bf4b3c1a0e68965e747b", "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"}], "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-07-30 15:27:35.158985 2024-07-30 15:27:35.158993 1cc79862-73b2-4312-8326-4b2a730d8b77 {"md5": "fc5675db60df0622d372d4fc78d4da2f", "pid": "041378296", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Autor"}], "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-07-30 15:27:40.386095 2024-07-30 15:27:40.386101 f5ead1a2-16ed-418f-853a-7969b8658e4d {"md5": "0edf71b4d6baa4941793ed51aa0f2396", "pid": "041217020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Botanik"}], "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-07-30 15:27:35.265613 2024-07-30 15:27:35.265623 aba4afc3-7fce-4d66-9944-5ff40f39067e {"md5": "c18feff6118d17bee3817d2fd210c2da", "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"}], "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-07-30 15:27:35.36557 2024-07-30 15:27:35.365584 28db7f27-da3d-47ba-ba73-2b8032bb0638 {"md5": "50d61c3d6bd55ae80d5590cf50fa3aaf", "pid": "041375785", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:35.441655 2024-07-30 15:27:35.441663 8805fa0e-552e-4a4f-bdf5-c0f3472d25d5 {"md5": "ba966530448fbe688291baf2e26987cb", "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"}], "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-07-30 15:27:35.517564 2024-07-30 15:27:35.517571 5202a208-2f96-429d-ad63-ad551e4116b0 {"md5": "2e2a7287abc116beffa1463ba3e9988b", "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"}], "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-07-30 15:27:35.586487 2024-07-30 15:27:35.586494 f1c64f39-c4da-46bc-8352-ec1c8d95c5a7 {"md5": "12b05316bf9fdfc54c800475d6228155", "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)"}], "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-07-30 15:27:35.655569 2024-07-30 15:27:35.655577 36553467-84a9-42d4-89e6-f5c084bdfad6 {"md5": "f989ef1bc991aa0e9786c825e431ec29", "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"}], "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-07-30 15:27:35.86906 2024-07-30 15:27:35.869069 e1e51863-add5-443e-91ab-b749e548135d {"md5": "684a32b1ad991a4c9eb9a0a0a668da63", "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"}], "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-07-30 15:27:35.949538 2024-07-30 15:27:35.949547 9458435d-e0d8-4645-8bab-a8d1e2760791 {"md5": "457557467cc06608101f1ab27ef921fe", "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"}], "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-07-30 15:27:36.025119 2024-07-30 15:27:36.025128 cff2073a-7ebd-4d6f-90f5-336e8852ef17 {"md5": "3f86ac46d5c3d0cc478976d31361191d", "pid": "041357515", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antenne"}], "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-07-30 15:27:36.09678 2024-07-30 15:27:36.096789 d7570880-0df6-4049-adaa-f37116b3b87f {"md5": "374992660d789658200f4a153fdafd3c", "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"}], "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-07-30 15:27:36.181018 2024-07-30 15:27:36.181027 5194c876-df39-4fc8-8533-67556b4f956f {"md5": "c61d76bad51f3fe07e14ebc82d6d23b0", "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"}], "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-07-30 15:27:36.257148 2024-07-30 15:27:36.257157 0bfd83eb-5933-4144-af12-cb9f416f8311 {"md5": "1a775d09f264f5409e55f47caea9f28b", "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"}], "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-07-30 15:27:36.334093 2024-07-30 15:27:36.334103 47106888-69d1-48b8-b724-79c04933d4b9 {"md5": "589606e85ed1acf66537de4006554bea", "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"}], "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-07-30 15:27:36.409972 2024-07-30 15:27:36.409981 df771413-d431-4696-a4d1-6bf343841889 {"md5": "1f473b5dfbdd00d94c0f076f89fd6d95", "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"}], "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-07-30 15:27:36.484641 2024-07-30 15:27:36.484651 9a9ad331-b343-46ea-a233-2182d3e87f31 {"md5": "1056c3ecb8820223597897ef135288cb", "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"}], "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-07-30 15:27:36.576204 2024-07-30 15:27:36.576212 10cbd858-4735-4ea4-9801-e3af2a77b454 {"md5": "9c4ab634d2ce09e18c31d98ee51c1df3", "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)"}], "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-07-30 15:27:36.653614 2024-07-30 15:27:36.653622 f0b7d50b-1358-438f-be53-7bba1e68fe25 {"md5": "e8a52541db2dd04198c5d72ac3180269", "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"}], "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-07-30 15:27:36.720841 2024-07-30 15:27:36.720844 62081650-d816-4ffd-bb02-8d7d1643c6ca {"md5": "387503ee01be0b26cfa9f9627c3c5bcd", "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"}], "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-07-30 15:28:05.28464 2024-07-30 15:28:05.284649 384aefd4-69ff-4766-818e-d832cb0946c9 {"md5": "401ce00d5c9342e485256f0e61df4df0", "pid": "1272429997", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:27:36.787535 2024-07-30 15:27:36.787544 47889eef-a642-4b26-a68a-e0cc38e45ed2 {"md5": "4d5f3cda163b622375452b6c81cebc6c", "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"}], "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-07-30 15:27:36.866686 2024-07-30 15:27:36.866694 e73c6a0f-7924-4876-8da4-c535b3d8d1c4 {"md5": "ecb59d93e1658383d3665da9e6d65154", "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"}], "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-07-30 15:27:36.949519 2024-07-30 15:27:36.949528 5bfeeec9-30ca-4309-8655-99e0c49d3906 {"md5": "388bd623e6a754ca238303343ab0f812", "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"}], "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-07-30 15:27:37.025799 2024-07-30 15:27:37.025807 87c6ea6e-dfef-4fad-afa0-1c3c16d97250 {"md5": "5dc4f354bce839a9a83fc5da36b59543", "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)"}], "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-07-30 15:27:37.114704 2024-07-30 15:27:37.114713 1e0f35f0-32af-4637-862d-693a6036ae39 {"md5": "a6e9ba26ac652a61631997fbdc7626b4", "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"}], "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-07-30 15:27:37.195649 2024-07-30 15:27:37.195659 6a5b7e11-28fb-4389-9b6d-c66587024535 {"md5": "9477782c51943aca9e04e43a48e42b2c", "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"}], "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-07-30 15:27:37.268276 2024-07-30 15:27:37.268283 69d145e3-2246-4658-be4e-83e09543068e {"md5": "e4901d8b8cd542dc54a5da54064dc3c3", "pid": "041308263", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:37.336928 2024-07-30 15:27:37.336936 28757a7f-ef08-40a4-914e-e37d97d58476 {"md5": "a0f1c10f9b1c23b9f0e8a2d946a0694f", "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"}], "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-07-30 15:27:37.421436 2024-07-30 15:27:37.421444 01313cf6-765c-4de5-8176-5ad6873ccf44 {"md5": "5471c4d7ef8998207a51651cace890fc", "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"}], "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-07-30 15:27:37.504195 2024-07-30 15:27:37.504204 50cdc7b9-c9df-4256-8acd-aa3c3b3b026b {"md5": "710ce8fde4d5fbbbf3fae9008db0f690", "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"}], "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-07-30 15:27:37.57976 2024-07-30 15:27:37.579769 0c1d4340-a807-4244-9379-7921fd19cdd8 {"md5": "b436410857ca96684b541fbe7227dcc9", "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"}, {"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"}], "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-07-30 15:27:37.665046 2024-07-30 15:27:37.665055 aa194a61-7b8d-4d77-96ed-b1b7488a6aab {"md5": "b98e1876c0d0788fc47bf1fa38644236", "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"}], "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-07-30 15:27:37.744985 2024-07-30 15:27:37.744988 3cd35625-6d09-4005-b70b-013cab3f81af {"md5": "1853d76988edc3bbef2d02815b39feec", "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"}], "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-07-30 15:27:37.809079 2024-07-30 15:27:37.809086 c68bd60c-e279-4e39-ac46-19167fb5786a {"md5": "b6cebc7441d522173e10fd5565bbf60e", "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"}], "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-07-30 15:27:37.892644 2024-07-30 15:27:37.892652 07136491-3fea-43a9-9285-453686ec09ce {"md5": "39b3d002aaa0ae0698732e5882ae6193", "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"}], "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-07-30 15:27:37.97992 2024-07-30 15:27:37.97993 729abc76-d63d-448b-84f3-385743bde73f {"md5": "c4c5aa9c10a980e34a3c9a22aab68300", "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"}], "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-07-30 15:27:38.077702 2024-07-30 15:27:38.07771 c957c3e3-0e89-44ba-a4cb-06b2477be073 {"md5": "c2e7565ee7e5cf54a9547562805030d1", "pid": "041287886", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:27:38.214632 2024-07-30 15:27:38.21464 5f44264e-5bfe-4d09-81be-bbd434a615aa {"md5": "63eeb07f32045a6f9463485cb7a8a358", "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"}], "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-07-30 15:27:38.286692 2024-07-30 15:27:38.2867 db3a30b3-1a5f-4115-bed9-50a53675a24b {"md5": "f5a4c169e2babf3f9297e08417faa6c1", "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"}], "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-07-30 15:27:40.452756 2024-07-30 15:27:40.452764 1999a367-7298-4015-90cc-9dffc03618f3 {"md5": "5b12ac2803dc883769c872271b27d2c6", "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"}], "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-07-30 15:27:38.359477 2024-07-30 15:27:38.359489 ab0fb2b9-0983-488a-be8d-ffe26b7d69a3 {"md5": "7e964803b6bd6791f0f9db65cee2225d", "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"}, {"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"}, {"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"}], "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-07-30 15:27:38.445932 2024-07-30 15:27:38.445941 7b1ea6f2-d5ae-4168-9b35-51eea4f4f03d {"md5": "fa69ccf291d548a462b8e815624cf345", "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)"}], "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-07-30 15:27:38.5223 2024-07-30 15:27:38.522308 e535dc50-0c55-4b29-97fe-5376e25ca6b1 {"md5": "a956ef7174d48aed19a075e85d008209", "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"}], "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-07-30 15:27:38.601582 2024-07-30 15:27:38.60159 80c68e49-0889-4f8e-84f7-19a1f082e542 {"md5": "6796fe8c37bf86d769646cf524b8d25e", "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"}], "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-07-30 15:27:38.684527 2024-07-30 15:27:38.684536 cbe1d770-5da8-44d8-9c2e-11530e014b74 {"md5": "3a3b4b19629dcc4c163fae991dba466d", "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"}], "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-07-30 15:27:38.775285 2024-07-30 15:27:38.77529 3593e8b5-73e7-491c-ad32-8a6f3a3d9494 {"md5": "3bb422fddd2b454c01bfa5d57df72a88", "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"}], "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-07-30 15:27:51.51337 2024-07-30 15:27:51.513379 d2578a56-c9cd-4271-ad6b-e610b29cce1a {"md5": "ed040c5c0331cdde09da4fc81133d643", "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"}], "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-07-30 15:27:38.853658 2024-07-30 15:27:38.853668 c5f9706a-8210-4cda-80c4-05ec841d2b8b {"md5": "793e78c3645ee3380ebb9c8558ab1be6", "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"}], "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-07-30 15:27:38.925986 2024-07-30 15:27:38.925996 1d652814-78d6-4eb9-ab4d-21638564a7bc {"md5": "43581750273ea01c7b58aa3db70042b0", "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"}], "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-07-30 15:27:39.001361 2024-07-30 15:27:39.00137 53a40571-0424-48cc-b1fe-bf821a4f8526 {"md5": "18a9b3312a0b69be19ae4643aa427952", "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"}], "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-07-30 15:27:39.080092 2024-07-30 15:27:39.080102 89c485e7-0d6d-47e3-9cbe-e505b47438fe {"md5": "93d5a574b5eefa415f89dd16b2b9fefb", "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"}], "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-07-30 15:27:39.158747 2024-07-30 15:27:39.158756 c1e5db46-b493-40fd-a984-43c08870e5c8 {"md5": "9ed69a0f65100af5f19a15df5b3b5205", "pid": "041258762", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:39.234388 2024-07-30 15:27:39.234396 6cd86fa8-9bdb-4d02-b313-6576bfb125bf {"md5": "a68c8a4659cf6d66364700f83803d77f", "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"}], "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-07-30 15:27:39.334057 2024-07-30 15:27:39.334065 6f231845-5eea-48a2-acbb-97b6be9aa872 {"md5": "f90ff6f506c771d1a8b17105072802bb", "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"}], "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-07-30 15:27:39.408261 2024-07-30 15:27:39.40827 4424ed61-8ffb-4509-88f2-4f85c9b6b863 {"md5": "3871c9362ee3b24d0e98e903e4d26138", "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"}], "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-07-30 15:27:39.485429 2024-07-30 15:27:39.485437 65fa8ab1-3a85-4ef3-a05e-3415855f8bc3 {"md5": "5cb51316f9594ae29e37e8b07e0b1412", "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"}], "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-07-30 15:27:39.557935 2024-07-30 15:27:39.557944 38803ab6-102b-4c72-b0f3-ca6620acb473 {"md5": "28f87d3abe97e4f1ab072bf38392852b", "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"}, {"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"}], "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"}], "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-07-30 15:27:39.642445 2024-07-30 15:27:39.642454 923b3fe2-9fbf-4bb5-b77d-466e76115e16 {"md5": "e2f2f9bb253421a4102ee757f0d95d37", "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"}], "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-07-30 15:27:39.73001 2024-07-30 15:27:39.730019 d41c545a-5bad-45cf-8eb1-d71630b7ad06 {"md5": "277a08c015152011fdd16eeeffd3f2b1", "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"}], "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-07-30 15:27:39.814425 2024-07-30 15:27:39.814428 b8e64155-6741-4f27-b706-7aae6dffafa5 {"md5": "f79355352902db6a0b6bb7f8a51d2dad", "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"}], "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-07-30 15:27:39.87904 2024-07-30 15:27:39.879049 74dd8d6c-84d2-4056-b30c-87f8f8e0417f {"md5": "fcddfb7d0e539015de082e46fc76f7b0", "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"}], "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-07-30 15:27:39.958441 2024-07-30 15:27:39.958451 0c403387-f651-497e-a138-122dd630fc80 {"md5": "bbc66f8654f64c4a0cb7ef55ecb47523", "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"}], "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-07-30 15:27:40.037111 2024-07-30 15:27:40.037119 11ad469f-8259-4578-be5c-ea28ba6a6ea5 {"md5": "b91c447f180a9d70737fdea24aae69df", "pid": "041220803", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ermessen"}], "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-07-30 15:27:40.11038 2024-07-30 15:27:40.110389 4757ebf8-f81b-4516-a7db-303437bffaf9 {"md5": "b2830ce7047eac6efe43cda5bf77cd81", "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)"}], "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-07-30 15:27:40.201468 2024-07-30 15:27:40.201477 27c35cf8-28dd-4675-8556-02ae34d9fe3c {"md5": "014771aad025d5ae41e0797f8d7dc555", "pid": "041217896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fasanenartige"}], "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-07-30 15:27:40.29389 2024-07-30 15:27:40.2939 608501fe-13fa-4584-b62e-66ed2fe2c52b {"md5": "11e5f16b3f817bfec22afa811ce9dd41", "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"}], "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-07-30 15:27:40.516778 2024-07-30 15:27:40.516786 2e2c4f63-8070-4004-abf6-38e5065057db {"md5": "fca2f9057dba90a19126167888eb9128", "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"}, {"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"}], "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-07-30 15:27:40.582869 2024-07-30 15:27:40.582878 65ca1391-4398-4093-979b-5c266bc267d9 {"md5": "b998db136ad0fb8aa0181cabe19764c5", "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"}], "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-07-30 15:27:40.654413 2024-07-30 15:27:40.654422 be330213-2eff-4bf6-8331-2f678497e92b {"md5": "c89ab2f36d5002048320aaf482205871", "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"}], "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-07-30 15:27:40.732969 2024-07-30 15:27:40.73298 e1e2078a-e3c9-4a40-830a-38d049963ff6 {"md5": "48a98a32d9b7cb5959316f3f7688d005", "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)"}], "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-07-30 15:27:40.807824 2024-07-30 15:27:40.807834 ec6edb0b-0c44-4364-962f-621d2e8f21fb {"md5": "3f4030c3ba2ce7e1cc50301dde631075", "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"}, {"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"}], "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-07-30 15:27:41.690276 2024-07-30 15:27:41.690283 bee1f819-18ac-40db-90e2-7f274e49c636 {"md5": "472a1ddb386e2298c6942d0a0a576d38", "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"}], "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-07-30 15:27:40.859246 2024-07-30 15:27:40.859248 ef61cf30-badb-4c6c-9d9d-f534912391b1 {"md5": "4476ad17c356d55b3df250ab2795b58d", "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"}], "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-07-30 15:27:40.925198 2024-07-30 15:27:40.925207 cc6ae561-2e81-46b2-a2af-2d02045d4860 {"md5": "ebb71a25a353e4561e2a37ec618eeed3", "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"}], "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-07-30 15:27:41.007129 2024-07-30 15:27:41.007137 8208b39e-5a54-4d80-a3e5-7bbea1f5824b {"md5": "bf9f19a34e48a04b8aed81820f7c91ed", "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"}], "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"}], "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-07-30 15:27:41.084481 2024-07-30 15:27:41.084505 40f058ea-1986-4801-8116-8faf99a0a1ca {"md5": "03a8215e2fe5ba288b7fac4f45720142", "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"}], "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-07-30 15:27:41.159535 2024-07-30 15:27:41.159543 f33cbabc-295a-4b94-8e1d-8c0e8513f688 {"md5": "d28ad1b1fdf8f8230a3dbaac3b87ddc1", "pid": "041172922", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:41.761563 2024-07-30 15:27:41.761572 384c2fc7-5bb5-44da-a10a-2fc380847fa0 {"md5": "4191ee67dcdbf3242ec2f59e0f60a127", "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", "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-07-30 15:27:41.241787 2024-07-30 15:27:41.241794 f916fa39-2722-47b7-a93d-20febd51cce8 {"md5": "0e711e033ef41f2918c914db07ec1340", "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"}], "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-07-30 15:27:41.318943 2024-07-30 15:27:41.318952 f4398e7d-f73a-4601-a635-92bfbd0c4660 {"md5": "755f8785881b1ba0c4ed394dad6d19a3", "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"}], "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-07-30 15:27:41.391816 2024-07-30 15:27:41.391823 df4c9788-83de-4b38-b36f-46686e7fba39 {"md5": "fb39c80a9505542e1dae31f94043ecd0", "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"}], "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-07-30 15:27:41.461597 2024-07-30 15:27:41.461605 f6aec429-05fc-4dd3-8fd4-3a3c0c436a59 {"md5": "15f6f4773e21d9ca998b844b28e7787a", "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"}, {"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"}, {"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"}], "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"}], "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-07-30 15:27:41.536751 2024-07-30 15:27:41.53676 c99faff4-693e-487b-b793-57fbe58f4ba3 {"md5": "82600987bac318189f140f3e7069f0f5", "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"}], "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-07-30 15:27:41.615367 2024-07-30 15:27:41.615376 b47df1e3-9447-4130-9c47-04e7b79eb868 {"md5": "db3323bd073fdcc930244146e056842b", "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"}], "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-07-30 15:27:41.83153 2024-07-30 15:27:41.831539 3a520b25-2680-4c28-8db8-27c6402f5cac {"md5": "97fb660eef00e7d57b40027fcb9e337d", "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"}], "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-07-30 15:27:41.883653 2024-07-30 15:27:41.883655 c725b299-d869-4e6f-be97-9fac810505bf {"md5": "19a3a37f5ce420e956194d01d7e9d6f5", "pid": "041067940", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:27:41.943043 2024-07-30 15:27:41.943048 42f1b872-1bba-4e02-820e-6991e3ad4920 {"md5": "0f7d7ac38368748689c9fca8262da6a8", "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"}, {"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"}, {"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"}, {"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"}], "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"}], "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-07-30 15:27:42.011384 2024-07-30 15:27:42.011394 7a301d21-6bf7-4ccf-a8ed-8eeabaab1420 {"md5": "93ef08a4278930f58820fc1a9ff8a1a7", "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"}], "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-07-30 15:27:42.077767 2024-07-30 15:27:42.077776 f797b5a2-a602-4281-aeb3-8f8af38e3d61 {"md5": "542d302379f33caee03a000cf968e836", "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"}], "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-07-30 15:27:42.163136 2024-07-30 15:27:42.163147 d687c3fd-26b2-4d0d-80bf-2cce4a0e7092 {"md5": "12632d11626ceade9d02cfd901f05fba", "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"}], "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-07-30 15:27:42.234531 2024-07-30 15:27:42.234539 d4a7f598-e3ab-4a8f-9066-4220aab1ed78 {"md5": "90bd6e709a5917c4f28cc457e8067696", "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"}], "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-07-30 15:27:42.323827 2024-07-30 15:27:42.323834 3655cbc5-fe1b-420e-8915-16ba0921f5be {"md5": "a20868aa1c0a58f4ea3bde998de104ce", "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"}], "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-07-30 15:27:42.392617 2024-07-30 15:27:42.392625 f675a5a4-5150-4625-957e-7906b524252d {"md5": "d93fa8588760980a5c2defa49032ab3e", "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"}, {"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"}], "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-07-30 15:27:42.46657 2024-07-30 15:27:42.466578 34c3c4c0-d0ee-45c5-83ab-daa4e6d085e9 {"md5": "26f2f75efa9d714d0689d2d5e0e6b11c", "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"}], "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-07-30 15:27:42.535674 2024-07-30 15:27:42.535682 ef5c7e14-9b71-4e5d-b4a0-a87b930a53e2 {"md5": "1c57dc890ab2fba69ec06e6f4122d8f6", "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"}, {"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"}], "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-07-30 15:27:42.628318 2024-07-30 15:27:42.628322 e372d7bd-67c3-4f9d-b9ac-149b8c47bbb3 {"md5": "7de5f06eec626d2a13a985986fb98566", "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"}], "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-07-30 15:27:42.708658 2024-07-30 15:27:42.708667 805b99c5-5dfe-47ae-b6f2-66205c67cdb4 {"md5": "352f8d8fee96f39e83ce63ef75867486", "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"}], "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-07-30 15:27:42.796079 2024-07-30 15:27:42.796084 ee115e48-62f6-48c8-89b5-c52fd60eea37 {"md5": "4ea97778c4241f14d0622b155d87ed4a", "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"}], "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-07-30 15:27:42.866053 2024-07-30 15:27:42.866061 331e086a-63e4-4c00-8a8a-3f3b0d866c19 {"md5": "53c840dfb8cec3972e9ebf423594efd7", "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"}], "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-07-30 15:27:42.912098 2024-07-30 15:27:42.9121 51d48a1a-c8e6-4cfe-a14f-fd77604a12d0 {"md5": "fb60e5a7469a81272589094707dbf2f5", "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"}, {"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"}], "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-07-30 15:27:42.979122 2024-07-30 15:27:42.979131 38996aeb-116b-4a34-b2bc-8c4b6accd553 {"md5": "1154940e1bd4c23b76ec01e98c79f82b", "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"}], "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-07-30 15:27:43.055796 2024-07-30 15:27:43.055805 6d6f4ce0-0445-455a-b2b8-f4fcc210d4a2 {"md5": "6125a974550647727a648cf548d3ff86", "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"}], "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-07-30 15:27:43.156954 2024-07-30 15:27:43.156958 ded092c4-2581-4d64-b135-68b339857022 {"md5": "1015a0ddcdbc655d521987712dc179e9", "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"}], "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-07-30 15:27:43.221108 2024-07-30 15:27:43.221118 51b4ae7c-79ff-4014-934a-7f5421859939 {"md5": "9e3b74eac49c9de82e608a90b32ad503", "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"}, {"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)"}], "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-07-30 15:27:43.292748 2024-07-30 15:27:43.292756 7b4575c1-0132-47fc-a756-e7bc00898f80 {"md5": "e5e598e18266780cd5f048d0577c9586", "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"}], "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-07-30 15:27:43.372387 2024-07-30 15:27:43.372395 7b2dc7e2-55a7-495b-952c-5f62d9a8bd63 {"md5": "824b420b8f641400465f4613c64d6de3", "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"}], "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-07-30 15:27:43.4441 2024-07-30 15:27:43.444109 c9a66683-3f0b-407d-90f9-cc6516e281f6 {"md5": "ea920bb72e60075487246ceb553d0269", "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"}], "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-07-30 15:27:43.51931 2024-07-30 15:27:43.519318 ebd29389-05a8-431a-a843-42dc6d2d89fc {"md5": "1f55d17889705e639b122b05f11886e1", "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"}], "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-07-30 15:27:43.971848 2024-07-30 15:27:43.971853 990b81cf-04ed-49b3-95b2-d6de7acc48ec {"md5": "ebc6661b0af4ef6e4778f9a0054aec01", "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"}], "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-07-30 15:27:43.589559 2024-07-30 15:27:43.589566 fcc1b34e-fb42-4a46-9041-f11910cbf1b7 {"md5": "72df06d2a976114d8b90c24eb2faa663", "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"}], "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-07-30 15:27:43.664964 2024-07-30 15:27:43.664973 4678163d-2c72-4f00-877c-968fa99864d7 {"md5": "86f7d2640f0302e53f68f2ade6e5d4a2", "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"}], "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-07-30 15:27:43.749008 2024-07-30 15:27:43.749018 584610ad-7ae5-4054-9663-2af4d9de6ca7 {"md5": "c0956d73bfed95a787deec43a7aee4c0", "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"}], "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-07-30 15:27:43.82249 2024-07-30 15:27:43.822498 cb815b1d-2ff9-42e1-9858-7da4545371ff {"md5": "96872e611bd522823a0dd5eb193097a9", "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"}], "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-07-30 15:27:43.900292 2024-07-30 15:27:43.900301 fff6aad0-a3d4-41ff-8565-4c6428dfbb1e {"md5": "b93fae2e15890bc1b603f3c6063cf4e4", "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"}], "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-07-30 15:27:44.110068 2024-07-30 15:27:44.110077 d7bde878-37e6-4eae-b2bf-b178d0f6f478 {"md5": "dbbceb9e63391ca8ce72705658880b1c", "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"}], "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-07-30 15:27:44.189224 2024-07-30 15:27:44.189233 3d74a373-a6f7-49e9-85a6-0794a891637c {"md5": "0176865b9723f3855b05bb5ce1a8ef46", "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"}], "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-07-30 15:27:44.282522 2024-07-30 15:27:44.282533 ce4a2a51-1de4-4bdf-ad02-a3e92d91bb1b {"md5": "1c63da1ea1fcb2449f58a525b3660cfd", "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"}, {"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"}], "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-07-30 15:27:44.382673 2024-07-30 15:27:44.382685 060a6c19-60d4-475a-bb4e-8994a0399936 {"md5": "50e8215b5e47f5b42020fafe0e23f9f9", "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"}], "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-07-30 15:27:44.464214 2024-07-30 15:27:44.464222 8849d803-a110-4b09-a781-3948c295f01a {"md5": "fdaaa48a8f1fb1061d00403bcd0dfe9b", "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"}], "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-07-30 15:27:44.534321 2024-07-30 15:27:44.534329 0ee91db3-feda-40a3-b348-2b0a2079eafd {"md5": "3537605eb9a620ed6b1586623f07b48b", "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"}], "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-07-30 15:27:48.038813 2024-07-30 15:27:48.038816 e6eb2c64-3dad-4266-98b6-7af0798027cc {"md5": "1537c798d3c44fe58d2343d3bd89c49a", "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"}], "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-07-30 15:27:44.60361 2024-07-30 15:27:44.603618 c64f26b9-c24e-4d3b-8062-594b09dd27af {"md5": "36ec279d684ec7e3d3af222350c3de53", "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"}], "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-07-30 15:27:44.667083 2024-07-30 15:27:44.667091 131ab41f-70cf-4c0f-93d3-c53eeedbe9fd {"md5": "ecb50c54e77872d431996f2c50448ca6", "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"}], "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-07-30 15:27:44.733856 2024-07-30 15:27:44.733865 6ca68b55-66e7-4aa5-b065-26c46b7be908 {"md5": "074f68185b231d65804f93cefa165753", "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"}], "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-07-30 15:27:44.803083 2024-07-30 15:27:44.803091 04ef0aef-b144-4c3d-814f-b48cae2500ed {"md5": "9d3c6fcdb07b2d0c9be12497b213071b", "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"}], "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"}], "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-07-30 15:27:44.879916 2024-07-30 15:27:44.879925 9b49de6a-4aad-4e30-a082-1fe959f191f4 {"md5": "72594a61db87df73401721d0a5eb99c3", "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"}], "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-07-30 15:27:44.956062 2024-07-30 15:27:44.956067 e00a0703-4853-4bdd-b652-7478dcf7d506 {"md5": "0726cd7392af6eb696d390a412c5d05e", "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"}], "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-07-30 15:27:45.011665 2024-07-30 15:27:45.011675 41e24049-6a38-461e-8b2b-61b73cb5b03f {"md5": "b5d0deb41dc0bd8ffa79d8eefdb7934e", "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"}], "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-07-30 15:27:45.082034 2024-07-30 15:27:45.082044 83668220-e17d-46de-842f-d37c01febdf3 {"md5": "7cfe9643534e9ad876209064f92f61d6", "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"}], "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-07-30 15:27:45.160488 2024-07-30 15:27:45.160496 74860633-edd3-4105-bf0c-d8d8f7bec5c0 {"md5": "6704561d6c0fd33b45510860233069a7", "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"}], "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-07-30 15:27:45.247004 2024-07-30 15:27:45.247013 6a33f32b-6f8c-4500-bd1a-7d87a57edd0a {"md5": "5970d510f533ad285dbe8c3916af3535", "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"}, {"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"}], "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-07-30 15:27:45.329767 2024-07-30 15:27:45.329777 c1278a36-158f-4083-bb78-51986a649f73 {"md5": "4ebae70729dd189eead4212e2bc05c11", "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"}, {"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"}], "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"}], "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-07-30 15:27:45.414642 2024-07-30 15:27:45.414651 50fc22fa-50fb-4b45-bb3b-8faba7df5198 {"md5": "e234c9c7118351de3ff8a9c9c3df4240", "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"}], "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-07-30 15:27:45.491697 2024-07-30 15:27:45.491706 8e0a4231-4ef7-4a72-9ab1-ba903fbda6c9 {"md5": "c93484b4db9b008c8cd5bce73e0eead2", "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"}], "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-07-30 15:27:45.571289 2024-07-30 15:27:45.571297 b2e08193-3f45-4cdd-a5b7-b71bb4bb78c8 {"md5": "e15323c2dc33b447f005e13181414ada", "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)"}], "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-07-30 15:27:45.647098 2024-07-30 15:27:45.647106 36cb85fc-6fc2-44db-8072-f8c40dad4276 {"md5": "c9678bd863aa24258ef0c5f33713564b", "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"}], "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-07-30 15:27:45.723079 2024-07-30 15:27:45.723088 7f1c535e-9fe8-450c-9f3b-68e4206064a4 {"md5": "6f74168c6645f3d9ac14e79e507560b4", "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"}], "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-07-30 15:27:45.799004 2024-07-30 15:27:45.799012 afd4e4f8-6863-4faa-b890-2dd111bdb083 {"md5": "fe40614fe6d87d0265e30446416a9f59", "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"}], "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-07-30 15:27:45.873435 2024-07-30 15:27:45.873446 70c7d964-a6c4-4487-ae92-1c0fe4f80234 {"md5": "18becbbd207613f4afb7640f7f2ea0c5", "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"}], "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-07-30 15:27:45.956115 2024-07-30 15:27:45.956125 89133972-1e54-4b1c-94d7-e0d4ecd29a2a {"md5": "a7dc2408053c2c0985f7e3f7c91a366f", "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"}], "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-07-30 15:27:46.025916 2024-07-30 15:27:46.025928 c68a4957-36b0-4acf-98d2-0d5c05502b70 {"md5": "91799e610f5d77868a286fa3fc222a7d", "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"}], "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-07-30 15:27:46.115739 2024-07-30 15:27:46.115752 13afb2b3-9397-4c98-ad32-9228f5a06bc8 {"md5": "1e4f3fc9b1744a7ebab67c88fb325f33", "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)"}], "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-07-30 15:27:46.191307 2024-07-30 15:27:46.191315 76316e5b-f9c2-495d-8ed5-0915925c78b1 {"md5": "ebe98bfdefaad8e7ee2e4f0ddc011a08", "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"}], "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-07-30 15:27:46.260618 2024-07-30 15:27:46.260627 7936fa21-2d89-4694-8dbe-f4f133b6a3fc {"md5": "b6279dca85e0a24dae6a3fea790b8dae", "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", "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-07-30 15:27:46.346061 2024-07-30 15:27:46.346072 7829a174-c4ba-4017-b79a-3ba8140977b0 {"md5": "b46e562d7616b442afe250a7cb088c2a", "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"}], "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-07-30 15:27:46.439212 2024-07-30 15:27:46.43922 b6c3f21f-af0d-4086-a6ca-e4d3e2a6e1dc {"md5": "f152878956a8a6f29d90acfd7d85676f", "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"}], "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-07-30 15:27:46.534642 2024-07-30 15:27:46.534653 22db54b4-b867-4531-91a1-6e4a4b15c9d0 {"md5": "4b67ee8b78b78fe98d9f28ca06bc25b8", "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"}], "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-07-30 15:27:46.627604 2024-07-30 15:27:46.627616 6e75b791-43c0-4031-915d-1b043fa28ef0 {"md5": "848f7f25513af1c80c522c015c450c42", "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"}], "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-07-30 15:27:46.722043 2024-07-30 15:27:46.722053 8b7aba74-dd02-488c-bf85-1857b030c6a8 {"md5": "9e9fe30317815ace3f37637f53b70f92", "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"}], "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-07-30 15:27:46.800286 2024-07-30 15:27:46.800296 ade34321-f02e-4544-84d7-055e22d84965 {"md5": "f88c440e11dd0ab7f5257205236c8869", "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"}], "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-07-30 15:27:46.877134 2024-07-30 15:27:46.877141 c75b2542-ffe2-4e86-90d9-3cc2fb5ebc9c {"md5": "3f758aa9458b4b24b003979e2c0f4f9d", "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"}], "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-07-30 15:27:46.941802 2024-07-30 15:27:46.941808 46010dfe-be76-49bd-91d7-2f13dfd52f3b {"md5": "8a55b48f5573eb4e463dd8bf636cce5f", "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"}], "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-07-30 15:27:47.008773 2024-07-30 15:27:47.008777 fac2e38c-712a-41fe-b14d-7b4a536cfb33 {"md5": "13d875e2d6ab50f17773858638114eba", "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"}], "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-07-30 15:27:47.073297 2024-07-30 15:27:47.073304 b33db983-99e6-485f-b878-670351ffc3b5 {"md5": "ac2e72bd0c6d45ddb2394bd3b883378e", "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"}], "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-07-30 15:27:47.158669 2024-07-30 15:27:47.158676 28314d43-5f95-4c63-948b-c72a8a3468af {"md5": "5d8a543f6f4e1e01c63da4960038c6fb", "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"}], "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-07-30 15:27:47.310079 2024-07-30 15:27:47.310087 42e9fc51-260b-4f47-bd65-eb5ce786af47 {"md5": "17ab31cd49f5355a5cda3df27c6b1df4", "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"}], "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-07-30 15:27:47.374902 2024-07-30 15:27:47.37491 a0c9aa10-e80c-444f-9811-e7892054f61c {"md5": "f56aed501056f3547c14f2f4172303e1", "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"}], "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-07-30 15:27:47.451761 2024-07-30 15:27:47.451769 11b08ac1-f66b-4162-a812-c302ce378abb {"md5": "de12aa62ee4c567230870a5eaf66d3e5", "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"}], "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-07-30 15:27:47.519982 2024-07-30 15:27:47.519989 aa875f09-a95f-4e85-85c2-d070ce8ad3e3 {"md5": "0c47059dc151324c69390a30a90f1bd9", "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)"}], "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-07-30 15:27:48.101004 2024-07-30 15:27:48.10102 88e97352-55b3-415c-b506-a1a30acfb3d4 {"md5": "a8b9355f4f3152a5978a9ca20e88ecc3", "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"}], "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-07-30 15:27:47.599495 2024-07-30 15:27:47.599517 9464e9e7-eab1-4a3e-9570-69282110b96b {"md5": "76bcdc30255fc50ef272035d7dc83daf", "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"}], "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"}], "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-07-30 15:27:47.668368 2024-07-30 15:27:47.668374 23cd03ed-67ed-45fc-b4d1-ea7d767dd710 {"md5": "6aa4ff77f34f293bb81c88c4e69b2528", "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"}], "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-07-30 15:27:47.749288 2024-07-30 15:27:47.7493 8a9f5423-0699-4973-a72b-99eba31f000b {"md5": "3d0b3d8a90ac29a86dcc37ed9f9312ce", "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"}], "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-07-30 15:27:47.833715 2024-07-30 15:27:47.833723 83c78f34-9a6d-43ad-ba1f-3fdb7ede4030 {"md5": "21cc93bf7d4b6a660fd13e0ec5e1353f", "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"}], "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-07-30 15:27:47.9005 2024-07-30 15:27:47.900509 490cdea7-eca8-40da-8f5b-a6947cb12a3c {"md5": "40a940a863c72449fd54e247feedef6c", "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"}], "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-07-30 15:27:47.97217 2024-07-30 15:27:47.972178 94036557-b993-4bc7-91cb-edc5895df250 {"md5": "daf2e6b0f8a4dde12919e5846c51e42e", "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"}], "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-07-30 15:27:48.197012 2024-07-30 15:27:48.197022 7efde05a-baf1-426d-bf23-3672e065a497 {"md5": "a4cf593ec7fe4cddb1f5fa6d7cca70dc", "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"}], "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-07-30 15:27:48.289033 2024-07-30 15:27:48.289048 95a2bcf4-3b32-44d2-a1b5-6cdb7d661ef9 {"md5": "f3fecca3aebf2a0b6f440a644b4c6246", "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"}], "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"}], "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-07-30 15:27:48.363041 2024-07-30 15:27:48.363049 91979fdc-6280-4645-a6f3-f2a03b139f03 {"md5": "e96c149aa7056baca704b519f438d7cc", "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"}], "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-07-30 15:27:48.429363 2024-07-30 15:27:48.42937 7426af99-79fd-4f33-8499-586cf706ff0b {"md5": "ad20d7aaba13c27cf5c2d22d4fb444db", "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"}], "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-07-30 15:27:48.492529 2024-07-30 15:27:48.492535 94309d37-71b8-457a-a99e-b81b091a2e78 {"md5": "474e1416df1ebf29dec56d543c5b1a7b", "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"}], "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-07-30 15:27:48.936814 2024-07-30 15:27:48.936839 637e19a2-3e66-4060-a2e8-34789564836c {"md5": "3cbb6d8efa2de018d8a3ced02fd0a58f", "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"}], "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-07-30 15:27:48.562936 2024-07-30 15:27:48.562944 9546dbc4-d3ac-41a3-952b-9c040096ad08 {"md5": "467f4ffd64b7f2fbd4e3ca7e82cbe8f9", "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"}], "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-07-30 15:27:48.639952 2024-07-30 15:27:48.639961 db1837f8-dd36-4992-be14-f968b8a2e08c {"md5": "87bbdc73c5849d9ed2fb83ab8e03c7ef", "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"}, {"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"}], "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-07-30 15:27:48.711319 2024-07-30 15:27:48.711327 f4e6229e-0562-44dd-98b6-a19ed0d5f7a9 {"md5": "7749c0f00766abddc01efee3027d4f2c", "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"}], "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-07-30 15:27:48.783818 2024-07-30 15:27:48.783826 ec406b10-7252-43c9-8ffd-5acd68bea5bf {"md5": "3c1c6be5cad3e9b8646bbbb60981f4f7", "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"}, {"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"}, {"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"}], "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-07-30 15:27:48.861336 2024-07-30 15:27:48.861344 abf4af3d-d2b0-49ed-8dbd-89735e3bd8b9 {"md5": "fdd8b4c32003b6aaf38ee2a4b6d48132", "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"}, {"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"}], "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-07-30 15:27:49.007344 2024-07-30 15:27:49.007353 088502cc-272b-4913-a5a8-59be7da07d72 {"md5": "a0222d072eebaecf97bb605b358411d3", "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"}], "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"}], "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-07-30 15:27:49.083979 2024-07-30 15:27:49.083988 d9cfe726-7d42-46c0-acfd-d79ba16577c4 {"md5": "341c30d50a302622ac6676627b5b6c8c", "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"}, {"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"}], "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-07-30 15:27:49.149636 2024-07-30 15:27:49.149644 3c9935b8-c63b-4581-9680-19f971125a99 {"md5": "118c5321c3b9ca72b4151c832b5fbf95", "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"}], "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-07-30 15:27:49.216017 2024-07-30 15:27:49.216024 79b9a9d1-eadc-4c11-8cbc-8aed4abe21ab {"md5": "3177fff6a5f9c1cf3766237a9b0bf2bf", "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"}], "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-07-30 15:27:49.280704 2024-07-30 15:27:49.280712 bce7b8d2-5506-4a46-b851-0947446d6b1e {"md5": "99f25830daa6d47780d1abe69e3e2511", "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"}], "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-07-30 15:27:49.348022 2024-07-30 15:27:49.34803 162f2877-ef52-41d1-9c6b-e915eea7b5c0 {"md5": "2fa3fba72507808d733f8aa89f72dc51", "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"}, {"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"}], "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-07-30 15:27:49.419539 2024-07-30 15:27:49.419548 2e69a51a-cd47-45e9-be13-58c62c72c9b5 {"md5": "219ad2428c217022bb113499882a8143", "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"}], "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-07-30 15:27:49.493976 2024-07-30 15:27:49.493985 0033ffb8-8577-4273-b0db-277461f0ec25 {"md5": "f49e665ad22739ca2effc51550174778", "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"}], "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-07-30 15:27:49.56804 2024-07-30 15:27:49.568048 3b687305-8bee-4ebe-a2d5-7d73cd77c60a {"md5": "a9b396bcf06770e433a103bd67b35cb8", "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"}], "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-07-30 15:27:49.640884 2024-07-30 15:27:49.640893 1c3cc153-de8a-4c36-bdea-5a9a9be1149d {"md5": "8792be655b3a1ec6d3891c4ee7b39f7d", "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"}], "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-07-30 15:27:49.714237 2024-07-30 15:27:49.714245 9937ae5d-1a02-4aeb-9b0a-469164a805cc {"md5": "b6fd96140c15b91b6f2c982b1cd371f5", "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"}], "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-07-30 15:27:49.796664 2024-07-30 15:27:49.796673 655eed8e-5269-4349-a00c-7f42f0bbac7a {"md5": "81eae698db07bd03335bdfc6249dc71c", "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"}], "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-07-30 15:27:49.872991 2024-07-30 15:27:49.872999 1516d012-8547-4654-81db-93e6fc5518bd {"md5": "26a6c3e61289dd007232d618cb0a277c", "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"}], "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-07-30 15:27:49.943183 2024-07-30 15:27:49.94319 09a8bad7-87bb-41d7-af15-cd025753b9e3 {"md5": "a32fbbd877b7d25633865cd476573b98", "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"}], "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-07-30 15:27:50.017165 2024-07-30 15:27:50.017177 6a5e4336-7c9e-4265-9409-72801bc8db6d {"md5": "3110b46bc3676d208fcc4188e6270dbe", "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"}], "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-07-30 15:27:50.098796 2024-07-30 15:27:50.098799 46a5c688-78e9-435f-b6b4-9294b95c0376 {"md5": "d0e822da7f963a24c3de2bc318715d7b", "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"}], "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-07-30 15:27:50.656758 2024-07-30 15:27:50.656767 ff4b417a-c4a1-410c-b794-0af03db789bd {"md5": "08d71754b0ccd77b36530bfac5d9d0fd", "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"}], "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-07-30 15:27:50.164538 2024-07-30 15:27:50.164542 0a69c5de-fae9-4e84-b404-aeea52d48ac9 {"md5": "ec110c031a084cd665ea264c05091855", "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"}], "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-07-30 15:27:50.225549 2024-07-30 15:27:50.225556 77d2ae1b-0def-4522-8610-ba51367b7518 {"md5": "64371a16d558974f7b9ab87d5733234f", "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"}], "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-07-30 15:27:50.289971 2024-07-30 15:27:50.289978 0bf93274-1514-43aa-846a-e539df605f19 {"md5": "6b1bfcd00ac32e6719e4d494c4d7892f", "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"}], "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-07-30 15:27:50.369639 2024-07-30 15:27:50.369648 2db7bb4d-3f79-490b-9140-22a9dca8f749 {"md5": "7a5271908414ea97be0cc494af0ac708", "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"}], "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-07-30 15:27:50.445778 2024-07-30 15:27:50.445787 94d7dfc1-6f0c-4c96-b8a7-a33bd0860c81 {"md5": "5c8c8e34a306853b8845caf967989401", "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"}], "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-07-30 15:27:50.516555 2024-07-30 15:27:50.516563 2d497741-6ee5-4463-b170-c83f366a1882 {"md5": "90c4c420d7ef2e208a77d1d3056ebe00", "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"}], "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-07-30 15:27:50.591751 2024-07-30 15:27:50.591759 7326ba33-328c-4315-8eea-f73d54aa3757 {"md5": "14643d69bf75ab78c4569bbe134f0daf", "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"}], "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-07-30 15:27:50.728932 2024-07-30 15:27:50.728941 8aacf00e-0995-4a60-b250-039fd29a6814 {"md5": "2e055af5066fbc9a3798a2896064bd56", "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"}], "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-07-30 15:27:50.886259 2024-07-30 15:27:50.886268 6886b62e-e0f4-4da9-8eb9-656fe18416b3 {"md5": "4d33039e90fc63053496d5dde6390010", "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"}], "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-07-30 15:27:50.958172 2024-07-30 15:27:50.95818 8ae2f197-8fd0-4dfc-93bc-90149b4b67ba {"md5": "3c2bbff6e8d4d70922b5710845cd3300", "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"}], "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-07-30 15:27:51.032571 2024-07-30 15:27:51.032579 28f3683b-72ec-4f7b-adfd-4ecc4eb1f203 {"md5": "f2c55be53db285570c8e24a2864103d7", "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"}], "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-07-30 15:27:51.119843 2024-07-30 15:27:51.119851 754dee2c-c1d1-453f-a0f3-255fa0a80068 {"md5": "02d77d5aa8c43618e579e949c325c7b9", "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)"}], "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-07-30 15:27:51.204966 2024-07-30 15:27:51.204973 abbf94d4-66eb-4ee1-b962-c01a969e2b05 {"md5": "19b0727d4ead2f43660ed696b0272f83", "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"}], "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-07-30 15:27:51.292539 2024-07-30 15:27:51.292549 75dead18-b12f-4571-a075-f07b9b6630a5 {"md5": "0e9752b278a13ba4e75952b3b4dd89b9", "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"}], "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-07-30 15:27:51.367595 2024-07-30 15:27:51.367603 fbbf99b2-dc42-49fe-99ce-161c74c686a3 {"md5": "a290c45a403aad76fd357a3eebd5a3e0", "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"}], "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-07-30 15:27:51.439864 2024-07-30 15:27:51.439873 6b98573f-3520-4f57-84a6-8fe89e04e526 {"md5": "f8f32e5318860b954959948922f7bc21", "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"}], "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-07-30 15:27:51.599344 2024-07-30 15:27:51.599354 42649344-44c9-48f6-9d5f-9dcbae3940c8 {"md5": "80f71672f6a76926016e6929e542c93c", "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"}], "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-07-30 15:27:51.68369 2024-07-30 15:27:51.683703 a8594a84-40c6-48ed-964c-ca1c9ae7ef71 {"md5": "dafcd3525aac27e89049ef225799da75", "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", "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-07-30 15:27:51.757566 2024-07-30 15:27:51.757572 e2b60d38-b6d3-4e6a-85ee-3d8c4ec6000b {"md5": "674dae7ca02f210f5b0e8eae472e1334", "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"}], "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-07-30 15:27:51.823699 2024-07-30 15:27:51.82371 0b3678bc-f159-41de-aba4-89dc81d8848c {"md5": "4cc1b66d294a71d2f0f922461dba5e51", "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"}], "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-07-30 15:27:51.887847 2024-07-30 15:27:51.887854 458e82ba-3256-4dd6-bf20-704aad41ed24 {"md5": "2a08b0b8ec95cccd1d11a2991ad77c7f", "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"}], "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-07-30 15:27:51.961187 2024-07-30 15:27:51.961216 d57c24d5-89a0-47ef-8016-3a7cc6d537bf {"md5": "eda774430e605c71175fad3c60a389b4", "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", "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-07-30 15:27:52.0364 2024-07-30 15:27:52.036409 52f050d2-b3b1-40f9-83bf-435a700a16d4 {"md5": "f3e7a9f43a7cad3d7b4eb9a7c6ed27f1", "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"}], "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-07-30 15:27:52.110683 2024-07-30 15:27:52.110692 5ddb52d0-c172-4489-911e-0bd3ae607f4f {"md5": "cc432fe2ec4678c820e1bf7a90f248ce", "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"}], "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-07-30 15:27:52.182957 2024-07-30 15:27:52.182962 4e95e35d-9a8e-47c3-a45b-f409ca2e2ba6 {"md5": "7acd6ac8e8cffa431fc16fc0ba7cd3c2", "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"}], "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-07-30 15:27:52.921567 2024-07-30 15:27:52.921575 a6bc7585-4c59-483a-bd49-7bf733710308 {"md5": "7beb704ed01d1abf6abd08b49710137b", "pid": "1336035544", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:27:52.24801 2024-07-30 15:27:52.248017 7d9da642-231f-460c-8b02-7662b7724f83 {"md5": "0108bc41f40eb2e5e223b54948d107ac", "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"}], "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-07-30 15:27:52.317536 2024-07-30 15:27:52.317545 d902a041-9df5-42fc-b5d5-48a467ad1548 {"md5": "4f75abf15790f1d5dd6b72e4260ea88e", "pid": "1336166509", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:27:52.387455 2024-07-30 15:27:52.387461 2a52ab35-30cb-44bd-9be8-c87712723287 {"md5": "805d6323eb294a20513d16aa7eb241b7", "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"}], "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-07-30 15:27:52.454287 2024-07-30 15:27:52.454295 8df32adb-6197-4bb9-9573-84b0d3159671 {"md5": "498f401797acceea8f7dd7dd874360ab", "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", "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-07-30 15:27:52.526921 2024-07-30 15:27:52.52693 afa6538e-50e2-4da4-9f91-106fd2ca9c77 {"md5": "d1ec6fc7f9ac4c91df56b9d6306abbb5", "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"}], "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-07-30 15:27:52.602319 2024-07-30 15:27:52.602328 b52ac28d-df29-4d04-9c21-057b8202e725 {"md5": "b373be2c7f3bcea1b93baed6d5459da3", "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"}], "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-07-30 15:27:52.684673 2024-07-30 15:27:52.684682 206f0a33-1885-4b39-ad2c-69a99859d173 {"md5": "b7769212513aecba1a2e66f8809b4e16", "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"}], "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-07-30 15:27:52.755963 2024-07-30 15:27:52.755972 ce8284cd-827b-4bf7-84ab-994581c0d38d {"md5": "09837256b15dd398ccdbf177b21de808", "pid": "133603906X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:27:52.83888 2024-07-30 15:27:52.838889 c2f324ba-4236-41b5-983d-d705e652988a {"md5": "1c3f8a150a56d2e5ed42cab1ff92b4fa", "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"}], "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-07-30 15:27:52.998899 2024-07-30 15:27:52.998907 211593f3-476a-46bd-9dc2-5121e5773c18 {"md5": "80bcc4bd4946cbf0f21fdd96646b36a8", "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"}], "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-07-30 15:27:53.071018 2024-07-30 15:27:53.071026 ea18bc1e-c207-4dc9-b91a-1ff38d28b762 {"md5": "24ff59706c18cb3a33c1332ce9a4a972", "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)"}], "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-07-30 15:27:53.151249 2024-07-30 15:27:53.151259 dc242e0d-0aec-4c87-84d2-3a693c7db29e {"md5": "ad4f88c20af33934a683afdb7c26b02e", "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"}], "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-07-30 15:27:53.22381 2024-07-30 15:27:53.223817 0102bacc-d713-400a-93c6-ec78a51826bd {"md5": "159fc4f7283c013894f95a6376b15fd8", "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"}], "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-07-30 15:27:53.293742 2024-07-30 15:27:53.293749 09bc791d-8841-4f73-884a-064480fd38c8 {"md5": "bf45f05aa07132f0a9166cd2338787a5", "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"}], "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-07-30 15:27:53.369881 2024-07-30 15:27:53.369888 c670befa-a94f-439a-ba19-8bd9e368cd35 {"md5": "65d62e9d0ae355e4e8a6397669999fc8", "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"}], "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-07-30 15:27:53.446797 2024-07-30 15:27:53.446805 5331fed2-a062-46db-810d-a15d08071a3f {"md5": "baf115d2abda53f6c4adb618600ecd61", "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"}], "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-07-30 15:27:53.512472 2024-07-30 15:27:53.51248 521027e9-f12a-4802-9050-580525efd57c {"md5": "df8cd9cc4a38986bb46e1d87de3ffd5f", "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"}], "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-07-30 15:27:53.584744 2024-07-30 15:27:53.584752 45c55a5e-99a1-40de-a0c6-0177ffba6daf {"md5": "fb5db925c0a949ce4acda99b9bae3045", "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)"}], "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-07-30 15:27:53.670432 2024-07-30 15:27:53.67044 ad77f9e7-6408-4391-adc9-0466da5a8c9e {"md5": "0b2b1afd243d6c536bfc444d2403ee47", "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"}], "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-07-30 15:27:53.742368 2024-07-30 15:27:53.742375 820400c3-de6a-473d-9ec8-0c3218e695b6 {"md5": "aa93839e828989f94bfd3a5b095999f4", "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"}], "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-07-30 15:27:53.828823 2024-07-30 15:27:53.828831 0a5a3284-e582-4a07-9758-81bc1aa4712a {"md5": "908641b0d0bad0332825e847af85670a", "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", "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-07-30 15:27:53.900961 2024-07-30 15:27:53.900969 51e5f370-b03e-4d05-91fd-db87ef02bd4f {"md5": "7bf26df2cbd4cdf74f1041fb4a150c21", "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"}], "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-07-30 15:27:53.985906 2024-07-30 15:27:53.985914 a60a4530-b905-4d8b-8ccf-0534a4c03ccb {"md5": "c2dc155b7d45acf328781d68ff7dbe1b", "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"}], "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-07-30 15:27:54.058671 2024-07-30 15:27:54.058679 79851ac1-6368-4bf0-bb48-d23869951a33 {"md5": "fdf662f7df7b3e3b69e2a829916adca4", "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", "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-07-30 15:27:54.131038 2024-07-30 15:27:54.131049 18b93b33-f247-43b0-a221-c0026d0c074d {"md5": "21f43aff5255991f4320a95af997bd8d", "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"}], "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-07-30 15:27:54.201785 2024-07-30 15:27:54.201788 ec01183e-37a3-42e5-b1cc-9a7d56b704ce {"md5": "53fa7b242c5e0ff3fbdcb333fda9d06c", "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"}], "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-07-30 15:27:54.264468 2024-07-30 15:27:54.264476 4a0216b3-babd-4032-b241-9986c327e6ff {"md5": "ee5a877ecd93130a332a4f652790a319", "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"}], "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-07-30 15:27:54.338843 2024-07-30 15:27:54.338853 134fc4fd-2521-4b5c-9f2c-a545ba1d6d9d {"md5": "b889c6fcdfbf91af4a0d6d959bba1eb5", "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"}], "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-07-30 15:27:54.414912 2024-07-30 15:27:54.414921 451acb9c-7d41-4224-a1db-5c48d20dd6b8 {"md5": "8fd305843742406a7a621bfab647832a", "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"}], "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-07-30 15:27:54.491963 2024-07-30 15:27:54.49197 b75c10b7-b6f8-42e4-ac3f-1c51c75247ac {"md5": "51d7b2543f4db5a363f3fc483f2392f3", "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"}], "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-07-30 15:27:54.572419 2024-07-30 15:27:54.572428 4fe7be59-ff67-465c-9cc2-da2980fe9bee {"md5": "19514f284df7a97e8768f6c1c1f7c8dd", "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"}], "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-07-30 15:27:54.65452 2024-07-30 15:27:54.654529 158d2049-dc5d-4d7a-a1ef-30ebafe8aae7 {"md5": "b5b5822c321a786d45ee8d6966f65fd8", "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"}], "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-07-30 15:27:54.740276 2024-07-30 15:27:54.740285 082a1f73-61f8-4377-8878-9abc33c06cbb {"md5": "10c3a736b1876210c5e293b816861547", "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"}], "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-07-30 15:27:56.512787 2024-07-30 15:27:56.512799 49fbab06-184c-4182-b934-60f0d2ee50dc {"md5": "1b31307228a559b8eaeabb9deb9840de", "pid": "1334804699", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:27:54.831423 2024-07-30 15:27:54.831431 9a6972e9-2809-4315-a705-af8c3c5d968e {"md5": "4b099c43bfbe00b5c767afd880f82848", "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"}], "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-07-30 15:27:54.915612 2024-07-30 15:27:54.915621 11705259-65f7-4ce3-9681-1c3ed1e07fd6 {"md5": "9f4308c26975b0b0f8dae07ea3844f24", "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"}], "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-07-30 15:27:55.010529 2024-07-30 15:27:55.010537 216398d9-8fbc-4cbf-8c4b-ff4c917358d0 {"md5": "750700fa45ac07b5928481111717bb4b", "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"}], "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-07-30 15:27:55.099234 2024-07-30 15:27:55.099246 eefb70f1-edc0-4905-9c65-c95ea1fd80e8 {"md5": "8e3ae6c5734bd95acd92ae6e75950e35", "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"}], "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-07-30 15:27:55.183249 2024-07-30 15:27:55.183256 fcebd7a9-f810-4488-a436-4c7fe2046c1a {"md5": "78c600fb9c3996031bca5c3b29dfe89e", "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"}], "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-07-30 15:27:55.252353 2024-07-30 15:27:55.252355 8de3ecd9-2c01-4b86-82da-e3e01b9dca42 {"md5": "17dddc77388c67e7d1ff0d392f0e2d01", "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"}, {"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"}, {"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"}], "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-07-30 15:27:55.378703 2024-07-30 15:27:55.37871 ea16b56b-b6db-418b-adbe-dd52c8c06441 {"md5": "820627776999884abbed210cc6436879", "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"}], "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-07-30 15:27:55.4322 2024-07-30 15:27:55.432203 01221d1d-7573-4b06-9101-5e22184c58a9 {"md5": "ee174f290bc505815f2e06a8ec8b6034", "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"}], "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-07-30 15:27:55.489617 2024-07-30 15:27:55.48962 e128bbad-f500-412a-b2d5-05ffe8e6054b {"md5": "8b13a53f2fa4ef4e1edc24cd4776419a", "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"}], "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-07-30 15:27:55.534068 2024-07-30 15:27:55.53407 8772cbaa-8dec-4495-8e90-086eff7fb98d {"md5": "e18710fb1dad8b85856476f7a0647196", "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"}], "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-07-30 15:27:55.585139 2024-07-30 15:27:55.585146 99c8d428-67cd-4668-a1b3-91f2055d22fa {"md5": "b428829ee70be6834b14e2622becc748", "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"}], "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-07-30 15:27:55.655305 2024-07-30 15:27:55.655313 95396873-a5d3-479d-b8a5-2aafdd69a81c {"md5": "6c09dc95ccf9f61c25ee916387b59c16", "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"}], "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-07-30 15:27:55.734622 2024-07-30 15:27:55.734631 2511164c-baeb-4afe-8dd9-568d79743782 {"md5": "9804d14eed8b0853b0d197ba225bcdc9", "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"}], "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-07-30 15:27:55.816782 2024-07-30 15:27:55.816791 51fe1c45-bbdc-4311-8f63-10b290eb8a14 {"md5": "806d920cfcbe5b164d16cb47e127fc7c", "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"}], "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-07-30 15:27:55.893095 2024-07-30 15:27:55.893103 799c4c14-5fa4-45a6-bdd5-5844492d1d21 {"md5": "1ca09be230102533327dd88936acf6ba", "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)"}], "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-07-30 15:27:55.960788 2024-07-30 15:27:55.960797 b18fcf3d-f7ad-4ff4-b430-a6d4e2826fd9 {"md5": "2c57033cbea05a59d8e1f82391a48a1b", "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"}], "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-07-30 15:27:56.034356 2024-07-30 15:27:56.034364 ee6b6888-c97a-455a-b5bb-1f48c5723a7c {"md5": "25378d4eab501ff94176437050a1e2d7", "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"}], "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-07-30 15:27:56.121057 2024-07-30 15:27:56.121068 2df6a66f-1f4c-42e2-ac7b-e265706d40f3 {"md5": "38f9a4b322c4ca006441aca13163a59e", "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"}], "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-07-30 15:27:56.210923 2024-07-30 15:27:56.210933 3f4f326e-ebc1-4825-a514-ad0c7ca28e91 {"md5": "aeb17adb279c1e2489481bab24e40f97", "pid": "1334906815", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ortsname"}], "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-07-30 15:27:56.281763 2024-07-30 15:27:56.281767 ff6f2efe-b656-4513-a26a-05519ad07b42 {"md5": "2c7534c8a35f3f0afb201a25bbf59f01", "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"}], "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-07-30 15:27:56.334643 2024-07-30 15:27:56.334651 3d280a20-7bc1-4526-9d51-522c1b25ec95 {"md5": "a18fbb8e40c9a2962ddeb8f9619ee02a", "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"}], "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-07-30 15:27:56.416335 2024-07-30 15:27:56.416345 aea02c1f-6611-4d19-8d75-717e79f610d8 {"md5": "ddd4e7668e647cb236878ce992504d75", "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"}], "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-07-30 15:27:56.596626 2024-07-30 15:27:56.596637 8e765e39-d28b-4779-b079-9a3f64c91949 {"md5": "db29455b8533c48997b387315583f4f7", "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"}], "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-07-30 15:27:56.681429 2024-07-30 15:27:56.68144 8d29435c-1492-414a-a7e8-d4dc9b6058b0 {"md5": "3a691c8a4d83cf06581be3fcc914b4da", "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"}], "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-07-30 15:27:56.759816 2024-07-30 15:27:56.759824 aa638e9c-ed21-4436-b57a-94c6019efdc3 {"md5": "087d82c5ccc50f732412e40b40d596d1", "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"}], "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-07-30 15:27:56.827772 2024-07-30 15:27:56.827792 417684a1-7e86-45f6-af4b-a37d3d43ce3f {"md5": "c25e4345e03e70bc9ca55e6e147394a8", "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"}], "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-07-30 15:27:56.893249 2024-07-30 15:27:56.893256 577a3b4c-0d99-4eb4-834f-d5817feddf06 {"md5": "7e4ebbb869a0662b769e29fa4a700a24", "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"}], "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-07-30 15:27:56.973314 2024-07-30 15:27:56.973322 6b9730b9-2b7f-4498-9b11-378679b46111 {"md5": "4adbf48f78d9c312b885477a99f99d04", "pid": "1334205639", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:27:57.040457 2024-07-30 15:27:57.040464 496833ed-f481-4a5b-badf-e281a2a453d7 {"md5": "7ea974e53ce07bdaa3f876bece0ca42b", "pid": "1333849850", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:27:57.112847 2024-07-30 15:27:57.112856 3be130c1-ed95-40bf-a09f-fda1dd06ff36 {"md5": "2c29bf722e37927236c73b916639d364", "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"}], "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-07-30 15:27:57.181187 2024-07-30 15:27:57.181196 cff02efb-1897-4f8a-b31b-a00c848db760 {"md5": "c55848eea0317be2213cc6f65359b14b", "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"}], "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-07-30 15:27:57.249101 2024-07-30 15:27:57.249109 ae4c2406-d0af-4139-b5f0-ade921c52295 {"md5": "f88030001cf39672f1efb9d05be44b64", "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"}], "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-07-30 15:27:57.321955 2024-07-30 15:27:57.321964 19239d2d-1c56-4046-b599-37226964fa0d {"md5": "c85cad9e477f9097af6e1d32f2dbd7a5", "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"}], "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-07-30 15:27:57.393355 2024-07-30 15:27:57.393364 d0b896fd-f95f-4158-8bb2-b4c6e758be6e {"md5": "e87355141ab51ba35b9dccc03172b4f4", "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"}], "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-07-30 15:27:57.482963 2024-07-30 15:27:57.482972 1d8891b3-c142-4a12-9c92-71a01195bb27 {"md5": "15947e75c26519c82935eb8bef30387b", "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"}], "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-07-30 15:27:57.552883 2024-07-30 15:27:57.552892 89ab2876-b844-4061-aca1-4708b6dafc37 {"md5": "31973cacffd21a501ea9f858825e3ae1", "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"}], "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-07-30 15:27:57.622065 2024-07-30 15:27:57.622074 141a7133-16c1-4349-b151-639eed958161 {"md5": "7b498fa2071fdf08e9a5c24585e10bfe", "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"}], "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-07-30 15:27:57.697234 2024-07-30 15:27:57.697243 0761d502-f06d-4700-b2ec-e0920e8aae97 {"md5": "695cf72185e672ec1794bba22fc5dc22", "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"}], "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-07-30 15:27:57.776692 2024-07-30 15:27:57.776699 54b18ac3-1911-42b3-a161-bba7ebf94061 {"md5": "c5683fb14804525da847f6959991531a", "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"}], "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-07-30 15:27:58.537002 2024-07-30 15:27:58.53701 d65d18ab-7957-45fa-996b-008c3494729a {"md5": "86307d5a520274f0975cded5f402a7ef", "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"}], "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-07-30 15:27:57.852422 2024-07-30 15:27:57.852432 74a5cd16-a085-4d4d-a262-3241694dee3f {"md5": "e396ac6564b6667ec8566c75f5d13ec5", "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"}], "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-07-30 15:27:57.93308 2024-07-30 15:27:57.933089 3804a2d2-eb85-4909-8883-92cc97c4729a {"md5": "c88ef51c01c22912d8b52d5c06521274", "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"}], "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-07-30 15:27:58.005544 2024-07-30 15:27:58.005552 1a2e7f0a-3906-4e71-9efd-0807db41b220 {"md5": "8690c724a7560578aa7e24511bf8c2f3", "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"}], "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-07-30 15:27:58.081275 2024-07-30 15:27:58.081284 92f61155-316a-441e-a180-2106e460bbc1 {"md5": "ca4cd5b587de87a5a10791128910c750", "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"}], "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-07-30 15:27:58.160099 2024-07-30 15:27:58.160105 90335193-e3a0-406c-abd2-079506fdb501 {"md5": "1491d475814c2ab37162e5a2274b71c5", "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"}], "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-07-30 15:27:58.251402 2024-07-30 15:27:58.251412 4e95c8b0-be97-43ff-8bb7-ed3f0565a5c4 {"md5": "e2547a00ee53470eca5d3b128d3f46b1", "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"}], "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-07-30 15:27:58.329439 2024-07-30 15:27:58.329442 7d075de2-92cc-4bae-9167-b8f676d3b365 {"md5": "a6a264114b788a05c2f7bec3bd7b8e0a", "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"}], "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-07-30 15:27:58.397558 2024-07-30 15:27:58.397567 f59dfc64-3120-4634-9e8b-a593950b7657 {"md5": "1e93e217cde9ded6884cd9016ab9ed07", "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"}], "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-07-30 15:27:58.464524 2024-07-30 15:27:58.464532 24076c65-f768-4a51-ad36-aab6114510dc {"md5": "406778358fbac4a8e604263ff686e119", "pid": "1330990056", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:00.237798 2024-07-30 15:28:00.237804 70f4c33c-e485-4054-9154-bb3cf8eb2c3a {"md5": "aeb50c16b4cef27dfe790a066f2104ab", "pid": "1324101318", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Sicherheitsbeauftragter"}], "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-07-30 15:27:58.617265 2024-07-30 15:27:58.617274 672af46c-4257-4830-b3a0-83b84c45cef7 {"md5": "38dad197452c5fe5cfd3bcaf86cb3579", "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"}], "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-07-30 15:27:58.699483 2024-07-30 15:27:58.699491 8c672e04-9a8f-4637-a362-c87cfad70f80 {"md5": "42c5970e96a5ea99b0950623808bc792", "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"}], "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-07-30 15:27:58.775942 2024-07-30 15:27:58.775952 955c9dda-bb36-4f66-a7a6-11e37ba1241b {"md5": "bee74d510f70e6ed7cee1d2b683e59d0", "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"}], "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-07-30 15:27:58.876362 2024-07-30 15:27:58.876371 0ec40d0f-4e03-4fc9-9130-6a46506d4455 {"md5": "2d3531f7d4e4378de1bb1c54bec48c4a", "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"}], "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-07-30 15:27:58.952055 2024-07-30 15:27:58.952063 7b788099-2669-4c5d-af75-136a884bb251 {"md5": "04c738504dfd4d18e3581262473669c9", "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"}], "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-07-30 15:27:59.030188 2024-07-30 15:27:59.030197 61650325-557b-40f2-b4ea-916de14d8540 {"md5": "2d4f3c93c1f6e50117bdf711149fabda", "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"}], "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-07-30 15:27:59.125479 2024-07-30 15:27:59.125488 07d6580e-29c6-4380-b859-32213033ab48 {"md5": "77fb3485dcb597539ef156220bb53d59", "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"}], "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-07-30 15:28:00.302331 2024-07-30 15:28:00.302339 03cf257e-7059-4875-a71a-07dd538fee12 {"md5": "0ab52b907a1d58fe85a6917dba6b8fb5", "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"}], "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-07-30 15:27:59.197889 2024-07-30 15:27:59.197897 6f7ccb6b-8f5a-45f8-9156-9caba234c4d1 {"md5": "8b5bda3c267907dcdba2dbba70a3c64b", "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"}], "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-07-30 15:27:59.272038 2024-07-30 15:27:59.272047 985d9a69-dc6d-427f-9ad2-201dafdf25f0 {"md5": "2c8342d880599b57aa8c09007d6aa211", "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"}], "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-07-30 15:27:59.342782 2024-07-30 15:27:59.342785 593eb05d-802f-49f3-8091-0b5a93db63dd {"md5": "08bee7e0ed51baafbe5dcac1beab454b", "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"}], "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-07-30 15:27:59.396134 2024-07-30 15:27:59.396142 d633b01d-0519-45f8-9d13-7d7d5a3bc1c6 {"md5": "1c15d29c9d56297a30de12cd1026d826", "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ī"}], "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-07-30 15:27:59.464815 2024-07-30 15:27:59.464822 075008e0-1091-44c3-9392-859c3f145d8b {"md5": "06e47d979c4fc96cc5766326c436001a", "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"}], "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-07-30 15:27:59.543952 2024-07-30 15:27:59.543963 4656f7f7-08b8-4c28-9ea5-c9b9a10b91fd {"md5": "d5b7b382e9bb90d089a7fa82fba0c328", "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"}], "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-07-30 15:27:59.620998 2024-07-30 15:27:59.621006 969bf64f-a845-4f28-9a81-e1cd3fd4f0ac {"md5": "a7856def5dc055dab42ccba4fc4733d4", "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"}], "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-07-30 15:27:59.70187 2024-07-30 15:27:59.701878 fffdfddf-5b15-42e2-9839-75f1eb7fac0b {"md5": "7420b3ff9db3611a2807be3ac7d64680", "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"}], "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-07-30 15:27:59.774883 2024-07-30 15:27:59.774892 205890e0-c293-4a7f-b53c-fe1e617ae50b {"md5": "20e552bfc3c51854b3206a9e625ac8f4", "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"}], "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-07-30 15:27:59.850077 2024-07-30 15:27:59.850086 fe596da7-a821-4627-871d-4511f8334b07 {"md5": "1363e9bb27d71b2a1e7049c46c1bec87", "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)"}], "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-07-30 15:27:59.927016 2024-07-30 15:27:59.927024 d9ac6a2a-cd71-413a-b9de-7804f6944531 {"md5": "734d5f533e31cb330dfb394c3ceccfe5", "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"}], "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-07-30 15:28:00.021386 2024-07-30 15:28:00.021391 734b24e3-b783-4ae1-af5a-4ca2b36147c2 {"md5": "5d075793ed031ffb977c76a19d3ed6b5", "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"}], "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-07-30 15:28:00.092249 2024-07-30 15:28:00.092256 7143c42e-b9d0-487a-9d0a-58b43aa7afab {"md5": "55ee9a41e27272f70e6e0e5ddcb818d8", "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"}], "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-07-30 15:28:00.167461 2024-07-30 15:28:00.167469 1a42e391-7191-4d94-bc90-f65d553d48ae {"md5": "3afdb4968394d49abc1bf00d8997a3fa", "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"}], "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-07-30 15:28:00.368254 2024-07-30 15:28:00.368257 c44e1f29-6bf6-4fb9-b6c3-f71411e6681f {"md5": "7ce5a7eff6286594f67506e32c46f0b4", "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"}], "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-07-30 15:28:00.428107 2024-07-30 15:28:00.428114 2958e12a-7796-49aa-bfee-1d9ae4d0adae {"md5": "08c751a9db9f8ade1f5100d54e3d03dc", "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"}], "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-07-30 15:28:00.494128 2024-07-30 15:28:00.494137 ef5f56e3-1701-416f-8b02-309f239a37f9 {"md5": "1a7d99c9c582784c0e13e18a76eadc5c", "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"}], "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-07-30 15:28:00.561846 2024-07-30 15:28:00.561855 3aa77cbe-df58-4d92-9247-5f35c60010f2 {"md5": "ec21d1d7010dca8a4458021f740cf049", "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"}], "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-07-30 15:28:00.648136 2024-07-30 15:28:00.648145 fcb6fb58-ba16-4d72-acf7-1532578ea55d {"md5": "408906e183c2481ab99afe8be018af75", "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", "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-07-30 15:28:00.731409 2024-07-30 15:28:00.731418 5e3cb1ce-cfcb-45c4-9595-b05962bcb7ed {"md5": "b02ddc9eda9c9d2012a5407881a7c6da", "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"}], "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-07-30 15:28:00.809039 2024-07-30 15:28:00.809047 51b35774-0ba9-4ea0-aee2-e0fc85f6a812 {"md5": "2a4f526588e675dfce4e2f67467a63d0", "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"}], "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-07-30 15:28:00.878634 2024-07-30 15:28:00.878642 ca4287d0-716c-4991-84a8-7dc054ae9acb {"md5": "6039d607c03b4e5dba551bfc148dd1be", "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"}], "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-07-30 15:28:05.351323 2024-07-30 15:28:05.351332 609c5668-58bb-448c-8484-82157e507c29 {"md5": "a10991cd595cd49edb5b9454ea839791", "pid": "1272339785", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:00.946882 2024-07-30 15:28:00.946891 86037fef-4269-4f5e-92b8-7a5f56291c38 {"md5": "667b1d786daabdcadd52c352fb87b651", "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"}], "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-07-30 15:28:01.020397 2024-07-30 15:28:01.020406 39eb8958-6af9-43f7-bbd3-aeb88c1edf7e {"md5": "5ed62353dfe29ea629048104134bb123", "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ī"}], "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-07-30 15:28:01.095003 2024-07-30 15:28:01.095012 c736f55c-bd9d-4762-9ba7-34d5fdb3f4fa {"md5": "b8a283afabcf247984b0967f537739b6", "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"}], "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-07-30 15:28:01.171265 2024-07-30 15:28:01.171273 f2f8d523-d1fc-4087-ab8e-685c156b3b54 {"md5": "8a5baba491f34ac2108d4f718d91382e", "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"}], "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-07-30 15:28:01.235141 2024-07-30 15:28:01.235154 72ccce28-6c29-437d-a38e-c0115aff94f1 {"md5": "7e382e47b59f9d84910a80b6985332aa", "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", "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-07-30 15:28:01.306319 2024-07-30 15:28:01.306327 3143359f-303e-4f33-8830-bf2d266fc6f7 {"md5": "30eb9434d5e96f72073d230940103c71", "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", "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-07-30 15:28:01.373385 2024-07-30 15:28:01.373393 0d224dfe-dd33-44c8-9338-d6b4b4ae9218 {"md5": "da83caf2a44b1f496565bdb8590d64c7", "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)"}], "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-07-30 15:28:01.422913 2024-07-30 15:28:01.422916 59fcca55-4a86-42cc-97f5-de5859c1f8f5 {"md5": "c1ef82a7f238f73e95d48596f5b22b50", "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", "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-07-30 15:28:01.497653 2024-07-30 15:28:01.497689 57b29a62-1a45-4308-90d6-d078536f88ee {"md5": "9d6f36fb763e02b2afab8f9d9ff85618", "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", "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-07-30 15:28:01.56394 2024-07-30 15:28:01.563948 11e9d438-be65-4895-956b-f5ca5ddaae1e {"md5": "1b897eefea3bd3bcb8d2dcc819b0fb5d", "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"}], "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-07-30 15:28:01.631825 2024-07-30 15:28:01.631832 677b4010-c62c-45ff-89ec-d2a9e6cd8ed6 {"md5": "0e87a434cfc0725f654f18d206a314df", "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"}], "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-07-30 15:28:01.694969 2024-07-30 15:28:01.694977 1e0995c1-d7fc-4e90-86a4-51a1a878c9f7 {"md5": "c8c9a0ae09c1402415bfec4a4f0c3963", "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", "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-07-30 15:28:01.76252 2024-07-30 15:28:01.762529 b23b676b-8b1a-463e-84aa-1fb8ee9c03e3 {"md5": "da2f47e104ae1cabe2beb51bfd4e8375", "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"}], "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-07-30 15:28:01.827588 2024-07-30 15:28:01.827614 c57b5800-7053-4f20-9e23-103c84ab24a3 {"md5": "1039e6af2c05451ffba9edeaf4b4c4da", "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"}], "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-07-30 15:28:01.896156 2024-07-30 15:28:01.896165 42eb6a36-f5c9-4990-9597-6ee985013a57 {"md5": "28ec5fa68b71f4eb31d8ce1932672dbb", "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"}], "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-07-30 15:28:01.965912 2024-07-30 15:28:01.965921 41bed23d-1b62-4ad4-9a69-6e78404abdf2 {"md5": "e054f042186db1bceb09d705343ccce8", "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"}], "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-07-30 15:28:02.037766 2024-07-30 15:28:02.037774 f5fbab7f-400a-4ba9-898f-960993c13dd8 {"md5": "b593bbb848f1e663724e8d8ce7fe27d6", "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"}], "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-07-30 15:28:02.109331 2024-07-30 15:28:02.109339 676afb0b-fb79-40c3-bfdb-c962e88810c3 {"md5": "f65f6d368952764deee4044ff753aea9", "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"}], "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-07-30 15:28:02.179713 2024-07-30 15:28:02.179722 b11868b4-33a9-4175-92a6-b61b14700a47 {"md5": "7c18d7c186467b5c92853b2a0afaa17d", "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"}], "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-07-30 15:28:02.249888 2024-07-30 15:28:02.249898 ae7ddc23-d91e-49d9-bb63-617424b1f898 {"md5": "b87a93b6834cc45d0c6eb4f54ce485e5", "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"}], "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-07-30 15:28:02.344797 2024-07-30 15:28:02.344807 23d45cc9-a1db-4bad-9e16-c13d05d746b5 {"md5": "90e91bead1c16be0a2d0234e47e70b70", "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)"}], "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-07-30 15:28:02.435796 2024-07-30 15:28:02.435799 b53ad825-47b8-4efc-9d76-2c6d7591aea4 {"md5": "d42acbf6bc4fb77bf813b066fbac53b2", "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", "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-07-30 15:28:02.493322 2024-07-30 15:28:02.49333 7600f106-e23d-44c3-b6d4-3f2a2f82d670 {"md5": "5ff6cb949b4258165c6d42ce6fa86746", "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", "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-07-30 15:28:02.579638 2024-07-30 15:28:02.579648 0a2d9953-5682-4830-930b-e9d2b20b084a {"md5": "71234a3b92a9920779e3d78fa70aba26", "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"}], "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-07-30 15:28:05.419608 2024-07-30 15:28:05.419615 2fcbda60-a1b8-4165-a3ab-d5f89f436a58 {"md5": "b191315fb7093b4cbe617727a79224de", "pid": "1272271439", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:02.670911 2024-07-30 15:28:02.670921 12889971-5707-46ab-b913-fd814a23c276 {"md5": "3285fbfd4c867a3f1bededb6ed636a46", "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"}], "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-07-30 15:28:02.759827 2024-07-30 15:28:02.759837 066e3ba5-67c2-45ef-a9c1-915d8ee75042 {"md5": "34ae3fca85d7d2c3d563830515111892", "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"}], "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-07-30 15:28:02.826608 2024-07-30 15:28:02.826614 ee1bbe04-7d58-4b37-a598-e080ccb3b6ee {"md5": "25bbcd4ee04e70d29ced4ea23a5d06fd", "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"}], "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-07-30 15:28:02.891874 2024-07-30 15:28:02.891881 0524d1ae-7330-44ef-a23b-8640624cc350 {"md5": "dd04cee8b69cfd16b802adf5fcb96807", "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"}], "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-07-30 15:28:02.964275 2024-07-30 15:28:02.964283 b89044e1-d581-4f2a-83d0-e66811830eec {"md5": "2f20333849d0c7f1ed6a688fd61c4da2", "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", "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-07-30 15:28:03.031332 2024-07-30 15:28:03.031339 b52a9815-0a86-45c6-80b2-15a792fc1aad {"md5": "8e7c22bfe3751e4d31de63f3d4e8feeb", "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"}], "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-07-30 15:28:03.103716 2024-07-30 15:28:03.103727 e8164e77-9703-43f5-a1c2-1fb2175e0d87 {"md5": "8957a735790b4b95e26335a252762d9a", "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"}], "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-07-30 15:28:05.496169 2024-07-30 15:28:05.496177 77856b95-c9f8-4c70-bdc6-087fcc3c4b46 {"md5": "cf68a45f378e39f455b4f670e7d3feff", "pid": "1272267792", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:03.22273 2024-07-30 15:28:03.22274 876aefad-de68-4c6c-8577-ee7804a41c37 {"md5": "f5c88bcd99995174d3b5ae2943178db3", "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"}], "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-07-30 15:28:03.322074 2024-07-30 15:28:03.322082 dea8bd71-fd67-4126-a2dd-813419994859 {"md5": "3c7096bee1ed26b6a81d324126edcc41", "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"}], "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-07-30 15:28:03.394542 2024-07-30 15:28:03.39455 ba9c76ab-5f52-41a5-b18f-f6045a7f8a25 {"md5": "ece305a2983e68fa5eded5326583d9c1", "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"}], "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-07-30 15:28:03.456993 2024-07-30 15:28:03.456997 3efde5e7-e94e-4933-b919-e51f390eb1fa {"md5": "1fd916224b75325b99454d30c27277b4", "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"}], "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-07-30 15:28:03.52115 2024-07-30 15:28:03.521158 357ee620-0139-4fd6-aacf-eac09c1985af {"md5": "5ab23a92fd82d975e5fc099d0230680d", "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"}], "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-07-30 15:28:03.593972 2024-07-30 15:28:03.59398 ad2afdaf-c5ae-4c80-84ba-443f86e3a94e {"md5": "50c3e07a931f3762ed946e7e03475054", "pid": "1302592122", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:03.663769 2024-07-30 15:28:03.663777 128a7bee-828e-4651-8d17-4da1be1564da {"md5": "ba5ea8eeb4f393ae21a0fbb78c8cc50c", "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"}], "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-07-30 15:28:03.726371 2024-07-30 15:28:03.726379 3d78530b-7453-46bf-8549-3c4ad2e7a45f {"md5": "0a056733edbdf44ad477782158bc710d", "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"}], "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-07-30 15:28:03.79406 2024-07-30 15:28:03.794069 8ff8f668-9dc2-4f42-a408-585215a41589 {"md5": "2ae7dd7534dc8435f4f8f8b9ec280b27", "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"}], "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-07-30 15:28:05.55363 2024-07-30 15:28:05.553639 f96a6042-85b7-4a7d-8ac0-7397b1e4d99c {"md5": "6b0984eadc1541187206d2d5b4152f64", "pid": "1272258963", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:03.865382 2024-07-30 15:28:03.865389 24b6dad5-056a-4877-bfc4-079acc303478 {"md5": "35d8d5a57c553f86e0054ab4595ec826", "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"}], "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-07-30 15:28:03.937182 2024-07-30 15:28:03.937191 23418006-7434-42bc-a941-e3077a01124d {"md5": "b5a4b96d9830aab08aba5cae3d7a63db", "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"}], "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-07-30 15:28:04.004473 2024-07-30 15:28:04.004483 c364e081-2537-49a6-809e-8ea6cc66d1a4 {"md5": "ea8aa466c8ec607c6f9317bf08eff60c", "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"}], "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-07-30 15:28:04.071381 2024-07-30 15:28:04.071389 5ca3b5c8-4cca-4495-928e-01c8cfcfe6ce {"md5": "8cc7e07e69fbcc93e4febce26d8373d8", "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"}], "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-07-30 15:28:04.14627 2024-07-30 15:28:04.146278 d949827c-0071-44f3-86fd-471baa4ab885 {"md5": "f79f058a76e10f1998c7fd32d3c5ae76", "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"}], "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-07-30 15:28:04.22857 2024-07-30 15:28:04.228578 bdbafb3b-0b37-4a7e-98e4-f78040fff080 {"md5": "3326070cf8f3ab4cf8c8fcf426b78300", "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", "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-07-30 15:28:04.295222 2024-07-30 15:28:04.29523 e88a4056-c258-4539-a359-7edee521f970 {"md5": "884b33f3603bdccde35c2a755eaff1ba", "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"}], "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-07-30 15:28:04.990429 2024-07-30 15:28:04.990437 5562957e-b231-46a8-8582-b39cd3e6f240 {"md5": "2f0555c30db9f258a8db6e86125f1fa1", "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"}], "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-07-30 15:28:04.363943 2024-07-30 15:28:04.363952 7dbc2042-8a92-4ac3-ba57-cea2626b40e3 {"md5": "181d55548ba953cf28d96fff278a6d2b", "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"}], "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-07-30 15:28:04.4305 2024-07-30 15:28:04.430511 7e7f32d0-5775-4d58-bb73-9a8a346ba231 {"md5": "b07807d6eecbc9e101b7239938e678b8", "pid": "1285304527", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prozessionsstange"}], "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-07-30 15:28:04.489658 2024-07-30 15:28:04.48966 954eb632-ed7a-49ad-a643-c1648d443e79 {"md5": "464dd2cd46f8808e297c6d06ce823b90", "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"}], "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 (2023)"} 1 +2024-07-30 15:28:04.547311 2024-07-30 15:28:04.54732 8e74f6b7-fc06-44d6-94d4-cc2163417067 {"md5": "a593799fd2cdf271525628c85db98e09", "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"}], "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-07-30 15:28:04.614901 2024-07-30 15:28:04.61491 407c7ab0-f5ec-4f4f-abb6-290e35f72bbf {"md5": "87a4f923e4f269a999b35db27e0d74bf", "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"}], "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-07-30 15:28:04.681134 2024-07-30 15:28:04.681144 3958e344-0822-4930-8682-732193651055 {"md5": "f2a4f626b0bf3b80ff61ca25bb5f274d", "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"}], "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 (2022)"} 1 +2024-07-30 15:28:04.759782 2024-07-30 15:28:04.759789 f0b8c281-0b79-4c80-b7a9-939bc52007e2 {"md5": "2a6a0a16d1367b95fabe3349447aafd6", "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"}], "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-07-30 15:28:04.838682 2024-07-30 15:28:04.838691 bf03d934-566a-49c9-b1d3-955015821918 {"md5": "9ee466dedf29d42560a2c8a59aeda99b", "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"}], "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-07-30 15:28:04.915874 2024-07-30 15:28:04.915883 59177af6-be98-4024-a72a-000d7211124e {"md5": "3c27ae6ac87ba35090a903535a979339", "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"}], "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-07-30 15:28:05.621525 2024-07-30 15:28:05.621533 94c0638b-4df2-4cc5-8227-c371a7e90a2f {"md5": "b74d707bb3d720ae606a425e6ded0558", "pid": "1271905698", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:05.700124 2024-07-30 15:28:05.700134 70ed7098-4e5a-4b23-80e6-ebf59a566b2d {"md5": "f5f31b8dc7e9c39d6e24843a22714630", "pid": "1271895765", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:05.779241 2024-07-30 15:28:05.77925 709c9801-6444-4b10-a293-3485a154e0e4 {"md5": "105ca53c01f1488b39483ed1995600ad", "pid": "127188898X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:05.852293 2024-07-30 15:28:05.852301 0f9d0e45-0cbb-4f90-a0aa-da91af00b1ef {"md5": "73346def6ef883a03ca4ca605670dcc0", "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"}], "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-07-30 15:28:05.922878 2024-07-30 15:28:05.922886 950e59d0-2824-4613-a821-f346fdc1c2fc {"md5": "588dd47d14e1586048a4a3e4b3eb2f1c", "pid": "1271808897", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:05.993534 2024-07-30 15:28:05.993542 06bd9b9f-761c-4756-b256-a7e06fa2a13a {"md5": "51358cb59aa0ef11d3a2ecbb97420429", "pid": "1271790165", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:06.063833 2024-07-30 15:28:06.063842 eb12f88a-41f1-4908-86c0-6e9db6d68f2b {"md5": "6d0aa5fecd4b1a40b837b7028f56d459", "pid": "1271715899", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:06.155973 2024-07-30 15:28:06.155983 d331fac9-0250-407b-9e07-3cc421277476 {"md5": "b3afb04011592cdca2ffcd2ffa9f11c4", "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"}], "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-07-30 15:28:06.234376 2024-07-30 15:28:06.234386 628d7af4-de75-4e9e-a728-2ea3a1498614 {"md5": "480e539da8472d9243a49865746f4dcf", "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"}], "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-07-30 15:28:06.327371 2024-07-30 15:28:06.327381 e117cd4d-72fe-4d0b-b2ab-8d5a773bb756 {"md5": "dd4e64c525a6ece9ad53399924931ce5", "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"}], "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-07-30 15:28:06.419206 2024-07-30 15:28:06.419219 c09e449d-d078-442b-aa1d-dae40e3ad4f2 {"md5": "c52f1319fd2012d60fbac707545e665d", "pid": "126750370X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:06.503826 2024-07-30 15:28:06.503837 b288d94a-3642-44ac-be79-ff5a8e5dc265 {"md5": "e311563aecb9adaffb43bbc8daaad440", "pid": "1267495847", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:06.557646 2024-07-30 15:28:06.557649 30826e4a-1bc6-4b39-82af-a26f2952c8db {"md5": "a082795ee51291a18e67c7335f261605", "pid": "1267493216", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:06.620277 2024-07-30 15:28:06.620286 f179bf95-c2b3-4529-bf7a-488ac6112fe8 {"md5": "ffb12e56641dba2cc13a1dc5e03aca0c", "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", "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-07-30 15:28:06.693374 2024-07-30 15:28:06.693383 a4b42540-3793-426a-ab58-d3a68d8b89be {"md5": "126386604810d20898f39851745016c2", "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"}], "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-07-30 15:28:06.77721 2024-07-30 15:28:06.777219 40c052a3-d622-4537-97c4-d44bca796ba7 {"md5": "32fcdef3a915749d86f61fac9d44f947", "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"}], "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-07-30 15:28:06.866608 2024-07-30 15:28:06.866621 1d434f9b-8bd7-439d-86ec-c7de9e77b604 {"md5": "b01c652323ffb423f51748c90a3ed48e", "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"}], "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-07-30 15:28:06.952467 2024-07-30 15:28:06.952477 3ffce312-95b0-48f1-b7e1-979bc091deae {"md5": "8c8ed9d473535daf8389ec01f23ffb17", "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"}], "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-07-30 15:28:07.022141 2024-07-30 15:28:07.022148 dac22c3e-de47-49ef-86a2-64d3c786c9e8 {"md5": "169dc1d220e50bd7b59cabce2537e271", "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äß"}], "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-07-30 15:28:10.527508 2024-07-30 15:28:10.527526 01400490-1e31-4076-ba56-559364df1f41 {"md5": "6ecd26b2867d6f31c33399be95a1f7b6", "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"}], "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-07-30 15:28:07.105899 2024-07-30 15:28:07.105907 bba19916-4e2d-4ee8-aee8-e1226c25cc62 {"md5": "7efa4177a213f6c41faffd31ce9356c3", "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"}], "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-07-30 15:28:07.191841 2024-07-30 15:28:07.191851 9a00fdab-6de0-49e5-a1af-fff8f2f27410 {"md5": "b5d1feb70d6d514b68c7351291c3bd00", "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"}], "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-07-30 15:28:07.275432 2024-07-30 15:28:07.275445 3b89f640-b98b-428e-8ca7-4ea1420f0be3 {"md5": "684d159434602ec5886540b505235185", "pid": "1254291482", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:28:07.350878 2024-07-30 15:28:07.350885 fe09444e-6d2c-482e-8ab2-3ffd8fc8e97c {"md5": "6948c6723f0b7e875395f1075ef47f2a", "pid": "1251426239", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:28:07.414086 2024-07-30 15:28:07.414094 a10702c1-2646-4ab9-bd5b-9ce616a6e118 {"md5": "0ff3e713eb352745fecd3435b5d4a274", "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"}], "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-07-30 15:28:07.481043 2024-07-30 15:28:07.481051 26068ea2-3494-464b-bd68-2ea73396a1d6 {"md5": "a6544b1675a4256e984c85bb78ae3918", "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"}], "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-07-30 15:28:07.54538 2024-07-30 15:28:07.545388 e0c677d1-a141-4bbc-ab29-24ea3e2ac916 {"md5": "e183ebb770a7e2004780c01fe70a8c56", "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"}], "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-07-30 15:28:07.603436 2024-07-30 15:28:07.603445 f4dd862d-0602-45dd-8a48-86c15b8c74b8 {"md5": "0b4de56c230585d973ff4e2069c84ff4", "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"}], "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-07-30 15:28:07.681478 2024-07-30 15:28:07.681486 fdb3b4a4-e45f-4310-a7cd-a5c4cbd89d0b {"md5": "a03d636c93598c50898915004f915e74", "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"}], "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-07-30 15:28:07.747695 2024-07-30 15:28:07.747702 f4fbf167-c98a-4bfa-b8b3-78f6c8bfa9bc {"md5": "25119d0ee5a06d1c165d2eca71e463a4", "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"}], "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-07-30 15:28:07.814137 2024-07-30 15:28:07.814147 906cf24e-fbdb-4e4c-b5cc-d170cf1ccef8 {"md5": "72c137f214deaf37a6b00f056d038b0b", "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"}], "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-07-30 15:28:07.888607 2024-07-30 15:28:07.888617 f348fa6e-2d24-4bf6-8e75-d1f5bedbf4c5 {"md5": "9cf4542d3435e3692fd7adc749f37767", "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"}], "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-07-30 15:28:09.402257 2024-07-30 15:28:09.402266 2b8100a1-c2a1-492a-b383-a0a872053978 {"md5": "b0157aa77a1120c9c9bd2e984286ab5f", "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"}], "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-07-30 15:28:07.957472 2024-07-30 15:28:07.957481 23b41af9-3db0-4b63-b075-2a1bddcd8003 {"md5": "118cb66a50e2269854560bc90b4c52e7", "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"}], "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-07-30 15:28:08.027542 2024-07-30 15:28:08.027549 887f9fd7-1866-45f5-a369-57440466449e {"md5": "71dc9a7ce03561b4179c0389765ca647", "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"}], "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-07-30 15:28:08.091151 2024-07-30 15:28:08.091158 e61ac509-8257-4a66-840e-1d59048c7a15 {"md5": "5061c6a6875a169ceb463e400522ac87", "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"}], "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-07-30 15:28:08.1625 2024-07-30 15:28:08.162509 ce5bfbf6-0b61-4ff1-9ac9-2a3fd2cdd37e {"md5": "683704c00f81b71f2e3294d6e45bf2b2", "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"}], "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-07-30 15:28:08.293416 2024-07-30 15:28:08.293423 e69247cd-7443-468f-9a8e-5970e90e54c8 {"md5": "fdec3f4765edc3fad3ba2b8b8ffed946", "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", "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-07-30 15:28:08.407034 2024-07-30 15:28:08.407041 d2e5bb54-537b-41f1-9b0f-a2e24b64c1e5 {"md5": "761ae75daf181370c76c40d01c74a5b3", "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"}], "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-07-30 15:28:09.480315 2024-07-30 15:28:09.480324 77e181d7-9710-4c34-91c3-0c8398fc6030 {"md5": "1c7578fd530f7449ec8b60a139588e86", "pid": "1189251949", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:28:08.494109 2024-07-30 15:28:08.494118 ebe7ef1d-46ed-4378-87c6-3adb42afb3be {"md5": "6cc70a380e9cc101b75403ad9c886837", "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"}], "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-07-30 15:28:08.572221 2024-07-30 15:28:08.57223 452e7e22-bdc7-4cd0-851b-2e7473948347 {"md5": "1d115af96067df401d552844592e5f02", "pid": "1204138915", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:08.627318 2024-07-30 15:28:08.627326 ea24bcac-062a-4f5e-ae31-6d9bbecc40bf {"md5": "76b12d6cbf334d0bbabb57e6f8eac6da", "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"}], "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-07-30 15:28:08.696246 2024-07-30 15:28:08.696255 4a111a67-85ef-42d6-bfff-9e7037381fa6 {"md5": "fdd99fd8de4de1f24d139c7d336cc3d0", "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"}], "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-07-30 15:28:08.772513 2024-07-30 15:28:08.772521 fb062691-b72e-4492-ba6a-05eca6c33afc {"md5": "259deb12225319765cec11582dc94bac", "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"}], "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-07-30 15:28:08.845574 2024-07-30 15:28:08.845582 b792f44b-0521-4ad7-a98d-2c31f5102b6c {"md5": "f2a51988ce4e179c7dddbbe7010cf32e", "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"}], "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-07-30 15:28:09.551217 2024-07-30 15:28:09.551226 ba9bb35b-f815-47ce-b112-c093f0121236 {"md5": "e8da64d9fcffec53ada77718229c10e3", "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)"}], "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-07-30 15:28:09.624228 2024-07-30 15:28:09.624231 01fe5e8b-b1d3-4a60-b192-9b7590c35928 {"md5": "a0b4695216912f7e2470e7f24c208d73", "pid": "1177428253", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gen"}], "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-07-30 15:28:08.920654 2024-07-30 15:28:08.920663 e04cdeb1-0651-4746-aa75-fadfbad6b9b7 {"md5": "4754c8739033c05f887afd724f160744", "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)"}], "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-07-30 15:28:09.002612 2024-07-30 15:28:09.002782 b33827cb-6026-4324-b07e-de0e910b7b29 {"md5": "287946289cd59982a084a7b54f55af1d", "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"}], "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-07-30 15:28:09.084673 2024-07-30 15:28:09.084682 96be1686-3d5d-4d0d-b088-e1362e1c22d9 {"md5": "e75a36e8e75d96de1c3abb08ef371e9f", "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"}], "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-07-30 15:28:09.162695 2024-07-30 15:28:09.162703 8161f073-413a-4f6e-9901-a35d498a6abd {"md5": "f7ed57efbf488a6f03f2f1745099ae7a", "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"}], "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-07-30 15:28:09.230137 2024-07-30 15:28:09.230144 8a3e8ecb-0631-464a-9826-6050884ca25b {"md5": "cf64a7f08d9b1356805075300b896aa2", "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"}], "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-07-30 15:28:09.315095 2024-07-30 15:28:09.315103 50562a76-b6ea-4cef-940b-e4822a37cdd6 {"md5": "993af2d291b3a4d91021d0935f1eeb7b", "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"}], "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-07-30 15:28:10.448697 2024-07-30 15:28:10.44871 41293c0e-cdd7-45ec-8236-cbea7b63edd4 {"md5": "534443dde7dba24975706a5da1580900", "pid": "1159933278", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:09.689409 2024-07-30 15:28:09.689417 6e027bbe-c417-485d-8403-dcf617e6d201 {"md5": "bf5501c7e9ddc5573ea4217e9ab96da3", "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"}], "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-07-30 15:28:09.773686 2024-07-30 15:28:09.773694 c022d52c-5185-4a21-9cd5-350850978a17 {"md5": "740100a05944467944a389f26a5e586d", "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"}], "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-07-30 15:28:09.851144 2024-07-30 15:28:09.851154 00290085-5e76-4068-b479-c0bd92844594 {"md5": "70d46d74eec448870eb03f9c89f23202", "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", "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-07-30 15:28:09.929594 2024-07-30 15:28:09.929603 19f0305d-d47b-4b3c-bf45-5e0a2f2ee1ae {"md5": "d1405f8f1f3f8b74be8f6724cd7b5557", "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", "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-07-30 15:28:10.004545 2024-07-30 15:28:10.004556 481b1f2f-c473-4f3c-a267-16642a900b45 {"md5": "b5450089fda7f4bb6d377c8369d25dd2", "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", "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-07-30 15:28:10.094265 2024-07-30 15:28:10.094276 f7bdf32e-918d-4073-9939-47f16b848b52 {"md5": "64c5b4a68de4806e419a1c94e052f002", "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", "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-07-30 15:28:10.183481 2024-07-30 15:28:10.18349 20b8024b-58b2-4474-ac86-ad635f016325 {"md5": "bd68b62b6559b7df61922ba1c918959f", "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"}], "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-07-30 15:28:10.263237 2024-07-30 15:28:10.263248 d3e94c8c-8185-4a76-91f6-ea8406ee62e6 {"md5": "ed9a7231f3453132b142e7d2bdfb4d36", "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"}], "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-07-30 15:28:10.34849 2024-07-30 15:28:10.348502 aafacf43-2fcc-4b02-87d0-1151875e90dc {"md5": "2f7ed6d6949468fcfc68ac35286cbf2d", "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"}], "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-07-30 15:28:10.590165 2024-07-30 15:28:10.59017 679a1ffd-fa88-4d45-8fe6-9f70e6955939 {"md5": "f67d3b1e290445a20fff19307a1952ac", "pid": "115992869X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:10.650661 2024-07-30 15:28:10.650664 6abcabf9-cc36-447e-a6a1-6bbf58c6835c {"md5": "1ec86f4c694dd91d0163598cfe70f313", "pid": "1159920850", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:10.705127 2024-07-30 15:28:10.705134 a1f115d7-7f69-4dc0-bc1e-de115dfaafe4 {"md5": "6eea1a3df6a3e42966fcf2e1000d41cb", "pid": "115992063X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:10.768146 2024-07-30 15:28:10.768157 11991d4c-418d-4c57-b9e3-7d193a8d9161 {"md5": "cb241fda9b6499636d027a2c3e8036eb", "pid": "1159919828", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:10.839062 2024-07-30 15:28:10.83907 16039e6a-d25b-4d18-a68c-e63952c389e6 {"md5": "2ccaa24af2c74b75fca9eb770d9dd29e", "pid": "1159716978", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:10.910625 2024-07-30 15:28:10.910633 5790b493-8e58-4ae4-9ad1-3096def5add8 {"md5": "aa2aeb80cb941285a3bc42a8bf82c85d", "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"}], "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-07-30 15:28:10.986694 2024-07-30 15:28:10.986703 1403d906-a3bd-4cff-a3e4-80bc7ff5ae1a {"md5": "168760e548e73d34d1b6fa6ae176f19d", "pid": "1159652686", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:11.059309 2024-07-30 15:28:11.059316 f92b5b6c-03d0-4006-9157-910caa3cd617 {"md5": "0a160a4112dddf382bf2f7c1a8651a88", "pid": "1158529643", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:11.134019 2024-07-30 15:28:11.134027 1e97680f-224a-4f30-bc97-ee6c028799d2 {"md5": "811dfe8119a7f632f825e764e3bb7a92", "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"}], "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-07-30 15:28:11.202793 2024-07-30 15:28:11.202801 36e2f7e5-917f-4c3a-a3a6-7fc5cfca1fcf {"md5": "2ba3da3c223fa9924efbbd74bcc77484", "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"}], "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-07-30 15:28:11.279594 2024-07-30 15:28:11.279602 c2783129-56cd-42e6-8719-21336ac10a0f {"md5": "b99902a8ef480eb86b40b4637ee0d4a2", "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"}], "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-07-30 15:28:17.200638 2024-07-30 15:28:17.200645 5f8cbfe6-e48e-4625-887d-2d768dee060d {"md5": "a1f728fb0ff31f94538aabd4e960871b", "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"}], "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-07-30 15:28:11.353107 2024-07-30 15:28:11.353116 fa4de4e5-c2cb-4502-a877-e00cbdb5d13f {"md5": "9ff9a9ccffdbe730bf74ba87035d2505", "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"}], "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-07-30 15:28:11.421016 2024-07-30 15:28:11.421023 3f725cdf-0c45-48e9-b372-fd495c849b07 {"md5": "f07ada28844c28bcc3f8d17784d0f91d", "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", "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-07-30 15:28:11.495772 2024-07-30 15:28:11.49578 457bca1b-cced-439c-8720-a52616d39563 {"md5": "12e161d22cca42dc60d523b506c8caae", "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", "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-07-30 15:28:11.571596 2024-07-30 15:28:11.571608 edd1be8e-5bd0-4acf-a719-65eb2fcb929f {"md5": "77e8066f3b6c0a651d72fea058d4edd5", "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", "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-07-30 15:28:11.64523 2024-07-30 15:28:11.645239 b54c25ce-eeeb-4d2a-9b48-3675b1107dce {"md5": "741b86e13689ad321612901fc47f6b06", "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"}], "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-07-30 15:28:11.698075 2024-07-30 15:28:11.698078 1affe6c4-91cf-4e2a-82fc-af99457fc346 {"md5": "d239da13e46d92fdf0af109316f7d235", "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"}], "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-07-30 15:28:11.772565 2024-07-30 15:28:11.772575 ed75dcc1-db3f-4a6d-8f33-e66231f30732 {"md5": "0b73704f9315cd23a9808b38818c1076", "pid": "1136198113", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:11.843208 2024-07-30 15:28:11.843217 a84db322-73fd-4043-b822-b42168386251 {"md5": "55341980fe2ec438e6e05565856a6b7e", "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", "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-07-30 15:28:11.914126 2024-07-30 15:28:11.914135 99f044d6-b031-4372-9e46-98f665fed79a {"md5": "eb7e5f5193d112cd45c20047d580e5bc", "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ş"}], "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-07-30 15:28:11.9847 2024-07-30 15:28:11.984709 67adc792-fcfa-44e9-8ab0-0e390140edc7 {"md5": "3fb0b88d60375097826f1e88328ecf70", "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"}], "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-07-30 15:28:12.055226 2024-07-30 15:28:12.055234 270f036a-bc1b-4fcb-9738-59b6f6bac619 {"md5": "e988abcb71fa99f0694b0f17a697754f", "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"}], "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-07-30 15:28:12.128333 2024-07-30 15:28:12.128342 89417ee3-1ae0-478a-906a-4d91e25f6c9f {"md5": "114f82bf7f98f7163ac805b9c28c2de8", "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"}], "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-07-30 15:28:12.202576 2024-07-30 15:28:12.202585 25a99f7a-9fb2-4390-b6fb-59dfd436a701 {"md5": "de6a968fa719c480bc6db38434d17f7a", "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"}], "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-07-30 15:28:12.27633 2024-07-30 15:28:12.276339 91457c9c-6625-46d2-a2c8-989732d888cf {"md5": "ba62bd4b75ae4ab79259057e7827fda9", "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"}], "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-07-30 15:28:12.359668 2024-07-30 15:28:12.359677 5d3acad1-abcd-4464-97f0-f5cf5fe96ea0 {"md5": "dc7f7d9a9e212efc77ba8300b835f3d2", "pid": "1124811885", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:28:12.425401 2024-07-30 15:28:12.425409 c1090b69-4392-4217-8ce8-c21af24cfd35 {"md5": "b5a6203dfc197b15da0d394e770bd8a3", "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"}], "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-07-30 15:28:12.492154 2024-07-30 15:28:12.492162 2fceeab5-6389-4499-a52d-fc7ec2bb91a5 {"md5": "d57ff07eb38e9cb1e662788fdc2be4b1", "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"}], "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-07-30 15:28:12.570243 2024-07-30 15:28:12.570252 5fa2a82f-695d-45a3-ab1f-f5eb8c1703a8 {"md5": "54f5210fa8d04878f688533d57bf2f58", "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"}], "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-07-30 15:28:12.640604 2024-07-30 15:28:12.640613 c38fedbc-eaf0-4dfe-8a35-3bbd87bd143c {"md5": "ad665764a29554f46a7b4d3ff8a50ed7", "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"}], "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-07-30 15:28:12.706621 2024-07-30 15:28:12.706625 829cba5b-866a-478c-b6fb-246184d99b18 {"md5": "80f4dc0d92358f0a95e607485980972e", "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"}], "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-07-30 15:28:12.758462 2024-07-30 15:28:12.758467 ca6952d6-3f5e-4a10-8f7f-922b5e116280 {"md5": "6f66ddc811c67d7fefca4cdd3483d441", "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", "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-07-30 15:28:12.824419 2024-07-30 15:28:12.824427 4aa937ee-6595-45c4-92da-035f110a5361 {"md5": "35c01992c72553507f2fd29d885ab6b7", "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"}], "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-07-30 15:28:12.898455 2024-07-30 15:28:12.898463 94d6a71b-5602-4959-acc3-9822136d4c1d {"md5": "f1b988a54792f58fd708735999b96a47", "pid": "1111593051", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:28:12.969802 2024-07-30 15:28:12.96981 e73a4d2c-e397-4ac2-8dc8-bf20235c6fa9 {"md5": "6ee88c6fa0a89ba62ed5ea36885b11ca", "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"}], "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-07-30 15:28:13.035647 2024-07-30 15:28:13.035655 d8cdd79f-a249-4be2-becc-3bfd64ffd781 {"md5": "c60da99d2552f76a31e435bb129f431f", "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"}], "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-07-30 15:28:13.101551 2024-07-30 15:28:13.10156 19c12266-99a6-4887-91fe-00086a83bebd {"md5": "f87ea0b534a94c16a7e080b3828c46af", "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"}], "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-07-30 15:28:13.192748 2024-07-30 15:28:13.192757 f5bc2e43-5423-4ca5-a793-aa919a4499df {"md5": "090526376219bc504687fec4957ce5a1", "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"}], "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-07-30 15:28:13.273067 2024-07-30 15:28:13.273079 7117b237-a4c9-427a-b07e-b01dff4e19f4 {"md5": "54a085b41fb00c349b6bf860f613cc15", "pid": "1101498900", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:28:13.355555 2024-07-30 15:28:13.355563 4eb6478c-4d6c-4316-bdb6-49bce5e7bf4f {"md5": "293fba368d4aeb6567c30f417b1f5258", "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"}], "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-07-30 15:28:13.4255 2024-07-30 15:28:13.425507 eae2be2c-8553-41b8-be0e-7c8e7ea4b3fd {"md5": "e6d360a290b306c458cae867e1f64dc2", "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"}], "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-07-30 15:28:13.490958 2024-07-30 15:28:13.490965 8337f000-a484-47ff-8596-693c53cb5619 {"md5": "01c7a8eec54307c3dfa1cf9a40ac2b98", "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"}], "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-07-30 15:28:13.564815 2024-07-30 15:28:13.564824 b2255657-9ee9-41dd-bfa0-eb9abd2ee1b1 {"md5": "3f1a57e8ad3e4151c08bfdc3c81e3c7a", "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"}], "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-07-30 15:28:13.63481 2024-07-30 15:28:13.634816 d6493d7f-ea66-42ad-ae6a-5633831e66ab {"md5": "c43f84aaabbb093972d481613267c7a4", "pid": "1077065876", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Organisation"}], "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-07-30 15:28:13.71141 2024-07-30 15:28:13.711419 34d86f89-a813-41dd-b290-cc3afb23fcf8 {"md5": "cb57389ea1f2f6926a384daab049e1f1", "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"}], "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-07-30 15:28:13.77423 2024-07-30 15:28:13.774238 5565fcc8-7f67-4eea-91b7-fe599dcf3595 {"md5": "dcd318e2309d2e2ea0a9459993f86337", "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"}], "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-07-30 15:28:13.86063 2024-07-30 15:28:13.860638 c5b723e9-fe54-4bbd-8d11-fd1f5d702bb5 {"md5": "b604ed40aa8924d5308956916dfca34e", "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"}], "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-07-30 15:28:13.93005 2024-07-30 15:28:13.930059 31ec7334-0f92-4e40-9d76-615a5a03f8df {"md5": "58263dc3457777098ba6793ad007b01b", "pid": "1068825820", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geometrie"}], "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-07-30 15:28:14.014498 2024-07-30 15:28:14.014506 91eb8417-8476-4c80-afe9-5ecbf5345308 {"md5": "a22633352cad9046f82503b87e18b1bf", "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"}], "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-07-30 15:28:14.082552 2024-07-30 15:28:14.082606 553b0ea2-b443-4bdf-853a-4fde4e65b810 {"md5": "25368a461f256c7286f05f4bba455ddb", "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"}], "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-07-30 15:28:14.160156 2024-07-30 15:28:14.160165 e83bbd87-d8f7-4f2d-8844-bc6c8f6aa574 {"md5": "30c3a8eeaf9e8950f76d3ed989507fc0", "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"}], "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-07-30 15:28:14.254974 2024-07-30 15:28:14.254984 ed12cdd5-5a8e-4970-b419-7eef37e99072 {"md5": "19db420e4ace4f824fe41f3aebe06ca7", "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"}], "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-07-30 15:28:14.339333 2024-07-30 15:28:14.339341 e36a8e65-b475-4cf6-8bea-8d45276ae9ac {"md5": "980bed165bb155a21dfa7f96e1609600", "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"}], "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-07-30 15:28:14.415622 2024-07-30 15:28:14.41563 bf50611a-e8db-4877-97c0-926c7c23fb9f {"md5": "46e7c9feb4145556a32633a319f66c14", "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"}], "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-07-30 15:28:16.302091 2024-07-30 15:28:16.302103 4367eb21-c060-4fa3-9373-bdfc30f792cc {"md5": "d1d26860df8a6d7e2b8d89d153a1df2c", "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"}], "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-07-30 15:28:14.492247 2024-07-30 15:28:14.492254 a2134fb9-311e-4199-b701-6080e73b2206 {"md5": "dbe83e9b0f423978d108eff0d78ad5ec", "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"}], "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-07-30 15:28:14.565045 2024-07-30 15:28:14.565054 1a3280e3-eaf5-4316-b78c-ddda2eb682cd {"md5": "6e28cb814b9d2b7ec50aae02b438f5b0", "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"}], "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-07-30 15:28:14.639393 2024-07-30 15:28:14.639401 c95c4cb4-240b-4310-8ee4-0d4c54f1db8e {"md5": "439543d703d1831fae2e654229223d67", "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"}], "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-07-30 15:28:14.713716 2024-07-30 15:28:14.713724 30fce290-a7e0-460b-b870-ef36a79679f2 {"md5": "3e4a26cb8c6316f57b9aa72060f0c1a8", "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"}], "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-07-30 15:28:14.781305 2024-07-30 15:28:14.781309 15814502-2424-430f-b87c-69c9c1e63018 {"md5": "24abf5117dc186f02271e77825ba13a6", "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"}], "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-07-30 15:28:14.843693 2024-07-30 15:28:14.843698 c05cacc3-1b57-46ce-bad8-0f2b53b3bbb9 {"md5": "1825a3f4264053de730a6b925ded123e", "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"}], "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-07-30 15:28:14.909283 2024-07-30 15:28:14.90929 b7b3a510-a40b-43c6-a4a9-032bd07e3249 {"md5": "fa7a23fc5365386c52a68558151c2b20", "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"}], "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-07-30 15:28:15.011477 2024-07-30 15:28:15.011485 e2b77808-a42b-451a-a3ca-fdb57b879b67 {"md5": "01f0f13d51b02fab258717c7c197e8e9", "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"}], "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-07-30 15:28:16.392415 2024-07-30 15:28:16.392424 cd5cab2c-4f76-4481-a3df-beb9c473eac6 {"md5": "a6cdb1147511ee788aaf84986808435a", "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)"}], "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-07-30 15:28:15.107529 2024-07-30 15:28:15.107537 f935608d-d060-4a34-a7c6-1c60813985ab {"md5": "95b945b3e47002f4425b65726abd9755", "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"}], "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-07-30 15:28:15.188822 2024-07-30 15:28:15.188829 23e8e3b8-da66-407f-91bd-a3b39081badd {"md5": "ebfdd136d30207b3e665eab039f13331", "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"}], "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-07-30 15:28:15.262168 2024-07-30 15:28:15.262176 99aff91a-4c0e-4b9e-a1a1-28ec4b58d60a {"md5": "02259806d69c144b4d3c5b17c349a6c0", "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"}], "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-07-30 15:28:15.339446 2024-07-30 15:28:15.339454 522acbbe-85fe-4fa3-983e-f693aa1d8cf5 {"md5": "5b52b373b8c0e7cd11b137c1701e0364", "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"}], "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-07-30 15:28:15.418384 2024-07-30 15:28:15.418392 b04f4700-701d-46a6-9152-4ab2b4b77502 {"md5": "d91acaddede4794d12b78c674f5e6fd1", "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"}], "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-07-30 15:28:15.490852 2024-07-30 15:28:15.490858 0dccef42-f3da-4d85-b6fb-cbcf263244dd {"md5": "c5699e8d2e97a0d0381b16c557663557", "pid": "1015187382", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kieselsediment"}], "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-07-30 15:28:15.568875 2024-07-30 15:28:15.568883 0ea87561-9ee3-4727-acf1-8d9f7168efef {"md5": "db6d208975fd8974e160c596fd313a0f", "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"}], "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-07-30 15:28:15.65316 2024-07-30 15:28:15.653169 5b147c58-388a-4986-9b47-8bb16d6713c5 {"md5": "bdc9a386e97dbfbc88ef22786882026e", "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"}], "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-07-30 15:28:15.732224 2024-07-30 15:28:15.732233 7f814777-ddb6-4ef6-83b5-aab755e0a1d6 {"md5": "437d351a52edd0c82d982a98d80821ac", "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"}], "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-07-30 15:28:15.801138 2024-07-30 15:28:15.801141 0b10da7b-5364-404a-99cb-6dadfc9be150 {"md5": "4f9adc805ade0fcb5a82dfadf9eefef9", "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", "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-07-30 15:28:15.862747 2024-07-30 15:28:15.862755 7980d125-3584-4dde-8ef0-63edea830bf8 {"md5": "ef4d9930547048797e76196f4a70f5be", "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"}], "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-07-30 15:28:15.939059 2024-07-30 15:28:15.939068 7dffb9c1-b3e6-4086-a262-f4596fd7c199 {"md5": "230093fb0e0af9edec60f85c602daa64", "pid": "1008049115", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zunft"}], "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-07-30 15:28:16.032286 2024-07-30 15:28:16.032297 256675f9-6bdd-4b48-adb0-8816a8d016ef {"md5": "a3889b451964b1606a3dc1877c6a9310", "pid": "100735531X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:28:16.123722 2024-07-30 15:28:16.12373 6f923220-b0d1-4ddc-8a8f-834759283baf {"md5": "c20bc09d24ec0d389baf917047dc5b7b", "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"}], "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-07-30 15:28:16.209527 2024-07-30 15:28:16.209538 f5ac3feb-84ed-4b75-b130-ecf3d8e962c6 {"md5": "6b645af4a145850f9fb5cd621392886f", "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"}], "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-07-30 15:28:16.49373 2024-07-30 15:28:16.49374 40f459ec-c44b-4fe5-b8f7-a7b6fa704f77 {"md5": "9a29e21147cd980434c2f2eb95ba23e3", "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)"}], "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-07-30 15:28:16.578938 2024-07-30 15:28:16.57895 eb64d882-3c18-4b36-8f43-83e29dc9abf0 {"md5": "e077bfd805384199b09b955342f0a487", "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"}], "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-07-30 15:28:16.672428 2024-07-30 15:28:16.672439 07c9d314-41fb-4bb5-89fb-932f9c02a441 {"md5": "e7a7163477aaa21132321b40c6c7b429", "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)"}], "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-07-30 15:28:16.771155 2024-07-30 15:28:16.771165 fd193658-5958-486b-a4f6-e919bec34ba3 {"md5": "6f5dddc3c009408c462400d859efd866", "pid": "99405212X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:28:16.849947 2024-07-30 15:28:16.849957 21a2704d-f263-4aaa-8e97-0921b6f41373 {"md5": "7df59078bb989ed29957ccb5b17f1258", "pid": "99283600X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Brettspiel"}], "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-07-30 15:28:16.934264 2024-07-30 15:28:16.934275 9ecb73dd-44de-4a23-aa42-fa90d49bdf43 {"md5": "7336c2b6b3d0434301bc91cae0e2a530", "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)"}], "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-07-30 15:28:17.023695 2024-07-30 15:28:17.023704 e6dba631-cc10-4e6e-921c-4a2568aac7e5 {"md5": "65c1497c4be4e5da1d8d8848499186ae", "pid": "992754909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:17.11448 2024-07-30 15:28:17.114495 abe7cc68-e4cf-4cb3-b089-4e59707c9619 {"md5": "921ad26d0a30b907f67ffc3a27b83cc7", "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"}], "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-07-30 15:28:17.29209 2024-07-30 15:28:17.292096 3f0b4eea-812f-413c-bcc1-677d315500e0 {"md5": "3dcc5d1639267979dd19cb544b46f560", "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"}], "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-07-30 15:28:17.384474 2024-07-30 15:28:17.384486 fd2aa6e8-8937-47a5-b5a4-f2b6931abd29 {"md5": "aa2c9409a592a3ae7e6b851108be64b9", "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"}], "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-07-30 15:28:17.475073 2024-07-30 15:28:17.475087 af92244f-8fc3-4ca9-8e3c-489c1b81294e {"md5": "cb5b42c5af7e4ac88e9f9b3f6e7b968d", "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"}], "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-07-30 15:28:17.545502 2024-07-30 15:28:17.54551 64ecb273-c53d-429e-998a-c6a155045bf2 {"md5": "cc1083ab5c147e46ec3f4a655f2a81b3", "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"}], "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-07-30 15:28:17.613027 2024-07-30 15:28:17.613034 146a4235-b827-469c-9b41-339e7c7ffe6c {"md5": "c8ba1c2e2c3ce6176911b4c36604a8a4", "pid": "992751020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:17.674829 2024-07-30 15:28:17.674835 176834dc-a7f6-4910-9462-559bd332145a {"md5": "c242a656918fb09132fb79a94e2241f3", "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)"}], "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-07-30 15:28:17.743358 2024-07-30 15:28:17.743365 32be81d7-798c-4bbe-8cd7-3bcd993a8fa1 {"md5": "2e31644969583550514f4dbccba342f3", "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"}], "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-07-30 15:28:17.817294 2024-07-30 15:28:17.817304 6d654982-7a86-4a90-ad82-767c475c1d58 {"md5": "949c42e06e95fd043fbbaa05ad664c5f", "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"}], "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-07-30 15:28:17.871194 2024-07-30 15:28:17.871197 aeecc3c6-4107-4631-ad3f-b3c5cce4b593 {"md5": "976233483a3b22107255e6f0bebab084", "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"}], "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-07-30 15:28:17.938685 2024-07-30 15:28:17.938693 eeb9aace-49b2-48b0-aa5c-348b9ec3a70e {"md5": "cd9919e4f2a3e32c4bbaf8f62a556f08", "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"}], "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-07-30 15:28:18.025987 2024-07-30 15:28:18.026124 573df28f-205e-4187-8367-696af598322e {"md5": "7f422eb8e0081b539488eb8fc997600c", "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"}], "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-07-30 15:28:18.095446 2024-07-30 15:28:18.095454 e773ed2f-ec97-412e-9bf0-af7fb60aa47a {"md5": "fbae9b8cf23fd5f1930c6af2ff6bbad6", "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"}], "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-07-30 15:28:18.168457 2024-07-30 15:28:18.168466 2e4c1fbd-42b7-4db3-85d9-dbaed4896072 {"md5": "41e41abd0a0ab3200fc0001cd8285011", "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"}], "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-07-30 15:28:18.238004 2024-07-30 15:28:18.238015 dd1789a0-abd5-43b9-bea6-dde120d9a7d3 {"md5": "123a66502253d7c7aee1a37ae3fe69a8", "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"}], "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-07-30 15:28:18.320554 2024-07-30 15:28:18.320573 d02ebfb6-d930-4654-87be-f482feb2c488 {"md5": "0b299a128d61221265e20e253623cbd7", "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"}], "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-07-30 15:28:18.405688 2024-07-30 15:28:18.405697 55fc0b02-a5b2-420e-9243-b3111d74839d {"md5": "dbbc854ed960d40d9ab0864702316e7d", "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"}], "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-07-30 15:28:18.493746 2024-07-30 15:28:18.493753 bc5b087e-1c8d-4618-9891-2ec06d70327c {"md5": "fd0f9434a170529bd95d1a9f822bf7f0", "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)"}], "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-07-30 15:28:18.570451 2024-07-30 15:28:18.57046 620f5bae-adde-4c27-9ee4-53878fd9f6c9 {"md5": "9a27ff068c34f913460e1388ef3e2b7f", "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"}], "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-07-30 15:28:18.646136 2024-07-30 15:28:18.646144 68232993-9604-4a65-8ff6-f6e542546e46 {"md5": "0ac74b09ae6331cf06610b0578ba0dbd", "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"}], "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-07-30 15:28:18.715113 2024-07-30 15:28:18.715121 850a28d9-764b-4915-bc9b-7fb6abd880e6 {"md5": "8d0768da0197374416bb34626c7ee21b", "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"}], "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-07-30 15:28:18.788804 2024-07-30 15:28:18.788812 12714ea2-7f68-46df-a63f-05bc23fb284b {"md5": "b088a612d5c70a6d219e7ad886ed0037", "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"}], "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-07-30 15:28:18.860421 2024-07-30 15:28:18.860429 57bcf172-3a2b-4df4-9765-965d019051a0 {"md5": "10359bb5132b555bd55c6100fc751672", "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)"}], "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-07-30 15:28:18.918248 2024-07-30 15:28:18.918256 a8825427-7b18-4609-8592-7a1fe8028749 {"md5": "6f79106ea7f49958de526a138d2ba30c", "pid": "992741491", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:18.990773 2024-07-30 15:28:18.990779 78b13126-4556-4b03-abb1-0e68122b15a4 {"md5": "6808a98849bab2b37ad942f2930d28dc", "pid": "992739659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:19.062102 2024-07-30 15:28:19.062111 b30ff0d3-4bbf-4c2b-ba20-df0a90b295ea {"md5": "48fb49a98a7fd9ade4f17388c68a597f", "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"}], "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-07-30 15:28:19.136309 2024-07-30 15:28:19.136321 2906b914-acf1-4dd5-b66c-cf7c8c042566 {"md5": "2084c4e979deb391d3b851c7ae252098", "pid": "992738172", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:19.211869 2024-07-30 15:28:19.211877 7ce4fbbc-d247-4c98-8581-4401e8fa12fb {"md5": "ada1507f52db66b677fdb6df0b77586b", "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"}], "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-07-30 15:28:19.284189 2024-07-30 15:28:19.284197 70810802-1ccd-472a-bfdf-98404c8e5f67 {"md5": "45fda31a69572d3da798a536c0d8335b", "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"}], "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-07-30 15:28:19.369992 2024-07-30 15:28:19.369997 845bb52a-3049-4110-b0d2-25582e62ad16 {"md5": "a97cc38c23484b527a222419c6ed2654", "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"}], "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-07-30 15:28:19.443774 2024-07-30 15:28:19.443786 5b403950-f917-417e-9d2c-97eeaac8ffa2 {"md5": "e98710d81672775110b6a51f9b15bd0e", "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"}], "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-07-30 15:28:26.656195 2024-07-30 15:28:26.656213 69256697-772a-46f1-9b7d-4b07606da899 {"md5": "1eb1e9c371f8c4bfb0c237758dfae378", "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"}], "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-07-30 15:28:19.515799 2024-07-30 15:28:19.515807 b02b0209-d079-4519-8853-5620e7657eca {"md5": "f1154e93cf2fc5c9422ede758bf2aaf5", "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"}], "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-07-30 15:28:19.589743 2024-07-30 15:28:19.589751 7fdae269-c7c5-4449-accf-a99c59a25b8b {"md5": "bb6c2700f81d5bdc2c2c40d9e19c4150", "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"}], "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-07-30 15:28:19.662783 2024-07-30 15:28:19.662791 e8eb5f10-68fb-49b1-87f0-246a4fcfaa5b {"md5": "4ad9df59c484cdaa9bd60acc2ff53f34", "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)"}], "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-07-30 15:28:19.742572 2024-07-30 15:28:19.742581 a8c08d20-3287-48a8-b44c-7150c4b076a2 {"md5": "72ff48a12ede8bcfbe6bc1f8a4b5a6c4", "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)"}], "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-07-30 15:28:19.818432 2024-07-30 15:28:19.818441 519d3f7e-72f0-49d1-8b82-af8950f022c4 {"md5": "4d6ae8dec4e97b2518e159c4e2374057", "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)"}], "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-07-30 15:28:19.898132 2024-07-30 15:28:19.89814 75198662-6004-4dd5-b2e5-4ef114710117 {"md5": "49386a9fcb5d82a3a7b798920fd448e4", "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"}], "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-07-30 15:28:19.963275 2024-07-30 15:28:19.963283 392d2231-6053-41d3-85ef-b35a71f12a93 {"md5": "404e4fb759c628b91056b7d693a12c93", "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"}], "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-07-30 15:28:20.036756 2024-07-30 15:28:20.036763 0084c423-3db6-479c-96b8-c8207ccd780d {"md5": "2cab2bad100deff69f280d28d46a1019", "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"}], "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-07-30 15:28:20.154161 2024-07-30 15:28:20.154172 b865c586-4ae6-4bd6-8daf-e49d45695cbf {"md5": "8270b1b800beb97856a599a4e99effa8", "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)"}], "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-07-30 15:28:20.237637 2024-07-30 15:28:20.237647 2f493e3c-c0a5-4aa3-92c2-e01974baf918 {"md5": "373a5d9843ab1f7f6bfd8243711f1435", "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"}], "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-07-30 15:28:20.328414 2024-07-30 15:28:20.328424 377e7ebe-ee28-427d-9984-69a35bdd9f61 {"md5": "1b9d13db34ffa840da4b5fbe0c3a6ab7", "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)"}], "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-07-30 15:28:20.428117 2024-07-30 15:28:20.428125 4b8a78ae-88d3-4cb6-84de-975aa9cacdd1 {"md5": "aedee40e3bcee0950a26b09c93c783db", "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"}], "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-07-30 15:28:20.514945 2024-07-30 15:28:20.514954 3ce6a758-5b99-465a-b667-001e2bbbb309 {"md5": "646338ac712a35e4ad23efaec8ab16e5", "pid": "992731496", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "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-07-30 15:28:20.605671 2024-07-30 15:28:20.605683 e300072a-69c1-41f1-bb7e-6f00b374adc0 {"md5": "c5446764bce50c9c0fba0bae5b1ca222", "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"}], "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-07-30 15:28:20.704942 2024-07-30 15:28:20.704956 eaed9b5f-ef8c-4a18-b859-6c500c11eb8a {"md5": "4da6c133a2d573803531c5af9966acb8", "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"}], "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-07-30 15:28:20.806637 2024-07-30 15:28:20.806644 776a0abe-4c73-4708-b215-0806e7a9770e {"md5": "3d6c99ab32404c48fa5359ed4c25e83d", "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"}], "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-07-30 15:28:20.883026 2024-07-30 15:28:20.883035 353e9c84-d401-47d3-a93b-8141198d20ed {"md5": "aebe79d780e26b2c745e8965511a9b8c", "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"}], "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-07-30 15:28:20.94709 2024-07-30 15:28:20.947093 652fb77e-ba05-4d80-b360-bd2c76c09ed1 {"md5": "63cb47c1c9822c3e944a28b6ecbde399", "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"}], "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-07-30 15:28:21.00623 2024-07-30 15:28:21.006238 5f899faf-366a-4000-81b6-6a663f7b5681 {"md5": "b4c6e1ceeebbfaf2a590de55707fb961", "pid": "99018207X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sulfotransferasen"}], "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-07-30 15:28:22.115891 2024-07-30 15:28:22.1159 7db0e7b7-da1c-4ec5-903f-a5fe07ac3b83 {"md5": "d16332df7e5ca2d7433d0121a3469f9e", "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"}], "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-07-30 15:28:21.082887 2024-07-30 15:28:21.082897 a91e7781-a237-467d-8fbe-a77ec2456054 {"md5": "e583e09f6f7d346a5ff302c0bc4b797a", "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)"}], "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-07-30 15:28:21.181176 2024-07-30 15:28:21.181186 a88162b3-e8b0-409c-b7fd-f5beb38b2777 {"md5": "b2b32a7bb0bed523d28feb5527312c80", "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"}], "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-07-30 15:28:21.253737 2024-07-30 15:28:21.253744 f0b211f8-8277-425e-8ec6-5164c4489397 {"md5": "8b33e1b93ddd125220b493ff46aef17d", "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"}], "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-07-30 15:28:21.321032 2024-07-30 15:28:21.321039 5937933a-1a11-40be-a564-1fa49427e14b {"md5": "bde9ab58fd960fbf00d93c6a2a747af7", "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"}], "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-07-30 15:28:21.395557 2024-07-30 15:28:21.395565 035cfb6e-1613-40c4-8c1e-1f23ab078bbf {"md5": "fa49868dd8125dd57183c50a8e50ed47", "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"}], "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-07-30 15:28:21.477278 2024-07-30 15:28:21.477285 8a1f85f2-64a2-49c7-806c-e2d57a052929 {"md5": "c809a6a1106a5d77fc6ca02ca8d45926", "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"}], "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-07-30 15:28:25.705978 2024-07-30 15:28:25.705986 20f083e9-33df-4029-9147-3ccf50481428 {"md5": "cc3ec095f427f275038a5e354d9c7eda", "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"}], "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-07-30 15:28:21.553122 2024-07-30 15:28:21.553129 3e89bf28-b4de-4bbf-b94b-967fb6964952 {"md5": "e97093a71a82ec96b1bb4d7f531cf545", "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"}], "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-07-30 15:28:21.616847 2024-07-30 15:28:21.616856 9235159e-a966-4b41-9927-80c11e220d2f {"md5": "ec75a31caa66a9d89cd7665cebf229fd", "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"}], "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-07-30 15:28:21.688336 2024-07-30 15:28:21.688345 e7eb9ec8-9138-476b-af9f-5c347b570552 {"md5": "3e2dbd77e07cd91f29e7a7ba5234424f", "pid": "980485371", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:28:21.768297 2024-07-30 15:28:21.768306 835434da-2ee4-4ca1-8d58-c99b2b89327c {"md5": "1ae52b1797d5d10b99b0f0e0b559357d", "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"}], "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-07-30 15:28:21.838237 2024-07-30 15:28:21.838246 2b04bfab-b598-49d1-9f56-5050977cf67e {"md5": "153a496a30abd9ddce585f66e8d42199", "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"}], "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-07-30 15:28:21.908142 2024-07-30 15:28:21.908148 d8721d85-7c9a-4a1b-aa9d-9bbf35c8923c {"md5": "0bfc57ea4004a5a5f9c75369ee0bbe00", "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"}], "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-07-30 15:28:21.977933 2024-07-30 15:28:21.977935 feee2b5b-5d1a-4a36-b2e6-796c5cc7914c {"md5": "e8f9f680b7eacaa7c26eb7076cd0555c", "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"}], "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-07-30 15:28:22.03943 2024-07-30 15:28:22.039438 7271a3a6-75ba-4a99-908a-6de7a6439c42 {"md5": "30e8043a1657038dd07d9bf1d6af949a", "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"}], "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-07-30 15:28:25.772575 2024-07-30 15:28:25.772584 a867b4ca-b0bf-44c5-bf96-2e457f31ccf9 {"md5": "e3f0ab22090baa35cd7cf2c592a0c7ac", "pid": "958503001", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sperrschichtgleichrichter"}], "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-07-30 15:28:22.191416 2024-07-30 15:28:22.191425 b6de8fb2-e331-4ccf-a942-b47e3ab23d7b {"md5": "278247d49f942541fdc014bf5dd4e802", "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"}], "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-07-30 15:28:22.259664 2024-07-30 15:28:22.259672 7549db0d-1711-4f8d-9664-b2406f82254a {"md5": "ae5a04d0d14eb175d490f71360a74104", "pid": "973073764", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musik"}], "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-07-30 15:28:22.329783 2024-07-30 15:28:22.329792 94d62461-8096-4ae1-8ee6-30ea521a979b {"md5": "7e1f398efc151f5dcc893509fd79cfcf", "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"}], "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-07-30 15:28:22.401818 2024-07-30 15:28:22.401826 5eb80f61-9e54-4967-8776-182d1f79fb03 {"md5": "e9a2dbada142fc2040914bc19e7f5832", "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"}], "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-07-30 15:28:22.474275 2024-07-30 15:28:22.474284 045fe82d-f83c-43fe-83c2-b4efbd1bc2af {"md5": "3855afb078fd5a1a862a2c5c442f7f6f", "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"}], "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-07-30 15:28:22.551444 2024-07-30 15:28:22.551453 b6f151c7-aae5-4ee5-b4e6-adbcd9b18dde {"md5": "c7b7c6f89cebdd5c65ee465c38f60692", "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"}], "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-07-30 15:28:22.642654 2024-07-30 15:28:22.642662 3214c57d-5f7c-4fa1-aec0-46c565cc15d6 {"md5": "2f0e681ba28d3450d8100318995a0a17", "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"}], "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-07-30 15:28:22.718934 2024-07-30 15:28:22.718941 ed054681-3bab-4aa3-a4bc-f9c55364e4a2 {"md5": "324e13e4a5431979a63c43a2bc0262ed", "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"}], "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-07-30 15:28:22.794732 2024-07-30 15:28:22.79474 08137aae-d78d-4f85-adac-fc044aa911a2 {"md5": "995fabd6d0f0306b6be14d335d12eaf9", "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"}], "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-07-30 15:28:22.870578 2024-07-30 15:28:22.870588 7b12dd56-f466-4008-965b-63cd2ba18d99 {"md5": "d6b3f857a206b13db7accfe8f7b8b228", "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"}], "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-07-30 15:28:22.944454 2024-07-30 15:28:22.944461 ecbc7256-efe3-470b-b6b9-ce7f5f85e6f6 {"md5": "ca435c30ce88e686f0d44896f1df1efa", "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"}], "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-07-30 15:28:23.012007 2024-07-30 15:28:23.012011 dcf55fde-483e-4b25-9421-85731c2a8682 {"md5": "80418c44886a6d4b2d84e7b3b6a7a8c6", "pid": "969789726", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pietismus"}], "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-07-30 15:28:23.078086 2024-07-30 15:28:23.078094 34d8868c-e62b-4671-aac6-08e953aba9bd {"md5": "e75bcc00776a34df88d971519e9f4a21", "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"}], "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-07-30 15:28:23.151193 2024-07-30 15:28:23.151202 31a1e22a-cdc0-4a80-85b9-23f515ec3cb1 {"md5": "5625534380698e5df40fee1294ef5e76", "pid": "967930308", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Abgabe"}], "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-07-30 15:28:23.22137 2024-07-30 15:28:23.221377 55b5bd7d-0fca-4af6-a2d2-8c70102342fa {"md5": "9f7f04bf1c5d6dfcce2a2be88ffdb7c2", "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"}], "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-07-30 15:28:23.288267 2024-07-30 15:28:23.288276 a5c821d9-4177-4ff9-908b-37e1c67cad3a {"md5": "b064defc4e560291135c9a5ca1cc1cbf", "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)"}], "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-07-30 15:28:25.846181 2024-07-30 15:28:25.84619 24921560-fb3d-46c0-b8c8-375ae8c7a773 {"md5": "246aae2ce3ba7fc48f728175fa02e051", "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"}], "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-07-30 15:28:23.370561 2024-07-30 15:28:23.370569 0414bb30-51ba-47ee-b095-85c04f15bf26 {"md5": "784d3c1c7c901f0be69a40d4573065ba", "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)"}], "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-07-30 15:28:23.434885 2024-07-30 15:28:23.434894 7a96f85e-2887-4bfe-a229-7f6fdb807275 {"md5": "b29849f9ae9208897333e5d70f3b9328", "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"}], "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-07-30 15:28:23.5008 2024-07-30 15:28:23.500809 5634f641-b830-4339-837b-39f3faa07184 {"md5": "1745ca5f551b88e9b33bb92b73ed6795", "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"}], "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-07-30 15:28:23.567994 2024-07-30 15:28:23.568004 12fa2796-a867-44da-b5cd-0d1305e31c49 {"md5": "83cbbaa433052e2cdea6b5c486b43c0e", "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"}], "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-07-30 15:28:23.649143 2024-07-30 15:28:23.649152 56ea4703-96de-41db-be40-b4e0187d9852 {"md5": "388bbfbadf24be30fe03e3e8922177ba", "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"}], "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-07-30 15:28:23.719956 2024-07-30 15:28:23.719963 5cbb8c89-52bd-4bfa-82c5-7ec2f04a7d36 {"md5": "9b7483ec1578e049921e294e4c181617", "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"}], "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-07-30 15:28:23.791634 2024-07-30 15:28:23.791641 cddcaf6c-1926-4996-bf87-b07e726d970f {"md5": "10874a5db223a32c2b15d757bdc5cb0d", "pid": "964240300", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:28:23.867539 2024-07-30 15:28:23.867547 ebec6e47-6b18-406f-9639-511538e64428 {"md5": "6af78ba4dfed637713bee539c81e42dc", "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"}], "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-07-30 15:28:25.565861 2024-07-30 15:28:25.56587 dc40727d-2ec3-43dd-b498-a4a1084e6ba9 {"md5": "485bb7b6c63ebf117af8691be7d77025", "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"}], "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-07-30 15:28:23.937093 2024-07-30 15:28:23.937101 37450fbe-c538-4c15-92eb-c24d123c87fe {"md5": "0194d8d1e0ee3ecece03ec30bf5d1ca2", "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"}], "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-07-30 15:28:24.009296 2024-07-30 15:28:24.009304 e5717f91-38f6-45ce-a78f-1c4b6340c0c8 {"md5": "40d292e28390eaf404d94822bf861183", "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"}], "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-07-30 15:28:24.063438 2024-07-30 15:28:24.063446 93313107-432e-49af-9f18-8674e8c1391f {"md5": "60c27a7b699982e436a26597d23a8af1", "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"}], "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-07-30 15:28:24.142335 2024-07-30 15:28:24.142343 bd99cebe-1e43-4c78-a7fd-6c0db0c29730 {"md5": "90bab6a1abfd5397f4e9f2c9942f7732", "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"}], "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-07-30 15:28:24.219395 2024-07-30 15:28:24.219403 985d8a27-b227-47c4-bb0e-6d63cafd9873 {"md5": "b53934e5624f27232b9ccde50f32fed0", "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"}], "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-07-30 15:28:24.300954 2024-07-30 15:28:24.300963 8699e651-cf54-4cae-8f34-8f176e0e3ecd {"md5": "d8d2b00700017c4bb18c96247f39384e", "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)"}], "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-07-30 15:28:24.383781 2024-07-30 15:28:24.383789 200a0388-223c-4d53-b0b5-5c2cc3dcf046 {"md5": "a4b67f6f1efac3780374bc5e5fbc882c", "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"}], "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-07-30 15:28:25.632707 2024-07-30 15:28:25.632715 a22f3f17-223e-4aed-8c2e-fb284f98c5aa {"md5": "ead7f6bb6d3d6d13ab682f2381c3d7f1", "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"}], "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-07-30 15:28:24.457726 2024-07-30 15:28:24.457734 b3e24725-eb92-443a-b7a9-997762e8f608 {"md5": "0366ba8ff8ddcb01032be065df35719e", "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"}], "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-07-30 15:28:24.534157 2024-07-30 15:28:24.534166 81af1046-60c5-472b-b3c6-a282dd57180a {"md5": "0733fb6d1dd8af8814ec45b5b52d4279", "pid": "961897546", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausstellung"}], "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-07-30 15:28:24.611752 2024-07-30 15:28:24.61176 297b126b-c5a8-4f6a-9b9c-eaa8a699b9dd {"md5": "5d17566f4afda35385ea47205bd500be", "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"}], "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-07-30 15:28:24.692713 2024-07-30 15:28:24.692722 62bd463c-a0e2-416a-b3b3-cf2ff19378be {"md5": "4252966f1ebfb9d451b1fe19c8765842", "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"}], "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-07-30 15:28:24.768142 2024-07-30 15:28:24.768151 3db80e29-1e18-4150-b691-4150590c5cfe {"md5": "2ce4bf87fff5ea9dc780224c8b6fba30", "pid": "961049510", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sonde"}], "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-07-30 15:28:24.842088 2024-07-30 15:28:24.842097 abb1c992-4bee-42ec-91a0-b1a9537e173f {"md5": "47df213a237c7fed54564dd789056d0d", "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", "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-07-30 15:28:24.920411 2024-07-30 15:28:24.92042 66d71e32-ad74-4801-8227-ba1038699886 {"md5": "0479ac0fdf783e265526476fc04719ec", "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"}], "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-07-30 15:28:29.131062 2024-07-30 15:28:29.13107 bcb96add-222f-4cb4-b056-1f50e8e26951 {"md5": "906988a7dfd46c5ffffb7988251978dd", "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", "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-07-30 15:28:25.00245 2024-07-30 15:28:25.00246 59394b08-47e8-4f05-a0b1-c846dfc0ac65 {"md5": "dbcd7302498c3eeaaef749b153b70cb6", "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"}], "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-07-30 15:28:25.068976 2024-07-30 15:28:25.068982 4f7f92de-d4c9-4357-af2f-18a122b1d2d8 {"md5": "c067c7e1e2447b2a2e75447db5575b4a", "pid": "960175105", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dokumentenverwaltungssystem"}], "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-07-30 15:28:25.139055 2024-07-30 15:28:25.139097 24ef62df-7ad0-469c-83b1-c42b0797c3d1 {"md5": "36e47827e5d282e16e0adf40a6529ee9", "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"}], "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-07-30 15:28:25.205844 2024-07-30 15:28:25.205862 3f43ab85-09ed-4335-ab8a-036457555c2e {"md5": "ba056c49921b869baa95f68fabec809e", "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)"}], "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-07-30 15:28:25.276206 2024-07-30 15:28:25.276213 044ad740-bf87-47c6-9554-1468ead62f3f {"md5": "bdfb8349ca8b4f3becd920b6045cda91", "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"}], "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-07-30 15:28:25.34645 2024-07-30 15:28:25.346458 7e369e2b-33a7-4f8e-aaf0-0bbd3a46cd5b {"md5": "e6ec1ec6bff6e7269d4f2a4a94b959e1", "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"}], "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-07-30 15:28:25.420456 2024-07-30 15:28:25.420463 dfc7b2c3-9453-4c1b-b009-e55a78167551 {"md5": "e3c5c6676a809bac4f957d7027f41741", "pid": "959740864", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:25.48932 2024-07-30 15:28:25.489328 56fb605a-1a51-4ae5-b21f-cffc6d4f541c {"md5": "e506693fe8e6fe65fe7d3ce5dc1471b8", "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"}], "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-07-30 15:28:25.91612 2024-07-30 15:28:25.916129 8ca43f37-2019-4054-8202-1d2c4a19ad75 {"md5": "0f921ac2e4ee1e725accece72d0d45e1", "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"}], "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-07-30 15:28:25.987601 2024-07-30 15:28:25.987609 6945ff15-18e9-4d43-80f8-2bd6177e8f30 {"md5": "1d97f9fdc28652b5e4b34620ff2fc994", "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)"}], "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-07-30 15:28:26.071979 2024-07-30 15:28:26.071987 92a17ad2-80b0-4b42-b0f3-45d3d3b0cb35 {"md5": "ebcef59693eb4beac309175f24509938", "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", "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-07-30 15:28:26.122393 2024-07-30 15:28:26.122396 5056a172-e57a-44b9-83d2-177a2b100c6e {"md5": "eea475445fb98f3acb2731e951777fa4", "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"}], "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-07-30 15:28:26.204365 2024-07-30 15:28:26.204373 d4d314a7-c6b8-47c5-8ebb-b218c1015396 {"md5": "be2f2d43f9321ba261a7898f6ecdd113", "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)"}], "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-07-30 15:28:26.290339 2024-07-30 15:28:26.290348 109ddea0-71fd-4b93-8a10-4b3cf8c73768 {"md5": "c8d356f61742eb8b282f9149303feb9c", "pid": "957331940", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "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-07-30 15:28:26.371881 2024-07-30 15:28:26.371891 0ba787b4-4db5-43aa-9c4d-457749864276 {"md5": "c05379e4f8c77b9e8e3059efc2b25194", "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"}], "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-07-30 15:28:26.476746 2024-07-30 15:28:26.476775 d9b12304-437d-474d-a892-b13aade9cd8d {"md5": "a8a709f18f06c62db164065fa1cb00da", "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"}], "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-07-30 15:28:26.572951 2024-07-30 15:28:26.572959 2de2ffc4-a55f-48f9-a720-ade84e056c7d {"md5": "5ca95bccebd3591c7de128cd3d610843", "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"}], "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-07-30 15:28:26.741492 2024-07-30 15:28:26.741502 391a2a34-6d97-4782-9ad5-1dcc8df9dca2 {"md5": "70da54b422ad151ea90c39bccc2c6e93", "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"}], "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-07-30 15:28:26.835238 2024-07-30 15:28:26.83525 b08c18d2-0c85-4862-bd72-423c57646696 {"md5": "6e28cf698f67abd6ae37957e232467c9", "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"}], "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-07-30 15:28:26.94494 2024-07-30 15:28:26.944949 1c49ccf9-be9d-4b47-b651-ef339d2b2f0c {"md5": "e508071fb7961645f4a1929f5b20d7ac", "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)"}], "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-07-30 15:28:27.034394 2024-07-30 15:28:27.034403 7f79bfe5-5994-4cf2-9694-51e8a0591428 {"md5": "33b04556c150137fe7f88882a348ae29", "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"}], "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-07-30 15:28:27.112009 2024-07-30 15:28:27.112011 28137cd4-2f54-4aed-8736-c4fbaa94e31d {"md5": "b55b3ecc76e45f9fb59a74ecd6f209de", "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"}], "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-07-30 15:28:27.163669 2024-07-30 15:28:27.163672 b64c7747-aafb-4c1b-ba45-d0cfcccf97e7 {"md5": "3a6fadcd5e1f6599cb9bc46810b1d862", "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"}], "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-07-30 15:28:27.227895 2024-07-30 15:28:27.227904 31a3b44a-3571-4827-8ea2-d338abb678a5 {"md5": "f6b300f57ee72106c75f24f89e77e772", "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"}], "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-07-30 15:28:27.294451 2024-07-30 15:28:27.29446 0a82fc84-ee81-4e28-bc9d-da275a9bbf15 {"md5": "91f48e9784a0968b5df8b1e32b4fa173", "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", "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-07-30 15:28:27.378351 2024-07-30 15:28:27.378362 5a60c32a-40b3-4d50-81b9-68a77d5cbfc9 {"md5": "3f0b1f5a80c7dccc4b686eb2fa2bb46c", "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)"}], "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-07-30 15:28:27.468927 2024-07-30 15:28:27.468937 2e3103b6-bcdd-4b7b-b0a6-323d9b0b5aa9 {"md5": "85318d0cf73f2497e05acb08678962ee", "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"}], "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-07-30 15:28:27.548313 2024-07-30 15:28:27.548324 f1003178-b8c8-4697-8398-82cd95fc6763 {"md5": "469d55329ca84ef843e794d312992f08", "pid": "953550346", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:27.622278 2024-07-30 15:28:27.622285 b636f27f-ebc7-473e-8074-fd27ef5795d0 {"md5": "ce0281273ed27ecea3fa39dd2a2a6129", "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"}], "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-07-30 15:28:27.688082 2024-07-30 15:28:27.68809 b513aedf-0706-4596-87ed-c2928cf66a96 {"md5": "d05607e13d5a193b85097eb119f7705f", "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"}], "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-07-30 15:28:27.759854 2024-07-30 15:28:27.759861 1f3d8c67-25b0-4b6e-8ebc-e76f0cb5ee7e {"md5": "9057dd40f1ddd2b5a07218cf27f10618", "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"}], "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-07-30 15:28:27.831254 2024-07-30 15:28:27.83126 2e96ca3a-49a2-4df4-8f97-4f5c5091028f {"md5": "1178d4e659811f0ecd0d6a88f2addf68", "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", "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-07-30 15:28:29.04931 2024-07-30 15:28:29.04932 1f4a36fe-c6b8-4c9b-9038-844493dc1357 {"md5": "fb5c0e7f8267d162a2a251e64ca04819", "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"}], "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-07-30 15:28:27.901393 2024-07-30 15:28:27.9014 22c9d2ce-2cb8-4091-abc2-99bfb36708c4 {"md5": "1a84bf1ba68151e0afa00a2e85fce93d", "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"}], "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-07-30 15:28:27.973809 2024-07-30 15:28:27.973816 af39d884-3dac-40e5-a535-6513e318364d {"md5": "4c232ded6a4895d7b706c92738c5ec6f", "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"}], "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-07-30 15:28:28.058639 2024-07-30 15:28:28.058647 3fa556a6-0e06-4a46-8e7e-4e066717afe8 {"md5": "c9d0793be2462c7ab4c0353c0e768e27", "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"}], "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-07-30 15:28:28.135583 2024-07-30 15:28:28.135586 09ceaff0-1c82-4abb-88f9-1f6c41fd7185 {"md5": "7c78db4e9ec162105a95f1035f6d7400", "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"}], "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-07-30 15:28:28.185286 2024-07-30 15:28:28.185293 83bf3100-2d02-43be-b000-f3a7322b7939 {"md5": "be51bd8e40d9c8b96b99f58958ffeef2", "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"}], "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-07-30 15:28:28.250319 2024-07-30 15:28:28.250327 cc82a6f2-be51-4684-bf8a-5e36215ab1b4 {"md5": "5cc37f10d02888a48475a438e9f5a6b6", "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"}], "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-07-30 15:28:28.317401 2024-07-30 15:28:28.317409 ce263199-aeab-4688-a49e-80445e4e66d5 {"md5": "d3809f154637026405c2b0df7d6226a5", "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"}], "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-07-30 15:28:28.390676 2024-07-30 15:28:28.390684 1e81cdf2-4567-4199-9e2f-d5bc42aaaf8f {"md5": "f0a1719f9e7d9e434ee0f95bd9d5d271", "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"}], "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-07-30 15:28:28.459639 2024-07-30 15:28:28.459649 6342d94a-9404-4737-9e53-2c46cdc8776c {"md5": "387b2be322ee7efdbb90a11cb399d8fd", "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"}], "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-07-30 15:28:28.527571 2024-07-30 15:28:28.52758 a73d30ae-66df-4be8-847b-fcb6459b8030 {"md5": "e9e7c77b06dc7995190ac16e4e347cbc", "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"}], "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-07-30 15:28:28.608701 2024-07-30 15:28:28.60871 3412972b-45fb-43ea-a6cd-1163fd6f2645 {"md5": "8c4d4cda0a32de4c41b8a0e73a487118", "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"}], "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-07-30 15:28:28.686524 2024-07-30 15:28:28.686533 0917f631-0d50-497b-a863-d8565fe2a0ae {"md5": "b1472ba6b4c2c9e277ed7bac0fa5b8a5", "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"}], "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-07-30 15:28:28.752193 2024-07-30 15:28:28.7522 0eeb2346-4659-47f1-909b-e865cd852840 {"md5": "8ad1b076fc5d326d0a350cb20d1fd58a", "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"}], "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-07-30 15:28:28.818034 2024-07-30 15:28:28.818043 124a8c19-192a-4640-955a-63ca9ee64f08 {"md5": "582fbc7ed816a945cac694db22cfafbb", "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)"}], "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-07-30 15:28:28.892154 2024-07-30 15:28:28.892161 4f0881c3-2aa5-4ff2-a5f3-585f438d96f7 {"md5": "e95254460da6761265f2c8b9cdfc3932", "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"}], "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-07-30 15:28:28.968109 2024-07-30 15:28:28.968118 55ea8588-eb92-4dec-ba5c-0a66093217f5 {"md5": "a878c5a509ce8bf982159c60353f6be6", "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", "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-07-30 15:28:29.188606 2024-07-30 15:28:29.188609 a29c3bf3-f542-4920-8cdf-655861b1848b {"md5": "09d0b8beeae53fe3b07371d9ef1762d5", "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"}], "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-07-30 15:28:29.246125 2024-07-30 15:28:29.246132 f7e615d1-5e4d-4759-a773-ab37d251347a {"md5": "e2e59c82001d78eeed43e47393391e75", "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"}], "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-07-30 15:28:29.31783 2024-07-30 15:28:29.317837 1bfa160b-4cba-49e3-a1ff-63f08acf0569 {"md5": "126bcb3390ff291a9c66d71210a60f7c", "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"}], "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-07-30 15:28:29.394954 2024-07-30 15:28:29.394961 befe0526-d0e8-4e62-8dbb-02fb4a20a1dd {"md5": "dcdb97d1a5728068661b16ea39407d62", "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"}], "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-07-30 15:28:29.463064 2024-07-30 15:28:29.463073 6184d1fc-8b4f-467e-aa23-73e7afda13f5 {"md5": "f9d941db0e0869a302bccb66c4c420ac", "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"}], "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-07-30 15:28:29.538643 2024-07-30 15:28:29.538652 b729e6db-bf66-4a6b-8cd4-bcb2c1279169 {"md5": "147201c636e4676d5e472770cc0f8492", "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"}], "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-07-30 15:28:29.617934 2024-07-30 15:28:29.617943 fdc5c6de-615e-4c15-9cb5-010f6665935d {"md5": "e0550680416160c4abb4f0899b866727", "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"}], "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-07-30 15:28:29.691922 2024-07-30 15:28:29.69193 dd482df7-f13b-49a4-b876-63d679100036 {"md5": "b57cda29d2b6481cb36dfb5dbd7fde79", "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"}], "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-07-30 15:28:30.897007 2024-07-30 15:28:30.897016 cdbbff0c-1c3f-4367-8d04-8c502f7099be {"md5": "c70288a3952bc109a9c8f7b4a5f3d412", "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"}], "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-07-30 15:28:29.767709 2024-07-30 15:28:29.767719 4a417680-ab51-47fc-94ec-4c0d8dbf662f {"md5": "3f067a69d65368e920684f603dbc3e36", "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"}], "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-07-30 15:28:29.843361 2024-07-30 15:28:29.843373 2a53a6e0-55c0-41ea-8430-8e69a527499a {"md5": "f76743b8c9ef6decb811a7f5c1a26ff3", "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"}], "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-07-30 15:28:29.925844 2024-07-30 15:28:29.925853 1711e2d0-cc0e-406d-b29c-5e9e3675ce90 {"md5": "2c396aba8eaecc06386e067d0da2ce1f", "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"}], "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-07-30 15:28:29.999419 2024-07-30 15:28:29.999431 12955aeb-8e0a-4f4f-8e95-609f6bf2bff9 {"md5": "bba39b2d4a7e7e11b8703d33000b05e4", "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"}], "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-07-30 15:28:30.071375 2024-07-30 15:28:30.071384 667e7ec3-e622-4102-a30c-3b0e575871ee {"md5": "e00abbea28cc9640c7ed6d20673c53c2", "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"}], "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-07-30 15:28:30.146009 2024-07-30 15:28:30.146018 33400213-8f8d-4915-9a7b-ec2abcff0220 {"md5": "4b4927368c62b1302c43ed4cba4296d4", "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"}], "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-07-30 15:28:30.215175 2024-07-30 15:28:30.215181 f8a17d4f-b650-4719-b9d4-c679652e7ed6 {"md5": "5146c62cd8ff8d219b76ffac8ad32d78", "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"}], "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-07-30 15:28:30.280709 2024-07-30 15:28:30.280717 147ecf1b-5be3-4395-92f4-d8317e564774 {"md5": "86dcfa3ca7089ae4f0980a84905eb299", "pid": "945831749", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "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-07-30 15:28:30.342403 2024-07-30 15:28:30.342411 05b4f0d6-8948-4f34-a911-469dcc74f246 {"md5": "5191bbf3873d0026d6eaddf2abdded12", "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é"}], "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-07-30 15:28:32.172469 2024-07-30 15:28:32.17248 0905d7c2-2f71-487a-b1f9-9b18e7db1b48 {"md5": "96810d2cf447e7c57dee58abfda60efa", "pid": "130791008", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:30.404383 2024-07-30 15:28:30.404391 a3a66d73-9726-4e03-90f1-8399b13d80b7 {"md5": "80f80a2b700f4539c894bfccde000eda", "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)"}], "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-07-30 15:28:30.468063 2024-07-30 15:28:30.468071 ae7b854a-3262-4903-9c5c-20956cf3a76d {"md5": "ae13aa69f4063787780545fb2737b63b", "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"}], "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-07-30 15:28:30.535729 2024-07-30 15:28:30.535737 580ca111-19f6-4f87-937b-0bd04aac8c13 {"md5": "a887d64dcace9c687d3d7844fe2447c6", "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"}], "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-07-30 15:28:30.612343 2024-07-30 15:28:30.612352 ec812569-afd9-4530-b0b4-60530128e492 {"md5": "f9f47d7ea315ea58ff1accd9ef3dc972", "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"}], "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-07-30 15:28:30.676479 2024-07-30 15:28:30.676485 ae40fff0-d6f7-4135-ab1e-72030afb6313 {"md5": "1a50ce3c879c3297408b6a76e83b1082", "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"}], "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-07-30 15:28:30.749824 2024-07-30 15:28:30.749832 b27c42d5-b4f2-429c-b0c3-0f23aded550b {"md5": "bcaa5b6105327668f770e7953ae8e8c2", "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)"}], "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-07-30 15:28:30.819587 2024-07-30 15:28:30.819603 30bff399-a859-4eb5-9908-160848dc87f7 {"md5": "a0fa6429bbb3b1a22c234907c1b86798", "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"}], "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-07-30 15:28:30.9671 2024-07-30 15:28:30.967109 f1e8afcd-db62-4af2-b5fd-c5168e993821 {"md5": "7c137a0a634fe1eab0d6cb8dc7709669", "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)"}], "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-07-30 15:28:31.04066 2024-07-30 15:28:31.040669 2b93da9b-b918-47d3-a18f-fd8a2a9eb61c {"md5": "d70f3ecdde4e5ba403aaca9ff828104c", "pid": "943138604", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zellaufschluss"}], "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-07-30 15:28:31.114751 2024-07-30 15:28:31.11476 b6d12ab1-20c8-4681-b636-16a57324779b {"md5": "02d23d984175a3f776fbfa858425be4e", "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"}], "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-07-30 15:28:31.200714 2024-07-30 15:28:31.200722 1a88492b-2a6b-44b6-8d71-5d2ef981f945 {"md5": "7dbb7e968a5526050a85080d2e577faf", "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"}], "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-07-30 15:28:31.251335 2024-07-30 15:28:31.251338 8a356c7d-ee15-4b6e-ad0b-55c6ae601d4a {"md5": "dfc9134150a73066ba607cc47584a413", "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"}], "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-07-30 15:28:31.320067 2024-07-30 15:28:31.320075 e8f5e220-cac2-4951-9efc-031d69a964dc {"md5": "9d6ad81bf4c4058b38c0135e55d4e443", "pid": "941781437", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:28:31.407783 2024-07-30 15:28:31.40779 d3f2d02b-74b9-448a-bf0e-fe330016f6a4 {"md5": "22f19712fdc00adb627b9160d0648a57", "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"}], "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-07-30 15:28:31.478836 2024-07-30 15:28:31.478843 128bac97-45f3-4d67-ac7a-4044dec23d76 {"md5": "5c1fcae3966d82e4ecc13cf61b3d8228", "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"}], "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-07-30 15:28:32.241502 2024-07-30 15:28:32.241507 e3411772-3cd3-4926-bd90-709c481526ec {"md5": "6eba53f7cd3f508d121abfc824c0ef22", "pid": "130750085", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:31.545574 2024-07-30 15:28:31.545582 576bbfcd-785f-40cb-b4f4-cb13bc9f0908 {"md5": "1405b420266eb0c497f1a7c9d9a69645", "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"}], "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-07-30 15:28:31.610946 2024-07-30 15:28:31.610954 5ae6d6bb-8b53-40ba-950b-39647f8d79e1 {"md5": "539e2498d3b8dbb5e19167a05479360f", "pid": "940594919", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:31.671431 2024-07-30 15:28:31.671439 0041cf7c-4873-4e0a-9ee3-f12951b4687c {"md5": "d06fd164ad3c361e125a7db9d930fd8b", "pid": "199289190", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:28:31.736982 2024-07-30 15:28:31.736989 a8fd78ae-7ab1-4a64-ab1d-4dcab1595178 {"md5": "91336f81c96e538e754ed47e7836163b", "pid": "199281823", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "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-07-30 15:28:31.807914 2024-07-30 15:28:31.807923 5548dd31-5fe4-488a-bfed-42c6969e40d7 {"md5": "6389992bf281519385a9fceec9497aa8", "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"}], "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-07-30 15:28:31.881502 2024-07-30 15:28:31.881511 a7fcb4f3-9afb-4152-8dcd-2713b0913cd1 {"md5": "7e0b01a5ac1414f8446822680db89084", "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"}], "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-07-30 15:28:31.95364 2024-07-30 15:28:31.953648 5fb5a09b-489d-474e-a820-327890df18b6 {"md5": "b3f258847dc3f7b2d6951080959dbd3b", "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"}], "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-07-30 15:28:32.025079 2024-07-30 15:28:32.025087 38f4f719-66b2-4286-a1a0-606b90fc6360 {"md5": "7ee514828f0d8f00cbcc884f75843aff", "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"}], "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-07-30 15:28:32.094826 2024-07-30 15:28:32.094835 9d5e7d0f-19d5-4594-b69d-f0bb9ecfca09 {"md5": "85bcb92c9b03e4d1c5ad5c60ce781e4e", "pid": "199129215", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Versicherungsteuer"}], "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-07-30 15:28:32.344537 2024-07-30 15:28:32.344544 4aa69c63-f406-481a-9b44-0d512eb8e4d4 {"md5": "c305b906a56b4da917104f4178ed3f95", "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", "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-07-30 15:28:32.417628 2024-07-30 15:28:32.417636 a4ea0e30-2d3d-4f58-a045-399e902ec774 {"md5": "4dcb52e815f679bd3a37d643a41fbe07", "pid": "130715387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:32.49282 2024-07-30 15:28:32.492834 69a02f56-0b26-4c49-b4c8-7ad562dc918f {"md5": "ea0eabbea598f6bdaccfe952e0afabb1", "pid": "130714941", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:32.576048 2024-07-30 15:28:32.576056 a0b683fd-2945-46f7-bcd0-3b67c0332ed0 {"md5": "29dd89a1c7aa523a712fd7da5503d308", "pid": "130708291", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:32.641792 2024-07-30 15:28:32.641799 8efaeb32-1647-4107-ae91-8bb7d30705bf {"md5": "6e240123670a13dd25f8338cf08da060", "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", "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-07-30 15:28:32.710125 2024-07-30 15:28:32.710135 46cce0b2-ddc2-4bc9-b158-8638374761a0 {"md5": "bae724b4faa4f672ba77df8561d9afa9", "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", "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-07-30 15:28:32.777535 2024-07-30 15:28:32.777541 c6c09f37-215c-494b-b2da-8e3dfe76b987 {"md5": "1e73dbe92f42d6a36376e32668583655", "pid": "13069374X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:32.846632 2024-07-30 15:28:32.846641 7883151f-c69c-4c5d-bfdc-19e334e8fe7b {"md5": "53ecda7bec11befda9da31c92cd85423", "pid": "130692476", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:32.913889 2024-07-30 15:28:32.913898 085ee507-f16a-4162-80c9-13eccbfcafac {"md5": "957b391b2654d390d76eb7ef1618f416", "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"}], "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-07-30 15:28:33.39562 2024-07-30 15:28:33.395628 7aa06f75-d194-43ec-a6f3-4c367a209822 {"md5": "3a8dc78ea8049ad5390250e3490342f2", "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"}], "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-07-30 15:28:32.984438 2024-07-30 15:28:32.984446 e4f7a076-3230-4086-90fe-052f46ad29ef {"md5": "79924e3235f8597b528f59d466ecb1f4", "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"}], "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-07-30 15:28:33.056022 2024-07-30 15:28:33.056031 969dfd71-5276-49b0-9edf-3356a39b38a9 {"md5": "ee1232f0882b78cf70cb65c5386cd087", "pid": "04328213X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geschwindigkeit"}], "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-07-30 15:28:33.135313 2024-07-30 15:28:33.135327 26e7d26c-3d6f-41bc-9b5b-ade1cf2706d6 {"md5": "311136f6ec65bd6d93b6efb8a216d1ce", "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"}], "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-07-30 15:28:33.213096 2024-07-30 15:28:33.213104 890b7967-7914-4dc0-8c51-38a9246a6dfa {"md5": "59200264f12a8da98cf8b93074ef0e99", "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"}, {"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"}], "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-07-30 15:28:33.278026 2024-07-30 15:28:33.278029 31c7f7d6-29dc-419e-8789-9586882484a8 {"md5": "384efa7d5e584be8d477df407d826160", "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"}], "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-07-30 15:28:33.324048 2024-07-30 15:28:33.324056 b4bd9b01-ad3a-4543-98f4-afe78f2774cb {"md5": "be2635b7fcd20431033867ec65cf15b9", "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"}], "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-07-30 15:28:34.097479 2024-07-30 15:28:34.097488 45bed6c5-bd4f-4e61-b846-98e61d0524bd {"md5": "a6c64a6043a0388b382ee7121dad1402", "pid": "043001173", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:33.469855 2024-07-30 15:28:33.469863 9d654266-6e03-407a-a19e-d492a99e79ea {"md5": "2360b79cdbd7e625ef89f414ad16b4b0", "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"}], "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-07-30 15:28:33.547284 2024-07-30 15:28:33.547293 f8172f6e-3901-4e4b-83b0-eeec2dd3c715 {"md5": "c7140384b07fc4d50a41d6739751f5ce", "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"}], "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-07-30 15:28:33.617173 2024-07-30 15:28:33.617183 484c0108-0322-4cac-9aa2-c4f40ec5c073 {"md5": "5971239cdcf82827dedbea3d8bf55857", "pid": "043062008", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "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-07-30 15:28:33.693346 2024-07-30 15:28:33.693357 cca38f56-d102-4c04-90c9-b849c16bbd99 {"md5": "3566f96cd3193abcec6c8af5da9f663a", "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"}], "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-07-30 15:28:33.771732 2024-07-30 15:28:33.77174 bc4b7614-37ca-46ed-a76a-a27eafd32425 {"md5": "c5cb7055495e04268de30731ff249968", "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)"}], "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-07-30 15:28:33.861831 2024-07-30 15:28:33.861839 063b33ff-81a8-422c-b016-9cc4f0e5dac4 {"md5": "fb614b1fb433ff7805b4646207efe1dd", "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"}], "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-07-30 15:28:33.93883 2024-07-30 15:28:33.938839 f86c167e-75ad-447c-9ee2-5d2e97c85250 {"md5": "bfa801ee897f69af8e66171670f87f99", "pid": "043004164", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Äolisch"}], "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-07-30 15:28:34.019092 2024-07-30 15:28:34.019102 c93e48b9-957c-4bbc-9f9e-0b03ac9fd3ae {"md5": "8696ec194b0add4cae35c1363219062d", "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"}], "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-07-30 15:28:34.182891 2024-07-30 15:28:34.1829 f05d0c87-a837-454d-8d86-ce03b582c75d {"md5": "9521a8fe5f7fbc2cb5971931206671d8", "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"}], "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-07-30 15:28:34.25481 2024-07-30 15:28:34.254816 9a83d4f8-8918-4eb4-8336-fff7efc0b84b {"md5": "ad048db24f89116d40b9017361c41aec", "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"}], "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-07-30 15:28:34.331736 2024-07-30 15:28:34.331746 31ddbabf-1561-4b5e-9edb-95adb2d74abb {"md5": "6792946ab8c1881ad06ef7928e235c3e", "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"}, {"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"}, {"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"}], "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-07-30 15:28:34.392835 2024-07-30 15:28:34.392845 cee1ceab-c5b9-488f-85a8-b2120854d730 {"md5": "40c951f42772168a048868e857572b9a", "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"}], "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-07-30 15:28:34.467003 2024-07-30 15:28:34.467011 dfd2454a-ea83-4ddb-b42c-66acf50d10c3 {"md5": "5eb29639f179fd34fd73fd34f79df96c", "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"}], "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-07-30 15:28:34.550804 2024-07-30 15:28:34.550812 b5ea4288-cd77-4097-945a-e6d6b703a70f {"md5": "cc0386294d58384990d6f03888e5bee5", "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"}], "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-07-30 15:28:34.63019 2024-07-30 15:28:34.630198 56191a2c-df48-491c-8097-8d9da5f22fb0 {"md5": "4fce8fff35f2fe7b977b76134ee617dd", "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"}], "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-07-30 15:28:34.712109 2024-07-30 15:28:34.712118 6ee37093-2598-434b-be49-03d9f825ffbf {"md5": "7aaae42025f831372c2c3b5fc160e38b", "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"}], "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-07-30 15:28:34.793484 2024-07-30 15:28:34.793492 70799fcd-3fcd-4dc8-ae79-5e6dfad67623 {"md5": "3773dfa6dee78740bcd7a4f12d59421d", "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"}], "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-07-30 15:28:34.870638 2024-07-30 15:28:34.870647 6ac695b3-da06-476e-b9b6-e5324bed1e64 {"md5": "f059d72d85a145bd2e2f665f821085ce", "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"}], "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-07-30 15:28:34.958349 2024-07-30 15:28:34.958359 e9d44555-7f4c-47f6-9a04-950c4bc8d23d {"md5": "2256ce966746e9bd3c177273d724058a", "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"}], "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-07-30 15:28:35.03643 2024-07-30 15:28:35.036439 99c0b0cb-ed2e-4354-a1ca-3ad2379b7f60 {"md5": "e898511faf6289d6616643534e2fb404", "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"}], "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-07-30 15:28:35.118585 2024-07-30 15:28:35.118595 1ea3bd28-16b0-4a16-a4a0-d2b21ad60ab5 {"md5": "9353d7967667584cc748f9ff4f6c3319", "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"}], "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-07-30 15:28:35.216015 2024-07-30 15:28:35.216023 3ac844b0-6837-48da-ae75-173dc4159f9f {"md5": "909e6920a12600413bc2aa68a966a558", "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"}], "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-07-30 15:28:35.814161 2024-07-30 15:28:35.814171 d72f6ccc-b02f-4f7b-b7bd-028bae706906 {"md5": "a7a3e3f0541025413980fc4efa01c036", "pid": "04266702X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Übergangsmetallkomplexe"}], "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-07-30 15:28:35.288595 2024-07-30 15:28:35.288602 6feec4be-ffc4-4984-ac28-12bf80506367 {"md5": "c429609695c7f7c48a23c462b06961cd", "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"}], "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-07-30 15:28:35.367807 2024-07-30 15:28:35.367811 b1cf3039-fe0c-4462-aaa5-e75a058da1fb {"md5": "033cfd6760fc526d26fbabf568ce8cbb", "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)"}], "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-07-30 15:28:35.438603 2024-07-30 15:28:35.43861 a65e2ae0-fcab-43df-8921-ac10d77a1d39 {"md5": "8b988065a4d8f8e971754176655d10d9", "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"}], "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-07-30 15:28:35.504613 2024-07-30 15:28:35.504622 96e57485-b2fe-45e9-90b9-02c8f1a18a80 {"md5": "4ed9f107f4a19baabe96da0b7163c6b4", "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"}], "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-07-30 15:28:35.576211 2024-07-30 15:28:35.576218 eef762ac-94ae-4434-a699-d78bb6ff2883 {"md5": "cdabbdedd419820f50f6052c72049d13", "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"}], "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-07-30 15:28:35.654156 2024-07-30 15:28:35.654163 ed0370d8-1241-49dd-80d8-489baf455958 {"md5": "174d9b0d7ee26c6aa5ac27f1169b2d97", "pid": "042731437", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schaltverhalten"}], "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-07-30 15:28:35.737379 2024-07-30 15:28:35.737387 03c1a10a-e890-45a7-8a47-8af9d3e00bff {"md5": "65e55981eed4b97165303334675220e8", "pid": "042720133", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:35.894215 2024-07-30 15:28:35.894224 d9b5353a-2de7-4302-aa63-955cf287b1f6 {"md5": "ad4ecfa39f8acd3ef3e679540ff077d4", "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", "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-07-30 15:28:35.970222 2024-07-30 15:28:35.970231 1282efbc-7c89-422a-adb5-d16b92f2d766 {"md5": "0a0762eeb1869592a707848b4f535146", "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"}], "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-07-30 15:28:36.046552 2024-07-30 15:28:36.04656 7444b374-2ae1-49f2-ad92-c4d049ccbc89 {"md5": "f2bc2b65f987c1e597f919f94a3ca9a8", "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)"}], "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-07-30 15:28:36.125326 2024-07-30 15:28:36.125337 2e93f0c1-d9ab-4565-9564-3a20e6684ea0 {"md5": "73bb656890257ba636eb3ade024c89c0", "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"}], "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-07-30 15:28:36.207971 2024-07-30 15:28:36.20798 cb7c38a9-80c5-4b6a-b2c2-1f76e035e69b {"md5": "5834389a2e4da9ca0e8fee638f58d95f", "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"}], "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-07-30 15:28:36.301444 2024-07-30 15:28:36.301453 c2b13c13-933d-4272-aa17-206812e9644f {"md5": "7a7d19d4c923875971652a45a794d606", "pid": "042573254", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:36.375373 2024-07-30 15:28:36.375376 5846efcf-86ac-4bb8-9af2-de15fd82bbd6 {"md5": "581e323287e4a1a253e7c5d6c7cd12b1", "pid": "042536367", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Naturheilverfahren"}], "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-07-30 15:28:36.432838 2024-07-30 15:28:36.432842 26123233-f98c-4045-8a7b-51c1c2e3eb9e {"md5": "bae08ff6e1b7a85dafbff6a09c786c0a", "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"}], "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-07-30 15:28:38.807952 2024-07-30 15:28:38.807961 307df572-c33b-4a1c-b988-7f6c16d139f1 {"md5": "4b5b818638dd320188d4ae1ab775e0b4", "pid": "042044529", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stadt"}], "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-07-30 15:28:36.504703 2024-07-30 15:28:36.504711 aaf56f2f-157a-45d7-9de8-110148f739ff {"md5": "e76b68efb59f5999074bafa39eb640a6", "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"}], "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-07-30 15:28:36.583078 2024-07-30 15:28:36.583087 9f510918-efba-467c-9527-1acb99ceeb85 {"md5": "ad30b0b0c86c934e93e5d24f77b7be33", "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"}], "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-07-30 15:28:36.658423 2024-07-30 15:28:36.658431 57e4b5dd-aa21-435f-8933-7def03fe3bd1 {"md5": "0a1a673b3f6eed9da665ea00ed836f71", "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"}], "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-07-30 15:28:36.727548 2024-07-30 15:28:36.727555 1b9f552d-b0f0-47c4-bd0e-49169478f9ab {"md5": "ef86ffc3a667e4ba30912f1cf08ef983", "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"}], "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-07-30 15:28:36.818542 2024-07-30 15:28:36.818552 0e13299d-0be5-4d38-9b43-6a438299802a {"md5": "e8b545f7c5c4e1f3ca7b6dba5580035d", "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"}], "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-07-30 15:28:36.893725 2024-07-30 15:28:36.893733 842ddc8a-4f74-4a0d-8c72-e84c9733c4d4 {"md5": "0df1a3e08c4a69b73ec3dd45fa795afa", "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"}], "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-07-30 15:28:36.965737 2024-07-30 15:28:36.965747 da7a24d6-8f4d-4325-80f8-d526f9df0e42 {"md5": "bd286ebba414d20bf8e652e087a269e6", "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)"}], "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-07-30 15:28:37.045813 2024-07-30 15:28:37.045822 57a3ff71-bad2-43a2-9abd-41743590d031 {"md5": "794b3edf37176ed79da4c4bd610913ab", "pid": "042325900", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Epithelzelle"}], "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-07-30 15:28:37.128704 2024-07-30 15:28:37.128713 ca552ee9-f124-4901-934b-ab64d8642f9d {"md5": "4d77d9f233c0f2729072ea5d471b749f", "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"}], "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-07-30 15:28:37.215854 2024-07-30 15:28:37.215863 f1fe69c6-ed55-4a3e-8a46-f456b5b5fdf4 {"md5": "20b8a33bbc560f38324bebd75ecdf22b", "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"}], "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-07-30 15:28:37.307997 2024-07-30 15:28:37.308004 6286649a-becd-45b2-b2b9-56ff5ae811c8 {"md5": "1e98a8f50e3c47dd7c09bab2c72277b9", "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"}], "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-07-30 15:28:37.389556 2024-07-30 15:28:37.38956 f8e465cb-fa76-4980-9cc0-b729a7bfd8ff {"md5": "eda7342dab0b3242f2b7e7c339b30595", "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"}], "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-07-30 15:28:37.452264 2024-07-30 15:28:37.452272 ce70ca96-8e81-4efb-a1de-b86fbcf0a06a {"md5": "b9f08eb9680cf208e36eb795d0c2d054", "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"}], "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-07-30 15:28:37.543124 2024-07-30 15:28:37.543134 fa0ebcae-eacf-40cc-8dee-e0b6f99b88fc {"md5": "6ce947184d15a82c223f221a177b24ea", "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"}], "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-07-30 15:28:37.619619 2024-07-30 15:28:37.619627 89e8349d-0cc8-474b-9fa1-483250209016 {"md5": "81703fe60ff33d33d0a55bdd03311703", "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)"}], "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-07-30 15:28:37.69112 2024-07-30 15:28:37.691128 2e860b10-28da-421c-a943-ca77a14e99d4 {"md5": "2376e203642b73bf1fc2009170fb052d", "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"}], "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-07-30 15:28:37.770405 2024-07-30 15:28:37.770414 e62311e1-3a02-4ace-b03f-0de585801905 {"md5": "696e060199b306932b6189bf71438c6c", "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"}], "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-07-30 15:28:37.859698 2024-07-30 15:28:37.859709 b348d21a-1bdb-4eeb-9e3d-8ad6007fd7ca {"md5": "5bd2687b5e9d0bbc7385943bcbfd3257", "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"}], "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-07-30 15:28:37.939383 2024-07-30 15:28:37.939391 7e38d12d-a6d6-44f8-8d3c-0a4639509c8c {"md5": "63313ec47049e6b4c015f105c12277b6", "pid": "042147670", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programmiersystem"}], "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-07-30 15:28:38.019304 2024-07-30 15:28:38.019315 04a8aca9-26c0-4b48-a31f-a29aee00e8a7 {"md5": "54adf26e95d1a513cf1da65633a7ab6e", "pid": "042142237", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kartenauswertung"}], "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-07-30 15:28:38.097558 2024-07-30 15:28:38.097567 effa5997-4f3f-4a47-ab7f-c965130fed43 {"md5": "41eb72552fcece6e14436e19d3c2c941", "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"}], "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-07-30 15:28:38.176872 2024-07-30 15:28:38.176879 47efc35c-0ae4-4990-a005-8ffe029f6bf2 {"md5": "3585db47d0e4832351128a604f81f226", "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"}], "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-07-30 15:28:38.24366 2024-07-30 15:28:38.243667 de160c66-9790-40de-b3ea-be3fe115cd6c {"md5": "b70a826e34bd4f5dec18146e51ced993", "pid": "042123909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kennlinie"}], "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-07-30 15:28:38.351372 2024-07-30 15:28:38.35138 f1f4176c-e04a-4340-a1e2-0e674919eba5 {"md5": "fb1aac0f10f987a853f5ba36c4cd9de9", "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)"}], "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-07-30 15:28:38.419593 2024-07-30 15:28:38.419595 cf497c21-0feb-4959-b1f8-f4d9d7ba30b9 {"md5": "7105ee2e50e6ac810fbef1ecc7587b3e", "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"}], "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-07-30 15:28:38.46925 2024-07-30 15:28:38.469257 89ca3438-fbfe-40c1-afcb-d9fa7b117647 {"md5": "5ac35003859de5e233c10070df27f536", "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"}], "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-07-30 15:28:38.53698 2024-07-30 15:28:38.536987 590a0277-745d-40a1-b3fc-3807a2a991f5 {"md5": "40559e1a4a0618f3490ba3edba342bbd", "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"}, {"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"}], "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-07-30 15:28:38.62404 2024-07-30 15:28:38.624048 86c199e8-5735-4db7-932f-df519603e822 {"md5": "dc5997cd43ec545e9608fb6a81ec6231", "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", "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-07-30 15:28:38.724064 2024-07-30 15:28:38.724072 e8f35de7-5980-401b-9745-a84afc2966a3 {"md5": "85136fce5acf273b2f0f5ce3b8ec3907", "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"}], "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-07-30 15:28:38.887392 2024-07-30 15:28:38.8874 2f70f1ba-9d1e-4c6f-9138-3455386dc40e {"md5": "8b2c18d19417077f8222032e92be43cc", "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"}], "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-07-30 15:28:38.958782 2024-07-30 15:28:38.95879 9ff1068e-dbdc-429c-a057-df00bdc858c8 {"md5": "e9895eebb505fef5c5ba8eaed4ae3db9", "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"}], "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-07-30 15:28:39.038605 2024-07-30 15:28:39.038613 1bf76910-55c1-40d6-a783-73a09060a21d {"md5": "2d980cf14f52a80a2ddd2d10b7788183", "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", "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-07-30 15:28:39.121348 2024-07-30 15:28:39.12136 592be113-4fcd-4778-af0f-99131bc09fde {"md5": "6588f4d5d1e831c727e12fdacea52f36", "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"}], "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-07-30 15:28:39.198971 2024-07-30 15:28:39.198978 c10306de-8de4-4a9a-bf4a-8dcb430244f7 {"md5": "1427eb0232e72d0ef86348075c5e0594", "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"}], "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-07-30 15:28:39.294889 2024-07-30 15:28:39.294898 3c6dd39e-f535-43f7-be99-733003d6aac0 {"md5": "8f7c41a028af2d13b4787f34f4aa5280", "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"}], "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-07-30 15:28:39.376614 2024-07-30 15:28:39.376621 336e921a-d53b-48bb-bf54-0cca63c1e06a {"md5": "41695d9958eec5289213c1cb289423fb", "pid": "041961080", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:39.439001 2024-07-30 15:28:39.439004 960e412c-f307-4199-b7e5-068c35e072fd {"md5": "2d6e46bdbbd3ea9c3bb6d79890d5a72a", "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"}], "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-07-30 15:28:39.490568 2024-07-30 15:28:39.490577 4d303eda-26e4-4d81-b302-dd71a025588e {"md5": "6e810c9259784a0ea9421b61144f0e60", "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"}], "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"}], "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-07-30 15:28:39.573823 2024-07-30 15:28:39.573831 320227d3-f169-48e8-8d1e-d1e25b6e4e84 {"md5": "a58eb0db69773f9a6ec4efc3fdb8ec7e", "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"}], "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-07-30 15:28:39.659128 2024-07-30 15:28:39.659135 ef5a5c04-2d78-42f5-919f-504c7f285519 {"md5": "521d2a0f6e98e3e23b5ec02fb5345561", "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"}], "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-07-30 15:28:39.732517 2024-07-30 15:28:39.732527 60611ae9-3766-4d58-a989-8de981eaca96 {"md5": "326dec08b80472ef36e5d1dac7861705", "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"}], "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-07-30 15:28:39.806617 2024-07-30 15:28:39.806626 eeb6e2f0-b0b0-48a2-a4c7-4b709434a449 {"md5": "be080d8eb4d8066ec90f8e4d3c357a34", "pid": "041917413", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fachzeitschrift"}], "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-07-30 15:28:39.891282 2024-07-30 15:28:39.891293 a2f90f2b-15fb-4f0a-9517-704f181d546a {"md5": "d4c65df471a034d6927c5eef5911273f", "pid": "041913574", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volksglaube"}], "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-07-30 15:28:39.966034 2024-07-30 15:28:39.966044 4a75a242-47a1-45e2-86f9-c5311aa9153b {"md5": "b379be6393f8b4a8b2186641775d6770", "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"}], "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-07-30 15:28:40.04297 2024-07-30 15:28:40.042977 efb3274f-26e3-4a9a-982e-c51de44fc5cf {"md5": "693f05d94148c1635debdfd62516ab31", "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"}], "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-07-30 15:28:40.130786 2024-07-30 15:28:40.130795 ba4eb26b-2a22-4dc5-a2b5-7095f23fffe7 {"md5": "9002b05638d68b66bfabeaa9a101a683", "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"}, {"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"}, {"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"}], "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-07-30 15:28:40.207881 2024-07-30 15:28:40.20789 cbd049ff-c315-4b3e-9e00-eeb928066574 {"md5": "d9ba87f2343f588bfa21fd46fe9a1ac7", "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"}], "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-07-30 15:28:40.288748 2024-07-30 15:28:40.288756 a73d1052-7a64-48e5-9a97-997804237605 {"md5": "5c12ea1a8e5f902bcbc1faed5504fc71", "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"}], "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-07-30 15:28:40.369236 2024-07-30 15:28:40.369246 26530e69-55a8-4963-a358-dbc4a9ac5a06 {"md5": "e8a3b1ae9f6e1e1939d279fd2dff69cc", "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"}], "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-07-30 15:28:40.45295 2024-07-30 15:28:40.45296 f13aebe6-4ef6-4203-9093-11ec6663ccca {"md5": "34ca7e27ecffba1168a63e94d0006aef", "pid": "041856333", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:40.535698 2024-07-30 15:28:40.535707 55edebad-ca1f-4b1e-aef5-08804fcda654 {"md5": "801ca160a72277611c12fd55e420fd23", "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"}], "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-07-30 15:28:40.610915 2024-07-30 15:28:40.610923 f47997be-f5d9-4c6a-9da2-cc335842c900 {"md5": "6f446adf69854d27affc2e7e184d8093", "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"}], "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-07-30 15:28:40.679569 2024-07-30 15:28:40.679578 fce8e92f-35dc-43b9-8704-38502c2640ec {"md5": "7a9757ccbbc3a38aa97d3c14e0bfd6bb", "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"}], "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-07-30 15:28:40.750629 2024-07-30 15:28:40.750636 d72c83c8-0c29-47e0-8804-7a1be1d00cf5 {"md5": "b8ca826690129d85d5fe6d3be0c1c57d", "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"}], "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-07-30 15:28:40.827688 2024-07-30 15:28:40.827698 e87bacc9-fcef-4438-b663-d022c8714d44 {"md5": "15475091c2a39f8c63ac5fae1d90e808", "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"}], "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-07-30 15:28:40.917561 2024-07-30 15:28:40.917571 4f2ddfb5-39c0-4542-9653-769a820f295b {"md5": "e8ea5aada4bd65664e8cbefc77f3e540", "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"}], "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-07-30 15:28:40.996842 2024-07-30 15:28:40.996851 70f222e7-5c21-45c9-8fd0-013a56c957d6 {"md5": "0a9d71deff43b2e0967ff58be68ac095", "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"}], "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-07-30 15:28:41.066985 2024-07-30 15:28:41.066992 e6f33fe3-a6d6-486c-b60c-3b3f3ee8800e {"md5": "8cc0f1e1288846a699ce14e6e19df885", "pid": "041815173", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:41.146636 2024-07-30 15:28:41.146643 adbb761f-bce4-4b93-bdee-a202a8667733 {"md5": "1b50506be9309071d8e2dfc0878173ea", "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", "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-07-30 15:28:41.220717 2024-07-30 15:28:41.220725 990385da-d7fc-4534-bb95-aebe75ae919a {"md5": "eaa3adbe22ef531a713c98191f5b1e9f", "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"}], "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-07-30 15:28:41.291752 2024-07-30 15:28:41.291759 7e2ef5d2-3b96-41e0-9bd0-2d212a4efe10 {"md5": "fc8e87575378ea1adcb874bf67f6d8d9", "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"}], "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-07-30 15:28:41.372093 2024-07-30 15:28:41.3721 c8cc4b23-87f0-42fb-bdf3-7e2f418cb238 {"md5": "d0a6e0f8b6611e4140c02695458b10a8", "pid": "041794923", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Unterwelt"}], "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-07-30 15:28:41.442386 2024-07-30 15:28:41.442394 34f4e10f-439d-4917-866e-afc44def7a30 {"md5": "6e6c95780ff4f4e5b6fe6bd7a30279ab", "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"}, {"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"}], "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-07-30 15:28:41.524298 2024-07-30 15:28:41.524306 f7618c68-1173-4a9b-9f5b-b0e28ffe286a {"md5": "1a4bbf0e5b93903a56ed9b3ed6fd8b28", "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"}], "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-07-30 15:28:42.889695 2024-07-30 15:28:42.889704 63691e67-cfaf-42a4-98a5-80c546f5c821 {"md5": "947bf1e0e4a55f1bbf6ccfbbf93fa5f5", "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"}], "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-07-30 15:28:41.605466 2024-07-30 15:28:41.605474 7addea0d-d56d-4103-83dc-99407e099a89 {"md5": "dcb834265088647daf01c2b84421f29a", "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"}], "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-07-30 15:28:41.679692 2024-07-30 15:28:41.6797 22960e6f-f60e-4f6b-be42-8689ac1e6433 {"md5": "8a6f6cb25d094c8b818e05897c3bc93c", "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"}], "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-07-30 15:28:41.758965 2024-07-30 15:28:41.758973 67edab8b-72b8-449c-bd38-cf6080e645aa {"md5": "c5a388e1b6e5adbc32061ff4b00791f8", "pid": "041766040", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bildanalyse"}], "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-07-30 15:28:41.832511 2024-07-30 15:28:41.832519 f869c028-acb1-4c3f-acef-208f762e8403 {"md5": "27f721f41afb2b316b37bb91f959023b", "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"}], "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-07-30 15:28:41.907649 2024-07-30 15:28:41.907658 7cdcc953-28f4-4b7e-929e-35c8d2cff7a8 {"md5": "4ae1627dd999077e632dd16d2d0bbae5", "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"}], "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-07-30 15:28:41.981846 2024-07-30 15:28:41.981855 83e6425f-3c72-4c5c-b385-ef4ef25e7cf6 {"md5": "7f61137425bc8bc99b4e2536cb68348a", "pid": "041748379", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Plasmaphysik"}], "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-07-30 15:28:42.058804 2024-07-30 15:28:42.058813 8c9bbd3d-f070-4437-ade1-448c0a2cc13c {"md5": "6a8f5c68db5df7bd5b0e611f34424b3c", "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"}], "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-07-30 15:28:42.145933 2024-07-30 15:28:42.145944 ea9608ce-59fd-4496-89ba-03cf4645c2c4 {"md5": "7fc27f637ae16049adc4f77739ec81cd", "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"}], "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-07-30 15:28:42.214783 2024-07-30 15:28:42.214791 011ebc79-90f0-47fe-b1ab-14ede41bb61d {"md5": "518897d13ae81b5a8a08a46ba7f831ae", "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"}], "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-07-30 15:28:42.282375 2024-07-30 15:28:42.282415 95ebde48-8a53-4791-b1ad-3e8ff0ea4a20 {"md5": "f1613cadcac2c597b3ee9f7e0b972c67", "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)"}], "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-07-30 15:28:42.347951 2024-07-30 15:28:42.347959 7c700144-d13d-4e67-b6bd-d2e98a1e63d1 {"md5": "431ae66289d53adcfd36683c08235077", "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"}], "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-07-30 15:28:42.414198 2024-07-30 15:28:42.414207 204bb5f9-f461-47de-b73d-5fe3e1193c17 {"md5": "32b359d7276ea84d971811e79bd11441", "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"}], "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-07-30 15:28:42.485315 2024-07-30 15:28:42.485325 1a6197d3-784b-4789-986e-e10ad86aa6cd {"md5": "106431918b21530d1f84452b909165fc", "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"}], "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-07-30 15:28:42.536618 2024-07-30 15:28:42.536621 960dce49-fef0-4827-bdc7-d35d4a281499 {"md5": "24936afafc08d21db1145858afcf047f", "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"}], "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-07-30 15:28:42.595728 2024-07-30 15:28:42.595735 b355c71c-5ae5-4cc5-a9d5-84cf89f2a537 {"md5": "54d839843783d00f2cbb40ebb67bc103", "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"}], "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-07-30 15:28:42.662084 2024-07-30 15:28:42.662092 55fa2e30-d6ac-4241-9e30-6e2e4e454744 {"md5": "04caba5849a44ece07b45132b8158e2c", "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"}], "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-07-30 15:28:42.737425 2024-07-30 15:28:42.737433 6e0fdba8-297e-4e91-b25b-1b917ff02dee {"md5": "450d4cac7068a8c4da6d20f9c7582ffc", "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"}], "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-07-30 15:28:42.812297 2024-07-30 15:28:42.812306 6f92a99a-b1b3-4d14-9495-90d5601a79cc {"md5": "126e8c89510e0ecd6b1f0216b89a8165", "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"}], "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-07-30 15:28:45.943684 2024-07-30 15:28:45.943695 7946acf7-1443-4315-ac3b-3cd5be443fdf {"md5": "94573f9b8a768114bbd91e8899534282", "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"}], "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-07-30 15:28:42.958923 2024-07-30 15:28:42.958931 42072555-8e35-47a0-84d1-a909f0922537 {"md5": "e1e4b4be7a336a1d5754a71618fb7beb", "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"}], "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-07-30 15:28:43.032874 2024-07-30 15:28:43.032883 e9248e74-5527-4366-8ee5-8e51b48afa79 {"md5": "e9186b82b4f4499a2c294e4ac71990bf", "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"}], "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-07-30 15:28:43.109001 2024-07-30 15:28:43.109009 e4287e15-8635-4c5b-a998-8178ebf58891 {"md5": "588a953fdd76c0c92fbb58384e37ba07", "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"}], "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-07-30 15:28:43.19942 2024-07-30 15:28:43.199428 fef07643-fd77-4b4c-a2b4-309853489df9 {"md5": "bc02c16febf003006d4af4881e289b3e", "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"}], "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-07-30 15:28:43.293904 2024-07-30 15:28:43.293913 8235ce9d-e2a7-42ed-9611-0269d75a94f3 {"md5": "665bd02e366f365e76eea34029f529e6", "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"}], "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-07-30 15:28:43.375086 2024-07-30 15:28:43.375094 513445b5-0534-44b1-ace1-374ad2dc4188 {"md5": "e44b0e224d4b4a28e9e407552d859c92", "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", "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-07-30 15:28:43.453346 2024-07-30 15:28:43.453355 6c4435e8-99f4-48d0-8f2f-a9cb2b23f420 {"md5": "7ef52627bffdb26377e9aeaae2147950", "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"}], "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-07-30 15:28:43.532036 2024-07-30 15:28:43.532045 fac78d5e-b8c0-4399-a195-74052b0cebd4 {"md5": "085dfcdfd4046c23dd55b4a504f4c4ba", "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"}], "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-07-30 15:28:43.592844 2024-07-30 15:28:43.592853 fc869203-90b5-4df6-9dc5-44252fbc61cf {"md5": "372e985d566e6278c6073463df67c7c7", "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"}], "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-07-30 15:28:43.666709 2024-07-30 15:28:43.666741 b8577a46-f0e9-4d9d-b9e9-55983ba89a73 {"md5": "0881ae8fe51a45a2ea47c783a73f8478", "pid": "041654013", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:43.739127 2024-07-30 15:28:43.739135 15ba1fe9-9a51-4b8e-8518-01706d1eb1b9 {"md5": "e1675a836cc68a15da7ea449265b8066", "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)"}], "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-07-30 15:28:43.813928 2024-07-30 15:28:43.813937 3783d369-38b2-45e6-9f20-d28dd1d886eb {"md5": "de7751a2bb51c2e8c67e53b75b9b22b2", "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)"}], "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-07-30 15:28:44.274306 2024-07-30 15:28:44.274312 2562b2a6-4ab1-4dc0-b349-38ec8b488973 {"md5": "c2e8974a95e5f66a76791fe3715aacff", "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"}], "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-07-30 15:28:43.890039 2024-07-30 15:28:43.890047 8f15db93-b19a-48c9-86f8-b6310d712dcb {"md5": "97f067070ecbb8c562632cc4571711aa", "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"}], "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-07-30 15:28:43.966612 2024-07-30 15:28:43.966645 0ee62191-9172-4d57-80ec-55d6c1c0791d {"md5": "1c8911a52d29869dba022c7ff790ed2a", "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"}], "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-07-30 15:28:44.040838 2024-07-30 15:28:44.040847 609228d5-025c-424e-a7d5-e50942f763ba {"md5": "989750ca88ffcb4b3c7db5135aac2d51", "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"}], "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-07-30 15:28:44.120869 2024-07-30 15:28:44.120877 93ef54bd-4dac-40ae-a83d-869745536cff {"md5": "797760432b52492785c2d3ee29aae2bb", "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"}], "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-07-30 15:28:44.203833 2024-07-30 15:28:44.203842 e35caf92-923c-4e75-aff6-fd59faee3963 {"md5": "051fc6629a67a3a6d48f1baffbbc90a3", "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)"}], "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-07-30 15:28:44.836803 2024-07-30 15:28:44.83681 6667de6f-7231-4e8d-bd5d-31136095565d {"md5": "d9b56152a074ae01035ad8bf99146c8f", "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"}], "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-07-30 15:28:44.349837 2024-07-30 15:28:44.349845 66224003-e177-4e4b-ae56-7a9feeaca65b {"md5": "10a74f82e8fccafaa24cb229f59775ba", "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"}], "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-07-30 15:28:44.431085 2024-07-30 15:28:44.431093 e716717f-2d20-4a08-bbe4-490ee8f4a44b {"md5": "913be6808b7aec10773b306ac3c0e6ac", "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"}], "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-07-30 15:28:44.495895 2024-07-30 15:28:44.495903 752af172-463e-4888-ae1e-011008cfdfb5 {"md5": "b2280e406e961a7e799c398b8d548f6b", "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"}], "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-07-30 15:28:44.559287 2024-07-30 15:28:44.559295 1e1fff52-0761-436b-977b-379fcc74f163 {"md5": "97552f01381dd80804b9249e714cc890", "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"}], "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-07-30 15:28:44.634053 2024-07-30 15:28:44.634062 40a97737-0f94-4e7c-a651-2d56d4ce5dc7 {"md5": "835644ad85f873257f2c76a1af26f09d", "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"}], "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-07-30 15:28:44.698938 2024-07-30 15:28:44.698946 ba31d72f-531e-4e3a-9bdb-2307fce4081c {"md5": "8a66ca641e8156dbdb0dc642070fb244", "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"}], "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-07-30 15:28:44.769927 2024-07-30 15:28:44.769936 8649071f-81b1-40e0-8213-4cd8c9f18a4e {"md5": "60edc23c17a198a4b45d521d16af83ac", "pid": "041591267", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:44.978623 2024-07-30 15:28:44.978632 2f5b70e3-7b9c-4f59-a2c4-2f84d370b77c {"md5": "e16327956c450417c85831fc7f9d22c6", "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"}], "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-07-30 15:28:45.066724 2024-07-30 15:28:45.066735 00a5121f-e2f5-4664-9b33-d764b90e9c9b {"md5": "e6ea1d2af781347887666ec9be2d996a", "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"}], "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-07-30 15:28:45.146103 2024-07-30 15:28:45.146112 26bb43e7-6080-4521-95e6-a0fe7962a1ca {"md5": "ddf7232d0725ba99937c307444971c76", "pid": "041570103", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stereotyp"}], "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-07-30 15:28:45.211482 2024-07-30 15:28:45.211489 0b606e1c-0d32-42ed-ad47-b4d9e44cd37e {"md5": "bd56660775d27b20580d5489e4b0969f", "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"}], "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-07-30 15:28:45.286591 2024-07-30 15:28:45.286601 b7516ae0-d930-426b-af0d-91db37a5f7df {"md5": "78cd14b2778063b973c7b3fd6e8ac911", "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"}], "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-07-30 15:28:45.367057 2024-07-30 15:28:45.367066 49cb332a-0e8d-42ce-8022-2494116bbdef {"md5": "59500827ddd8f1210d7f50ac4d7c5c81", "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"}], "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-07-30 15:28:45.435222 2024-07-30 15:28:45.43523 3aa5f296-d94c-48c1-a525-0aa270726353 {"md5": "a3aebff71c6ebb938f0c80f3e2c9d516", "pid": "041544323", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Handwerk"}], "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-07-30 15:28:45.508114 2024-07-30 15:28:45.508123 36eff4c8-cd0b-42ad-a4a5-dcd500c136ce {"md5": "f038ce30f415c408468b67e1069a9f79", "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"}], "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-07-30 15:28:45.594479 2024-07-30 15:28:45.594487 a207a74a-632e-4ba7-8c71-8cb50ffa7079 {"md5": "641e9903de4914107bffd910f36635d0", "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"}], "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-07-30 15:28:45.653185 2024-07-30 15:28:45.653194 00dd23cf-a781-411f-af11-33cf488442d5 {"md5": "f9423ae3da5d6df2e161765b73eed7d6", "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"}], "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-07-30 15:28:45.7264 2024-07-30 15:28:45.726408 ce6ede16-8782-4e8f-b59d-b23e02b95f5d {"md5": "6d12394c44f7b00a18e141fd02ea1c32", "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"}, {"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"}], "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-07-30 15:28:45.80498 2024-07-30 15:28:45.804989 9af3c5c8-687b-409a-a38f-3d4f8e1f5526 {"md5": "79b1f109e301f9035b3421035a02ecf9", "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"}], "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-07-30 15:28:45.872898 2024-07-30 15:28:45.872906 6182645c-be60-424e-9b32-0b924eca6f9f {"md5": "a5aa1879cbb83035e8a163ff31a6f8b9", "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"}], "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-07-30 15:28:46.034806 2024-07-30 15:28:46.034815 9fbb474b-5874-4921-9089-b19301f77298 {"md5": "a8de6cd42799d8bbe49f5b5ebcea024d", "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"}], "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-07-30 15:28:46.130051 2024-07-30 15:28:46.130061 e79358bf-6e75-44b3-aa57-721e658f2f11 {"md5": "a3c6e24c4705ef9596f0b84d9d824b9e", "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"}], "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-07-30 15:28:46.220631 2024-07-30 15:28:46.220644 774d6023-92a0-44c8-b84e-fa1d076a8d83 {"md5": "e4506c1b5765cbb28303f7ffd3be2164", "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"}], "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-07-30 15:28:46.316388 2024-07-30 15:28:46.316399 0149a34c-1b34-40fc-9c41-045832a4f694 {"md5": "0ec20764eee05410d65ab1b5988a8502", "pid": "041512820", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Umsatzsteuer"}], "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-07-30 15:28:46.401743 2024-07-30 15:28:46.401752 f3c3ae9a-d0fd-4635-b489-d45b3237364a {"md5": "7354ab30ddb7339afd83db94d29a65dd", "pid": "041509412", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gebissanomalie"}], "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-07-30 15:28:46.490811 2024-07-30 15:28:46.490818 ced77c22-1270-4e5b-9015-1b4dbb7e5cdf {"md5": "81d8cb7637e709932031200e852f72c1", "pid": "041505336", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:46.558194 2024-07-30 15:28:46.558201 c0aec86f-cf95-47f6-bbcd-bbf371df886a {"md5": "fc8c497994c2e83176c530df7451180d", "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"}], "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-07-30 15:28:46.62837 2024-07-30 15:28:46.628374 b343960b-44a7-4e7d-94bc-adbaf0c00ee1 {"md5": "9aa8c9e4a677991de9febce3aec82345", "pid": "04150335X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:46.682826 2024-07-30 15:28:46.682852 5c34bf4d-8e68-4cf0-8aa6-79d67a706844 {"md5": "03f143bf68cd8c52f238718dd0772578", "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"}], "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-07-30 15:28:46.763523 2024-07-30 15:28:46.763531 3d6fbdb3-65d3-45db-9792-39e2d1f9c6f8 {"md5": "efc2ae64d45074fbe6fe91b22e389f61", "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"}], "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-07-30 15:28:46.835137 2024-07-30 15:28:46.835146 deeaea04-9326-41e7-b69b-474a10e2cc9e {"md5": "2d4b5c3a2d1e8c7cac24c1ec7a601a6c", "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"}], "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-07-30 15:28:46.910585 2024-07-30 15:28:46.910592 40f8267f-b8ac-4a11-af12-fa32a18b51b5 {"md5": "12c4b8cc06a7dc33c16b512c21607fe0", "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"}], "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-07-30 15:28:46.989959 2024-07-30 15:28:46.989968 f4cdad6c-cece-412e-8c7f-d5c89e04a1f3 {"md5": "f001c6e8d2693eddbbf1768616e152f4", "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"}], "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-07-30 15:28:47.067943 2024-07-30 15:28:47.067951 c955a9a0-76d3-480f-8265-d9b9f7009edb {"md5": "6d244747af97edfcb613907d8310d618", "pid": "04146768X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Mamma"}], "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-07-30 15:28:47.146807 2024-07-30 15:28:47.146818 f663b972-0f05-4dfa-9737-f0afc33e4918 {"md5": "1e6c180443a55fd945e39cce1d1b0d80", "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"}], "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-07-30 15:28:48.053585 2024-07-30 15:28:48.053594 4bf0a6ad-788f-4a8e-add1-f17a2c69166c {"md5": "957451aa1e49384d0dd8be0bd5ca012d", "pid": "04143028X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "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-07-30 15:28:47.223623 2024-07-30 15:28:47.22363 356c3bb4-c069-4a2e-9148-7b6d394dbe0f {"md5": "b6d62e9a2a1d2ae92975ffff02a62795", "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"}, {"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"}], "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"}], "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-07-30 15:28:47.299194 2024-07-30 15:28:47.299202 a05f1381-e3e1-4641-813c-b6334732a7e3 {"md5": "4223734c1bb37fd630d54df46aabaad3", "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"}], "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-07-30 15:28:47.371256 2024-07-30 15:28:47.371264 fc2eb743-c0ff-463e-ae1b-dc4a70be31d6 {"md5": "1c5216afb44143ea3c1145f0043522d1", "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"}], "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-07-30 15:28:47.452592 2024-07-30 15:28:47.452616 44dca1ad-2c65-4cf2-9dfc-b79f2bc8b1b3 {"md5": "0b59368107626373db7c8472ab43dc7a", "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"}], "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-07-30 15:28:47.535083 2024-07-30 15:28:47.535092 3405b823-bc33-4c68-93cf-bbc6401a54e5 {"md5": "c19799e7d1475739bdcc37bdbce5aaa3", "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"}], "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-07-30 15:28:47.639912 2024-07-30 15:28:47.63992 5d82cc95-33a8-4c20-9101-536231676490 {"md5": "f859d952dac6801f097e70f35a070fe0", "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", "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-07-30 15:28:47.695069 2024-07-30 15:28:47.695071 f93ed3f6-b92e-4d6a-bce9-b76beaaf5040 {"md5": "8d96baa97f2428701b1c7009bb79fbed", "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"}], "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-07-30 15:28:47.763863 2024-07-30 15:28:47.763872 d4170af8-ca0f-4f80-9491-b0f0aa96a6cf {"md5": "57e665f44d3254ab1c914aaeb8800a3e", "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", "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-07-30 15:28:47.837323 2024-07-30 15:28:47.837331 ca60b6bf-1139-41db-ac0b-d0611f180b30 {"md5": "8b7411548ff0f61b0c30d67016d2b969", "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"}], "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-07-30 15:28:47.908238 2024-07-30 15:28:47.908246 a78efdc9-3e77-4ebe-866e-fcbef83b1836 {"md5": "829b6cc1c0ab5c8489b02bcc99c980e7", "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"}], "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-07-30 15:28:47.976982 2024-07-30 15:28:47.976991 c8381002-f504-43ea-9b62-1d31978250d0 {"md5": "ecd8a039a72ad34decb47a1574ee5d7f", "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"}, {"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"}], "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-07-30 15:28:48.131066 2024-07-30 15:28:48.131334 3d6e130f-e10a-44b0-8fa7-f7532cce87f4 {"md5": "16ef00a46b3d94cc811ef01d1e8990f2", "pid": "04142641X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Anthracenone"}], "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-07-30 15:28:48.219659 2024-07-30 15:28:48.219671 18c6b105-5e48-4f1e-a84f-8f4894b9aa3d {"md5": "2241cbead61ef02660603d73dd3c7b23", "pid": "04142574X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Plagioklas"}], "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-07-30 15:28:48.312271 2024-07-30 15:28:48.312284 1e38bd50-9a79-4c4f-a337-3ce9eb5b49c6 {"md5": "4b066d09be11ccd41e42cae5704bcbae", "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)"}], "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-07-30 15:28:48.407889 2024-07-30 15:28:48.407897 e210ed5b-e8e5-4ec9-878c-4ef481cebd31 {"md5": "7dee49491a9e8d28ab830d597ce0da56", "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"}], "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-07-30 15:28:48.480881 2024-07-30 15:28:48.480889 e2ed7df6-da54-46c9-9778-9d2e3ff00a80 {"md5": "b68347d9ef402b66afd98ca1d3dd478b", "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"}, {"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"}], "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-07-30 15:28:48.546843 2024-07-30 15:28:48.546873 50c48aab-6a6d-4925-91dd-41bb99cd78c4 {"md5": "0546782f0101dcf34e2a0b782231e149", "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"}], "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-07-30 15:28:48.620121 2024-07-30 15:28:48.620129 dee77cb8-50c3-4e1b-af18-7324919f6029 {"md5": "d60064c65fe08b9b651fc9648d0f8a65", "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"}], "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-07-30 15:28:48.68613 2024-07-30 15:28:48.686135 4710914a-c3ee-4d0a-9250-07f09544bc99 {"md5": "df8c0a6b54f068ff890d362b5db5eee1", "pid": "041411137", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feuchtigkeit"}], "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-07-30 15:28:48.752384 2024-07-30 15:28:48.75239 93c50731-ef7e-434b-b472-2be1f3623307 {"md5": "9d000102b9cd0048a9217583b720918d", "pid": "041409965", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:48.823185 2024-07-30 15:28:48.823194 bbd4b7ba-e9c1-42ee-9ec8-b5b532f05732 {"md5": "a0c36f6a8cd099f964221a953e7aa5b8", "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", "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-07-30 15:28:48.895937 2024-07-30 15:28:48.895945 ab7d0ed2-d6ba-4800-8aac-2e61451d17df {"md5": "b64b36bb4fbeb292c083c5662e94b640", "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"}], "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-07-30 15:28:48.964149 2024-07-30 15:28:48.964157 7efa10d9-e311-4198-94ad-4075e32ace2c {"md5": "e29257f99731ea3cd9d5898e120fa96c", "pid": "041388984", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:49.030085 2024-07-30 15:28:49.030093 888181d2-20f7-4b13-8830-4290480d2cf7 {"md5": "8f2ef7efbd55e81cd8bfd2e0c6ae98f6", "pid": "041378407", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bauernhof"}], "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-07-30 15:28:49.099579 2024-07-30 15:28:49.099587 7b5e50e1-bf82-4cc1-9d63-0951f846d030 {"md5": "3ea9decb2b7841a1dd78e44ee6ac7449", "pid": "041374444", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:49.174239 2024-07-30 15:28:49.174246 3c4b42d3-9b35-4792-b6a1-a03897d22f5b {"md5": "a7af7468f0c8bef119784686c8fb6522", "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"}], "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-07-30 15:28:49.256996 2024-07-30 15:28:49.257008 0f884434-5492-4d94-a7d3-05116676f0b5 {"md5": "5c4e9721e008b9954df2411c1cf7711a", "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"}], "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-07-30 15:28:49.338825 2024-07-30 15:28:49.338835 bc8938e6-3e01-4abc-88d3-26f08eefd450 {"md5": "c64acf095edc59fc90485a5284cc8dfb", "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"}], "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-07-30 15:28:49.446572 2024-07-30 15:28:49.446583 99d0aa07-c09e-4fa2-92d6-70a80d3ed3ac {"md5": "f8b8091cfa2d097ce9eb25cd6d77ea33", "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"}], "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-07-30 15:28:49.536305 2024-07-30 15:28:49.536317 ea604753-f321-4b55-bb75-0afdf2862adf {"md5": "181e764ab59af72e2cf9b4062e5622d8", "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"}], "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-07-30 15:28:49.624854 2024-07-30 15:28:49.624866 fb53af07-35c9-4120-b78f-af3608da806d {"md5": "63334d969db525e01f9bc3a7f3d0ddc3", "pid": "041345835", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ladungssicherung"}], "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-07-30 15:28:49.708951 2024-07-30 15:28:49.708954 ef566f44-593e-444e-a12e-619a0c7b22ce {"md5": "8b86e6d7730b32e3572f6a969cc1930f", "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", "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-07-30 15:28:49.758559 2024-07-30 15:28:49.758567 0288c11e-f73a-4161-b569-01863dcf3aed {"md5": "bbac97812ab15f707e32546c04e79a2b", "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"}], "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-07-30 15:28:49.825025 2024-07-30 15:28:49.825032 ea074149-2d49-49ed-9511-997ef6d3cb52 {"md5": "b07ac797b63117cfb3d1ac616e92aa21", "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"}], "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-07-30 15:28:49.887273 2024-07-30 15:28:49.88728 e3fab1f4-98b3-4aad-8f48-16e42a0d092a {"md5": "abc73512dee4671826f04b7f275d7993", "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"}], "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-07-30 15:28:49.951526 2024-07-30 15:28:49.951537 bb6a0575-fe4c-4e0e-8499-991b340df2fe {"md5": "c6750e5fdd88e5d5935ca511cffb0321", "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"}], "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-07-30 15:28:50.029054 2024-07-30 15:28:50.029061 f38ed596-c010-435c-ad08-c93634ef4f98 {"md5": "1fdf6c24a5ff4e1a0480f00db44e54d4", "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"}], "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-07-30 15:28:50.093436 2024-07-30 15:28:50.093456 5b9c2e1f-14cc-4337-94d5-49701d6b0cbb {"md5": "989e47b1970eea7977622d474e27e319", "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"}], "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-07-30 15:28:50.163212 2024-07-30 15:28:50.163219 cfbe21f5-459c-42d0-b1f5-b55dbaa94fca {"md5": "4bc778c9b61daf625742494af9057832", "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"}], "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-07-30 15:28:50.229759 2024-07-30 15:28:50.229766 94d5f9bc-2a55-41c8-b2c6-610ea1b848d7 {"md5": "b1c9dd64caa7fbab9bb9f5c561f45ff6", "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)"}, {"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)"}], "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-07-30 15:28:50.307823 2024-07-30 15:28:50.30783 eed91305-1076-45b6-907d-ec047c34ef42 {"md5": "1103a2308ed14155012a7469f657d909", "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"}], "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-07-30 15:28:50.378638 2024-07-30 15:28:50.378646 13a2a4f1-2360-4c00-922c-1ff0e2b69a08 {"md5": "06349153d7344d3dd5695b4e7f93ef15", "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"}], "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-07-30 15:28:50.455621 2024-07-30 15:28:50.455629 06dba3b7-254c-4c15-a659-a6ae9b79540f {"md5": "edc059a66c715807cda14ef5139d2710", "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"}], "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-07-30 15:28:50.538237 2024-07-30 15:28:50.538244 b85fafdf-1669-4d95-a188-b21640fbc8ca {"md5": "20f92e09723a4130f61ac1d35c4b331b", "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"}], "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-07-30 15:28:50.609291 2024-07-30 15:28:50.609299 449ddda8-cb74-4af5-997d-bce9b9cf6ae2 {"md5": "46c1a89d16adf76b7deecb6711b050b6", "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"}], "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-07-30 15:28:50.678785 2024-07-30 15:28:50.678792 3f47ea74-ef2f-4aaa-8774-3be23558b05a {"md5": "5360f8e4198808d6699abab1c3f4046a", "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"}], "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-07-30 15:28:50.745542 2024-07-30 15:28:50.745544 c4e9ff62-f7e7-4551-87ac-dc8b6e687a23 {"md5": "2c19c88cc8bbc78d492d3bd7eb759315", "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"}], "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-07-30 15:28:50.810444 2024-07-30 15:28:50.810452 e6e980ec-6703-4921-acc2-a050b882f109 {"md5": "e5d07e181f4287c60093d9ff970a5e92", "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"}], "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-07-30 15:28:50.887612 2024-07-30 15:28:50.887621 0c8db0d4-124d-4de8-be9d-0ef0ed322b50 {"md5": "445d0df391db108ef7e62ed1941e4eaa", "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"}], "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-07-30 15:28:50.960373 2024-07-30 15:28:50.960382 a3cd4045-6817-44df-9421-9d397f88d4c8 {"md5": "c9a2ef91cf1f27b3fcdfee9e39213b70", "pid": "041281632", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prognose"}], "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-07-30 15:28:51.030696 2024-07-30 15:28:51.030706 08af1fdf-7412-4321-a4bd-1465321a0dcb {"md5": "f5a380dd3c9ff2bd459432c239cafbaa", "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"}], "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-07-30 15:28:51.114784 2024-07-30 15:28:51.114795 f807f3ad-89b4-4dd5-9457-7e0f9870a5fb {"md5": "119025a0fb0ceed7fc15946ed453acbf", "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ō"}], "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-07-30 15:28:51.187021 2024-07-30 15:28:51.187029 04f81f99-928d-4cbf-b738-efb64566f8b3 {"md5": "0099ee4849c434ecbc99cfb6ccf479c3", "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"}], "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-07-30 15:28:52.07 2024-07-30 15:28:52.07001 c3a76516-5e8b-4e3a-b165-3275b4da8149 {"md5": "2e5563cede1438d723e1a8b496e57b28", "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"}, {"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"}], "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"}], "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-07-30 15:28:51.271064 2024-07-30 15:28:51.271072 69fd7ed4-b514-42eb-a721-f89ea60bd2e6 {"md5": "4fbebfff1da9511bd56a2334e76838a1", "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"}], "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-07-30 15:28:51.346579 2024-07-30 15:28:51.346588 a7a8eaae-4bb8-486e-8373-79cf5bbaf266 {"md5": "224ca96ee8b730c001cdd28da7bf0437", "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"}, {"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"}], "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-07-30 15:28:51.422173 2024-07-30 15:28:51.422181 4b815cc6-b303-419b-b95f-cb8fbba2cbef {"md5": "a63e44d7e01a22f53b704d98a8525e63", "pid": "041245296", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "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-07-30 15:28:51.496973 2024-07-30 15:28:51.496981 e6edf0df-8025-489e-978d-de77a1155a7e {"md5": "f41db8a13d2b225d7630d962396f1619", "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"}], "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-07-30 15:28:51.568216 2024-07-30 15:28:51.568226 71c35430-b75d-40a3-a475-767b898aeecd {"md5": "597832018a786ba5ca8e1492ef1679c8", "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"}], "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-07-30 15:28:51.658742 2024-07-30 15:28:51.658754 49bb5ca1-7572-44f4-beec-0513b76c3880 {"md5": "3195176767afd8ff50ee056060e3ec93", "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"}], "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-07-30 15:28:51.737971 2024-07-30 15:28:51.73798 089b7892-4560-485b-84d0-bf8c8d006540 {"md5": "7f8af601a82d1565383d06452899eee8", "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"}], "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-07-30 15:28:51.786061 2024-07-30 15:28:51.786063 7e42eaeb-86a8-444f-bc4e-1b5d69e82bd8 {"md5": "7278f9c7f1067e70c75a03a92af42247", "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"}], "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-07-30 15:28:51.849004 2024-07-30 15:28:51.849014 58c86386-8996-445e-a4e7-5b0669528f30 {"md5": "03e80aaca77d10ed56fcfbdac955f969", "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"}], "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-07-30 15:28:51.923278 2024-07-30 15:28:51.923287 73cd2395-06b5-43de-8b4e-7cfab22e008d {"md5": "4297b2ccba36f523fd15d1b0628d54d0", "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"}], "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-07-30 15:28:51.99548 2024-07-30 15:28:51.995489 cbf7f00d-a4e4-4bfc-a3f9-14f8d2712cb5 {"md5": "a19476fcd24a7ae4649ce7636a89f4c1", "pid": "04121952X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verpackungspfand"}], "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-07-30 15:28:52.150082 2024-07-30 15:28:52.150091 48581f24-e1fb-49c2-b945-b98bc7e4de81 {"md5": "9aa847acdbda739433f5c61341299cba", "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"}], "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-07-30 15:28:52.247972 2024-07-30 15:28:52.247984 99be4d25-a02f-425f-97c7-50904a678f32 {"md5": "149ea5e3a3fc75ee98b34672a977e720", "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"}], "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-07-30 15:28:52.339072 2024-07-30 15:28:52.339084 8bff3605-ea80-4fa3-884a-a2e34a7bee71 {"md5": "26b9c33aead686cdff46e8f8b025ff77", "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)"}], "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-07-30 15:28:52.431658 2024-07-30 15:28:52.43174 397bf833-86f9-4259-8b02-f9b0df072333 {"md5": "0baa8c333dd12a8972174ecd3b9efea5", "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"}], "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-07-30 15:28:52.519334 2024-07-30 15:28:52.519345 d57e2aba-0eed-443f-a056-89827a7e013e {"md5": "abc83ac9793584326f7d987a9214b7cb", "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"}], "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-07-30 15:28:52.595882 2024-07-30 15:28:52.595887 01849ea5-02a7-41e7-adf0-8ebbeb1908da {"md5": "85f52224c4d8f74ac33a81e734c056ef", "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"}], "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-07-30 15:28:52.663419 2024-07-30 15:28:52.663427 5d8e800e-b62a-44b0-986a-8e2ead410970 {"md5": "c180aa6e9b3b827482932907a01067d8", "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"}], "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-07-30 15:28:52.745961 2024-07-30 15:28:52.74597 944037ea-ff9a-4f29-9c00-1e748768d708 {"md5": "7cbafeb4ced4689afb3495a725651f1d", "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"}], "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-07-30 15:28:52.816834 2024-07-30 15:28:52.816843 bd02495e-a901-41cf-9ee3-e6bb668a8c66 {"md5": "e424ecb18af764e1e8784acc1c1811a7", "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"}], "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-07-30 15:28:52.883424 2024-07-30 15:28:52.883434 68a2796a-b0a8-4c14-9ea6-a8d49c826b2b {"md5": "71f626be586118114ba34bc84531e6c8", "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"}], "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-07-30 15:28:52.95779 2024-07-30 15:28:52.957799 e171af23-85b4-46be-a013-3f637d97a0a8 {"md5": "81e78b37c01a20ad4563eee529779096", "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"}], "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-07-30 15:28:53.033793 2024-07-30 15:28:53.033802 9c1ae8e2-971b-48d9-9372-a0fc6723d2da {"md5": "63dbfda3c32786bae5f7035e417330d9", "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)"}], "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-07-30 15:28:53.109505 2024-07-30 15:28:53.109514 5508656a-7485-4949-af81-f182e7ee4906 {"md5": "48c1ed1933099e3ff9cd43bd6b3e78a4", "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)"}], "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-07-30 15:28:53.182643 2024-07-30 15:28:53.182651 47eb5ef0-dbe8-41c3-bce4-8ba8d012c469 {"md5": "151096832413ed4d17322387e2ca3f46", "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"}], "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-07-30 15:28:53.25725 2024-07-30 15:28:53.257258 4f3efe92-515d-4c18-85cc-acc4a8318687 {"md5": "5fc1152e05e5f84d1aa811882e0eeb42", "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"}], "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-07-30 15:28:53.336915 2024-07-30 15:28:53.336924 8a2cd27a-b1a8-4b0a-a9ef-618774113d44 {"md5": "e835e45fc082f9afd1aa54833805ad2d", "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)"}], "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-07-30 15:28:53.410069 2024-07-30 15:28:53.410078 e28c68db-6930-408c-8bd0-00d27286749a {"md5": "635cdf6e0459daa42e19f017ba7959fe", "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"}], "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-07-30 15:28:53.845428 2024-07-30 15:28:53.845432 d115d692-b61b-440a-8405-630c93cee497 {"md5": "c92d43167aa0e6193a351bf4b3d7e1bb", "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"}], "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-07-30 15:28:53.489751 2024-07-30 15:28:53.48976 d457a3bd-d658-4ece-a4c1-e977ccad6cb6 {"md5": "9a0986fd79655dcdb9212e8ecc3b62c2", "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"}], "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-07-30 15:28:53.569692 2024-07-30 15:28:53.569702 0de6548f-c900-49c7-92f0-305d71824b3a {"md5": "9437e203dcd08b4c77e4f0e8ecabd840", "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"}], "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-07-30 15:28:53.641358 2024-07-30 15:28:53.641369 aff8e500-ca97-4ea8-b34e-1f4b2d419f40 {"md5": "9f4e465409a28517ec5de4a7564d29fc", "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", "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-07-30 15:28:53.719384 2024-07-30 15:28:53.719394 954c882a-1a4e-461a-ac31-625f532ff03c {"md5": "7305c62eacaaacb7d99ab8b953ef2844", "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"}], "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-07-30 15:28:53.797622 2024-07-30 15:28:53.797631 fe369158-0e25-438c-957b-cd2674aca452 {"md5": "44a545f8605af913621c692d5ab7fd8d", "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"}], "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-07-30 15:28:53.909006 2024-07-30 15:28:53.909015 0f10950f-10d8-4f3b-aeb3-ffd7e3fa72c9 {"md5": "8cd7a80b0960fbf819029264fe6f6715", "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"}], "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-07-30 15:28:53.980998 2024-07-30 15:28:53.981006 e91f799d-d324-45c2-afd3-019a08bea508 {"md5": "9997dde9c023220f45bb448acdd5d8e4", "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"}], "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-07-30 15:28:54.056325 2024-07-30 15:28:54.056333 d58ce350-f63b-44d0-a285-e5a2f1b4b3c0 {"md5": "caa2426e20ea04c5f182d87b672143ab", "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"}], "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-07-30 15:28:54.146143 2024-07-30 15:28:54.146154 6b9e171e-f0d7-4e8d-9515-2c93e136bcdd {"md5": "db4ce210649df8d78688b8df9a43d140", "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"}], "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-07-30 15:28:54.219711 2024-07-30 15:28:54.219719 10b8b7d0-07d7-4f39-a379-5775caab847b {"md5": "0e997780907b19bb68cfd9de225afd24", "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"}], "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-07-30 15:28:55.686865 2024-07-30 15:28:55.686874 b4b5edbe-50fa-4f72-bed4-d9324c53b7b5 {"md5": "4c884a8d42ffae6fb3071b33803c6187", "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"}, {"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"}, {"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"}], "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"}], "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-07-30 15:28:54.306854 2024-07-30 15:28:54.306865 9b7e6e61-6d76-4be1-a501-918d5b46fdb7 {"md5": "51c82eeabd454f60852bf808dd20f224", "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"}], "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-07-30 15:28:54.392705 2024-07-30 15:28:54.392713 95f57507-a979-44cc-9046-629b881af0ee {"md5": "a2b0a881f6d51ef14632ed8d1f2cf851", "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"}], "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-07-30 15:28:54.466647 2024-07-30 15:28:54.466655 a78ba596-b829-4ab6-a56f-a24a2042bcbc {"md5": "19bb4bd577ab800fd7380eb5a2aa7fc5", "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"}], "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-07-30 15:28:54.539484 2024-07-30 15:28:54.539492 64430bdf-55c4-475b-801c-fcb82f1a61a3 {"md5": "5e143f44d4e6a2eb14d3696f7f8f28ed", "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"}, {"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"}], "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-07-30 15:28:54.609178 2024-07-30 15:28:54.609185 bde33667-5264-4087-8c34-205c02029239 {"md5": "4d0a239ad009706000fcbb366382bd0b", "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"}], "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-07-30 15:28:54.691054 2024-07-30 15:28:54.691061 5ca88b9b-ad21-4ce5-a9ab-94498fc19f0b {"md5": "004ed7911e764b5e09dc2b038e5177eb", "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"}], "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-07-30 15:28:54.762105 2024-07-30 15:28:54.762114 7134338e-9952-488d-a682-bac899b325c7 {"md5": "a3d5f899639aac45dabf86acb450bae8", "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"}], "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-07-30 15:28:54.834887 2024-07-30 15:28:54.834891 d98d78e6-f32b-45a0-9890-691ddd19ed7e {"md5": "944bd42e917db661a551ec055b2b8522", "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"}], "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-07-30 15:28:54.891017 2024-07-30 15:28:54.891021 19609b78-8ad2-48f8-b0a2-aefef4310183 {"md5": "c9cc25243ac8f9be161b80f2448c7ae5", "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"}], "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-07-30 15:28:54.971979 2024-07-30 15:28:54.971987 3b513a5a-137e-4592-be00-286bbd036904 {"md5": "44cc37ab34d08f99e001ef0161e143bd", "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"}], "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-07-30 15:28:55.067699 2024-07-30 15:28:55.067707 6323915e-0262-4bdc-83f5-3bb7256eb425 {"md5": "1a3bb16fcb1a987f4004bdd37c18308d", "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"}], "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-07-30 15:28:55.153853 2024-07-30 15:28:55.153861 107afdf2-9b01-45e9-8b60-447b03a0ac6b {"md5": "d1ca36de8bd4383fa0d759e732464438", "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"}], "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-07-30 15:28:55.240198 2024-07-30 15:28:55.240207 75eb7717-7524-4de8-b187-5277d5403f23 {"md5": "d6a385a337f1642de85cc82261940fb0", "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"}], "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-07-30 15:28:55.32094 2024-07-30 15:28:55.320948 59036929-be3e-49e7-b665-91fef4607867 {"md5": "4f2fa8fecca06a134a903aa44701e11a", "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"}], "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-07-30 15:28:55.393726 2024-07-30 15:28:55.393734 df73b6a8-e195-4f3e-b180-8b2eabac64df {"md5": "19b58b780269fab78b0a5042f272494c", "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"}], "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-07-30 15:28:55.464345 2024-07-30 15:28:55.464353 a39cfd6a-e769-4c2b-812f-997d7b444616 {"md5": "e5c3f6c59462ae08b492f314d8d3efc2", "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"}], "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-07-30 15:28:55.544073 2024-07-30 15:28:55.544081 70a09161-f0ac-4aa0-b364-ae09d896f6aa {"md5": "547677721cacb60dcaacaa515e9975ac", "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"}], "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-07-30 15:28:55.610164 2024-07-30 15:28:55.610171 29e98eba-4c64-4734-adb3-259689e783f0 {"md5": "65569ab96449f6e76c5cae58fac79a7c", "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"}], "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-07-30 15:28:55.76896 2024-07-30 15:28:55.76897 4eedf27a-7157-411d-8e59-68fd1dca2af7 {"md5": "3d5056a7ca092928d58cc76d166764e7", "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"}], "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-07-30 15:28:55.859427 2024-07-30 15:28:55.859436 4ebcef65-d6cf-4fbb-b5d1-6758876b58c7 {"md5": "ba1beca5055ae3096c132481fc7b27a4", "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"}], "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"}], "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-07-30 15:28:55.918149 2024-07-30 15:28:55.918153 6036d47d-1c67-4e3c-b57f-1c62f3198d62 {"md5": "6e5cf1062da15f816ca03652255055bb", "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"}], "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-07-30 15:28:56.001029 2024-07-30 15:28:56.001038 f1336772-8f37-4643-b949-e02ac5037c76 {"md5": "65f069e637c07b2e5758cc20e2e18b29", "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"}], "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"}], "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-07-30 15:28:56.080957 2024-07-30 15:28:56.080966 44237036-47f2-45d7-9e42-e11f5d6b2ddb {"md5": "a33d77f907bd71b0e8dc92cb955072d1", "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"}], "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-07-30 15:28:56.169234 2024-07-30 15:28:56.169243 b84e797b-35f4-46df-b360-b197f1808a52 {"md5": "d48ff120a152fb5e27acb6c8f2c886d8", "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"}], "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-07-30 15:28:56.256128 2024-07-30 15:28:56.256136 8d59007a-84b2-4273-9217-79f589d7f6b0 {"md5": "bce302e17b5666c08872764dd430c275", "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"}], "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-07-30 15:28:56.341861 2024-07-30 15:28:56.341869 ba595662-43b6-4e22-a0a0-972f95fceb6e {"md5": "7ff23ac20da6465952f2ed950404fa4c", "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"}], "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..867eb170 --- /dev/null +++ b/data/cognd_pidstore.csv @@ -0,0 +1,2124 @@ +2024-07-30 15:26:13.423299 2024-07-30 15:26:13.423304 cognd 1334542139 R rec 1a33feaa-4da3-43da-8fe3-4044100c9cf2 +2024-07-30 15:26:13.510485 2024-07-30 15:26:13.510491 cognd 1334538549 R rec 55bcc1a9-89c5-4410-96c2-cd975860f5d9 +2024-07-30 15:26:13.561855 2024-07-30 15:26:13.561861 cognd 1334484775 R rec ebfa58cd-3bb2-4978-bfcc-9842a3aca173 +2024-07-30 15:26:13.603026 2024-07-30 15:26:13.603032 cognd 1334336342 R rec 3d03a871-b95e-4f28-b87f-e6efa26a7435 +2024-07-30 15:26:13.647221 2024-07-30 15:26:13.647227 cognd 1334320462 R rec d1391432-2dda-4269-9aca-8f42efd39092 +2024-07-30 15:26:13.691343 2024-07-30 15:26:13.691348 cognd 1334314950 R rec b65007a6-b1fe-49f0-8f4e-a878e08a488c +2024-07-30 15:26:13.737169 2024-07-30 15:26:13.737175 cognd 1334231826 R rec 1d97b4be-de60-4bbc-9a09-71b0f441b309 +2024-07-30 15:26:13.790557 2024-07-30 15:26:13.790562 cognd 1334230463 R rec c4d3e8f3-7080-4223-84b5-47d9045a817d +2024-07-30 15:26:13.854745 2024-07-30 15:26:13.854756 cognd 1334227209 R rec 9e8bf773-451f-47c9-b413-3c2cc433e9e7 +2024-07-30 15:26:13.919887 2024-07-30 15:26:13.919899 cognd 1334225907 R rec 8e54ead1-8ec4-45f6-932c-a5aa3efc4d0f +2024-07-30 15:26:13.998225 2024-07-30 15:26:13.998236 cognd 1334131074 R rec 0e33bbc7-bdfd-441b-8788-6398e2e01b06 +2024-07-30 15:26:14.073768 2024-07-30 15:26:14.07378 cognd 1334127158 R rec 4444c930-978e-47b5-aee5-751cca175350 +2024-07-30 15:26:14.169375 2024-07-30 15:26:14.169386 cognd 1334091412 R rec b36a592e-46df-4d40-9f6f-70e7d28246ea +2024-07-30 15:26:14.249709 2024-07-30 15:26:14.249721 cognd 1334089663 R rec 5b9c377d-98f9-4b91-b371-3fff1f63aaef +2024-07-30 15:26:14.335267 2024-07-30 15:26:14.335272 cognd 1334088837 R rec dd2d659e-b2d7-43b7-a6cb-015983b7c790 +2024-07-30 15:26:14.401625 2024-07-30 15:26:14.401635 cognd 1334088217 R rec 3cac52d2-2f2d-4c08-9937-546077704968 +2024-07-30 15:26:14.466561 2024-07-30 15:26:14.466572 cognd 1334087156 R rec 5978381f-b9b6-4a3b-9dc4-7ab202281c99 +2024-07-30 15:26:14.526452 2024-07-30 15:26:14.526457 cognd 133400076X R rec be08218c-c790-494d-99da-c7aefbe98a4d +2024-07-30 15:26:14.601767 2024-07-30 15:26:14.60178 cognd 1333993331 R rec 818d5bac-2ca8-48c0-8f2c-bf7692f61d1e +2024-07-30 15:26:14.726113 2024-07-30 15:26:14.72613 cognd 1333992548 R rec 1ec9c6f0-fce4-43c8-9264-ea2bee8dadce +2024-07-30 15:26:14.822091 2024-07-30 15:26:14.8221 cognd 1333987366 R rec 54b64757-9e85-4b38-89aa-d1d189d88b32 +2024-07-30 15:26:14.894503 2024-07-30 15:26:14.894514 cognd 133396420X R rec 7d35b28c-988d-440a-9534-41519a9a23c0 +2024-07-30 15:26:15.015961 2024-07-30 15:26:15.015971 cognd 1333876874 R rec 4cf571ad-d716-4403-bb73-073be645c521 +2024-07-30 15:26:15.082616 2024-07-30 15:26:15.082628 cognd 1333855907 R rec cd1af1b2-588a-4fcf-b044-753862630112 +2024-07-30 15:26:15.168987 2024-07-30 15:26:15.168998 cognd 133385501X R rec a1f0bfc8-fd51-4889-b242-198c34a9d5d8 +2024-07-30 15:26:15.252377 2024-07-30 15:26:15.252388 cognd 1333853084 R rec 7fd85a05-e960-40ea-81ea-c849f3a91bd4 +2024-07-30 15:26:15.357468 2024-07-30 15:26:15.357479 cognd 1333852673 R rec ae24cb7c-ee66-4867-9403-47db9ee25efe +2024-07-30 15:26:15.424258 2024-07-30 15:26:15.424268 cognd 1333849788 R rec b72f150d-dce7-481d-a5f2-cb13c50bd4e1 +2024-07-30 15:26:15.500935 2024-07-30 15:26:15.500945 cognd 1333849435 R rec 0cf1a171-9c53-4630-b270-77a283fba0f0 +2024-07-30 15:26:15.564444 2024-07-30 15:26:15.564449 cognd 1333729863 R rec 72b8b6aa-d2d0-418a-9b53-0bdcae27dac0 +2024-07-30 15:26:15.622932 2024-07-30 15:26:15.622942 cognd 1333716354 R rec e97e2df7-3c80-45d3-8419-ea510c434bc5 +2024-07-30 15:26:15.702575 2024-07-30 15:26:15.702621 cognd 1333566352 R rec a3a7eac3-8bb7-4747-88b0-9c991b33b25e +2024-07-30 15:26:15.786365 2024-07-30 15:26:15.786377 cognd 1333421427 R rec fac872c6-78a4-45e2-a69b-88534b4c0948 +2024-07-30 15:26:15.873124 2024-07-30 15:26:15.873134 cognd 1333376049 R rec f2fa0cb8-c532-4f4c-a6a5-4f2b08bb7ab5 +2024-07-30 15:26:15.944764 2024-07-30 15:26:15.944775 cognd 133335245X R rec bd2776ac-78d4-4ec2-9e92-f63cfade8fe4 +2024-07-30 15:26:16.053743 2024-07-30 15:26:16.053755 cognd 1333352085 R rec f577c1f1-c9a2-409f-8ae5-b0007781541b +2024-07-30 15:26:16.160826 2024-07-30 15:26:16.160904 cognd 1333331002 R rec 8462cbfa-eec0-4d8f-90bc-4fd26264b40d +2024-07-30 15:26:16.269523 2024-07-30 15:26:16.269535 cognd 1333323778 R rec 29ed97fb-159f-4096-ace8-6028bf745b85 +2024-07-30 15:26:16.37002 2024-07-30 15:26:16.370035 cognd 1333312415 R rec 0985f5a9-b0e8-4d28-bde0-fe53aecf8cc0 +2024-07-30 15:26:16.460754 2024-07-30 15:26:16.460769 cognd 1333312326 R rec e27f0db1-80cf-47f6-a242-1797180fdddd +2024-07-30 15:26:16.553414 2024-07-30 15:26:16.553424 cognd 1333270267 R rec fa62935b-a3cb-4487-867b-f8c83460c75a +2024-07-30 15:26:16.606022 2024-07-30 15:26:16.606032 cognd 133326514X R rec 02a0addc-c99c-40e5-bff1-e3a061066f57 +2024-07-30 15:26:16.674456 2024-07-30 15:26:16.674468 cognd 1333260830 R rec 801f8448-7c9c-4679-b099-b47dbbffce2e +2024-07-30 15:26:16.75523 2024-07-30 15:26:16.755241 cognd 1333256302 R rec 9a6ea5d3-3344-45a8-b605-701a91811d33 +2024-07-30 15:26:16.854217 2024-07-30 15:26:16.85423 cognd 133325590X R rec 31a4ee9d-02f4-4c0a-8d68-96e7104fe4a3 +2024-07-30 15:26:16.935775 2024-07-30 15:26:16.935784 cognd 1333255616 R rec b58b765a-5897-4ea1-95fc-2dcba984744f +2024-07-30 15:26:17.00934 2024-07-30 15:26:17.009355 cognd 1333210043 R rec 94b3bf18-7b5a-4ea5-80dc-a463003ad556 +2024-07-30 15:26:17.098831 2024-07-30 15:26:17.098841 cognd 1333209908 R rec 7d475fbf-fdf3-4c19-b042-c383d6dff322 +2024-07-30 15:26:17.176697 2024-07-30 15:26:17.176708 cognd 1333208901 R rec b51acd06-8276-4833-8d76-d1add4b1f541 +2024-07-30 15:26:17.263479 2024-07-30 15:26:17.263488 cognd 1333141017 R rec 7024b9d4-fdb7-41dd-a3dd-94dff4337460 +2024-07-30 15:26:17.338725 2024-07-30 15:26:17.338736 cognd 1333125127 R rec 1384b0ef-02e6-4ca3-958c-ccc7d2849537 +2024-07-30 15:26:17.425364 2024-07-30 15:26:17.425374 cognd 1333119267 R rec 0c1b638e-3334-4e28-bf0e-3b39349b6f2b +2024-07-30 15:26:17.509369 2024-07-30 15:26:17.50938 cognd 1333118023 R rec a0a8ee1d-7dc0-430c-9766-f47158fb6891 +2024-07-30 15:26:17.586892 2024-07-30 15:26:17.586898 cognd 1333117329 R rec bcaf4139-1957-4747-b186-61db37e094a2 +2024-07-30 15:26:17.645775 2024-07-30 15:26:17.645787 cognd 1333115881 R rec b505d06b-f078-44a3-b802-00c8f02b7865 +2024-07-30 15:26:17.712979 2024-07-30 15:26:17.712991 cognd 1333113749 R rec b998312e-300a-456c-b0ab-e9361e415fd9 +2024-07-30 15:26:17.791661 2024-07-30 15:26:17.791676 cognd 1333065841 R rec 3488449c-0636-40ac-80f3-6d3d10e7cf74 +2024-07-30 15:26:17.882689 2024-07-30 15:26:17.882701 cognd 1333064136 R rec 775d3741-981d-4323-b763-ab3f165883c6 +2024-07-30 15:26:17.964101 2024-07-30 15:26:17.964113 cognd 1333063970 R rec f3f3ff89-505e-4437-a546-ffa20181291b +2024-07-30 15:26:18.05127 2024-07-30 15:26:18.051282 cognd 1333063717 R rec a67ee5a0-ae65-425e-beb7-a8b62ec45026 +2024-07-30 15:26:18.137517 2024-07-30 15:26:18.137527 cognd 133306179X R rec 441e7636-6b2b-4581-ac94-1f49af10e040 +2024-07-30 15:26:18.220694 2024-07-30 15:26:18.220705 cognd 1333037414 R rec 2c60335d-bc5e-48e2-ac2b-8b6f27931d1b +2024-07-30 15:26:18.317255 2024-07-30 15:26:18.317266 cognd 1333027249 R rec 062311d1-736d-4808-b027-9bfa9416185d +2024-07-30 15:26:18.419659 2024-07-30 15:26:18.419669 cognd 1332990258 R rec 04d44075-9092-4a6e-bfca-21508a9bbfb1 +2024-07-30 15:26:18.501561 2024-07-30 15:26:18.501576 cognd 1332899730 R rec 6fec7601-400d-4807-93a8-e22208ccbdfc +2024-07-30 15:26:18.588607 2024-07-30 15:26:18.588617 cognd 1332895018 R rec 521c6f44-dfd6-45b1-94e0-e72d2fb87c6b +2024-07-30 15:26:18.653867 2024-07-30 15:26:18.653877 cognd 1332889549 R rec d8c6d26a-08a6-4a76-950e-37e8fa152c3b +2024-07-30 15:26:18.71547 2024-07-30 15:26:18.715479 cognd 1332775381 R rec 67f2565f-38b4-4eff-bfe4-c98e6808fe74 +2024-07-30 15:26:18.802607 2024-07-30 15:26:18.802617 cognd 1332774113 R rec e5931ef6-9424-4ed5-808a-e62f05d93f07 +2024-07-30 15:26:18.870399 2024-07-30 15:26:18.87041 cognd 133276648X R rec a0b573de-7132-4223-90fc-5d7a0fb8e036 +2024-07-30 15:26:18.944521 2024-07-30 15:26:18.944532 cognd 1332759254 R rec c21e35a9-f926-4138-9a7c-9d636f66778d +2024-07-30 15:26:19.024794 2024-07-30 15:26:19.024806 cognd 1332688047 R rec 35ddc251-6ecb-42d4-863b-290aa12fe55f +2024-07-30 15:26:19.119041 2024-07-30 15:26:19.119053 cognd 1332661297 R rec fe831670-e73b-48cc-8d83-24310d07c937 +2024-07-30 15:26:19.208276 2024-07-30 15:26:19.208288 cognd 1332657273 R rec 4d319866-a844-468e-b068-4a20ac0db36b +2024-07-30 15:26:19.290201 2024-07-30 15:26:19.290211 cognd 1332649688 R rec 89109d26-ced8-49ea-9ef1-e82546143937 +2024-07-30 15:26:19.366701 2024-07-30 15:26:19.366712 cognd 1332459587 R rec aafc8c76-c1ae-46db-8de1-b4305b8d697f +2024-07-30 15:26:19.437784 2024-07-30 15:26:19.437795 cognd 1332430376 R rec 5e79f481-1c5d-49a2-ba83-ae4c74779bac +2024-07-30 15:26:19.505185 2024-07-30 15:26:19.505196 cognd 1332426751 R rec 9986f580-cf49-4e05-b639-1c44a62c4fc0 +2024-07-30 15:26:19.586196 2024-07-30 15:26:19.586207 cognd 1332365841 R rec 2c6f2469-ff1b-4a67-8c84-966b9ff80fdb +2024-07-30 15:26:19.646638 2024-07-30 15:26:19.646644 cognd 1332318142 R rec 96b1c62b-df23-4f3e-bc56-0b55d4fdad22 +2024-07-30 15:26:19.709433 2024-07-30 15:26:19.709445 cognd 1332111971 R rec fda2a43d-3c86-4051-8fb7-8bb038846d1e +2024-07-30 15:26:19.793503 2024-07-30 15:26:19.793513 cognd 1332095119 R rec 5a0579ca-01fb-45a0-a324-c5c18025a7cd +2024-07-30 15:26:19.88703 2024-07-30 15:26:19.887041 cognd 133197612X R rec 58499136-03f3-4a6f-af36-544454209004 +2024-07-30 15:26:19.960518 2024-07-30 15:26:19.960528 cognd 133197593X R rec be269391-1388-49fa-b78f-26e26bc5d242 +2024-07-30 15:26:20.048687 2024-07-30 15:26:20.048699 cognd 1331975794 R rec d4bc8321-478e-453e-9542-7d4b2e21c5cf +2024-07-30 15:26:20.139754 2024-07-30 15:26:20.139765 cognd 1331886929 R rec 40c49f39-c21c-4d63-8694-2a9629c423f1 +2024-07-30 15:26:20.217585 2024-07-30 15:26:20.217595 cognd 1331876540 R rec d78601fc-1faa-4a8c-b010-0bfa5edcba47 +2024-07-30 15:26:20.290933 2024-07-30 15:26:20.290944 cognd 1331840627 R rec b22c5fcb-12ac-4ab5-a3ce-b19a376856ac +2024-07-30 15:26:20.361896 2024-07-30 15:26:20.361907 cognd 1331747716 R rec da9d98eb-bf08-434d-877f-b2ea1ad2bb2e +2024-07-30 15:26:20.4485 2024-07-30 15:26:20.44851 cognd 1331734126 R rec 24346260-adbb-4734-9e42-ccc424fde98a +2024-07-30 15:26:20.520392 2024-07-30 15:26:20.520403 cognd 1331734045 R rec 808efcd1-b7f2-4553-8427-2e9959bc56f7 +2024-07-30 15:26:20.595543 2024-07-30 15:26:20.595554 cognd 1331733316 R rec b41c94d4-5977-485b-87c9-353beffa2ea9 +2024-07-30 15:26:20.684316 2024-07-30 15:26:20.684325 cognd 1331723361 R rec 544cc01c-203b-4d43-aea8-a1ffdd2526cd +2024-07-30 15:26:20.756905 2024-07-30 15:26:20.756941 cognd 1331719054 R rec d19c3e2b-61d3-4dde-8018-f3043b50d348 +2024-07-30 15:26:20.85113 2024-07-30 15:26:20.851142 cognd 1331717353 R rec 38293e17-bd91-4182-ae1e-a4419ada0a08 +2024-07-30 15:26:20.925133 2024-07-30 15:26:20.925144 cognd 1331710464 R rec d3582212-0014-49bb-bc2d-9ebd653e4a56 +2024-07-30 15:26:21.005558 2024-07-30 15:26:21.00557 cognd 1331704014 R rec dca476e5-9e5d-4cae-a031-38170a4d6f0d +2024-07-30 15:26:21.08563 2024-07-30 15:26:21.085642 cognd 1331614392 R rec 49d476b5-5eea-4c50-83f3-a362ad51a72c +2024-07-30 15:26:21.188257 2024-07-30 15:26:21.188381 cognd 1331613426 R rec 360b8944-cfd3-4912-9fa5-c0c5a8f54b74 +2024-07-30 15:26:21.263025 2024-07-30 15:26:21.263036 cognd 1331605164 R rec ec79b0df-d6fe-420f-8ee5-45f023e3c1c0 +2024-07-30 15:26:21.358717 2024-07-30 15:26:21.358727 cognd 1331605091 R rec e8ae9290-9da5-482e-94b6-d46660a466c2 +2024-07-30 15:26:21.443037 2024-07-30 15:26:21.443051 cognd 1331604893 R rec d49f35ba-bd09-4c17-af44-3d01f1eae67e +2024-07-30 15:26:21.532706 2024-07-30 15:26:21.532717 cognd 1331603897 R rec 9e0e1154-4d05-4848-b186-6a9cd50e98fd +2024-07-30 15:26:21.61557 2024-07-30 15:26:21.615582 cognd 1331594014 R rec a0ad9110-d90b-49e3-a9ee-0b774a597fd1 +2024-07-30 15:26:21.689546 2024-07-30 15:26:21.689551 cognd 1331592208 R rec 5ac703f7-82c1-450e-9af9-3d729fd7170d +2024-07-30 15:26:21.752577 2024-07-30 15:26:21.752602 cognd 1331584167 R rec d8fcd4be-9658-4546-8b8d-cbdbda89a92c +2024-07-30 15:26:21.833852 2024-07-30 15:26:21.833864 cognd 1331530806 R rec 31d1dda8-e444-48a3-833b-fd60a14b3c48 +2024-07-30 15:26:21.915199 2024-07-30 15:26:21.91521 cognd 1331496918 R rec 78358789-a4c8-46a7-ba6e-91b5bace5da8 +2024-07-30 15:26:22.000572 2024-07-30 15:26:22.000584 cognd 1331482941 R rec 0bbfdf8f-b4cc-4d31-bd39-59d7ea97804a +2024-07-30 15:26:22.086603 2024-07-30 15:26:22.086615 cognd 1331380073 R rec 49368307-a877-422f-bdfd-38f953afeac5 +2024-07-30 15:26:22.170399 2024-07-30 15:26:22.17041 cognd 1331102170 R rec 7e52c555-3859-43a4-b230-1e1324a1aad8 +2024-07-30 15:26:22.247338 2024-07-30 15:26:22.247349 cognd 1330854640 R rec fd0282dd-ade8-4f1e-88d6-2a7980e0fbb1 +2024-07-30 15:26:22.332793 2024-07-30 15:26:22.332804 cognd 1330843584 R rec 2410e784-cbc3-47e4-87ca-3c4a1e59e8a4 +2024-07-30 15:26:22.40493 2024-07-30 15:26:22.404942 cognd 1330586557 R rec fc3dbec3-635b-4296-8883-8f563638b454 +2024-07-30 15:26:22.487068 2024-07-30 15:26:22.487078 cognd 1330586271 R rec b417ab7d-9ad5-429d-bc5f-33d2edddefbb +2024-07-30 15:26:22.569545 2024-07-30 15:26:22.569556 cognd 1330585992 R rec 2ce33138-d4ad-49b1-934d-363fd25fd1b5 +2024-07-30 15:26:22.665679 2024-07-30 15:26:22.665688 cognd 1330585747 R rec 1dd7c378-2e27-4a3f-8f4a-11dc17f62c31 +2024-07-30 15:26:22.765466 2024-07-30 15:26:22.765472 cognd 1330447611 R rec 12ab52a7-3cfb-40c6-a6d0-79730e5ca7b2 +2024-07-30 15:26:22.82177 2024-07-30 15:26:22.821781 cognd 1330433858 R rec 8c656e85-c1a5-44da-abe1-d580f34f5e34 +2024-07-30 15:26:22.89847 2024-07-30 15:26:22.898481 cognd 1330430964 R rec b02c58f8-5aa3-410d-bb74-4f02f149d86e +2024-07-30 15:26:22.974309 2024-07-30 15:26:22.974324 cognd 1330343085 R rec 0387ef95-9db3-4dc7-88da-fffa4be1a033 +2024-07-30 15:26:23.053504 2024-07-30 15:26:23.053514 cognd 1330186664 R rec 6d257cc3-467c-4360-8bd5-1e654f569d8d +2024-07-30 15:26:23.138573 2024-07-30 15:26:23.138579 cognd 1329650123 R rec 0b8cf54a-0163-4d59-bbef-ef7a7acd6e88 +2024-07-30 15:26:23.204089 2024-07-30 15:26:23.2041 cognd 1329573331 R rec d6d4058c-dd36-49d2-a83d-38791960e835 +2024-07-30 15:26:23.278793 2024-07-30 15:26:23.278804 cognd 1329325958 R rec 05d766d5-50a2-4c9b-9fa7-2d936d8adab8 +2024-07-30 15:26:23.358334 2024-07-30 15:26:23.358345 cognd 1328905152 R rec c385c05b-2b06-49f5-8bcb-1dca5d67f07e +2024-07-30 15:26:23.430878 2024-07-30 15:26:23.430889 cognd 1328159116 R rec b6f39500-b9b6-441b-954a-9d8f1d615089 +2024-07-30 15:26:23.50643 2024-07-30 15:26:23.506441 cognd 1328114813 R rec d5f5d850-e64c-4e9e-b61b-44a4cd597f64 +2024-07-30 15:26:23.601787 2024-07-30 15:26:23.601798 cognd 1326598325 R rec 6da6657b-4ebd-48bf-881e-89e493c67720 +2024-07-30 15:26:23.673523 2024-07-30 15:26:23.673534 cognd 1325970743 R rec ef8a1db1-7bcf-4f2f-9721-962bcc732c50 +2024-07-30 15:26:23.750156 2024-07-30 15:26:23.750162 cognd 1325836214 R rec 07d7441b-49b2-482a-94ab-7678d3cc9365 +2024-07-30 15:26:23.809008 2024-07-30 15:26:23.809018 cognd 1325526541 R rec 68abe75e-309e-441e-a28d-c4aded9d95ac +2024-07-30 15:26:23.882266 2024-07-30 15:26:23.882277 cognd 1324473703 R rec 78ca8049-bf08-4e63-baa0-a2d1cd2c280d +2024-07-30 15:26:23.960725 2024-07-30 15:26:23.960736 cognd 1324101571 R rec 3e1519b5-5d3d-436e-af93-cb4fe43bb06d +2024-07-30 15:26:24.033577 2024-07-30 15:26:24.033587 cognd 1322498083 R rec 263ddd0e-6e9c-412b-9d26-ddd5548751a1 +2024-07-30 15:26:24.104744 2024-07-30 15:26:24.104756 cognd 1321930690 R rec 17600ed9-7dc2-4f81-89c9-c10ab0c5d199 +2024-07-30 15:26:24.184373 2024-07-30 15:26:24.184384 cognd 1321369956 R rec d3b7d795-0d85-419c-b26b-3bf091c8bde8 +2024-07-30 15:26:24.264724 2024-07-30 15:26:24.264737 cognd 1321325754 R rec 4edace3c-3a38-4bb2-ae9f-425b67d771a1 +2024-07-30 15:26:24.337318 2024-07-30 15:26:24.337329 cognd 132121202X R rec 241e4e4d-8a78-4246-8d8c-7ef3ad9a2de2 +2024-07-30 15:26:24.407416 2024-07-30 15:26:24.407425 cognd 1319608302 R rec 4dd9adc2-5a34-43d9-a624-7f1d702b804c +2024-07-30 15:26:24.47046 2024-07-30 15:26:24.470483 cognd 1319352146 R rec 24fb0b97-07ea-421e-be8b-119ed57f307b +2024-07-30 15:26:24.54648 2024-07-30 15:26:24.546492 cognd 1318875676 R rec f1aa4842-8291-4e03-a6d6-8d960a537078 +2024-07-30 15:26:24.61885 2024-07-30 15:26:24.618861 cognd 1318600871 R rec 59faabc2-629a-4f8e-9fbd-15d1ce05a3e7 +2024-07-30 15:26:24.686974 2024-07-30 15:26:24.686999 cognd 1318529573 R rec 41a90c0c-dd5c-4444-82c1-641a7b216828 +2024-07-30 15:26:24.755855 2024-07-30 15:26:24.755866 cognd 1315438240 R rec 222c1133-b5cd-4bd0-9176-9dbf4b650ef1 +2024-07-30 15:26:24.807484 2024-07-30 15:26:24.807493 cognd 1315344238 R rec 8ce3578a-bcea-4d98-8d7b-3c6663224f74 +2024-07-30 15:26:24.875635 2024-07-30 15:26:24.875646 cognd 1315166526 R rec 43103d67-8ac8-43ee-ae39-c8529cdbaeb8 +2024-07-30 15:26:24.944329 2024-07-30 15:26:24.944341 cognd 1314207296 R rec 2a5149ba-825e-4b38-b70e-06ab46085b51 +2024-07-30 15:26:25.016592 2024-07-30 15:26:25.016604 cognd 1314016547 R rec 7ab5cb3f-9d59-422a-acae-27f2abefce64 +2024-07-30 15:26:25.090568 2024-07-30 15:26:25.090578 cognd 1314016032 R rec 3d91357e-7421-49f6-939c-b240803c2ab8 +2024-07-30 15:26:25.166531 2024-07-30 15:26:25.166543 cognd 1311509100 R rec 580ca5ae-d9eb-4d44-b5c5-0b726e7ace38 +2024-07-30 15:26:25.244119 2024-07-30 15:26:25.24413 cognd 131143609X R rec 2d10c3a9-d839-4974-8d0b-8a4a66d148d1 +2024-07-30 15:26:25.319843 2024-07-30 15:26:25.319855 cognd 1311352430 R rec 7a059199-0a39-4c69-8b23-2fee14ea9b4c +2024-07-30 15:26:25.405421 2024-07-30 15:26:25.405431 cognd 1310159343 R rec 5ef65e99-3c49-4a8b-9c27-4e29b0bda429 +2024-07-30 15:26:25.480197 2024-07-30 15:26:25.480208 cognd 130899687X R rec c7d55a34-f921-4d05-a487-024b7d98c08d +2024-07-30 15:26:25.554819 2024-07-30 15:26:25.55483 cognd 1308455038 R rec f511c127-6df4-4292-8790-91e0681559e9 +2024-07-30 15:26:25.638559 2024-07-30 15:26:25.63857 cognd 1305992857 R rec ea313a92-d5c8-4bd6-9bfd-38e1c169df39 +2024-07-30 15:26:25.707711 2024-07-30 15:26:25.707722 cognd 1302496050 R rec 80678d81-a277-4967-bb97-4a62cf487a36 +2024-07-30 15:26:25.775279 2024-07-30 15:26:25.77529 cognd 129922539X R rec 4b669bd8-8acb-44d5-9579-9b38cd8f47b2 +2024-07-30 15:26:25.831716 2024-07-30 15:26:25.831727 cognd 1298858054 R rec fae8a839-0790-4a76-b6d3-6d300a94b36c +2024-07-30 15:26:25.904833 2024-07-30 15:26:25.904845 cognd 1298312817 R rec e6b9152f-dede-4d6f-a906-bdcb67e7ee76 +2024-07-30 15:26:25.976475 2024-07-30 15:26:25.976486 cognd 1297822668 R rec 3e505284-c6a0-48d6-af6e-97dc5205958b +2024-07-30 15:26:26.043911 2024-07-30 15:26:26.043922 cognd 1295539519 R rec 01b35b0d-fef3-4728-87f1-624319415595 +2024-07-30 15:26:26.112046 2024-07-30 15:26:26.112058 cognd 1293306673 R rec 63f3405d-86fd-41bf-90ef-e3f47558ff45 +2024-07-30 15:26:26.189478 2024-07-30 15:26:26.189489 cognd 1283002477 R rec 95cc34fa-60b2-47a9-bbb7-1387539666b7 +2024-07-30 15:26:26.262546 2024-07-30 15:26:26.262558 cognd 127857025X R rec 4d6910e2-2751-4c9c-b48d-89513f18f29c +2024-07-30 15:26:26.33355 2024-07-30 15:26:26.333559 cognd 1278063730 R rec cf5a01d8-1ff9-45fc-b069-673c30d01548 +2024-07-30 15:26:26.405446 2024-07-30 15:26:26.405462 cognd 1277678871 R rec b0bedc03-0f2e-40ac-bcbd-3ac6b6de8d86 +2024-07-30 15:26:26.484966 2024-07-30 15:26:26.484989 cognd 1277560676 R rec 35dbd53a-0f5b-49d8-a13e-389eae3cf4e8 +2024-07-30 15:26:26.555054 2024-07-30 15:26:26.555065 cognd 1276707304 R rec 358d348f-63f5-4af2-999e-6c80915d79e1 +2024-07-30 15:26:26.622302 2024-07-30 15:26:26.622314 cognd 1276176597 R rec 02a87380-4d99-47e6-bdd7-84f837941867 +2024-07-30 15:26:26.689704 2024-07-30 15:26:26.689714 cognd 1275619533 R rec 6514ca1a-9331-44bf-aa38-8b0d932efe31 +2024-07-30 15:26:26.768929 2024-07-30 15:26:26.768939 cognd 1275172962 R rec 65bb1170-608f-494c-8dbd-36eede107561 +2024-07-30 15:26:26.84472 2024-07-30 15:26:26.844725 cognd 1274948169 R rec ed3823a2-04e4-4ca4-8fb6-15f05a0b5677 +2024-07-30 15:26:26.900783 2024-07-30 15:26:26.900795 cognd 1274269121 R rec c85b3507-fa21-49ba-976e-6d5acd8a6efd +2024-07-30 15:26:26.976731 2024-07-30 15:26:26.976743 cognd 1273395077 R rec 02d2303e-4655-4376-9ee4-34c56b226eca +2024-07-30 15:26:27.051022 2024-07-30 15:26:27.051064 cognd 1273298268 R rec 61e7da71-74f5-47f5-8540-35cc772ec619 +2024-07-30 15:26:27.129323 2024-07-30 15:26:27.129334 cognd 1273295374 R rec caada930-bb71-445a-81df-b7b97a771ec4 +2024-07-30 15:26:27.213783 2024-07-30 15:26:27.213797 cognd 1270459880 R rec fd8ffc44-aae2-49e0-9d2e-2b635d9e0219 +2024-07-30 15:26:27.31107 2024-07-30 15:26:27.311082 cognd 1268867829 R rec e1938d05-c76c-4028-9c8f-0592b81d3092 +2024-07-30 15:26:27.397087 2024-07-30 15:26:27.397098 cognd 1267608781 R rec 5d1e6623-5cee-4cf0-b10c-d774b18d4629 +2024-07-30 15:26:27.480204 2024-07-30 15:26:27.480214 cognd 1267608366 R rec c43c682b-f86a-41ab-b34a-716861f8cd75 +2024-07-30 15:26:27.562528 2024-07-30 15:26:27.562538 cognd 1267358122 R rec e856e4a9-d3c9-43a1-8f05-79b8c3a077e3 +2024-07-30 15:26:27.642858 2024-07-30 15:26:27.642867 cognd 1266800611 R rec 65262d1d-3260-4534-b6a7-9736f9f48a13 +2024-07-30 15:26:27.728865 2024-07-30 15:26:27.728877 cognd 1266799931 R rec 2c9f08e1-b3c1-49ea-bdcf-7b08efc57299 +2024-07-30 15:26:27.810583 2024-07-30 15:26:27.810593 cognd 1264956134 R rec 2e78967c-8e8a-4f82-ac85-befec30785b8 +2024-07-30 15:26:27.877377 2024-07-30 15:26:27.877386 cognd 1262928265 R rec 64503599-3654-485b-8454-244ba71c6e26 +2024-07-30 15:26:27.942807 2024-07-30 15:26:27.942819 cognd 1261933737 R rec 35195da4-a91b-4467-b2b6-8ba6f121f8cf +2024-07-30 15:26:28.019009 2024-07-30 15:26:28.019021 cognd 1259460460 R rec b4f5bfd7-4699-4a40-bc3c-ccddb376bb75 +2024-07-30 15:26:28.089408 2024-07-30 15:26:28.089419 cognd 1258881675 R rec e01c37f0-14b7-4f67-b6cb-ae6762f75469 +2024-07-30 15:26:28.160358 2024-07-30 15:26:28.160369 cognd 125746423X R rec 9b45ae48-4e99-4edb-a85d-8ffd381926ce +2024-07-30 15:26:28.235642 2024-07-30 15:26:28.235652 cognd 1257346415 R rec 043b3d9b-51d6-4fda-9ace-7b40248888b3 +2024-07-30 15:26:28.315801 2024-07-30 15:26:28.315812 cognd 1257092804 R rec 499abe58-7e3a-4d40-ba2d-533a3cc808d2 +2024-07-30 15:26:28.396199 2024-07-30 15:26:28.396211 cognd 1254569642 R rec 27d2b08d-c6f1-4601-82a2-6e35ae78d54c +2024-07-30 15:26:28.474147 2024-07-30 15:26:28.474158 cognd 1254535594 R rec d41ea307-db75-4c0c-89bb-c6c383201176 +2024-07-30 15:26:28.553104 2024-07-30 15:26:28.553115 cognd 1253837457 R rec d0fa6668-7bda-43c7-8506-1033d31446aa +2024-07-30 15:26:28.639326 2024-07-30 15:26:28.639339 cognd 1252827512 R rec 4b89d674-cc3c-4839-976d-61d41e9ae7d8 +2024-07-30 15:26:28.718917 2024-07-30 15:26:28.718928 cognd 1252257295 R rec eb17275f-1788-4315-90a2-a546a1ba553f +2024-07-30 15:26:28.802605 2024-07-30 15:26:28.802615 cognd 1251536492 R rec 784cf90d-c46b-4c11-b8b9-dbc14ca9cede +2024-07-30 15:26:28.872825 2024-07-30 15:26:28.87283 cognd 1250258731 R rec 368604e4-79d7-41af-8307-3de1dfe8b3c8 +2024-07-30 15:26:28.921888 2024-07-30 15:26:28.921899 cognd 124994516X R rec 7d215d93-de09-443a-ad1e-8506544d6162 +2024-07-30 15:26:28.990876 2024-07-30 15:26:28.990886 cognd 1249112877 R rec 70f7a4fd-70c4-48b7-bd59-da2733b7a21b +2024-07-30 15:26:29.065651 2024-07-30 15:26:29.065676 cognd 1248945506 R rec 8777328b-0c3a-4ff3-ad51-81e7760df4f7 +2024-07-30 15:26:29.143597 2024-07-30 15:26:29.143607 cognd 1247639401 R rec 739b1305-303f-4f3b-8c4b-c169c151b6b9 +2024-07-30 15:26:29.233561 2024-07-30 15:26:29.233576 cognd 1246126877 R rec 98aa1179-4c64-4572-9c6e-0885092ed3cf +2024-07-30 15:26:29.310128 2024-07-30 15:26:29.310142 cognd 124608841X R rec d1c2ccd9-6130-4cee-ab33-3c9787b966af +2024-07-30 15:26:29.384281 2024-07-30 15:26:29.384292 cognd 1241975299 R rec a404871c-aae4-45e1-8ef0-e8b42df70634 +2024-07-30 15:26:29.463897 2024-07-30 15:26:29.463908 cognd 1234514702 R rec fb704bc9-801c-4b28-b987-50fe48b3a277 +2024-07-30 15:26:29.547211 2024-07-30 15:26:29.547222 cognd 1232346071 R rec f2400d94-fdd3-48fe-839b-4332137555c0 +2024-07-30 15:26:29.629628 2024-07-30 15:26:29.629639 cognd 1228154325 R rec ad148533-c235-45f6-825e-93eef9ecdad4 +2024-07-30 15:26:29.709586 2024-07-30 15:26:29.709602 cognd 1225893461 R rec 5bdddc33-5ab4-4700-a967-05536781752e +2024-07-30 15:26:29.801541 2024-07-30 15:26:29.801552 cognd 1219598135 R rec 76887294-681a-4ff6-9ab1-b1e8b5895484 +2024-07-30 15:26:29.893613 2024-07-30 15:26:29.893629 cognd 1210456753 R rec 13cd5073-f047-401d-b90d-0c4fad1cd974 +2024-07-30 15:26:29.947974 2024-07-30 15:26:29.947986 cognd 1202575048 R rec 8ff6d2ca-9e69-4e2a-a8af-23b85f8ec913 +2024-07-30 15:26:30.023153 2024-07-30 15:26:30.023164 cognd 1201330661 R rec 8828c778-6d39-4b08-a3cc-9dc3ce50d985 +2024-07-30 15:26:30.099013 2024-07-30 15:26:30.099024 cognd 1199404365 R rec e0e3bb08-df03-47cf-89de-309355c0288b +2024-07-30 15:26:30.194774 2024-07-30 15:26:30.19479 cognd 1198723262 R rec cdde9d47-cbb9-4570-b20a-3116ed096654 +2024-07-30 15:26:30.283546 2024-07-30 15:26:30.283562 cognd 1191508781 R rec caf1a060-5630-4d5e-b53f-19c7f669d295 +2024-07-30 15:26:30.366549 2024-07-30 15:26:30.36656 cognd 1188589024 R rec 961ecf55-c333-4fb3-98c9-43692dfd4696 +2024-07-30 15:26:30.445031 2024-07-30 15:26:30.445041 cognd 1183863349 R rec c92ff2f1-4e21-4339-82a6-d88fc9b7eb62 +2024-07-30 15:26:30.520331 2024-07-30 15:26:30.520342 cognd 1181268311 R rec 5263164e-b9fa-467e-98a5-0985c630ca82 +2024-07-30 15:26:30.607201 2024-07-30 15:26:30.607213 cognd 1181007100 R rec 2b820f0e-2954-45f8-98cd-2014fd551e0d +2024-07-30 15:26:30.684356 2024-07-30 15:26:30.684367 cognd 1173842845 R rec 5aeacb6a-440b-48a6-93ae-7bbfe4661796 +2024-07-30 15:26:30.755311 2024-07-30 15:26:30.755322 cognd 1173062238 R rec 4d8099c2-c663-4772-a3de-37bdcb634efe +2024-07-30 15:26:30.838566 2024-07-30 15:26:30.838579 cognd 1172567794 R rec 6095e77b-b96c-4ddc-9091-bd75a3a2503a +2024-07-30 15:26:30.925485 2024-07-30 15:26:30.925496 cognd 1166161722 R rec 66a1b48e-6b76-4c8e-ad4f-ac416adf8695 +2024-07-30 15:26:30.988035 2024-07-30 15:26:30.988047 cognd 1165352362 R rec 5cc42c8d-af93-402b-89a0-d21ccd72ce39 +2024-07-30 15:26:31.05923 2024-07-30 15:26:31.05924 cognd 1165347768 R rec 461fc882-fe58-4571-ad38-7794433618f4 +2024-07-30 15:26:31.144777 2024-07-30 15:26:31.144788 cognd 1162072040 R rec 4cf02fc4-83c0-4684-b3dc-fafe307d1764 +2024-07-30 15:26:31.211369 2024-07-30 15:26:31.211379 cognd 1161142878 R rec 149fd533-b824-4532-9f3d-6a58dca994a8 +2024-07-30 15:26:31.280057 2024-07-30 15:26:31.280068 cognd 1155851412 R rec 3ebdda27-5025-4389-8985-cd3a7e036e15 +2024-07-30 15:26:31.367343 2024-07-30 15:26:31.367354 cognd 1155424573 R rec 5d86a074-98f4-408e-a284-25388bf5332b +2024-07-30 15:26:31.462836 2024-07-30 15:26:31.462844 cognd 1153834367 R rec 80376a71-ec4d-41ce-b588-44324c1098b2 +2024-07-30 15:26:31.535091 2024-07-30 15:26:31.535131 cognd 1150861010 R rec cbd18d88-15d4-45a7-a9ed-204a275cc3fc +2024-07-30 15:26:31.607098 2024-07-30 15:26:31.607154 cognd 1145186815 R rec d8df40db-2314-40a8-941f-aef1d55ddd50 +2024-07-30 15:26:31.686817 2024-07-30 15:26:31.686829 cognd 1144301971 R rec fbd6cd25-3d95-41c2-ae2a-298cfb546528 +2024-07-30 15:26:31.766366 2024-07-30 15:26:31.766377 cognd 114005791X R rec 5b3a010a-3c49-4b74-9d59-e5bb4b28fe55 +2024-07-30 15:26:31.848162 2024-07-30 15:26:31.848178 cognd 1139178725 R rec 63e47006-1082-4f55-b923-1feebc4aa7fa +2024-07-30 15:26:31.92169 2024-07-30 15:26:31.921702 cognd 1135938261 R rec bcad1f4a-a535-4631-a7d8-0afe4642915a +2024-07-30 15:26:31.995046 2024-07-30 15:26:31.995058 cognd 1122355092 R rec 5d626da0-ae8d-40b1-b8df-9f660d89cf8c +2024-07-30 15:26:32.062463 2024-07-30 15:26:32.062471 cognd 1121689914 R rec 8dbbe65e-ca46-433d-9c19-bb3e730df6fd +2024-07-30 15:26:32.146882 2024-07-30 15:26:32.146897 cognd 1118514823 R rec fa939a61-939c-4f67-b29f-f97c23e31bc3 +2024-07-30 15:26:32.239702 2024-07-30 15:26:32.239717 cognd 1117164012 R rec 6e6b1cf2-9688-4609-917c-924aa51df6d2 +2024-07-30 15:26:32.331811 2024-07-30 15:26:32.331822 cognd 1116981521 R rec 7c7eecb5-6fe1-4564-9e0e-967f2a6a98b4 +2024-07-30 15:26:32.39876 2024-07-30 15:26:32.39877 cognd 1115371371 R rec 812507da-585f-4a60-b33e-e9e8fd04f7d4 +2024-07-30 15:26:32.465921 2024-07-30 15:26:32.465931 cognd 1099123399 R rec 241fbedd-0180-4262-b0e8-7ea1916355af +2024-07-30 15:26:32.545649 2024-07-30 15:26:32.54566 cognd 1081489480 R rec 7acb7d97-64b7-4dce-925d-00af1224cac9 +2024-07-30 15:26:32.609346 2024-07-30 15:26:32.609356 cognd 1078298378 R rec dcd0fbfd-3019-474f-9d24-5779af57f78c +2024-07-30 15:26:32.679807 2024-07-30 15:26:32.679817 cognd 107366371X R rec e3c25765-bee4-4737-82d8-1a8d6a3bcbb0 +2024-07-30 15:26:32.76902 2024-07-30 15:26:32.769032 cognd 1073212491 R rec 9a786882-c27b-4b0c-9052-e30afe5aa9c3 +2024-07-30 15:26:32.842745 2024-07-30 15:26:32.842757 cognd 1072727021 R rec 7c1c1b93-a6f3-4bea-a15b-20e3bb15e83a +2024-07-30 15:26:32.917528 2024-07-30 15:26:32.91754 cognd 1072723875 R rec 9445c422-a6c9-4ef4-967b-1d8587a86d72 +2024-07-30 15:26:32.993673 2024-07-30 15:26:32.993678 cognd 107257439X R rec 01de26e2-4c34-4357-8568-93829a5d6c9d +2024-07-30 15:26:33.057837 2024-07-30 15:26:33.057849 cognd 1070750409 R rec 2db124c0-e481-4ebe-a013-10a93a66c992 +2024-07-30 15:26:33.141789 2024-07-30 15:26:33.141799 cognd 1069698822 R rec 08f5b14c-259c-4259-87d3-a407448f490e +2024-07-30 15:26:33.215714 2024-07-30 15:26:33.215725 cognd 1069336971 R rec ceff1fa3-1e7f-47fe-a2d4-90744ba89835 +2024-07-30 15:26:33.285532 2024-07-30 15:26:33.285542 cognd 1068604875 R rec c86284c7-9901-4815-9cba-a37905125b04 +2024-07-30 15:26:33.366582 2024-07-30 15:26:33.366592 cognd 1066801789 R rec bc9e3181-4c1e-4b17-a729-523de05ab9b4 +2024-07-30 15:26:33.448383 2024-07-30 15:26:33.448395 cognd 1064698727 R rec 2f81d439-db30-484a-ab40-192d6a804a1a +2024-07-30 15:26:33.523418 2024-07-30 15:26:33.52343 cognd 1064281230 R rec 13e4b7c8-7d2e-4e7d-b918-083cc10a9019 +2024-07-30 15:26:33.603676 2024-07-30 15:26:33.603687 cognd 1064280692 R rec 49fc0d80-2035-46af-bb6b-18cc7e900d90 +2024-07-30 15:26:33.686909 2024-07-30 15:26:33.68692 cognd 106427546X R rec 20df9fd4-5443-4c4e-b328-8523703718a6 +2024-07-30 15:26:33.781877 2024-07-30 15:26:33.781889 cognd 1064098363 R rec c0cf4080-bef0-4a2d-8d1e-f5c21da635c4 +2024-07-30 15:26:33.862727 2024-07-30 15:26:33.862739 cognd 1063927137 R rec af75e4bc-8c8c-4f62-a795-d62bba0d1667 +2024-07-30 15:26:33.938459 2024-07-30 15:26:33.93847 cognd 1063927110 R rec 38a053e2-4578-4519-b5d2-1c8dd5c4e69d +2024-07-30 15:26:34.015589 2024-07-30 15:26:34.015594 cognd 1063925908 R rec c12a78ca-d2bc-4343-8e50-64bec6e08628 +2024-07-30 15:26:34.07508 2024-07-30 15:26:34.075091 cognd 1063349230 R rec 6fe84289-3449-4fdc-8b3f-80eb58397210 +2024-07-30 15:26:34.161074 2024-07-30 15:26:34.16108 cognd 1062937325 R rec cc20e122-dde4-4cfd-a6f8-52a5f20dcffe +2024-07-30 15:26:34.225673 2024-07-30 15:26:34.225682 cognd 1060931796 R rec f6b36839-82ca-45e6-9e9f-a273048ee5bd +2024-07-30 15:26:34.292723 2024-07-30 15:26:34.292734 cognd 1060912503 R rec 6fcd2ae4-3823-405f-92cb-58bf30fd1531 +2024-07-30 15:26:34.366907 2024-07-30 15:26:34.366917 cognd 1060909251 R rec c8927e54-955d-435d-b5a8-430a85cda5bd +2024-07-30 15:26:34.440921 2024-07-30 15:26:34.440932 cognd 1060907534 R rec a5b6202b-87aa-4273-9273-0f28a467c55e +2024-07-30 15:26:34.511627 2024-07-30 15:26:34.511638 cognd 1060882345 R rec dc4e1ebd-8166-4cd9-a295-1c8f0ed4c091 +2024-07-30 15:26:34.59196 2024-07-30 15:26:34.591971 cognd 1060882191 R rec 1e54aa3a-418f-4030-a8a9-44e8145f3542 +2024-07-30 15:26:34.691287 2024-07-30 15:26:34.691302 cognd 1060881373 R rec e07230bd-4a8c-4594-be88-95813e278e96 +2024-07-30 15:26:34.766054 2024-07-30 15:26:34.766065 cognd 1060881039 R rec e70c5ab1-efcc-4b44-acbd-34106fdea8a6 +2024-07-30 15:26:34.855954 2024-07-30 15:26:34.855962 cognd 1060858703 R rec 3e13cb02-cf79-47cc-8ff2-821f7b162fcf +2024-07-30 15:26:34.926552 2024-07-30 15:26:34.926562 cognd 1060811529 R rec 75aed422-c29b-432a-8ca4-08e05e8439e6 +2024-07-30 15:26:35.003998 2024-07-30 15:26:35.004009 cognd 1060804263 R rec 8809b204-cc68-4702-82a4-8a6787659fc2 +2024-07-30 15:26:35.088301 2024-07-30 15:26:35.088311 cognd 1060778947 R rec c3611820-cc0e-45b0-bfcb-449a36acc3f2 +2024-07-30 15:26:35.161633 2024-07-30 15:26:35.161645 cognd 1060674483 R rec 50f3e15d-eadf-4696-9ac3-b1ec9c180ff3 +2024-07-30 15:26:35.232789 2024-07-30 15:26:35.232831 cognd 1060581957 R rec 0b02f7cf-29f1-4bff-ac24-89e1a9dcd287 +2024-07-30 15:26:35.302409 2024-07-30 15:26:35.302419 cognd 1060577895 R rec 4631a242-cabf-4ac4-b19e-f466ba704fc2 +2024-07-30 15:26:35.373708 2024-07-30 15:26:35.373719 cognd 106057683X R rec 0cd565e5-4143-4155-9b38-2769a32de654 +2024-07-30 15:26:35.441686 2024-07-30 15:26:35.441697 cognd 1060521229 R rec b470eecc-d2c6-486f-be7f-f98253591cde +2024-07-30 15:26:35.519689 2024-07-30 15:26:35.5197 cognd 1060471329 R rec c67cbbfc-19af-44be-8751-d9bf8d82fe40 +2024-07-30 15:26:35.590047 2024-07-30 15:26:35.590056 cognd 1060399172 R rec e55aff55-1c4a-4d89-9824-18c3ede8b78a +2024-07-30 15:26:35.658387 2024-07-30 15:26:35.658398 cognd 1060358328 R rec 3d47f93f-8982-41e1-8864-a549f06602b0 +2024-07-30 15:26:35.724807 2024-07-30 15:26:35.724818 cognd 106013411X R rec a83f49c3-fac5-4af8-bb03-650734868f14 +2024-07-30 15:26:35.797407 2024-07-30 15:26:35.797419 cognd 1060114909 R rec 6db2c194-7d19-47d4-8b2a-d2c6a2d054b2 +2024-07-30 15:26:35.869764 2024-07-30 15:26:35.869775 cognd 1060090236 R rec e5faa147-a0bb-46e9-9e43-2517c991c060 +2024-07-30 15:26:35.93934 2024-07-30 15:26:35.939352 cognd 1060077914 R rec 1d0a6d04-8f18-4bcd-85c8-eddb742fcdfa +2024-07-30 15:26:36.006651 2024-07-30 15:26:36.006663 cognd 1060077817 R rec 6dd1125c-fdf4-4a00-ae95-da79795b81fa +2024-07-30 15:26:36.07597 2024-07-30 15:26:36.075975 cognd 1059889455 R rec f0e01846-dea6-4d30-88ee-9cf6d0f2d055 +2024-07-30 15:26:36.140544 2024-07-30 15:26:36.140555 cognd 1059823527 R rec 07f836c6-239f-45fc-b839-6d60a44e07ed +2024-07-30 15:26:36.199045 2024-07-30 15:26:36.199055 cognd 1059732483 R rec c3ff473b-2fec-43a1-b43c-a2392a97fe82 +2024-07-30 15:26:36.26759 2024-07-30 15:26:36.2676 cognd 105962091X R rec ab230087-df6b-4996-a3e0-8fa19d241f5c +2024-07-30 15:26:36.340386 2024-07-30 15:26:36.340396 cognd 105960552X R rec acaea840-62d4-4eac-8df6-116fdaa728ec +2024-07-30 15:26:36.409432 2024-07-30 15:26:36.409443 cognd 1059558653 R rec 84a663d9-807d-4af9-b095-258f7f394f14 +2024-07-30 15:26:36.487798 2024-07-30 15:26:36.48781 cognd 1059464667 R rec 0bc1ccd1-f89b-435d-9821-af49a0eb1b16 +2024-07-30 15:26:36.56571 2024-07-30 15:26:36.565721 cognd 1059463385 R rec 354f426e-995a-4f29-a50d-f1227be5449e +2024-07-30 15:26:36.639109 2024-07-30 15:26:36.639121 cognd 1059408058 R rec a639c439-e453-4534-b802-e415e03a84db +2024-07-30 15:26:36.71018 2024-07-30 15:26:36.710192 cognd 1059388502 R rec 2b57649f-4f5c-43e9-bc1c-851a555cf03e +2024-07-30 15:26:36.782789 2024-07-30 15:26:36.7828 cognd 1059388499 R rec 334d125c-5a50-418f-99e0-085c26c8afef +2024-07-30 15:26:36.856178 2024-07-30 15:26:36.856188 cognd 1059388464 R rec 9d6c4a3f-6575-4499-af68-e908162cfced +2024-07-30 15:26:36.928755 2024-07-30 15:26:36.928766 cognd 1059384434 R rec d98b2b63-80b8-4ca8-8a40-ad80c416e79d +2024-07-30 15:26:36.999018 2024-07-30 15:26:36.999028 cognd 1059383780 R rec 72691977-8295-4c48-ad93-c13504da30e6 +2024-07-30 15:26:37.070923 2024-07-30 15:26:37.070935 cognd 1059323001 R rec 57f290b1-4942-4805-9bb1-e25fa5ce1e23 +2024-07-30 15:26:37.13528 2024-07-30 15:26:37.135292 cognd 1059271745 R rec af986c7a-3a36-4b44-8ad4-d24c03ee941c +2024-07-30 15:26:37.212657 2024-07-30 15:26:37.212671 cognd 1059254697 R rec 6aeb7ac8-7e71-4a22-9bab-3f12450c37f2 +2024-07-30 15:26:37.288751 2024-07-30 15:26:37.288762 cognd 1059254646 R rec ce8d2e29-b15a-45b5-aa1c-fa0bc2e769d3 +2024-07-30 15:26:37.362111 2024-07-30 15:26:37.362121 cognd 1059226529 R rec 278cb01a-5f46-4d83-b4af-5c3dbe7f52c3 +2024-07-30 15:26:37.434769 2024-07-30 15:26:37.434779 cognd 1059152312 R rec aa16f6eb-708a-4fa3-ba31-cd6a279af4dd +2024-07-30 15:26:37.510935 2024-07-30 15:26:37.510946 cognd 1059103257 R rec 19e970be-a8fa-4823-a8f8-6ce62f9ff2ab +2024-07-30 15:26:37.578398 2024-07-30 15:26:37.578409 cognd 1059090767 R rec d998bef5-b8b9-423c-8af6-557b48cdffaa +2024-07-30 15:26:37.646182 2024-07-30 15:26:37.646193 cognd 1059087871 R rec 7a0450e2-5643-43af-8468-c574e528c497 +2024-07-30 15:26:37.719758 2024-07-30 15:26:37.71977 cognd 1058986295 R rec ee580049-eb8d-47df-9c94-c26b9f87a8ff +2024-07-30 15:26:37.791473 2024-07-30 15:26:37.791485 cognd 105896920X R rec 99a3484a-3eee-41d9-8d05-1fbb0e36eddc +2024-07-30 15:26:37.863798 2024-07-30 15:26:37.863809 cognd 1058846361 R rec cc603011-d3b6-498e-8bb8-09f17526ad5b +2024-07-30 15:26:37.931076 2024-07-30 15:26:37.931088 cognd 1058723790 R rec 34b45e7f-b9bd-4905-b1a7-89fb0122caba +2024-07-30 15:26:38.071795 2024-07-30 15:26:38.071807 cognd 1058674900 R rec 7077d87e-70ec-4282-8a57-f8ebaf0bd436 +2024-07-30 15:26:38.142519 2024-07-30 15:26:38.142525 cognd 1058669559 R rec 372a83d4-6695-4a2c-9222-c50866e36729 +2024-07-30 15:26:38.199994 2024-07-30 15:26:38.200005 cognd 105862394X R rec 8a46617b-2ded-4185-87ec-116a40ad5636 +2024-07-30 15:26:38.270579 2024-07-30 15:26:38.270588 cognd 1058513710 R rec e51f99e4-3dcc-4670-affd-8716e70784ba +2024-07-30 15:26:38.332761 2024-07-30 15:26:38.33277 cognd 1058507044 R rec 2762ed16-c0b9-4000-940d-200c87c7f40c +2024-07-30 15:26:38.397133 2024-07-30 15:26:38.397144 cognd 1058389041 R rec c83c33d0-0811-46e3-8cba-67f962408fde +2024-07-30 15:26:38.461561 2024-07-30 15:26:38.461571 cognd 1058382799 R rec 98095a5d-ff83-45ec-a0d8-c5a7fb800cd0 +2024-07-30 15:26:38.531794 2024-07-30 15:26:38.531807 cognd 1058371266 R rec 17defc0b-eaa2-4a09-90f2-df81c9d34a71 +2024-07-30 15:26:38.603714 2024-07-30 15:26:38.603725 cognd 1058370677 R rec 1a0baefb-d7f0-4d8a-a4b1-a7486d3d1a44 +2024-07-30 15:26:38.67206 2024-07-30 15:26:38.672071 cognd 1058284371 R rec 3914a809-d33b-45c5-a6d9-806ead6f0853 +2024-07-30 15:26:38.743189 2024-07-30 15:26:38.7432 cognd 1058284304 R rec 8fb2d5f4-8728-4c33-a545-0245ea64c1b5 +2024-07-30 15:26:38.815324 2024-07-30 15:26:38.815351 cognd 1058284096 R rec 094c2fd5-3bd6-434d-bd32-44be69ba3aa1 +2024-07-30 15:26:38.888068 2024-07-30 15:26:38.888079 cognd 1058280910 R rec a508e33a-6614-47a6-8467-6cc2f4e570ed +2024-07-30 15:26:38.959321 2024-07-30 15:26:38.959331 cognd 1058249436 R rec b8eac63c-d12c-47a9-babb-5e9e36975d16 +2024-07-30 15:26:39.026589 2024-07-30 15:26:39.026601 cognd 1058206753 R rec ce2f0036-f19a-45d1-8375-46f6e590ff8d +2024-07-30 15:26:39.098471 2024-07-30 15:26:39.098483 cognd 1058118161 R rec b94f41f2-ee7c-4a6a-a06f-d657804e8943 +2024-07-30 15:26:39.174593 2024-07-30 15:26:39.174598 cognd 1055857745 R rec cec1bf64-8d3d-4cbd-8c44-b323bc4e0c65 +2024-07-30 15:26:39.226668 2024-07-30 15:26:39.226679 cognd 1054037531 R rec b83a0590-925a-4742-a6ed-7402ad3d149e +2024-07-30 15:26:39.302109 2024-07-30 15:26:39.302119 cognd 1052970427 R rec 565272ab-da92-4025-8401-2aed02a9ef54 +2024-07-30 15:26:39.385636 2024-07-30 15:26:39.385647 cognd 1051355478 R rec 53fc775f-a402-44c1-a69a-4b8ab302d8e8 +2024-07-30 15:26:39.453562 2024-07-30 15:26:39.453574 cognd 1050801644 R rec f9943a8f-fea5-463b-a6fd-e9ade25074d1 +2024-07-30 15:26:39.525149 2024-07-30 15:26:39.525161 cognd 1050440188 R rec 8c67b2d5-4630-45c9-9c00-977c0ebeb821 +2024-07-30 15:26:39.595208 2024-07-30 15:26:39.595219 cognd 1049971213 R rec 5920373e-b8b5-420a-9b84-e399848d986c +2024-07-30 15:26:39.669627 2024-07-30 15:26:39.669639 cognd 1049453719 R rec 9e5ecaec-49dc-4787-b603-60d41bc4a012 +2024-07-30 15:26:39.744703 2024-07-30 15:26:39.744714 cognd 104797553X R rec 18e32a49-ad5f-4d44-8bb2-8d488baa5d5f +2024-07-30 15:26:39.82362 2024-07-30 15:26:39.823632 cognd 1047231085 R rec 64ee9015-92a0-4d8f-8bc7-975c3aeb77f2 +2024-07-30 15:26:39.898219 2024-07-30 15:26:39.89823 cognd 1041610890 R rec 8521c951-e5e0-4b06-a29a-24b5d5f78825 +2024-07-30 15:26:39.973104 2024-07-30 15:26:39.973115 cognd 1037919874 R rec 7d6654c6-f353-4a2d-a537-6a0ebca30e8a +2024-07-30 15:26:40.04905 2024-07-30 15:26:40.049062 cognd 1034281828 R rec bb144efc-1ed5-4c8e-879c-ce8472b57cd4 +2024-07-30 15:26:40.120023 2024-07-30 15:26:40.120035 cognd 1033705691 R rec 8499ef4e-bbb9-48b8-b40a-58b959eefe15 +2024-07-30 15:26:40.192637 2024-07-30 15:26:40.192642 cognd 1030464197 R rec 0eb1af7a-470a-4a26-ae00-a7f37a0a747b +2024-07-30 15:26:40.249447 2024-07-30 15:26:40.249609 cognd 1028524978 R rec b1f0fed3-ebe4-4a73-97f0-bbca44c56855 +2024-07-30 15:26:40.315207 2024-07-30 15:26:40.315218 cognd 1027073808 R rec eff92d14-f8c9-45e0-89d4-676d21a729c7 +2024-07-30 15:26:40.387068 2024-07-30 15:26:40.387079 cognd 1027071171 R rec 99ae0b5c-9d2e-4146-b593-c02df20d2d75 +2024-07-30 15:26:40.463104 2024-07-30 15:26:40.463115 cognd 1026470986 R rec ff425a4f-bc06-489c-8e34-21621e4bd845 +2024-07-30 15:26:40.539448 2024-07-30 15:26:40.53946 cognd 1026351537 R rec 6f73c810-d723-41f0-9845-3481aec08aff +2024-07-30 15:26:40.618689 2024-07-30 15:26:40.6187 cognd 1025228928 R rec 76124230-ec87-4c3e-97d0-5a4ae49bcdd0 +2024-07-30 15:26:40.691127 2024-07-30 15:26:40.691137 cognd 1023745712 R rec 2d1f55df-f600-49e8-8fa9-5974fd9e6198 +2024-07-30 15:26:40.774344 2024-07-30 15:26:40.774359 cognd 1023362872 R rec 4c1dfa7d-ce90-4c74-a793-9016cb72a172 +2024-07-30 15:26:40.855115 2024-07-30 15:26:40.855127 cognd 1022832425 R rec f00229d3-5866-4c4d-b0dc-cfb57b6fbd8e +2024-07-30 15:26:40.92946 2024-07-30 15:26:40.929472 cognd 1021256064 R rec f3290c94-0743-415a-a3f8-d67d67198639 +2024-07-30 15:26:41.004742 2024-07-30 15:26:41.004757 cognd 1018220429 R rec c213e1ef-ec25-4498-a6cd-f36559d52bbb +2024-07-30 15:26:41.084232 2024-07-30 15:26:41.084257 cognd 1017491062 R rec 853f1340-8281-4d3c-a29e-2d72b5e8fcc7 +2024-07-30 15:26:41.157017 2024-07-30 15:26:41.157028 cognd 1017490090 R rec 32896c5e-b4fb-448b-9cd0-3449b3e49901 +2024-07-30 15:26:41.222936 2024-07-30 15:26:41.222945 cognd 1017217165 R rec 32edc9ac-74e2-486b-9b35-439340e7e9df +2024-07-30 15:26:41.288634 2024-07-30 15:26:41.288644 cognd 1017177503 R rec 1831737a-6868-4c86-80d8-ada43fa89f9b +2024-07-30 15:26:41.359908 2024-07-30 15:26:41.359923 cognd 1017027366 R rec f1ca8d49-4f32-441b-bdcb-8ee0e8c5a1ab +2024-07-30 15:26:41.437655 2024-07-30 15:26:41.43767 cognd 1016810989 R rec 9ef0a8fa-5281-4a4d-8f46-68f1fef2109d +2024-07-30 15:26:41.517259 2024-07-30 15:26:41.51727 cognd 1016599463 R rec cfb91511-aa35-43ce-9b2a-e12f06f629bf +2024-07-30 15:26:41.601485 2024-07-30 15:26:41.601496 cognd 1016326106 R rec 3c59729a-4069-4f8b-b987-abd8671230a1 +2024-07-30 15:26:41.676128 2024-07-30 15:26:41.676143 cognd 1015079253 R rec 03a7980e-f239-4225-8179-0da9f1b53490 +2024-07-30 15:26:41.757238 2024-07-30 15:26:41.757247 cognd 1013014065 R rec aa400b08-e044-4b65-a28c-9ae8a292efe0 +2024-07-30 15:26:41.83877 2024-07-30 15:26:41.838784 cognd 1011954141 R rec 077c00bc-c264-411a-87e5-274c35a0d8c3 +2024-07-30 15:26:41.973467 2024-07-30 15:26:41.973473 cognd 1011935201 R rec 75d9fa74-488a-41cb-b125-a19cca9475d0 +2024-07-30 15:26:42.021894 2024-07-30 15:26:42.021899 cognd 1011536455 R rec 055c68ca-59b6-4475-887e-e59403a5cdee +2024-07-30 15:26:42.065846 2024-07-30 15:26:42.06585 cognd 1011385856 R rec 419bf6d1-47e0-4ce1-a714-cf6fff3bf605 +2024-07-30 15:26:42.108048 2024-07-30 15:26:42.108054 cognd 1011285738 R rec 24b00983-b068-41d8-8a6c-78cae0b000ab +2024-07-30 15:26:42.153613 2024-07-30 15:26:42.153625 cognd 1011285436 R rec 5202d120-1620-41e2-9c9e-2142e1db2a32 +2024-07-30 15:26:42.220994 2024-07-30 15:26:42.221005 cognd 1011282518 R rec a363e20f-af87-4f28-8130-45327891d81a +2024-07-30 15:26:42.273137 2024-07-30 15:26:42.273146 cognd 1011281368 R rec 2d2e081e-473a-48cd-8bf1-fec4f39d5862 +2024-07-30 15:26:42.337567 2024-07-30 15:26:42.337578 cognd 1011278723 R rec dc72b44a-dbaf-4a12-975e-9b81d8ff49c9 +2024-07-30 15:26:42.4106 2024-07-30 15:26:42.410611 cognd 1011253313 R rec c541c7d2-f737-431f-8f8f-6c0bf933011c +2024-07-30 15:26:42.483482 2024-07-30 15:26:42.483493 cognd 1011212722 R rec 3245b498-e4db-4836-8016-58cd9271932a +2024-07-30 15:26:42.556184 2024-07-30 15:26:42.556194 cognd 1011172399 R rec 9e7289bd-b6eb-400f-8652-8cad4926a8ac +2024-07-30 15:26:42.638176 2024-07-30 15:26:42.638192 cognd 1011095351 R rec 3988ae34-862a-4a8c-b301-784ad33344a8 +2024-07-30 15:26:42.722243 2024-07-30 15:26:42.722258 cognd 1010824597 R rec e24ef86a-7e1e-4c59-b136-f93d86a90f8c +2024-07-30 15:26:42.799505 2024-07-30 15:26:42.79952 cognd 1010820389 R rec 55e79f48-0409-4a18-ac0e-abb9e14107da +2024-07-30 15:26:42.901636 2024-07-30 15:26:42.901647 cognd 101081933X R rec 83c2a4a6-bb8a-448a-a2f5-7b6f1fe1d735 +2024-07-30 15:26:42.982663 2024-07-30 15:26:42.982675 cognd 100974786X R rec 3250ce14-ef62-44cb-8687-0a696aa82894 +2024-07-30 15:26:43.079599 2024-07-30 15:26:43.079609 cognd 1009172255 R rec c095b1ef-ffd2-4b6d-b2c5-97c58c6c99c3 +2024-07-30 15:26:43.159535 2024-07-30 15:26:43.159546 cognd 100914135X R rec 004ce92d-031d-4ea1-a326-8f8899fa734d +2024-07-30 15:26:43.226656 2024-07-30 15:26:43.22667 cognd 1008599360 R rec 10147a7f-f137-43e6-9b16-7cd2467d3694 +2024-07-30 15:26:43.286598 2024-07-30 15:26:43.286604 cognd 1007558903 R rec 81b2ca67-2737-4152-9e40-d2267a79d10a +2024-07-30 15:26:43.343844 2024-07-30 15:26:43.343855 cognd 1007553405 R rec dd9f98b4-00bc-4bc7-a495-5c389a423580 +2024-07-30 15:26:43.419148 2024-07-30 15:26:43.419159 cognd 1007096462 R rec 6f51a064-ea7c-40af-acb1-367fcbb0487e +2024-07-30 15:26:43.50853 2024-07-30 15:26:43.508545 cognd 1006156577 R rec 692ace8f-4519-4032-8eea-9254ebad43a8 +2024-07-30 15:26:43.590777 2024-07-30 15:26:43.590788 cognd 1005952930 R rec e7578e5c-515b-44cc-a320-1d9cf6822bb6 +2024-07-30 15:26:43.660422 2024-07-30 15:26:43.660434 cognd 1005638322 R rec 6b0750bf-25e8-4076-807b-45543ce15640 +2024-07-30 15:26:43.737609 2024-07-30 15:26:43.737619 cognd 1005003262 R rec 7146b7f7-291d-4689-b160-b4a83c43409a +2024-07-30 15:26:43.804087 2024-07-30 15:26:43.804097 cognd 1003591590 R rec c7f68bce-d9fa-4532-bfab-8ad48f545fac +2024-07-30 15:26:43.871427 2024-07-30 15:26:43.871437 cognd 1001213157 R rec fae8aa71-13b0-4a32-a0bb-467c6e5ff0d7 +2024-07-30 15:26:43.935092 2024-07-30 15:26:43.935102 cognd 1000465403 R rec 8b906d8c-d465-458f-892d-742aaf6bf288 +2024-07-30 15:26:44.006415 2024-07-30 15:26:44.006427 cognd 999617249 R rec 00f41df9-f5de-47c8-b731-a28d2a6077f9 +2024-07-30 15:26:44.078417 2024-07-30 15:26:44.078428 cognd 999602810 R rec 8d55583c-70ad-42db-9b0f-2a4b968d373b +2024-07-30 15:26:44.154162 2024-07-30 15:26:44.154172 cognd 999129317 R rec 5e7d7587-882a-47e7-9703-71be584d94ef +2024-07-30 15:26:44.225464 2024-07-30 15:26:44.225475 cognd 999038095 R rec b031d79b-b95f-4122-b89a-e74f386911ce +2024-07-30 15:26:44.299982 2024-07-30 15:26:44.299988 cognd 998759074 R rec efdde8a3-a807-4820-ad2f-840a74da9136 +2024-07-30 15:26:44.354718 2024-07-30 15:26:44.354728 cognd 997781491 R rec ab6bfb15-ae8e-4a7b-9090-63de583c6d6d +2024-07-30 15:26:44.416501 2024-07-30 15:26:44.416512 cognd 994660987 R rec 269f5b14-b0aa-47d6-944c-4e63697ce080 +2024-07-30 15:26:44.47953 2024-07-30 15:26:44.479539 cognd 994508417 R rec 70198892-62d3-49dd-b980-2715f8dfc638 +2024-07-30 15:26:44.552024 2024-07-30 15:26:44.552036 cognd 994042582 R rec f5cfebb4-6fd6-42d7-a62c-6f2a732dfff6 +2024-07-30 15:26:44.636067 2024-07-30 15:26:44.636079 cognd 993971806 R rec 71a648f0-97e9-4515-b769-a5a374f9f9be +2024-07-30 15:26:44.70975 2024-07-30 15:26:44.70976 cognd 992779871 R rec d9da6e85-cd58-41f7-bf28-64a7ac65c83f +2024-07-30 15:26:44.785356 2024-07-30 15:26:44.785366 cognd 992757681 R rec f6c209f7-2bb8-40c0-8b21-abe8b86a2768 +2024-07-30 15:26:44.861751 2024-07-30 15:26:44.861761 cognd 992754151 R rec 2bfd91e3-7f27-43fa-acf4-888ea3476157 +2024-07-30 15:26:44.94111 2024-07-30 15:26:44.941121 cognd 992753589 R rec ff0a2cb0-1e28-4d95-bdfb-bc16c74bac57 +2024-07-30 15:26:45.015819 2024-07-30 15:26:45.015831 cognd 992747260 R rec c35dfac3-96a0-44d2-a722-aad66741656b +2024-07-30 15:26:45.088849 2024-07-30 15:26:45.088859 cognd 992745489 R rec d1a94d0f-b820-49b0-b686-addfe58dc2aa +2024-07-30 15:26:45.171023 2024-07-30 15:26:45.171033 cognd 992744431 R rec 18a34a3d-ab8a-409a-a60e-f985469b229c +2024-07-30 15:26:45.248728 2024-07-30 15:26:45.248739 cognd 992744040 R rec c7a8a552-2c71-4c15-bacd-d0d65db9a665 +2024-07-30 15:26:45.320153 2024-07-30 15:26:45.320159 cognd 992742145 R rec 5bd2bf70-a89a-418d-b4f5-5bdb689d8199 +2024-07-30 15:26:45.374794 2024-07-30 15:26:45.374807 cognd 992740622 R rec f2cfb314-d4a4-49ba-b541-a09bb79ea6cf +2024-07-30 15:26:45.426333 2024-07-30 15:26:45.426367 cognd 992740002 R rec 08545613-28cd-46b6-b623-69b9779f2956 +2024-07-30 15:26:45.485755 2024-07-30 15:26:45.485766 cognd 992739888 R rec 4ff77d3e-52bb-4dcf-a27e-1396a66f85ac +2024-07-30 15:26:45.558854 2024-07-30 15:26:45.558864 cognd 992734894 R rec 417ee163-8446-46f9-a825-2c6da7161dbd +2024-07-30 15:26:45.636791 2024-07-30 15:26:45.636802 cognd 992733510 R rec a735f77b-82e8-4e1f-8eae-44001ed0f644 +2024-07-30 15:26:45.714194 2024-07-30 15:26:45.714206 cognd 992258820 R rec 196711ac-7767-47a8-ab52-79d411e6d508 +2024-07-30 15:26:45.788013 2024-07-30 15:26:45.788024 cognd 991512669 R rec 9816d255-a050-4661-93f0-0272dc3c23ef +2024-07-30 15:26:45.866687 2024-07-30 15:26:45.866703 cognd 99110546X R rec 156953c7-198a-493c-bebf-e1d35ac1c519 +2024-07-30 15:26:45.940711 2024-07-30 15:26:45.940723 cognd 990635139 R rec e28478af-a937-40db-9b49-5917bd810599 +2024-07-30 15:26:46.023721 2024-07-30 15:26:46.023732 cognd 989819264 R rec 86060c58-e061-407c-bbe5-41b1f8ea6723 +2024-07-30 15:26:46.111472 2024-07-30 15:26:46.111485 cognd 987246100 R rec 48781c22-a2ef-4b6f-9e85-92d2f97d77ff +2024-07-30 15:26:46.199093 2024-07-30 15:26:46.199107 cognd 986124265 R rec 062d6f2a-12ff-45f3-8d2e-c7c9239ab9a9 +2024-07-30 15:26:46.287803 2024-07-30 15:26:46.287819 cognd 985953780 R rec f23aac0c-cdbf-462c-b443-0562875b5fac +2024-07-30 15:26:46.360821 2024-07-30 15:26:46.360826 cognd 985948116 R rec 6053daee-1b12-4994-b092-4a0268c13079 +2024-07-30 15:26:46.423229 2024-07-30 15:26:46.423242 cognd 985147172 R rec 306c2719-15f5-42ac-9e97-bb0b74d28be9 +2024-07-30 15:26:46.501987 2024-07-30 15:26:46.502 cognd 985075619 R rec 5d823d4a-172b-43ae-8eef-db2d517f9858 +2024-07-30 15:26:46.575064 2024-07-30 15:26:46.575074 cognd 984505180 R rec cf503a28-f263-44b5-b3ed-eebb700c644d +2024-07-30 15:26:46.661579 2024-07-30 15:26:46.661595 cognd 983782784 R rec 7760228f-724b-4537-821c-aba4b97ab42c +2024-07-30 15:26:46.752506 2024-07-30 15:26:46.752521 cognd 983616299 R rec 99cb510b-0d2c-4cec-b758-4b8737815339 +2024-07-30 15:26:46.83141 2024-07-30 15:26:46.83142 cognd 98350816X R rec 8dd98821-0c96-4e21-9e31-bedcc73cc5f8 +2024-07-30 15:26:46.901079 2024-07-30 15:26:46.90109 cognd 983481644 R rec 8a797478-2853-4fde-a892-9e70b7b35c84 +2024-07-30 15:26:46.966724 2024-07-30 15:26:46.966734 cognd 983481628 R rec ff905f16-358e-4c44-85a0-e60edd072e6a +2024-07-30 15:26:47.031691 2024-07-30 15:26:47.031701 cognd 982938322 R rec 95352ea6-30fa-417b-bb38-cec60f999503 +2024-07-30 15:26:47.101623 2024-07-30 15:26:47.101634 cognd 982377649 R rec 1fe9cbd5-a3f4-4fc1-a493-071835f27456 +2024-07-30 15:26:47.19373 2024-07-30 15:26:47.193746 cognd 982125461 R rec 051ab9e9-a533-4133-99ac-fda3a7d96434 +2024-07-30 15:26:47.283847 2024-07-30 15:26:47.283862 cognd 981073328 R rec 84244b0c-8baa-4c78-ab3f-fb383ea4af04 +2024-07-30 15:26:47.364896 2024-07-30 15:26:47.364907 cognd 98106521X R rec c80d70e3-c351-40eb-aed3-aaf02a6b6e36 +2024-07-30 15:26:47.434606 2024-07-30 15:26:47.434617 cognd 980868459 R rec 1b1e53e5-6e7a-4e77-88c4-52fac348bdf2 +2024-07-30 15:26:47.501359 2024-07-30 15:26:47.50137 cognd 980347890 R rec 5040f2a2-4dc4-4202-9549-fa0ee5158942 +2024-07-30 15:26:47.581614 2024-07-30 15:26:47.581625 cognd 979633079 R rec 7c564e4e-a1c3-4927-99e6-6b1c45ff375f +2024-07-30 15:26:47.652731 2024-07-30 15:26:47.652741 cognd 979217253 R rec 77c42aeb-2778-403a-90cc-7b37fe2ea2f3 +2024-07-30 15:26:47.715667 2024-07-30 15:26:47.715677 cognd 979214998 R rec 40f12ae5-7762-4faf-b4dc-ef4ac6add11e +2024-07-30 15:26:47.780474 2024-07-30 15:26:47.780485 cognd 977813762 R rec c851d4e2-b1e4-4d49-acac-430f79fad153 +2024-07-30 15:26:47.848808 2024-07-30 15:26:47.848819 cognd 977682633 R rec 340caed5-fee7-4dd8-85bd-65520b074bf7 +2024-07-30 15:26:47.925464 2024-07-30 15:26:47.925475 cognd 977294390 R rec 771d3a41-76ac-4db8-bcc1-d6f0fbdbecfc +2024-07-30 15:26:47.994965 2024-07-30 15:26:47.994976 cognd 976865351 R rec 814b1871-a891-4435-9f3e-55759be4b252 +2024-07-30 15:26:48.072489 2024-07-30 15:26:48.0725 cognd 976859416 R rec f9dfd707-ad36-402e-87fa-102a8a051f0f +2024-07-30 15:26:48.157151 2024-07-30 15:26:48.157182 cognd 976009048 R rec a070d940-bf4b-4213-911f-9a9616728333 +2024-07-30 15:26:48.237648 2024-07-30 15:26:48.237658 cognd 975670824 R rec 61ed2fc5-ce8d-4cdd-8deb-156662e72992 +2024-07-30 15:26:48.342383 2024-07-30 15:26:48.342425 cognd 975199056 R rec 17f694d9-fe93-40d2-9516-87d41aa32bfe +2024-07-30 15:26:48.430348 2024-07-30 15:26:48.430359 cognd 97466068X R rec de6d5a71-a8c9-4b18-aeaa-739f03a3560b +2024-07-30 15:26:48.515498 2024-07-30 15:26:48.51551 cognd 974476560 R rec b8942dab-4322-4835-ae43-fcb7a3355ead +2024-07-30 15:26:48.600101 2024-07-30 15:26:48.600111 cognd 974160032 R rec f5b52d70-fcab-420f-8c35-6d6088315f25 +2024-07-30 15:26:48.674346 2024-07-30 15:26:48.674357 cognd 97397687X R rec 3ea6f0b2-ca6d-4e07-9ae9-85a29737c070 +2024-07-30 15:26:48.749633 2024-07-30 15:26:48.749645 cognd 972616705 R rec 6bfdea33-f83e-4e13-8f89-c30d535a1b37 +2024-07-30 15:26:48.831869 2024-07-30 15:26:48.83188 cognd 972391010 R rec 78e9cc23-28a4-410d-b562-1193f1544504 +2024-07-30 15:26:49.106231 2024-07-30 15:26:49.106243 cognd 971044899 R rec 8252a9c9-b887-4844-9c75-4c9e974ed33a +2024-07-30 15:26:49.395292 2024-07-30 15:26:49.395304 cognd 970758065 R rec 31716369-64ba-4339-acdf-9e47f1aef0e9 +2024-07-30 15:26:49.48321 2024-07-30 15:26:49.483224 cognd 970679645 R rec 74c3907a-704a-4c4a-b63c-3116bb8cc72a +2024-07-30 15:26:49.785844 2024-07-30 15:26:49.78586 cognd 970190417 R rec 58dd4f33-2c7c-46ae-be5e-e7108bc8d5e7 +2024-07-30 15:26:49.903644 2024-07-30 15:26:49.903654 cognd 969678363 R rec c942a667-8f4d-4d8d-8be4-0a8c1c28583d +2024-07-30 15:26:49.99291 2024-07-30 15:26:49.992925 cognd 969131240 R rec 60330c73-c8f0-43f2-b01f-4d0199301321 +2024-07-30 15:26:50.095997 2024-07-30 15:26:50.096009 cognd 968663664 R rec 18a4ae49-44f5-4c28-a0bc-5bb4baffc220 +2024-07-30 15:26:50.183697 2024-07-30 15:26:50.183712 cognd 968634737 R rec 9d2bda90-46e4-42f0-962b-a63851f3d9b2 +2024-07-30 15:26:50.284842 2024-07-30 15:26:50.284855 cognd 968438121 R rec 19c44309-67f5-4d22-9731-25ba489a3bb2 +2024-07-30 15:26:50.37432 2024-07-30 15:26:50.374335 cognd 968387705 R rec de5e9011-aea9-4712-b87d-51709c2d8d6c +2024-07-30 15:26:50.461562 2024-07-30 15:26:50.461568 cognd 968377955 R rec 591cb70b-3593-4c94-9596-b3dd64ae49b8 +2024-07-30 15:26:50.512881 2024-07-30 15:26:50.512891 cognd 968360009 R rec 5cfb729b-ce3d-4fd7-bb69-12dbeccaffc6 +2024-07-30 15:26:50.587549 2024-07-30 15:26:50.587563 cognd 96832780X R rec b591bafb-fc9f-4e60-ac5f-bbb1df91c176 +2024-07-30 15:26:50.689643 2024-07-30 15:26:50.689659 cognd 967876710 R rec 543afad2-f3b3-4b9d-8b4b-67a967f988e9 +2024-07-30 15:26:50.780009 2024-07-30 15:26:50.78002 cognd 967734657 R rec 0011a45d-7378-432e-b12c-a54de22faf73 +2024-07-30 15:26:50.867006 2024-07-30 15:26:50.867016 cognd 967659523 R rec aa75cd9a-0935-47ef-ad3b-b37a69330e4f +2024-07-30 15:26:50.971168 2024-07-30 15:26:50.971178 cognd 967617987 R rec 0fe5b1c4-3d0a-4cda-9fd9-16fc259fbb4f +2024-07-30 15:26:51.064594 2024-07-30 15:26:51.064609 cognd 967326133 R rec 65298705-8e1b-49a7-b637-9f04b71f8994 +2024-07-30 15:26:51.152966 2024-07-30 15:26:51.152979 cognd 96717757X R rec 07f9767d-3c94-4b7f-b0cc-d1106d873bb5 +2024-07-30 15:26:51.262599 2024-07-30 15:26:51.262608 cognd 967169399 R rec 7175a0a6-8e3e-4677-a9f5-b41a1f48755d +2024-07-30 15:26:51.352107 2024-07-30 15:26:51.352122 cognd 967155223 R rec c9c9a724-1e1a-485d-8d4b-726427615207 +2024-07-30 15:26:51.446259 2024-07-30 15:26:51.446272 cognd 966649052 R rec 7696f9a5-a05b-49d9-a5b1-83a8bc1122eb +2024-07-30 15:26:51.51557 2024-07-30 15:26:51.515581 cognd 966536304 R rec e0455554-b2c2-4234-9e55-c1e0248e2258 +2024-07-30 15:26:51.590339 2024-07-30 15:26:51.590352 cognd 965652785 R rec d707c632-9154-4cd6-94e9-598efb8d4765 +2024-07-30 15:26:51.661103 2024-07-30 15:26:51.661114 cognd 965576825 R rec f9909759-5701-4f00-98d7-0b7e3036a2f5 +2024-07-30 15:26:51.736442 2024-07-30 15:26:51.736511 cognd 965369846 R rec bd4fa5c7-6301-4e89-92a2-e88ab0e462de +2024-07-30 15:26:51.806667 2024-07-30 15:26:51.806677 cognd 965367924 R rec 5f75bb15-e536-46b5-9138-53c8c17e1f6d +2024-07-30 15:26:51.874882 2024-07-30 15:26:51.874893 cognd 965252973 R rec 76bed7e9-7e47-4811-842c-91ddc5e8047c +2024-07-30 15:26:51.94589 2024-07-30 15:26:51.945902 cognd 964979683 R rec a0da5d05-88c6-448f-a400-738c3a61ecb7 +2024-07-30 15:26:52.022634 2024-07-30 15:26:52.022646 cognd 964866862 R rec 81fad9e9-9b73-4a99-ad4f-83dcab71cd56 +2024-07-30 15:26:52.099055 2024-07-30 15:26:52.099067 cognd 964848651 R rec a0bef7e2-e1e4-48e3-a645-d260f4d47320 +2024-07-30 15:26:52.182675 2024-07-30 15:26:52.182687 cognd 96473222X R rec d89be3f8-c12d-4c00-99e2-e736492074a8 +2024-07-30 15:26:52.25836 2024-07-30 15:26:52.258372 cognd 964720272 R rec cc50be18-64dc-465e-84f8-0e5a58ce58ce +2024-07-30 15:26:52.347598 2024-07-30 15:26:52.34761 cognd 964519194 R rec 1842c896-9807-49d1-ab80-ce1871f06742 +2024-07-30 15:26:52.429956 2024-07-30 15:26:52.429967 cognd 964421062 R rec aa2129bb-c92c-4289-a14e-d1bd217bc436 +2024-07-30 15:26:52.508097 2024-07-30 15:26:52.508107 cognd 964339676 R rec 90abece7-f384-4502-bc95-4c46483a7061 +2024-07-30 15:26:52.571671 2024-07-30 15:26:52.571682 cognd 964334666 R rec 696fa9a3-5cb8-4c18-83f0-b8246f075518 +2024-07-30 15:26:52.636066 2024-07-30 15:26:52.636078 cognd 964248026 R rec 4997691e-3754-4caa-a7b6-b1724f18a226 +2024-07-30 15:26:52.710102 2024-07-30 15:26:52.710113 cognd 964078880 R rec ce8f1bb0-0d45-4f4e-a048-9189a3290884 +2024-07-30 15:26:52.79055 2024-07-30 15:26:52.790561 cognd 963708708 R rec c48ae50a-74dc-4b94-8337-b34f19d4da9b +2024-07-30 15:26:52.876009 2024-07-30 15:26:52.876023 cognd 963707906 R rec 019eb8aa-7f68-4f29-afef-c5348ac8f46d +2024-07-30 15:26:52.969388 2024-07-30 15:26:52.969399 cognd 963707884 R rec 68896165-11d4-4946-bb53-0302a7564e93 +2024-07-30 15:26:53.051741 2024-07-30 15:26:53.051752 cognd 963495046 R rec 05cc33b4-5b57-4d56-a2d6-0e0e2562c38a +2024-07-30 15:26:53.140652 2024-07-30 15:26:53.140664 cognd 963483927 R rec 19867ce3-a738-49b3-b796-94463d25271c +2024-07-30 15:26:53.231609 2024-07-30 15:26:53.231623 cognd 96317066X R rec 7f125981-a8e3-4aef-8a39-5f99cb061c64 +2024-07-30 15:26:53.320607 2024-07-30 15:26:53.320621 cognd 963127608 R rec c9dfae58-f8fb-48e9-a4a0-94f9e713717a +2024-07-30 15:26:53.404856 2024-07-30 15:26:53.404872 cognd 963125125 R rec 76936aab-5538-4b85-b40e-652499954dd2 +2024-07-30 15:26:53.493373 2024-07-30 15:26:53.493387 cognd 963005553 R rec e8cea216-a3ea-4210-9f27-9ec5f7df2a08 +2024-07-30 15:26:53.568844 2024-07-30 15:26:53.568855 cognd 962883026 R rec e0734273-a13e-4478-aaf2-cbad0166666c +2024-07-30 15:26:53.638983 2024-07-30 15:26:53.638996 cognd 962846104 R rec a30694fa-f449-4e77-8252-0ce7f5beecf9 +2024-07-30 15:26:53.725227 2024-07-30 15:26:53.725244 cognd 962794015 R rec 23ab9302-d6d5-48d5-9998-ea6c3ec0ab39 +2024-07-30 15:26:53.813181 2024-07-30 15:26:53.813305 cognd 962681539 R rec 63bac490-2f17-424e-a75f-a6c003225542 +2024-07-30 15:26:53.898208 2024-07-30 15:26:53.89822 cognd 962256978 R rec 13bff0b0-438b-4bbb-ae0e-c93ecd73f680 +2024-07-30 15:26:53.974768 2024-07-30 15:26:53.974778 cognd 962005959 R rec f5736997-8b3b-4f46-898c-4454d0723ae1 +2024-07-30 15:26:54.049343 2024-07-30 15:26:54.049354 cognd 961909021 R rec ee7af1d6-2db8-48cc-8782-ef8537dc18ce +2024-07-30 15:26:54.120613 2024-07-30 15:26:54.120623 cognd 961468319 R rec 97a87a38-0166-44e5-bfcc-0d86b380fe04 +2024-07-30 15:26:54.197624 2024-07-30 15:26:54.197635 cognd 960936785 R rec 9e70b634-6424-4ddc-9aae-02d4c495473b +2024-07-30 15:26:54.28141 2024-07-30 15:26:54.281421 cognd 960733108 R rec 7c4b833c-6ec8-438d-b0c3-8bc80d278735 +2024-07-30 15:26:54.360705 2024-07-30 15:26:54.360717 cognd 960658491 R rec 345e8bcf-b623-4a7b-beb0-5f7f4c4eec15 +2024-07-30 15:26:54.449349 2024-07-30 15:26:54.449361 cognd 960161872 R rec f0872763-d54c-41c7-a298-53b23bf301d7 +2024-07-30 15:26:54.556785 2024-07-30 15:26:54.55679 cognd 959965831 R rec a1c9ecf8-c0d5-4a10-894c-b771fd4e1211 +2024-07-30 15:26:54.64973 2024-07-30 15:26:54.64974 cognd 959960775 R rec 3a9e552a-ccfb-4c6d-952f-40f088832abf +2024-07-30 15:26:54.718585 2024-07-30 15:26:54.7186 cognd 959893202 R rec 838db970-2a0c-41e3-a0bb-3dfb7e470579 +2024-07-30 15:26:54.816269 2024-07-30 15:26:54.816281 cognd 959807241 R rec 333798ec-0d84-4f1c-a059-113af88daa3c +2024-07-30 15:26:54.905184 2024-07-30 15:26:54.905195 cognd 959710248 R rec 72dcf807-4be1-4071-9e62-fb5e835858c1 +2024-07-30 15:26:54.979387 2024-07-30 15:26:54.979399 cognd 959143459 R rec 53214d8a-f80e-465e-b96f-e701b0639951 +2024-07-30 15:26:55.057667 2024-07-30 15:26:55.057678 cognd 958745404 R rec e9203507-6fd0-4ad9-83ca-7d6d5edd0108 +2024-07-30 15:26:55.147235 2024-07-30 15:26:55.147247 cognd 958745374 R rec 355e5610-eba3-409c-be2f-8a83032a327a +2024-07-30 15:26:55.230602 2024-07-30 15:26:55.230613 cognd 958745307 R rec 8fb1a4a1-0c87-421b-8fc1-a1c312b44e94 +2024-07-30 15:26:55.322467 2024-07-30 15:26:55.322472 cognd 958577447 R rec a1e168d6-cfb8-428b-8d87-a9b18712e188 +2024-07-30 15:26:55.387798 2024-07-30 15:26:55.387807 cognd 958508402 R rec 9e366a8c-f558-46f0-b3f4-4373633882f8 +2024-07-30 15:26:55.459315 2024-07-30 15:26:55.459326 cognd 958195455 R rec a0fe46ae-b09f-4972-ae23-4eb6113e25dc +2024-07-30 15:26:55.535657 2024-07-30 15:26:55.535669 cognd 958121966 R rec e0dd3cc1-d345-429c-b8d8-9c76050b6e42 +2024-07-30 15:26:55.614209 2024-07-30 15:26:55.614213 cognd 957564554 R rec f6d6f87b-a055-49ca-93d1-3f0d459bc54f +2024-07-30 15:26:55.679473 2024-07-30 15:26:55.679485 cognd 957193599 R rec e8b86e36-6d6f-456d-9e2d-b8ffb09163d2 +2024-07-30 15:26:55.759999 2024-07-30 15:26:55.760014 cognd 957133235 R rec c7617397-1507-4c5c-9159-6c89fd3d4068 +2024-07-30 15:26:55.838495 2024-07-30 15:26:55.838506 cognd 956836976 R rec f58736d0-49e7-411a-bf28-f8e6ca12662f +2024-07-30 15:26:55.922257 2024-07-30 15:26:55.922273 cognd 956033679 R rec 2b34a388-0dfe-4e98-9541-454d9e28161b +2024-07-30 15:26:56.018431 2024-07-30 15:26:56.018443 cognd 955952638 R rec 28d54543-4fe4-4160-8182-dd6fdeba17cf +2024-07-30 15:26:56.098001 2024-07-30 15:26:56.098013 cognd 955845483 R rec 5c781995-b971-4c43-8b2a-a330bcfc1952 +2024-07-30 15:26:56.183551 2024-07-30 15:26:56.183563 cognd 955777844 R rec 0ac7ae51-8104-428e-ac6b-f99c4103ea66 +2024-07-30 15:26:56.255117 2024-07-30 15:26:56.255128 cognd 955671906 R rec 30266837-d2c1-4487-b9a8-41a7f783a84a +2024-07-30 15:26:56.325498 2024-07-30 15:26:56.32551 cognd 955633087 R rec 73cc00f1-b61f-46dc-83d7-0bc38794b4f0 +2024-07-30 15:26:56.418096 2024-07-30 15:26:56.418107 cognd 955631963 R rec 1229089a-cf03-4531-93f5-4b4093fd3399 +2024-07-30 15:26:56.504186 2024-07-30 15:26:56.504197 cognd 955522552 R rec 6d9ec4a5-161b-4d01-afd9-f41171ce1eea +2024-07-30 15:26:56.576761 2024-07-30 15:26:56.576772 cognd 955510392 R rec 4e2264e8-cb0a-4d8c-9c27-0e3fede06fe9 +2024-07-30 15:26:56.648215 2024-07-30 15:26:56.64822 cognd 955497205 R rec 67e90977-631a-4382-aaf4-889c1f9c3065 +2024-07-30 15:26:56.707577 2024-07-30 15:26:56.707588 cognd 955324300 R rec 4d709192-4cb6-4f10-b7c5-b3d500c5ad93 +2024-07-30 15:26:56.780826 2024-07-30 15:26:56.780836 cognd 955297966 R rec 2199f94b-3167-4da5-9166-8220660d7371 +2024-07-30 15:26:56.853616 2024-07-30 15:26:56.853627 cognd 955286999 R rec 9bcd1253-2e29-4220-a732-37da9971ffd8 +2024-07-30 15:26:56.932524 2024-07-30 15:26:56.932535 cognd 955249929 R rec dfb93503-310b-415c-87c4-7e802620cd0f +2024-07-30 15:26:57.011252 2024-07-30 15:26:57.011261 cognd 955181178 R rec a31017a1-3645-4557-91c6-946176d5f734 +2024-07-30 15:26:57.091479 2024-07-30 15:26:57.091489 cognd 955150507 R rec 662c2cc9-6648-466b-8d45-b0673f41e072 +2024-07-30 15:26:57.167625 2024-07-30 15:26:57.16764 cognd 954752554 R rec 918ff78e-381f-42ce-9077-cb343c9d1dbb +2024-07-30 15:26:57.248603 2024-07-30 15:26:57.248617 cognd 95471752X R rec efa0beb5-fc06-4af9-bc4e-6bdc2910c559 +2024-07-30 15:26:57.345836 2024-07-30 15:26:57.345851 cognd 95469483X R rec 5360acb3-3f15-489a-84dc-b6669cceff86 +2024-07-30 15:26:57.437957 2024-07-30 15:26:57.437972 cognd 954658248 R rec b92d8b32-0585-4d5d-9c6c-f6c2a79f7464 +2024-07-30 15:26:57.512175 2024-07-30 15:26:57.512186 cognd 95439836X R rec 41184b64-6335-4617-9c5f-19f1180f149c +2024-07-30 15:26:57.575901 2024-07-30 15:26:57.575912 cognd 954299973 R rec 9a2f2b83-f4dc-4682-8143-32c6ca929ea4 +2024-07-30 15:26:57.643708 2024-07-30 15:26:57.643718 cognd 954068572 R rec 628c1dcb-3cf3-4169-8f59-5498a960d8cc +2024-07-30 15:26:57.710469 2024-07-30 15:26:57.710479 cognd 95406853X R rec 7509ca1f-8041-4bb9-92f2-3d24ed8c29b9 +2024-07-30 15:26:57.80136 2024-07-30 15:26:57.801374 cognd 954021185 R rec 27aafd85-a6a0-4c55-b59f-13edd09e8583 +2024-07-30 15:26:57.879539 2024-07-30 15:26:57.87955 cognd 953936503 R rec 1f40ae76-8035-4924-b67c-0af86946e993 +2024-07-30 15:26:57.953417 2024-07-30 15:26:57.953427 cognd 953467732 R rec 222d896b-67cd-4a20-a81e-8868f3d93abc +2024-07-30 15:26:58.017633 2024-07-30 15:26:58.017643 cognd 953463176 R rec 3dd088dc-bea9-4cc6-9496-6df9043eaa17 +2024-07-30 15:26:58.088314 2024-07-30 15:26:58.088325 cognd 953354431 R rec ec30a0ab-d052-4c64-aa41-cb5feb2780dd +2024-07-30 15:26:58.155904 2024-07-30 15:26:58.155916 cognd 95324590X R rec 23c64af3-9904-4765-bbbc-bc74655bed64 +2024-07-30 15:26:58.225453 2024-07-30 15:26:58.225465 cognd 953019209 R rec 42986dc2-a099-4fab-9de6-d16c9896db50 +2024-07-30 15:26:58.312815 2024-07-30 15:26:58.312825 cognd 953011992 R rec 6d9ec97e-d71e-4e85-9cbf-b6397a991d3a +2024-07-30 15:26:58.406022 2024-07-30 15:26:58.406037 cognd 952966336 R rec f38ac348-00f0-4444-8344-60f30caff973 +2024-07-30 15:26:58.486706 2024-07-30 15:26:58.486721 cognd 952945991 R rec 019819f6-9ece-4e67-b5a8-099e2cbf9e83 +2024-07-30 15:26:58.576335 2024-07-30 15:26:58.576348 cognd 952945819 R rec 44a2b171-a913-4477-8d5d-6b528c1ef4a9 +2024-07-30 15:26:58.678281 2024-07-30 15:26:58.678294 cognd 952794357 R rec c2547612-e843-4259-93a8-64c9f203bb78 +2024-07-30 15:26:58.733787 2024-07-30 15:26:58.733798 cognd 952319888 R rec aa1307d5-0fa1-4cd5-ada5-4605c195894f +2024-07-30 15:26:58.797352 2024-07-30 15:26:58.797364 cognd 952090163 R rec 5cf4eb9c-80d8-4f06-abf8-a385384bf2d5 +2024-07-30 15:26:58.929621 2024-07-30 15:26:58.929632 cognd 952082098 R rec d7322da5-6dfb-42dc-91f4-2849902327fe +2024-07-30 15:26:59.160252 2024-07-30 15:26:59.160263 cognd 951939440 R rec 8bf63f0e-acb2-4720-99cf-155c6ca966eb +2024-07-30 15:26:59.327179 2024-07-30 15:26:59.327188 cognd 95171337X R rec f9ffd410-d2b5-4329-964e-084336f64885 +2024-07-30 15:26:59.405547 2024-07-30 15:26:59.405556 cognd 951567241 R rec e0a615c9-26bc-4a8c-a075-f7ee51c5af06 +2024-07-30 15:26:59.492463 2024-07-30 15:26:59.492479 cognd 951452940 R rec fb653521-6a43-4418-a0be-3891b36fe842 +2024-07-30 15:26:59.588441 2024-07-30 15:26:59.588456 cognd 95136653X R rec 2bfbadc6-cbfc-4c73-8883-eae9dfd39b05 +2024-07-30 15:26:59.686226 2024-07-30 15:26:59.686237 cognd 951151541 R rec b537dbbd-c3ff-4a21-869d-c1380104ec23 +2024-07-30 15:26:59.756544 2024-07-30 15:26:59.756549 cognd 951040960 R rec 6cc743c9-54d0-479d-931a-6b5662f08518 +2024-07-30 15:26:59.823108 2024-07-30 15:26:59.823123 cognd 950872555 R rec 363966c6-b5e2-44ed-8fa4-4baffede10da +2024-07-30 15:26:59.908275 2024-07-30 15:26:59.908289 cognd 95058410X R rec 7eb01f58-b9a0-4548-8d6b-7956f0587749 +2024-07-30 15:26:59.997244 2024-07-30 15:26:59.997257 cognd 950461083 R rec dbacf287-699a-4cf7-ae5e-b2f5cdd5033d +2024-07-30 15:27:00.076834 2024-07-30 15:27:00.076849 cognd 950453544 R rec f7724c6d-0188-4deb-b3a6-b230e6b636fe +2024-07-30 15:27:00.162512 2024-07-30 15:27:00.162526 cognd 950378682 R rec 6e3b77a8-9ce4-44dd-9ea6-f4cc6dda455b +2024-07-30 15:27:00.249265 2024-07-30 15:27:00.24928 cognd 950378658 R rec 05004b84-e003-4e2d-b551-c5bdef8470ed +2024-07-30 15:27:00.34351 2024-07-30 15:27:00.343521 cognd 950280984 R rec 5398414e-0bba-4491-8f87-c41514935ff5 +2024-07-30 15:27:00.439206 2024-07-30 15:27:00.439216 cognd 950268593 R rec 474f8fc0-5e65-4cc0-bea1-f620bdf25b96 +2024-07-30 15:27:00.52595 2024-07-30 15:27:00.525966 cognd 94996591X R rec a72f22dd-2c95-45c1-8a3a-e73163bf2e68 +2024-07-30 15:27:00.614397 2024-07-30 15:27:00.614412 cognd 949736864 R rec 7ad0d3d8-3916-4f07-995f-e5033f4273a5 +2024-07-30 15:27:00.697776 2024-07-30 15:27:00.697787 cognd 949582964 R rec 76c7dd64-40a2-4f2d-8dec-c37880c85d0e +2024-07-30 15:27:00.765632 2024-07-30 15:27:00.765637 cognd 94925584X R rec 3518ab44-a57a-4f63-be08-de90e0d1e2b5 +2024-07-30 15:27:00.826334 2024-07-30 15:27:00.826345 cognd 949178594 R rec 1f13db57-d1d9-4062-a141-54b92267cbb2 +2024-07-30 15:27:00.887364 2024-07-30 15:27:00.887374 cognd 948985429 R rec 0d43b2f8-2e0d-4440-af4a-82edb086a80a +2024-07-30 15:27:00.950009 2024-07-30 15:27:00.950019 cognd 948861975 R rec d37257d0-29ff-4767-b23d-36ed07c6cb87 +2024-07-30 15:27:01.021332 2024-07-30 15:27:01.021343 cognd 948734418 R rec 92453d89-4180-4981-86ce-ecc8f4ba3af3 +2024-07-30 15:27:01.105209 2024-07-30 15:27:01.10522 cognd 948616792 R rec 0834f2f7-efdf-4d36-8d8a-611cc83c679a +2024-07-30 15:27:01.183745 2024-07-30 15:27:01.183759 cognd 948581387 R rec 1313b738-341f-47ea-b30f-853d8d2fa7f7 +2024-07-30 15:27:01.269266 2024-07-30 15:27:01.269282 cognd 948367032 R rec d3d9a996-b4ab-4308-9512-a2864fbb5176 +2024-07-30 15:27:01.368136 2024-07-30 15:27:01.368149 cognd 948358742 R rec aa6a7922-2e24-4573-9170-103e89f3e5d3 +2024-07-30 15:27:01.462012 2024-07-30 15:27:01.462027 cognd 94818387X R rec f38e4185-4eb2-4e20-9c18-918d6caecc2b +2024-07-30 15:27:01.553444 2024-07-30 15:27:01.55346 cognd 948059028 R rec 7bc5ed27-b3e3-4775-9c96-7fc136c2de71 +2024-07-30 15:27:01.635475 2024-07-30 15:27:01.635486 cognd 948023465 R rec afcd3f0a-6289-4aa2-9b7a-3a7fba4b0290 +2024-07-30 15:27:01.703423 2024-07-30 15:27:01.703433 cognd 947999043 R rec 56c4f273-e2f9-468d-b921-d50cd1d71725 +2024-07-30 15:27:01.781896 2024-07-30 15:27:01.781907 cognd 947807691 R rec df956444-f9b5-414c-aa25-f7a1d71962e5 +2024-07-30 15:27:01.833698 2024-07-30 15:27:01.833708 cognd 947667040 R rec 5bd554c9-1e93-4cb3-a7b3-a4a6e3064e08 +2024-07-30 15:27:01.902908 2024-07-30 15:27:01.902918 cognd 947636676 R rec c0022a51-2944-45a2-a80c-dc13e8adca69 +2024-07-30 15:27:01.988174 2024-07-30 15:27:01.988186 cognd 947568441 R rec f0d4c6dc-8257-4d3f-8090-6e95ab996630 +2024-07-30 15:27:02.074228 2024-07-30 15:27:02.074242 cognd 947543112 R rec ff19a41c-a72e-4527-ae16-2ea6ccc985a1 +2024-07-30 15:27:02.157716 2024-07-30 15:27:02.157732 cognd 947466223 R rec 5ecb6ce7-e9a9-4101-9deb-024e1d30643b +2024-07-30 15:27:02.233417 2024-07-30 15:27:02.233426 cognd 947465928 R rec d6008a09-5014-4670-805a-ad6fea60cd31 +2024-07-30 15:27:02.300886 2024-07-30 15:27:02.300895 cognd 947415874 R rec 025cfc2f-db89-4b89-b311-72801d708599 +2024-07-30 15:27:02.371551 2024-07-30 15:27:02.371561 cognd 947397213 R rec 63738c92-2158-4a3c-a91c-36e86f826c30 +2024-07-30 15:27:02.438298 2024-07-30 15:27:02.438308 cognd 947389229 R rec 48bf1d45-3ff8-4ed7-a9c5-b308862fa557 +2024-07-30 15:27:02.50159 2024-07-30 15:27:02.501601 cognd 94736093X R rec 67065d03-6b82-43be-a2fa-4f27e8ee7b13 +2024-07-30 15:27:02.568018 2024-07-30 15:27:02.568029 cognd 947337555 R rec 3f643ab8-e245-44dd-adb4-1ebd88264515 +2024-07-30 15:27:02.636439 2024-07-30 15:27:02.63645 cognd 947167293 R rec 5dbfd98f-65a5-428f-8a10-a015d0881a89 +2024-07-30 15:27:02.707149 2024-07-30 15:27:02.707161 cognd 947085017 R rec 4ac9b3bb-7afa-4a96-a421-68d864287dd6 +2024-07-30 15:27:02.786468 2024-07-30 15:27:02.786479 cognd 947015388 R rec aee2476c-1634-4ecf-8ce9-67178919b2f2 +2024-07-30 15:27:02.845715 2024-07-30 15:27:02.84572 cognd 946998051 R rec 3c8c7ca6-8967-4cb9-aafb-e674c670c66c +2024-07-30 15:27:02.904219 2024-07-30 15:27:02.904229 cognd 946944210 R rec 293de3db-3351-4438-ae18-51423163f485 +2024-07-30 15:27:02.974474 2024-07-30 15:27:02.974484 cognd 946868093 R rec 19719c0e-9be2-40b4-ac8b-125bf7a41756 +2024-07-30 15:27:03.05255 2024-07-30 15:27:03.052561 cognd 946792631 R rec 4042f369-88fd-4a70-8ce2-ad522dbf7576 +2024-07-30 15:27:03.129873 2024-07-30 15:27:03.129884 cognd 946776164 R rec 8dd7119e-06f2-43ae-91c1-35a42c7dd154 +2024-07-30 15:27:03.20121 2024-07-30 15:27:03.20122 cognd 946530629 R rec 5e4efe22-bde0-45bf-a16c-844f4caac944 +2024-07-30 15:27:03.271922 2024-07-30 15:27:03.271932 cognd 94646085X R rec c48d9b29-7a80-4b4b-9e0d-9f98c9796d77 +2024-07-30 15:27:03.348243 2024-07-30 15:27:03.348256 cognd 946062706 R rec 60073d46-3be3-4e97-9c10-6719b8441039 +2024-07-30 15:27:03.415535 2024-07-30 15:27:03.415546 cognd 946022895 R rec 14ab2ae7-eba1-41b5-9c30-d2d5ffd8eee5 +2024-07-30 15:27:03.488238 2024-07-30 15:27:03.488249 cognd 94601888X R rec d2084e8e-f3a7-4b9f-adf2-3a3be57230d8 +2024-07-30 15:27:03.559298 2024-07-30 15:27:03.559309 cognd 945863837 R rec 1f318fa4-dc9b-4dbe-b337-b45490e6d17d +2024-07-30 15:27:03.639017 2024-07-30 15:27:03.639032 cognd 944522297 R rec 930eb584-30ab-4303-ac50-f7ba39c7c9f7 +2024-07-30 15:27:03.721844 2024-07-30 15:27:03.721855 cognd 944502172 R rec 07fe75fd-7517-4cc0-a146-e4bcb009e6aa +2024-07-30 15:27:03.822613 2024-07-30 15:27:03.822625 cognd 944484611 R rec 5dd14622-2298-49f6-b886-8946b1d72a75 +2024-07-30 15:27:03.903707 2024-07-30 15:27:03.903719 cognd 94430396X R rec 1f6fc192-b852-41e7-a011-84e080d821e4 +2024-07-30 15:27:03.975912 2024-07-30 15:27:03.975923 cognd 943889170 R rec fcbe8560-d79e-420e-90c9-1dda357b4091 +2024-07-30 15:27:04.051515 2024-07-30 15:27:04.051525 cognd 943836476 R rec ae294791-5ebf-4f60-97c7-e6db0eed297b +2024-07-30 15:27:04.139238 2024-07-30 15:27:04.139248 cognd 943625394 R rec 2d7400b0-aff0-423c-8a54-8f3a1c95d929 +2024-07-30 15:27:04.215434 2024-07-30 15:27:04.215446 cognd 943440017 R rec 5e985415-7c9f-4f12-b828-fc1dc51b2721 +2024-07-30 15:27:04.28415 2024-07-30 15:27:04.284161 cognd 94337426X R rec 52cd3be9-ae2c-4e23-920b-8ba8896d4863 +2024-07-30 15:27:04.354778 2024-07-30 15:27:04.35479 cognd 943258170 R rec f6f220fe-fac6-4fd2-bf7b-6fd8a7cc7d57 +2024-07-30 15:27:04.439003 2024-07-30 15:27:04.439018 cognd 943209374 R rec 742e6b65-36c1-4a1b-820d-e5adea4a42db +2024-07-30 15:27:04.514301 2024-07-30 15:27:04.514313 cognd 942627644 R rec f2bd991f-37fe-48f5-90bc-b6212973704a +2024-07-30 15:27:04.587561 2024-07-30 15:27:04.587573 cognd 942531639 R rec 35474641-8763-45c9-8c5d-28c84e78879a +2024-07-30 15:27:04.669391 2024-07-30 15:27:04.669402 cognd 942348036 R rec 9a0216e2-6654-45bf-943c-123f7c39446d +2024-07-30 15:27:04.74911 2024-07-30 15:27:04.749122 cognd 942346300 R rec 69c616ab-485a-4634-9c64-f85824a08ae9 +2024-07-30 15:27:04.834972 2024-07-30 15:27:04.834983 cognd 942142845 R rec 57200ff2-9223-49b6-9940-190dbe1398da +2024-07-30 15:27:04.899263 2024-07-30 15:27:04.899268 cognd 94203712X R rec ca029d40-79b1-446d-b62e-31eb33fc356b +2024-07-30 15:27:04.974432 2024-07-30 15:27:04.974443 cognd 941869121 R rec 829eee81-c629-43d1-97bd-680a1d2da8f1 +2024-07-30 15:27:05.051603 2024-07-30 15:27:05.051615 cognd 941589021 R rec aa5245a4-5a31-42f7-b76a-ebbf78f303e9 +2024-07-30 15:27:05.13506 2024-07-30 15:27:05.13507 cognd 941532704 R rec 3078cec8-16c0-46fc-badb-e825904991dd +2024-07-30 15:27:05.219439 2024-07-30 15:27:05.219449 cognd 941495256 R rec c1e1aada-c48f-4730-a7fc-b95d536ce146 +2024-07-30 15:27:05.300618 2024-07-30 15:27:05.300636 cognd 941482774 R rec 466721b4-cf64-417d-9126-c83f84349bed +2024-07-30 15:27:05.392444 2024-07-30 15:27:05.392459 cognd 941366138 R rec a8173065-6e46-49b1-aebe-a9802467fa13 +2024-07-30 15:27:05.487996 2024-07-30 15:27:05.488009 cognd 941365050 R rec bf279367-b040-4b41-8fa4-09b2530eebbd +2024-07-30 15:27:05.57938 2024-07-30 15:27:05.579392 cognd 941158748 R rec c9359495-ddca-46dc-b4ba-99348c98886e +2024-07-30 15:27:05.654542 2024-07-30 15:27:05.654552 cognd 941131572 R rec 73fc24f2-19c4-48d8-9a8d-88fee3037c98 +2024-07-30 15:27:05.73313 2024-07-30 15:27:05.733141 cognd 940921588 R rec ada81d7c-ea7e-46f6-9fcb-522571e45b98 +2024-07-30 15:27:05.800387 2024-07-30 15:27:05.800396 cognd 940807904 R rec 51e7ccf1-48a9-4a63-81cb-69a9c99be157 +2024-07-30 15:27:05.881357 2024-07-30 15:27:05.881368 cognd 940788187 R rec 9cd0558a-d76a-4a82-a18e-da493420dc63 +2024-07-30 15:27:05.93782 2024-07-30 15:27:05.93783 cognd 940762048 R rec 80367c8f-3087-4c73-adf1-87641516f4f3 +2024-07-30 15:27:06.012147 2024-07-30 15:27:06.012158 cognd 940758776 R rec e0f8b44a-4de2-4e40-bddf-e91dce3e9992 +2024-07-30 15:27:06.086336 2024-07-30 15:27:06.086347 cognd 940755459 R rec 21633c68-ef14-4059-bfac-23941e4e5ec3 +2024-07-30 15:27:06.160881 2024-07-30 15:27:06.160891 cognd 94074449X R rec 82f85593-d076-40b3-9a82-ed0a6de00bc7 +2024-07-30 15:27:06.246619 2024-07-30 15:27:06.24663 cognd 940604833 R rec a3a0955b-407f-4126-995d-3365aeb6f974 +2024-07-30 15:27:06.341841 2024-07-30 15:27:06.341852 cognd 940540959 R rec b61caae4-ecd4-4941-8ce5-9d1d6a1138c0 +2024-07-30 15:27:06.428132 2024-07-30 15:27:06.428147 cognd 940535912 R rec 4ee5cd2f-0635-41c9-9ee0-17da2d436de8 +2024-07-30 15:27:06.51787 2024-07-30 15:27:06.517885 cognd 94052113X R rec f6ae4153-48ba-42d2-9c6b-cfaf32ec069f +2024-07-30 15:27:06.596622 2024-07-30 15:27:06.596631 cognd 940125897 R rec 656cd784-ccdc-45e3-872f-5a25005a5208 +2024-07-30 15:27:06.659797 2024-07-30 15:27:06.659806 cognd 940111187 R rec 57a5d28a-b74d-42e3-8af8-250eedcf9e47 +2024-07-30 15:27:06.725477 2024-07-30 15:27:06.725488 cognd 940085798 R rec d3b55f10-dff3-4661-af19-861373601ed4 +2024-07-30 15:27:06.792781 2024-07-30 15:27:06.792791 cognd 940049570 R rec 3af1e565-ca92-4338-96e8-1cc97317b832 +2024-07-30 15:27:06.855482 2024-07-30 15:27:06.855492 cognd 940035731 R rec 96fca5eb-19e2-40bc-bc90-338d40dbc9a6 +2024-07-30 15:27:06.924334 2024-07-30 15:27:06.924345 cognd 199279101 R rec 4f4ef235-a6a9-4a17-bcea-31bb4ab181a8 +2024-07-30 15:27:06.974309 2024-07-30 15:27:06.974318 cognd 199254435 R rec ddfdf775-2b9b-4003-a3a8-2d01fa3a55e7 +2024-07-30 15:27:07.046893 2024-07-30 15:27:07.046906 cognd 199249903 R rec f4d905d5-49fc-45ac-b7d0-bb28439bec22 +2024-07-30 15:27:07.118295 2024-07-30 15:27:07.118306 cognd 199099952 R rec 4780b10a-4162-494f-b02d-c0bc09f25868 +2024-07-30 15:27:07.19509 2024-07-30 15:27:07.195101 cognd 130755087 R rec 498d76cb-640f-4860-bd76-62f35c131494 +2024-07-30 15:27:07.269268 2024-07-30 15:27:07.269279 cognd 130749478 R rec 9cf30be5-ddcd-41da-89c1-747d13ba3ea0 +2024-07-30 15:27:07.335843 2024-07-30 15:27:07.335855 cognd 130741531 R rec 85ede1a5-0e47-466d-86b4-8350470f22bb +2024-07-30 15:27:07.416991 2024-07-30 15:27:07.417002 cognd 130722529 R rec 6f75d614-61c7-44b9-961d-635590a5e6bd +2024-07-30 15:27:07.492587 2024-07-30 15:27:07.492597 cognd 130715107 R rec b4bbce8e-1c15-4519-890e-a74d9649f26e +2024-07-30 15:27:07.57071 2024-07-30 15:27:07.570721 cognd 130712930 R rec 3e298d62-367c-40e2-8151-dc15f47097af +2024-07-30 15:27:07.644861 2024-07-30 15:27:07.644872 cognd 13071206X R rec 6d3dd512-5f38-47b4-93b7-1cc2423b87b5 +2024-07-30 15:27:07.719995 2024-07-30 15:27:07.720006 cognd 130700525 R rec 77f084c5-d980-4603-a5a6-45dc63a4fc35 +2024-07-30 15:27:07.795978 2024-07-30 15:27:07.795987 cognd 130699152 R rec 682b3699-ec52-491c-a0ae-8d9e45f34ffa +2024-07-30 15:27:07.873334 2024-07-30 15:27:07.873345 cognd 130699101 R rec 77bca441-f143-4295-a185-e41ff8b45f1e +2024-07-30 15:27:07.962446 2024-07-30 15:27:07.962452 cognd 130698644 R rec 2c4bfd1f-141e-4d34-8962-257a1042e220 +2024-07-30 15:27:08.010074 2024-07-30 15:27:08.010086 cognd 043280072 R rec 51f6f869-954c-4e64-85f2-fc200c91df5d +2024-07-30 15:27:08.162286 2024-07-30 15:27:08.162302 cognd 043270972 R rec fa629bd4-2515-4d97-b5cc-547913500d24 +2024-07-30 15:27:08.254155 2024-07-30 15:27:08.254167 cognd 043270328 R rec 22fe5055-558f-4593-84d2-68e15b041041 +2024-07-30 15:27:08.344053 2024-07-30 15:27:08.344065 cognd 043269605 R rec baf8611c-9503-46b7-8ad8-23d57701efe7 +2024-07-30 15:27:08.434633 2024-07-30 15:27:08.434646 cognd 043265006 R rec 316d2942-0bc9-4af7-a39f-4c156661df52 +2024-07-30 15:27:08.531978 2024-07-30 15:27:08.531991 cognd 043229395 R rec d317f1e0-9347-410c-9f54-879c1f792f4e +2024-07-30 15:27:08.627298 2024-07-30 15:27:08.627398 cognd 043225276 R rec 8596dffa-2285-41ff-93f2-aa6d9d9e5163 +2024-07-30 15:27:08.708253 2024-07-30 15:27:08.708266 cognd 043220797 R rec 420737c8-414a-4544-9e3a-241ed35e329e +2024-07-30 15:27:08.792115 2024-07-30 15:27:08.792128 cognd 043196063 R rec b6d7fdd0-9f44-4ee5-be8b-c803073263f1 +2024-07-30 15:27:08.869588 2024-07-30 15:27:08.8696 cognd 043172415 R rec 76f2276d-7142-4aee-920a-6bc933362968 +2024-07-30 15:27:08.948091 2024-07-30 15:27:08.948106 cognd 043170854 R rec 61359c10-9b9b-4961-b8d0-6727a10bae90 +2024-07-30 15:27:09.015373 2024-07-30 15:27:09.015384 cognd 043166644 R rec 4c100818-39cd-44b4-a8bf-d758e6bf848f +2024-07-30 15:27:09.087582 2024-07-30 15:27:09.087592 cognd 043166202 R rec 6514947e-f49a-43bd-89e0-826dfdedc32f +2024-07-30 15:27:09.156897 2024-07-30 15:27:09.156908 cognd 04316532X R rec 1a394d12-8114-4015-a25c-a401bec6e12c +2024-07-30 15:27:09.225964 2024-07-30 15:27:09.225975 cognd 043153607 R rec 82c57528-68ee-4b1a-8038-26f6bf8eb55c +2024-07-30 15:27:09.288711 2024-07-30 15:27:09.288721 cognd 043134475 R rec bfd3db0f-269c-4de8-9c8c-ead4d4289070 +2024-07-30 15:27:09.376143 2024-07-30 15:27:09.376154 cognd 043134106 R rec f72c48e9-d75b-4eef-9f2d-eec9eaa53662 +2024-07-30 15:27:09.458001 2024-07-30 15:27:09.458012 cognd 043133908 R rec 0f84e010-b7af-49b1-a733-0e3f2b632e34 +2024-07-30 15:27:09.527293 2024-07-30 15:27:09.527304 cognd 043133789 R rec de9100b0-bd8b-4f4e-a7f8-7b36dd2030fa +2024-07-30 15:27:09.609857 2024-07-30 15:27:09.609869 cognd 043126944 R rec 7f161e5a-65a6-4a9a-a2c3-c66e1d630c8a +2024-07-30 15:27:09.686481 2024-07-30 15:27:09.686491 cognd 043122507 R rec c2f9f867-44ca-44a6-8602-4e0750db6210 +2024-07-30 15:27:09.762067 2024-07-30 15:27:09.762077 cognd 043119816 R rec 38c5f772-61b7-4a34-896f-8e06f2d6dc29 +2024-07-30 15:27:09.842344 2024-07-30 15:27:09.842354 cognd 04311704X R rec 104d7b3d-5853-4c2d-9849-b1792a96aafa +2024-07-30 15:27:09.920516 2024-07-30 15:27:09.920527 cognd 043110290 R rec f388f4de-43ca-4a0e-92ee-5387c51805af +2024-07-30 15:27:09.99119 2024-07-30 15:27:09.991201 cognd 043104754 R rec 50d7b841-c16f-487c-be2f-c46c35637fd1 +2024-07-30 15:27:10.043366 2024-07-30 15:27:10.04337 cognd 043092756 R rec d757a3ea-1374-41a0-b977-eee2be352f63 +2024-07-30 15:27:10.096373 2024-07-30 15:27:10.096384 cognd 043087787 R rec 9b842f45-8cba-4294-a359-5f661c044169 +2024-07-30 15:27:10.17308 2024-07-30 15:27:10.173091 cognd 043079458 R rec c46299ee-cb04-4d5e-a4ce-2a636e02afcd +2024-07-30 15:27:10.237829 2024-07-30 15:27:10.237839 cognd 043078664 R rec 941c0fb6-d2c3-4d7a-aee8-535956eb8530 +2024-07-30 15:27:10.310463 2024-07-30 15:27:10.310474 cognd 043062024 R rec ebba05a3-5339-4499-9da4-255cd07d554e +2024-07-30 15:27:10.386499 2024-07-30 15:27:10.38651 cognd 04304980X R rec 8a9db2cf-790c-42cf-acb7-f0a65d7afbd3 +2024-07-30 15:27:10.459512 2024-07-30 15:27:10.459524 cognd 043049354 R rec 3503cfe4-a5e0-4502-85ae-818efd833bd2 +2024-07-30 15:27:10.526803 2024-07-30 15:27:10.526814 cognd 043047815 R rec 7af00a30-81e7-4431-b22f-95de0100fd1a +2024-07-30 15:27:10.594207 2024-07-30 15:27:10.594219 cognd 043045820 R rec 6cc66d86-46f1-4482-97c3-b0c0e4d01383 +2024-07-30 15:27:10.658778 2024-07-30 15:27:10.658849 cognd 043023932 R rec 6f73ed25-4a58-4e64-bb25-3ef368c374fa +2024-07-30 15:27:10.740402 2024-07-30 15:27:10.740529 cognd 043007708 R rec b0b4944a-4d2b-488d-991f-9c2dd551aae5 +2024-07-30 15:27:10.817998 2024-07-30 15:27:10.818009 cognd 043006248 R rec 331efc85-49d4-412f-9f04-50619931e673 +2024-07-30 15:27:10.891579 2024-07-30 15:27:10.89159 cognd 042975174 R rec 6a3348f9-5edd-4b7e-bb49-5c966c19884b +2024-07-30 15:27:10.965628 2024-07-30 15:27:10.96564 cognd 04296962X R rec ffb24336-b73e-487d-92b2-8154b30733a8 +2024-07-30 15:27:11.046927 2024-07-30 15:27:11.046933 cognd 042936586 R rec cc867c8b-d35f-49a4-bf60-afd8a0e42d29 +2024-07-30 15:27:11.097887 2024-07-30 15:27:11.097892 cognd 042933854 R rec 4bfa37fc-667b-4915-931d-8e497e10440c +2024-07-30 15:27:11.162362 2024-07-30 15:27:11.162373 cognd 042932297 R rec 5911af61-1853-4032-82f2-fb05b277b8d1 +2024-07-30 15:27:11.235485 2024-07-30 15:27:11.235497 cognd 042928664 R rec 2c2703be-3dbe-4830-8fab-ffee72e2daea +2024-07-30 15:27:11.31757 2024-07-30 15:27:11.317581 cognd 04291373X R rec 3b48be67-c027-4d7e-befb-278cbc84c3a3 +2024-07-30 15:27:11.390065 2024-07-30 15:27:11.390077 cognd 042912709 R rec 978f8095-b290-47fa-bcb1-8e780d46a171 +2024-07-30 15:27:11.463606 2024-07-30 15:27:11.463615 cognd 042911915 R rec 7e207867-8339-4dcd-817f-44025d9db3da +2024-07-30 15:27:11.543073 2024-07-30 15:27:11.543086 cognd 042909163 R rec d69f2523-f876-4223-929d-fa5c20d66055 +2024-07-30 15:27:11.625105 2024-07-30 15:27:11.625117 cognd 042898250 R rec 2fc25036-f50c-4b32-9efe-d4cceabba477 +2024-07-30 15:27:11.721356 2024-07-30 15:27:11.721367 cognd 042871255 R rec 9478ae66-3c4c-43fd-be0d-4a6f5d0ba9c1 +2024-07-30 15:27:11.806224 2024-07-30 15:27:11.806234 cognd 042871093 R rec 15766ba0-b3ab-4656-8a64-b66bdf30f396 +2024-07-30 15:27:11.896985 2024-07-30 15:27:11.896996 cognd 042868696 R rec f9bb44c9-bb4e-4046-b8a9-1fd90e8b6f5b +2024-07-30 15:27:11.976595 2024-07-30 15:27:11.976606 cognd 042855098 R rec dda7e06b-7e99-4711-b7b7-9e94ed8dc741 +2024-07-30 15:27:12.05527 2024-07-30 15:27:12.055282 cognd 042854083 R rec f2a46f8b-9ee3-4fd7-a846-19fd6650f393 +2024-07-30 15:27:12.115088 2024-07-30 15:27:12.115099 cognd 042829763 R rec 1bd68a85-5588-4971-b482-3b14475e2d01 +2024-07-30 15:27:12.190349 2024-07-30 15:27:12.190361 cognd 042829194 R rec 1c5f01ae-3f10-48b8-9d16-300c31a7b2bf +2024-07-30 15:27:12.274392 2024-07-30 15:27:12.274407 cognd 042828465 R rec 9113cf06-6334-4525-ba45-7fff97b04f67 +2024-07-30 15:27:12.376504 2024-07-30 15:27:12.376515 cognd 042825210 R rec 51b12304-d9cb-4f18-815f-052a8fa671e0 +2024-07-30 15:27:12.45157 2024-07-30 15:27:12.451581 cognd 042819415 R rec 6b149d6b-1e8d-4b96-af91-bdedb5be57af +2024-07-30 15:27:12.519052 2024-07-30 15:27:12.519061 cognd 042817293 R rec 4f9a7699-33a3-4124-bd7e-f60c31c72ccb +2024-07-30 15:27:12.595333 2024-07-30 15:27:12.595344 cognd 042813905 R rec a606bf37-b20d-4f76-86f1-d033f7dbf586 +2024-07-30 15:27:12.673122 2024-07-30 15:27:12.673133 cognd 042803098 R rec bf5ae2ce-6f72-41a1-91af-77564323ea8c +2024-07-30 15:27:12.743696 2024-07-30 15:27:12.743707 cognd 042798779 R rec 51d85ed3-1b20-40c3-af5c-c1ff9a425601 +2024-07-30 15:27:12.82178 2024-07-30 15:27:12.821791 cognd 042798760 R rec 3c631d83-49b8-4466-8e96-6b07b70ffed8 +2024-07-30 15:27:12.901226 2024-07-30 15:27:12.901238 cognd 042798477 R rec 75df9839-98bb-4325-8291-7f3f96cbce88 +2024-07-30 15:27:12.985106 2024-07-30 15:27:12.985117 cognd 042773539 R rec 8adbe069-a346-42c4-926a-efab77314c1f +2024-07-30 15:27:13.068313 2024-07-30 15:27:13.068323 cognd 042763568 R rec 3108ab72-c550-46df-ac41-d5e8a49be342 +2024-07-30 15:27:13.135676 2024-07-30 15:27:13.135681 cognd 04276243X R rec e4536576-eb8d-41fb-9282-d26e25534294 +2024-07-30 15:27:13.217152 2024-07-30 15:27:13.217165 cognd 042755255 R rec 5ac6aa2d-fa50-4e75-b38d-30add1353905 +2024-07-30 15:27:13.31036 2024-07-30 15:27:13.310374 cognd 04275206X R rec eb9b19bc-b4f5-464e-b138-674957bb89d5 +2024-07-30 15:27:13.38831 2024-07-30 15:27:13.38832 cognd 042749298 R rec 2c490722-e749-4e57-b535-7705bb65c300 +2024-07-30 15:27:13.455401 2024-07-30 15:27:13.455428 cognd 042740983 R rec 7f40685b-ba22-4bd1-9ba1-9f6221a0395a +2024-07-30 15:27:13.520173 2024-07-30 15:27:13.520183 cognd 042728622 R rec 7a21a907-38aa-4f83-9209-a486e5528565 +2024-07-30 15:27:13.596035 2024-07-30 15:27:13.596048 cognd 042725739 R rec cb5ef061-96ce-434a-b32e-55db546b6055 +2024-07-30 15:27:13.669429 2024-07-30 15:27:13.66944 cognd 042707870 R rec 8e36b316-afca-4d7a-89b0-670a06da314d +2024-07-30 15:27:13.754754 2024-07-30 15:27:13.754765 cognd 042667208 R rec 69e202ef-2f3a-4dfd-92a8-ed97f9855fa1 +2024-07-30 15:27:13.842057 2024-07-30 15:27:13.84207 cognd 04264044X R rec 1d273055-3c12-4e18-8112-a9d009f16825 +2024-07-30 15:27:13.932589 2024-07-30 15:27:13.932601 cognd 042625025 R rec e333a7e9-0ecb-47d7-ae6c-36a631310313 +2024-07-30 15:27:14.018227 2024-07-30 15:27:14.018239 cognd 042616727 R rec 627a0f20-9271-4a9e-9f3a-4f632fb2019d +2024-07-30 15:27:14.088437 2024-07-30 15:27:14.088448 cognd 042612292 R rec 52de3928-0074-482b-9fe7-c58fe97034d4 +2024-07-30 15:27:14.158108 2024-07-30 15:27:14.158117 cognd 042556740 R rec b35ebf23-015c-4053-8083-e614447e7d35 +2024-07-30 15:27:14.224634 2024-07-30 15:27:14.224645 cognd 042552192 R rec 539bd98d-28d8-4091-b485-f8c75a017558 +2024-07-30 15:27:14.308412 2024-07-30 15:27:14.308426 cognd 04252184X R rec 99914ee4-c27d-4654-a6a9-af6f6f52ee2e +2024-07-30 15:27:14.412726 2024-07-30 15:27:14.412737 cognd 04251729X R rec 4636c086-df40-47f8-bb6c-6d61d8e2c6bd +2024-07-30 15:27:14.506355 2024-07-30 15:27:14.506371 cognd 042496918 R rec 292bdab2-8d2f-47a7-8bb1-d4ee2e64fd98 +2024-07-30 15:27:14.596558 2024-07-30 15:27:14.596569 cognd 042496896 R rec 4c18073e-3278-4a35-b8c7-781836aadd29 +2024-07-30 15:27:14.660235 2024-07-30 15:27:14.660245 cognd 042491010 R rec 2798cddc-1eb7-4321-b5b2-2a91b988afa0 +2024-07-30 15:27:14.72306 2024-07-30 15:27:14.723071 cognd 042479770 R rec d4c75113-88c6-442c-baaa-a9b25f9c8f52 +2024-07-30 15:27:14.790567 2024-07-30 15:27:14.790578 cognd 042466199 R rec f49c8e89-ad67-4133-91fb-41cc906f01ca +2024-07-30 15:27:14.868532 2024-07-30 15:27:14.868544 cognd 04245395X R rec 37193e09-f0f7-4e31-a9b5-569c33aa1d9c +2024-07-30 15:27:14.944596 2024-07-30 15:27:14.944608 cognd 042439086 R rec 98e0bea0-d376-42fb-8dad-125562ec8ce3 +2024-07-30 15:27:15.040877 2024-07-30 15:27:15.040887 cognd 042433517 R rec 2db4595f-4442-41a0-92f0-52d611eab814 +2024-07-30 15:27:15.120081 2024-07-30 15:27:15.120093 cognd 042427045 R rec 98f4a5b8-4612-4efb-84ed-0cf79f0f42ca +2024-07-30 15:27:15.196299 2024-07-30 15:27:15.196309 cognd 042416795 R rec 6707870f-06e7-4952-9721-ebc031a8ab2c +2024-07-30 15:27:15.267231 2024-07-30 15:27:15.267242 cognd 042402883 R rec 0269eea2-beef-4557-ba43-8db2add931cc +2024-07-30 15:27:15.348509 2024-07-30 15:27:15.34852 cognd 042402239 R rec 6bbaad9f-8992-44e4-acdc-0a361a0352cb +2024-07-30 15:27:15.431807 2024-07-30 15:27:15.431818 cognd 042363527 R rec 546372b8-73a7-42e3-a492-ff1bfd409370 +2024-07-30 15:27:15.510254 2024-07-30 15:27:15.510263 cognd 042362466 R rec 0183a29e-9b1c-4457-8c88-eaf46ff2cd2f +2024-07-30 15:27:15.589084 2024-07-30 15:27:15.589093 cognd 042349885 R rec 7a517c55-6a6b-4674-afc4-2ac6f43ff894 +2024-07-30 15:27:15.666088 2024-07-30 15:27:15.666101 cognd 042349877 R rec 07187278-4bcc-4727-baa1-7fba6a5334ea +2024-07-30 15:27:15.7474 2024-07-30 15:27:15.747409 cognd 042319986 R rec 19983d41-63cf-46f7-8096-0d1755d48840 +2024-07-30 15:27:15.825571 2024-07-30 15:27:15.825582 cognd 04231416X R rec e6f930c6-6729-4dd6-b8c5-ca67b3ea76bb +2024-07-30 15:27:15.910906 2024-07-30 15:27:15.910918 cognd 042294118 R rec 911f6242-8af2-4a1c-9d24-9b2e17fcadcd +2024-07-30 15:27:16.011012 2024-07-30 15:27:16.011025 cognd 042259177 R rec 1b833ee5-fee9-45a6-9d53-ac152d9b4666 +2024-07-30 15:27:16.112043 2024-07-30 15:27:16.112056 cognd 042250234 R rec 39d7bd5d-8192-4112-a883-61e77eb2f454 +2024-07-30 15:27:16.204401 2024-07-30 15:27:16.204407 cognd 042237688 R rec 1e269ab5-6392-4f5a-a1e2-31659461c23c +2024-07-30 15:27:16.266148 2024-07-30 15:27:16.266159 cognd 042221234 R rec 7e13339d-430c-49fc-9a53-f1a3efb13b68 +2024-07-30 15:27:16.335591 2024-07-30 15:27:16.335604 cognd 042208408 R rec 4c389bf8-ebb7-4707-a286-336c1dae6020 +2024-07-30 15:27:16.422877 2024-07-30 15:27:16.422919 cognd 042203856 R rec 61dbc367-e5fb-4b65-bef7-872a32f98605 +2024-07-30 15:27:16.514727 2024-07-30 15:27:16.514741 cognd 042203023 R rec dafc7d83-132f-456a-8a9a-c33601c55ef7 +2024-07-30 15:27:16.619282 2024-07-30 15:27:16.619297 cognd 042195810 R rec c10ab3f9-4890-455a-9309-10a4a72835bf +2024-07-30 15:27:16.721124 2024-07-30 15:27:16.72114 cognd 042193958 R rec a44a6ad1-b4e2-4595-bd32-9e321d9aa4d4 +2024-07-30 15:27:16.810613 2024-07-30 15:27:16.810623 cognd 04219007X R rec 83ed753f-bb36-470a-800d-b67c5eda95dc +2024-07-30 15:27:16.905654 2024-07-30 15:27:16.905664 cognd 042189748 R rec 76a25e8f-4117-4a34-bd3d-c3cef024c7b5 +2024-07-30 15:27:17.01004 2024-07-30 15:27:17.010056 cognd 042187494 R rec ce4a2e27-3333-4f88-92f6-7f61389206fd +2024-07-30 15:27:17.101499 2024-07-30 15:27:17.10151 cognd 042180805 R rec eeb15251-bfb4-4666-b7bb-459b295fe6b9 +2024-07-30 15:27:17.191292 2024-07-30 15:27:17.191323 cognd 042159458 R rec 3191b5d4-6e54-4c76-b706-b65a935074ea +2024-07-30 15:27:17.255097 2024-07-30 15:27:17.255109 cognd 042154316 R rec f3108d93-8c5f-4f92-ab85-f1f4c9e5273b +2024-07-30 15:27:17.328544 2024-07-30 15:27:17.328554 cognd 042152089 R rec 74ec4a4b-aa0f-42c5-b4f7-9131f308aba6 +2024-07-30 15:27:17.411394 2024-07-30 15:27:17.411409 cognd 042150876 R rec 1fb88917-f1bc-4c3a-b7b5-57680c0c89f1 +2024-07-30 15:27:17.509022 2024-07-30 15:27:17.509033 cognd 042140048 R rec f5e373e9-11a2-4fcb-88ad-1380cb0d5d67 +2024-07-30 15:27:17.604299 2024-07-30 15:27:17.604314 cognd 042137268 R rec 01fdd377-6e7c-4399-89f2-aecfeafddded +2024-07-30 15:27:17.713612 2024-07-30 15:27:17.713623 cognd 042108160 R rec ab9a5aab-86a2-4b11-b560-d663d4b3fe7f +2024-07-30 15:27:17.791587 2024-07-30 15:27:17.791597 cognd 042108152 R rec 6c4d6a7c-af2b-4f39-8c8e-3fd5b17970b6 +2024-07-30 15:27:17.871453 2024-07-30 15:27:17.871464 cognd 042104068 R rec 2e87fed0-94bb-4148-a8c7-ff4cfec3fa9f +2024-07-30 15:27:17.953309 2024-07-30 15:27:17.953321 cognd 042098386 R rec 329d0d67-8e10-4b03-8a79-561972ff2aaf +2024-07-30 15:27:18.042338 2024-07-30 15:27:18.042352 cognd 042092175 R rec 7933c34c-22c4-45b3-84a0-6a82f6392456 +2024-07-30 15:27:18.128101 2024-07-30 15:27:18.128112 cognd 042086280 R rec 3b473e47-232e-4715-b46a-54b94af80b5c +2024-07-30 15:27:18.226462 2024-07-30 15:27:18.226473 cognd 04208394X R rec aaf5d6ea-5349-40b9-8886-d6ace052442f +2024-07-30 15:27:18.304999 2024-07-30 15:27:18.305011 cognd 042066107 R rec 05f5f838-283e-4be5-95d5-32c594da74e9 +2024-07-30 15:27:18.371242 2024-07-30 15:27:18.371252 cognd 042056349 R rec 2f8be949-2453-4d79-8ec5-858b2bb3f054 +2024-07-30 15:27:18.443442 2024-07-30 15:27:18.443452 cognd 042017793 R rec 3c0e3852-de3a-4470-92aa-618e6ac2c0e3 +2024-07-30 15:27:18.511361 2024-07-30 15:27:18.511373 cognd 042017246 R rec f579d11d-5a43-48f1-9145-b0a8d50e8c18 +2024-07-30 15:27:18.578529 2024-07-30 15:27:18.578541 cognd 042003458 R rec 8f44afbc-cb1f-4d25-bbd7-799c17924b55 +2024-07-30 15:27:18.656704 2024-07-30 15:27:18.656716 cognd 041995724 R rec 57ffe25a-d0d5-4039-ab37-c6a3eab3909d +2024-07-30 15:27:18.736673 2024-07-30 15:27:18.736685 cognd 041992555 R rec f8f75d58-c9a7-4367-bd11-6d67469b5bf7 +2024-07-30 15:27:18.814315 2024-07-30 15:27:18.814326 cognd 041987489 R rec 31d65e01-2ee4-4e22-af69-95f2c3e1bc1f +2024-07-30 15:27:18.88523 2024-07-30 15:27:18.885242 cognd 041981804 R rec fb582757-c5f4-42c4-ab2f-8f4e7acc046a +2024-07-30 15:27:18.959126 2024-07-30 15:27:18.959137 cognd 041977009 R rec d25a17b4-5a8c-429e-971b-385088352827 +2024-07-30 15:27:19.038475 2024-07-30 15:27:19.038486 cognd 041975278 R rec 3c643dae-9337-40c1-8279-16fec1e1eb06 +2024-07-30 15:27:19.113098 2024-07-30 15:27:19.113109 cognd 041954378 R rec 4b1ab624-e71a-4c24-a63a-21762dec6cce +2024-07-30 15:27:19.194719 2024-07-30 15:27:19.194731 cognd 041954327 R rec ff4b2fbb-ae92-4cdd-a00f-87b5bdeee6fd +2024-07-30 15:27:19.269646 2024-07-30 15:27:19.269651 cognd 041943236 R rec 469b0292-c514-4213-b670-5b33465b1c35 +2024-07-30 15:27:19.312094 2024-07-30 15:27:19.312098 cognd 041928547 R rec 0bde4a39-d1c4-41ae-a4b0-98f2ecb5744e +2024-07-30 15:27:19.372887 2024-07-30 15:27:19.372896 cognd 041928326 R rec e625efc9-970e-4d75-9e76-9f71d1c12a72 +2024-07-30 15:27:19.437395 2024-07-30 15:27:19.437405 cognd 041924878 R rec 6297f7b0-5337-400b-9b1e-fa1504bc9ed6 +2024-07-30 15:27:19.513981 2024-07-30 15:27:19.513992 cognd 041918754 R rec afd8eaa1-97ee-45dc-ac36-98ad978c2e8a +2024-07-30 15:27:19.590675 2024-07-30 15:27:19.590685 cognd 041913272 R rec 1099478b-94f0-4f96-be10-b395778bd0b7 +2024-07-30 15:27:19.662266 2024-07-30 15:27:19.662277 cognd 041911849 R rec 718e9c09-6629-4baa-8848-725cb351810a +2024-07-30 15:27:19.738735 2024-07-30 15:27:19.738746 cognd 041911598 R rec eba22565-6500-483c-9b01-4e4618cdccbb +2024-07-30 15:27:19.817624 2024-07-30 15:27:19.817635 cognd 041911199 R rec 989851be-b1dd-4e37-88a1-72cc640f59ba +2024-07-30 15:27:19.891708 2024-07-30 15:27:19.891718 cognd 041910842 R rec a930065b-ad38-4e65-a159-9b43f65d37d9 +2024-07-30 15:27:19.959226 2024-07-30 15:27:19.959237 cognd 041907078 R rec dba20f79-40b2-45e9-8b54-4682e14fc113 +2024-07-30 15:27:20.037366 2024-07-30 15:27:20.037377 cognd 041902955 R rec 6d5f3b4f-ee4f-404e-84cf-c74bcbfa08ba +2024-07-30 15:27:20.111216 2024-07-30 15:27:20.111227 cognd 04190186X R rec 33db9ddb-2fee-4294-9ed5-023f97f02c7a +2024-07-30 15:27:20.187106 2024-07-30 15:27:20.187115 cognd 041900804 R rec 39b5a8e7-e41c-4f3b-8ab7-5e0a4b81c196 +2024-07-30 15:27:20.257638 2024-07-30 15:27:20.257649 cognd 041899849 R rec 63a6c061-7a8a-4946-aedc-adc74cdccc88 +2024-07-30 15:27:20.312877 2024-07-30 15:27:20.312887 cognd 041898273 R rec 13c5f082-9b17-4886-a607-8e1a3cf9cecf +2024-07-30 15:27:20.374907 2024-07-30 15:27:20.374918 cognd 041896807 R rec cedca4ac-b3d5-4bf2-a4dc-b88c21cb6fae +2024-07-30 15:27:20.458053 2024-07-30 15:27:20.458064 cognd 041891775 R rec 6c94d446-fef5-4dba-83b1-6f5daafc4654 +2024-07-30 15:27:20.522751 2024-07-30 15:27:20.522761 cognd 041890787 R rec b04679a2-1656-4a30-b3b6-78d70d29617a +2024-07-30 15:27:20.588361 2024-07-30 15:27:20.588371 cognd 041889959 R rec 182df7a6-681e-42fc-b363-0ff007f70acf +2024-07-30 15:27:20.666912 2024-07-30 15:27:20.666923 cognd 041887913 R rec 2a6db505-9458-4467-a887-201372fbe483 +2024-07-30 15:27:20.74111 2024-07-30 15:27:20.741121 cognd 041887786 R rec c74379fe-eadc-4f92-8ebb-0456e6fcdbf0 +2024-07-30 15:27:20.815738 2024-07-30 15:27:20.815749 cognd 041884612 R rec 2277db6c-bc0e-4785-b09a-6568ec9bef92 +2024-07-30 15:27:20.888995 2024-07-30 15:27:20.889006 cognd 041882229 R rec 77c6d398-7abd-4c63-8460-cba8d630d2e8 +2024-07-30 15:27:20.962086 2024-07-30 15:27:20.962098 cognd 041881745 R rec 14476124-755a-4694-b77c-6dbe9278ee9a +2024-07-30 15:27:21.033503 2024-07-30 15:27:21.033517 cognd 041878515 R rec dbcd8093-1e2a-46ff-bfb7-3dbca4bb87eb +2024-07-30 15:27:21.106596 2024-07-30 15:27:21.106607 cognd 041876938 R rec a4fa4aaa-5686-4c06-b13a-c2f991f4332e +2024-07-30 15:27:21.18255 2024-07-30 15:27:21.182562 cognd 041874919 R rec 7e7d1745-f263-41e2-87d0-4350b60743bc +2024-07-30 15:27:21.265216 2024-07-30 15:27:21.265227 cognd 041873270 R rec a6264a64-410b-4f9a-a20e-a34c48a48683 +2024-07-30 15:27:21.326478 2024-07-30 15:27:21.326483 cognd 041871286 R rec 559bf5d0-dcea-48a9-94fb-88c9447043bb +2024-07-30 15:27:21.379441 2024-07-30 15:27:21.379452 cognd 041871189 R rec e2602ba2-2a57-4aae-a732-183fe82049d5 +2024-07-30 15:27:21.438279 2024-07-30 15:27:21.438289 cognd 041867785 R rec 953498f5-8564-43c5-88ef-2c4f36e309cb +2024-07-30 15:27:21.502214 2024-07-30 15:27:21.502224 cognd 041863488 R rec 52703801-7605-4dd3-a7ef-d2e54ec8e1e6 +2024-07-30 15:27:21.570661 2024-07-30 15:27:21.570675 cognd 04186347X R rec e5793d20-0df1-4f1b-a4eb-2aa0144f453f +2024-07-30 15:27:21.641892 2024-07-30 15:27:21.641901 cognd 041862473 R rec e396d128-dc73-4d42-8b94-534d6ba0146e +2024-07-30 15:27:21.712576 2024-07-30 15:27:21.712587 cognd 041862465 R rec ded173f7-8133-4992-8dd6-f32c1578cd1d +2024-07-30 15:27:21.804525 2024-07-30 15:27:21.804534 cognd 041841387 R rec ac24360a-73c8-4685-ab2e-7ca7817e5cc4 +2024-07-30 15:27:21.886495 2024-07-30 15:27:21.886506 cognd 041835662 R rec 2ca404d4-896a-45f6-8145-33dedf0e80c6 +2024-07-30 15:27:21.958405 2024-07-30 15:27:21.958416 cognd 041833333 R rec 37b15982-d811-473e-9a5a-2075f5e7e88d +2024-07-30 15:27:22.040744 2024-07-30 15:27:22.040756 cognd 041830989 R rec 67ac99be-0431-4555-8dae-55b2737b3831 +2024-07-30 15:27:22.118694 2024-07-30 15:27:22.118706 cognd 041823788 R rec 316ea167-4e66-42b1-9157-98ef582aed7f +2024-07-30 15:27:22.191139 2024-07-30 15:27:22.191149 cognd 04182265X R rec a222581f-e0aa-4126-bc36-8e01ff6f3763 +2024-07-30 15:27:22.256267 2024-07-30 15:27:22.256279 cognd 041809858 R rec 5976369d-317d-4b83-9a12-aad7d008c781 +2024-07-30 15:27:22.319837 2024-07-30 15:27:22.319848 cognd 041809165 R rec 26484cc9-952b-469b-b3eb-985d0284c467 +2024-07-30 15:27:22.384864 2024-07-30 15:27:22.384876 cognd 041808525 R rec f484970f-0444-4625-b69a-f334cbadf022 +2024-07-30 15:27:22.450852 2024-07-30 15:27:22.450863 cognd 041807677 R rec 82821e2d-c33c-4b12-8d47-63f37a2386b2 +2024-07-30 15:27:22.522141 2024-07-30 15:27:22.522152 cognd 041805348 R rec ec6d9339-8fc1-4cc3-bb14-d8918b9398f4 +2024-07-30 15:27:22.597504 2024-07-30 15:27:22.597515 cognd 04180466X R rec 79be3954-74f6-4bc3-babb-f70c4dc3f5fc +2024-07-30 15:27:22.670965 2024-07-30 15:27:22.670976 cognd 041802659 R rec a3bf666f-be40-4610-90b1-755db0b0bd45 +2024-07-30 15:27:22.741294 2024-07-30 15:27:22.741305 cognd 041798813 R rec a25ce37d-bbdf-4c51-9302-73bbefbe8f24 +2024-07-30 15:27:22.821291 2024-07-30 15:27:22.821302 cognd 041794524 R rec ead181f8-aa3a-47ab-8f42-ba98ab782940 +2024-07-30 15:27:22.893079 2024-07-30 15:27:22.89309 cognd 041792432 R rec 12ddf388-387e-48e8-af27-be5b7bb3ce25 +2024-07-30 15:27:22.967524 2024-07-30 15:27:22.967535 cognd 041785215 R rec 7488b10b-2858-46b8-8056-a564321a8cbe +2024-07-30 15:27:23.048647 2024-07-30 15:27:23.04866 cognd 041784839 R rec a45da906-704d-44d7-87c4-711184495edc +2024-07-30 15:27:23.134861 2024-07-30 15:27:23.134873 cognd 041781635 R rec e2ebddb7-c869-437d-bd76-836900baa23f +2024-07-30 15:27:23.207464 2024-07-30 15:27:23.207475 cognd 041779452 R rec 13a792f7-2c9f-4972-80b2-465a6c34cecc +2024-07-30 15:27:23.296229 2024-07-30 15:27:23.296239 cognd 041774434 R rec fff9e73b-8a30-4583-8489-e1c4f63a6d83 +2024-07-30 15:27:23.385345 2024-07-30 15:27:23.38535 cognd 041772822 R rec 10cbb605-f55a-4b5a-9e4f-4e26d81fc0ab +2024-07-30 15:27:23.437564 2024-07-30 15:27:23.437573 cognd 041772768 R rec d4ef293e-4b0c-4bfc-babb-d6c88780893f +2024-07-30 15:27:23.497217 2024-07-30 15:27:23.497228 cognd 041767934 R rec 05f10749-e1eb-405f-ab4d-aed8343bf39a +2024-07-30 15:27:23.560547 2024-07-30 15:27:23.560562 cognd 041766717 R rec 0b476bca-616f-499c-823d-fc72fe00383f +2024-07-30 15:27:23.626187 2024-07-30 15:27:23.626198 cognd 04176420X R rec c79ae275-1a59-4678-bcc3-4edb46240d92 +2024-07-30 15:27:23.712003 2024-07-30 15:27:23.712012 cognd 041763165 R rec 543297b1-f0cb-4d7b-87fb-3c5df3e11043 +2024-07-30 15:27:23.784201 2024-07-30 15:27:23.784213 cognd 041759834 R rec 9463427b-08fe-49fe-ba23-df3eca5f555f +2024-07-30 15:27:23.863268 2024-07-30 15:27:23.86328 cognd 041755014 R rec 01a67ec0-52a2-4bef-afe6-557ed0e3a2d3 +2024-07-30 15:27:23.943565 2024-07-30 15:27:23.943576 cognd 041754557 R rec 091535cc-c355-4a6d-a53f-69b1d20e77d0 +2024-07-30 15:27:24.015903 2024-07-30 15:27:24.015916 cognd 04175431X R rec c1e2bbed-9c50-419d-bee1-a7d8235c4a49 +2024-07-30 15:27:24.098509 2024-07-30 15:27:24.09852 cognd 04174926X R rec d9cefad2-484f-489b-9680-676fec18a523 +2024-07-30 15:27:24.198266 2024-07-30 15:27:24.198276 cognd 041748964 R rec e67d8ef2-068d-40d6-8d3c-f058ba440d1b +2024-07-30 15:27:24.26527 2024-07-30 15:27:24.265283 cognd 04174604X R rec 57433cc2-d4a7-432a-add4-96636f139b44 +2024-07-30 15:27:24.345476 2024-07-30 15:27:24.345487 cognd 041742648 R rec 8d1da953-a458-40d9-b28a-0e8372a1006a +2024-07-30 15:27:24.424192 2024-07-30 15:27:24.424203 cognd 04174084X R rec bd28578f-843a-404e-a7c8-e2e8572934b5 +2024-07-30 15:27:24.494232 2024-07-30 15:27:24.494242 cognd 041738063 R rec a761f03b-6180-4967-be2c-6c48ff52a661 +2024-07-30 15:27:24.566122 2024-07-30 15:27:24.566132 cognd 041737539 R rec ada04214-848d-4626-95e6-8888ec84902d +2024-07-30 15:27:24.638197 2024-07-30 15:27:24.638209 cognd 041736346 R rec 6a8a45d0-1159-4ebe-a806-391dd357f179 +2024-07-30 15:27:24.707942 2024-07-30 15:27:24.707958 cognd 041735390 R rec a1457a39-f258-4a11-9ec3-1a115dbd9a83 +2024-07-30 15:27:24.776303 2024-07-30 15:27:24.776315 cognd 041734688 R rec b605cdc8-b57e-4343-a0d5-e24d74c57cc1 +2024-07-30 15:27:24.856886 2024-07-30 15:27:24.856897 cognd 041733819 R rec f65bec94-074d-4d86-9423-10230c9c0496 +2024-07-30 15:27:24.933308 2024-07-30 15:27:24.933319 cognd 041725522 R rec d9475f5a-2917-4dd0-bbdf-6e551a19b8d1 +2024-07-30 15:27:25.010706 2024-07-30 15:27:25.010718 cognd 041722027 R rec ade847d0-b7d4-4b09-b36e-1d8d1061a75a +2024-07-30 15:27:25.087985 2024-07-30 15:27:25.087997 cognd 041720040 R rec 9e83d071-6df3-48a1-9c23-82b42d9d9880 +2024-07-30 15:27:25.173591 2024-07-30 15:27:25.173602 cognd 041718429 R rec 13621622-d513-4fe8-9cbf-a3c772e2819e +2024-07-30 15:27:25.241637 2024-07-30 15:27:25.241647 cognd 041716159 R rec f8758ca3-7f7f-4c9d-a35f-c9e394688848 +2024-07-30 15:27:25.3132 2024-07-30 15:27:25.313212 cognd 041714059 R rec 5a8bf030-e634-4435-9bfc-ef86ca7bf589 +2024-07-30 15:27:25.381321 2024-07-30 15:27:25.381333 cognd 041712188 R rec 6a8a972a-43fd-4f39-bb18-2f262fb76b99 +2024-07-30 15:27:25.454443 2024-07-30 15:27:25.454453 cognd 04171069X R rec 93952b0d-11f0-4ce7-9dca-dd07fbcacc23 +2024-07-30 15:27:25.518503 2024-07-30 15:27:25.518514 cognd 04171007X R rec bd26622a-e2fe-49ec-8679-a815c4f27696 +2024-07-30 15:27:25.593215 2024-07-30 15:27:25.593226 cognd 041707109 R rec 41c559dd-5b17-41c2-b684-41e982f86a11 +2024-07-30 15:27:25.661151 2024-07-30 15:27:25.661161 cognd 04170441X R rec c72bf0c0-2527-4ba8-bded-cd69a3a3f1df +2024-07-30 15:27:25.727145 2024-07-30 15:27:25.727266 cognd 041700465 R rec 1b1ca6b6-e34f-4413-8545-68d10fd3b3c1 +2024-07-30 15:27:25.797573 2024-07-30 15:27:25.797584 cognd 041693442 R rec 5f261aea-e963-4a34-b784-39e23aff1a0b +2024-07-30 15:27:25.870673 2024-07-30 15:27:25.870683 cognd 041692403 R rec 7272230e-fb90-408e-b811-372549a976f3 +2024-07-30 15:27:25.946273 2024-07-30 15:27:25.946285 cognd 041691989 R rec f09f7765-5a61-4e3b-8c4f-63b73b8e8029 +2024-07-30 15:27:26.02061 2024-07-30 15:27:26.020622 cognd 041691504 R rec f982070a-b3c7-43fe-a231-1abc64aa11b1 +2024-07-30 15:27:26.093578 2024-07-30 15:27:26.09359 cognd 041689976 R rec ef989758-bbba-4ed1-a78a-b59eb77317a5 +2024-07-30 15:27:26.171935 2024-07-30 15:27:26.171946 cognd 041688473 R rec 47f00e9f-d91d-4703-82ac-b67c95d55c12 +2024-07-30 15:27:26.247628 2024-07-30 15:27:26.24764 cognd 041682106 R rec 2151ef92-c643-45ad-afca-4fad52606f77 +2024-07-30 15:27:26.317339 2024-07-30 15:27:26.31735 cognd 041679792 R rec e76af340-0e5f-472d-baa1-48b00ab2ca55 +2024-07-30 15:27:26.39105 2024-07-30 15:27:26.391086 cognd 041678532 R rec 80558c3e-9171-4d08-928d-a729ac5e6f03 +2024-07-30 15:27:26.460932 2024-07-30 15:27:26.460938 cognd 041667093 R rec 29422ed3-606b-410a-9338-945de7c4c5a6 +2024-07-30 15:27:26.506918 2024-07-30 15:27:26.506927 cognd 041664795 R rec addf8439-a60a-42f5-aa02-f1346578825b +2024-07-30 15:27:26.57262 2024-07-30 15:27:26.572632 cognd 041653025 R rec db1b90ab-9e39-4bce-9972-c563637b6719 +2024-07-30 15:27:26.639961 2024-07-30 15:27:26.639971 cognd 041650018 R rec 6659de1e-a45f-4703-9b99-e51d6feb4b4f +2024-07-30 15:27:26.706135 2024-07-30 15:27:26.706147 cognd 041640047 R rec d7250837-6618-4861-a970-3430c4328a5c +2024-07-30 15:27:26.778994 2024-07-30 15:27:26.779005 cognd 041639383 R rec 7b5f0f8d-6721-4eb2-b48c-e6297e7c202e +2024-07-30 15:27:26.854379 2024-07-30 15:27:26.854389 cognd 041634179 R rec 2bc4f7d2-131e-40d2-a26d-38d328145b57 +2024-07-30 15:27:26.940464 2024-07-30 15:27:26.940475 cognd 041631692 R rec 4ec52bec-9ff4-48d3-ba20-804b3eca04fa +2024-07-30 15:27:27.010917 2024-07-30 15:27:27.010928 cognd 041631676 R rec 52dcd423-ee05-4fc6-9563-c37c7a3857ae +2024-07-30 15:27:27.07887 2024-07-30 15:27:27.078882 cognd 04163120X R rec f81f4c0d-e590-4acd-9e7c-72502f0a2e61 +2024-07-30 15:27:27.159798 2024-07-30 15:27:27.159809 cognd 041627458 R rec 6021612a-319c-4d87-a5a6-d9806c7fd97d +2024-07-30 15:27:27.248011 2024-07-30 15:27:27.248022 cognd 041623010 R rec 9db5397b-5cc1-4e64-8cdc-16640a3c0a10 +2024-07-30 15:27:27.321436 2024-07-30 15:27:27.321447 cognd 041621662 R rec edafb1bc-76a1-4100-834e-e7b4e60f4fc1 +2024-07-30 15:27:27.39758 2024-07-30 15:27:27.397591 cognd 041619633 R rec 5cb716a8-0d04-474f-b28e-17c54fd5099b +2024-07-30 15:27:27.471387 2024-07-30 15:27:27.471398 cognd 041619366 R rec 3c04a178-8aa6-4768-b498-cc5fb1d4020d +2024-07-30 15:27:27.543837 2024-07-30 15:27:27.543847 cognd 041617266 R rec e48b1a88-9439-49ca-8e05-3ee14b9efd3f +2024-07-30 15:27:27.603703 2024-07-30 15:27:27.603713 cognd 041616375 R rec ef3865af-5ede-49e9-aa1a-b3330c0708d9 +2024-07-30 15:27:27.665586 2024-07-30 15:27:27.665597 cognd 041612469 R rec 685372a9-80b9-465b-89b4-d644f4f6f317 +2024-07-30 15:27:27.722953 2024-07-30 15:27:27.722964 cognd 041607988 R rec 89191e9d-8da9-4d5f-9665-a1c54e5ea6a1 +2024-07-30 15:27:27.788652 2024-07-30 15:27:27.788664 cognd 041605799 R rec 8f61a444-e841-41b0-9bfb-4a0375bd73fe +2024-07-30 15:27:27.861421 2024-07-30 15:27:27.861432 cognd 041603176 R rec 55b04453-3e29-424c-acf3-a70b96ff2b37 +2024-07-30 15:27:27.930954 2024-07-30 15:27:27.930966 cognd 041601475 R rec 9d53c9f7-a9f4-4cda-82f1-19d058d0aed7 +2024-07-30 15:27:28.003949 2024-07-30 15:27:28.003961 cognd 041600622 R rec ef5d3bfe-1c21-4d9c-9655-3161901c7f83 +2024-07-30 15:27:28.077553 2024-07-30 15:27:28.077563 cognd 041600010 R rec 305d13c3-ec95-462e-9cc8-251cd193f9ac +2024-07-30 15:27:28.161955 2024-07-30 15:27:28.161966 cognd 041596277 R rec 78f552a0-fa74-41ac-bdc2-e9fdf2e732da +2024-07-30 15:27:28.256568 2024-07-30 15:27:28.256583 cognd 041595505 R rec 84118474-6206-4e7a-88cd-f17201c6ccc0 +2024-07-30 15:27:28.350185 2024-07-30 15:27:28.3502 cognd 041582969 R rec 50796155-e725-484b-82a1-b9a5d52cd852 +2024-07-30 15:27:28.442865 2024-07-30 15:27:28.442875 cognd 041582675 R rec 1d1e0b70-a2d9-4ac7-bd93-866f4ee02429 +2024-07-30 15:27:28.510965 2024-07-30 15:27:28.51097 cognd 041582500 R rec fbcdf96b-2c30-470e-8a68-b302e40941e4 +2024-07-30 15:27:28.568228 2024-07-30 15:27:28.568257 cognd 041580176 R rec 32b9e6e9-6c6b-4f0e-9095-75798a1403c6 +2024-07-30 15:27:28.635131 2024-07-30 15:27:28.635141 cognd 041579550 R rec 58f3128c-78a3-4b9f-b553-cc0267350d1d +2024-07-30 15:27:28.701154 2024-07-30 15:27:28.701165 cognd 041577760 R rec a78546f7-6d6c-4d47-a8f1-04ad42b335f3 +2024-07-30 15:27:28.768331 2024-07-30 15:27:28.768342 cognd 041573579 R rec ac7db5dd-cc41-45e0-96fc-97365684645c +2024-07-30 15:27:28.840346 2024-07-30 15:27:28.840358 cognd 041570316 R rec 53096f7f-f71b-451b-b1e0-f845e6234c47 +2024-07-30 15:27:28.915152 2024-07-30 15:27:28.915163 cognd 041570154 R rec 756e00ef-ed8e-443c-a113-dd13fa146c1a +2024-07-30 15:27:28.988377 2024-07-30 15:27:28.988389 cognd 041565762 R rec 8a78e091-8dd2-4cc8-82aa-c206c479870b +2024-07-30 15:27:29.062007 2024-07-30 15:27:29.062018 cognd 041563409 R rec e0d9fe95-7055-4360-baf2-f20003254488 +2024-07-30 15:27:29.14692 2024-07-30 15:27:29.146931 cognd 04155812X R rec b1f339e1-6995-463c-8fc5-c0ee3cd22dbe +2024-07-30 15:27:29.210761 2024-07-30 15:27:29.210772 cognd 041558103 R rec 41e5b894-9036-40b3-b89d-522f88ec0b75 +2024-07-30 15:27:29.273154 2024-07-30 15:27:29.273163 cognd 041556984 R rec bf8987fb-5c89-4955-8a7c-a08acccf7b45 +2024-07-30 15:27:29.336369 2024-07-30 15:27:29.336378 cognd 041555252 R rec e3b6455b-2620-4793-bdb1-7eb394e47136 +2024-07-30 15:27:29.404585 2024-07-30 15:27:29.404596 cognd 041552725 R rec 7239e211-ea11-4244-af87-283d3f1cf6b8 +2024-07-30 15:27:29.477774 2024-07-30 15:27:29.477799 cognd 041552334 R rec bee6e555-f792-4884-b6e0-df886563935e +2024-07-30 15:27:29.549529 2024-07-30 15:27:29.549534 cognd 041549457 R rec a1fa9740-9e7f-4531-9f44-d6c4eace744a +2024-07-30 15:27:29.609833 2024-07-30 15:27:29.609845 cognd 041543688 R rec 6bdf29f1-13f6-4024-adb4-482d5e5f7e63 +2024-07-30 15:27:29.696969 2024-07-30 15:27:29.696981 cognd 041540654 R rec 550b8b79-8fa5-41f0-8e51-d11faac8bde0 +2024-07-30 15:27:29.793567 2024-07-30 15:27:29.793577 cognd 041540387 R rec d67ef8b9-8548-4123-b15d-9fc3c58fe9ca +2024-07-30 15:27:29.866444 2024-07-30 15:27:29.866455 cognd 041539346 R rec 04814f98-a102-416f-8bfc-568f04bfe832 +2024-07-30 15:27:29.942992 2024-07-30 15:27:29.942998 cognd 041537882 R rec 58517b82-c809-4b3e-af51-b102a8ba3972 +2024-07-30 15:27:30.007028 2024-07-30 15:27:30.007037 cognd 04152862X R rec 9f8f53e8-3ffe-46eb-8026-5ed53aa65ec0 +2024-07-30 15:27:30.075669 2024-07-30 15:27:30.07568 cognd 041528565 R rec 22cc900b-1161-4adb-8ab8-03efa1bb7535 +2024-07-30 15:27:30.157398 2024-07-30 15:27:30.15741 cognd 041527186 R rec 30aa43b2-ae68-4358-a4e0-89dd141e3214 +2024-07-30 15:27:30.235899 2024-07-30 15:27:30.23591 cognd 041527062 R rec b43bb90c-d049-4bc2-a31c-ff5c3a221906 +2024-07-30 15:27:30.318322 2024-07-30 15:27:30.318331 cognd 041521927 R rec 47cf24f1-6a83-4ca2-86a6-d9cec6c82fd6 +2024-07-30 15:27:30.392507 2024-07-30 15:27:30.392517 cognd 041511794 R rec acfbe9b1-6ccb-4d06-bf71-c5b57d80522e +2024-07-30 15:27:30.463293 2024-07-30 15:27:30.463314 cognd 041511360 R rec 8424e8e3-dacf-4203-8c3b-f637d4b693ab +2024-07-30 15:27:30.547787 2024-07-30 15:27:30.547797 cognd 041507983 R rec 6135f3fc-6a99-4740-a3ee-bd2cde60b5b3 +2024-07-30 15:27:30.603244 2024-07-30 15:27:30.603255 cognd 041506588 R rec f6b35712-a944-47cc-9b84-160918d64d78 +2024-07-30 15:27:30.660765 2024-07-30 15:27:30.660776 cognd 041505190 R rec 7f926873-f4f9-403c-857a-0b635b8242b0 +2024-07-30 15:27:30.726504 2024-07-30 15:27:30.726517 cognd 041504925 R rec 0b211b99-bcac-4411-a839-0754ac6a0b12 +2024-07-30 15:27:30.820369 2024-07-30 15:27:30.82038 cognd 041501950 R rec 37c3956c-8d49-4dc2-8f9a-f103ec1d60f8 +2024-07-30 15:27:30.906951 2024-07-30 15:27:30.906962 cognd 041501608 R rec db0a9f18-e26e-4332-9e0c-4a4f18d2ded7 +2024-07-30 15:27:30.997849 2024-07-30 15:27:30.99786 cognd 041497848 R rec f7344d98-997a-47a6-b18c-2318939f85bd +2024-07-30 15:27:31.093585 2024-07-30 15:27:31.093596 cognd 041497112 R rec 84729724-bb9a-43fc-bdf4-8ddb287821f1 +2024-07-30 15:27:31.180822 2024-07-30 15:27:31.180834 cognd 041490673 R rec fd11e0c8-7a07-4549-b230-936d2811eb91 +2024-07-30 15:27:31.264133 2024-07-30 15:27:31.264146 cognd 041489837 R rec b09ed5fb-7324-4141-bc10-fb89c7dba0c6 +2024-07-30 15:27:31.353813 2024-07-30 15:27:31.353824 cognd 041483626 R rec 45da6991-cfb0-4b0a-ab23-b76c4052c92e +2024-07-30 15:27:31.444517 2024-07-30 15:27:31.444532 cognd 041479017 R rec bf0f3390-de3a-4b05-a53b-bd041e914171 +2024-07-30 15:27:31.534609 2024-07-30 15:27:31.534619 cognd 041467760 R rec 007aaa85-aaa8-417d-ab94-522791fc1d59 +2024-07-30 15:27:31.613561 2024-07-30 15:27:31.613566 cognd 04146351X R rec 080b0468-a699-423e-8a4f-1bb6f409b9f3 +2024-07-30 15:27:31.681808 2024-07-30 15:27:31.681821 cognd 041463250 R rec b7c45e82-a42c-4209-99ce-ac85271ad07f +2024-07-30 15:27:31.772731 2024-07-30 15:27:31.772743 cognd 041462467 R rec 4fdf1d01-905f-4da7-a120-123d5b0268b8 +2024-07-30 15:27:31.854196 2024-07-30 15:27:31.854208 cognd 041456629 R rec 97f634ff-3f5b-4377-86c9-99ca7fb521b2 +2024-07-30 15:27:31.94159 2024-07-30 15:27:31.941605 cognd 041455908 R rec b1d83823-f061-4ce7-8c52-6feb90ba08a8 +2024-07-30 15:27:32.038889 2024-07-30 15:27:32.038904 cognd 04145412X R rec 4dad30ea-f4d2-4ac1-a5db-9f82336393e9 +2024-07-30 15:27:32.144376 2024-07-30 15:27:32.144389 cognd 041451732 R rec 629af789-271a-411c-9eba-a0e5d7fbbf75 +2024-07-30 15:27:32.246954 2024-07-30 15:27:32.247006 cognd 041449347 R rec 480dec5b-2183-4476-af66-056c74cf0753 +2024-07-30 15:27:32.346484 2024-07-30 15:27:32.346498 cognd 041448723 R rec 7a425aa2-f97b-4596-a746-b0ff6aa48e41 +2024-07-30 15:27:32.444047 2024-07-30 15:27:32.444057 cognd 041445120 R rec b21bec43-6845-46f5-8117-874151f02ee4 +2024-07-30 15:27:32.540113 2024-07-30 15:27:32.540129 cognd 041445082 R rec 193c10ef-0f9f-4066-826d-77947d907f6e +2024-07-30 15:27:32.624309 2024-07-30 15:27:32.624314 cognd 041444817 R rec 439fcf6f-c8e2-449c-8f8e-22f9ec4885e0 +2024-07-30 15:27:32.701452 2024-07-30 15:27:32.701464 cognd 041444809 R rec a2e87956-f42e-431a-b5f6-5ce377dc6c7f +2024-07-30 15:27:32.788107 2024-07-30 15:27:32.788121 cognd 041444108 R rec 3a19f8a5-39c2-45df-84e3-bf861cf125ec +2024-07-30 15:27:32.857546 2024-07-30 15:27:32.857557 cognd 04144115X R rec 15151d84-1f01-467f-9a54-b1141b52ee60 +2024-07-30 15:27:32.923874 2024-07-30 15:27:32.923884 cognd 041440706 R rec c4b2056f-63e1-4926-ac59-d9af72356788 +2024-07-30 15:27:32.992226 2024-07-30 15:27:32.992235 cognd 041439686 R rec 6997c055-13b5-40ac-8e11-2a9109ff9abd +2024-07-30 15:27:33.057595 2024-07-30 15:27:33.057605 cognd 041436512 R rec cda6e404-af69-4ca9-9725-33edb51af355 +2024-07-30 15:27:33.130443 2024-07-30 15:27:33.130454 cognd 041434722 R rec 4d5f098d-37eb-4716-baf2-7518c4e15cba +2024-07-30 15:27:33.202544 2024-07-30 15:27:33.202554 cognd 041427548 R rec 67ebb238-fa76-46b6-96e0-867c35fae3a3 +2024-07-30 15:27:33.276676 2024-07-30 15:27:33.276684 cognd 041424654 R rec 672b8a7d-5abd-4392-b22e-b791047edf4c +2024-07-30 15:27:33.356632 2024-07-30 15:27:33.356643 cognd 041419464 R rec 78e6a16e-94f1-4b3c-829c-2e35bcc1444b +2024-07-30 15:27:33.431073 2024-07-30 15:27:33.431082 cognd 041413334 R rec d99141e6-f122-41b1-b752-f214a6ad61ab +2024-07-30 15:27:33.51798 2024-07-30 15:27:33.517992 cognd 041413083 R rec 8e444a4b-ce8f-4bd6-8cc8-3944bd7562ec +2024-07-30 15:27:33.607347 2024-07-30 15:27:33.60736 cognd 041410513 R rec 5a032943-7067-40aa-a221-936f614cd71d +2024-07-30 15:27:33.668159 2024-07-30 15:27:33.668169 cognd 041406605 R rec d3dc1f63-5a46-4e27-ab43-030f40a14132 +2024-07-30 15:27:33.736062 2024-07-30 15:27:33.736074 cognd 041403886 R rec 9b36c38a-bfac-4b81-b2b4-688977a0f4e9 +2024-07-30 15:27:33.817067 2024-07-30 15:27:33.817079 cognd 041403657 R rec 1a796d89-38fb-4427-8fed-688161fdfc4c +2024-07-30 15:27:33.907159 2024-07-30 15:27:33.907175 cognd 041401522 R rec 09b3e278-c816-4262-b725-321f3753debc +2024-07-30 15:27:33.983225 2024-07-30 15:27:33.983236 cognd 041400909 R rec 2d48cffc-6f71-46d1-af5d-ab90c551e3f9 +2024-07-30 15:27:34.063209 2024-07-30 15:27:34.063221 cognd 041398424 R rec 153dbdea-6fd2-4fc4-b618-b394d9266d0c +2024-07-30 15:27:34.147281 2024-07-30 15:27:34.147292 cognd 041397932 R rec 5814e88a-4c44-4d6f-8d3c-3433942a0c5c +2024-07-30 15:27:34.219479 2024-07-30 15:27:34.219489 cognd 041397150 R rec 08af2abf-1119-44c0-9693-42019ed73cc2 +2024-07-30 15:27:34.288582 2024-07-30 15:27:34.288593 cognd 04139674X R rec c6779024-9ac1-4533-a999-442b6d342bba +2024-07-30 15:27:34.382792 2024-07-30 15:27:34.382803 cognd 041395786 R rec 66af502b-15fb-4bf5-941f-7edbad37019f +2024-07-30 15:27:34.4616 2024-07-30 15:27:34.461611 cognd 04139531X R rec 5c9e8cbb-3682-4954-ab90-c318bccdefe6 +2024-07-30 15:27:34.536391 2024-07-30 15:27:34.536403 cognd 041393848 R rec 2f10c257-8c1a-478c-baa8-d37fcafd5f31 +2024-07-30 15:27:34.62013 2024-07-30 15:27:34.620141 cognd 041392736 R rec e9985cce-d18b-4a31-a7af-591cff7121ad +2024-07-30 15:27:34.695803 2024-07-30 15:27:34.695814 cognd 041385896 R rec a71fa80f-1a8d-45d5-8a11-5149bf198510 +2024-07-30 15:27:34.781155 2024-07-30 15:27:34.781167 cognd 041385659 R rec f38695ed-7dcd-496c-b581-eeb3dcfa3c2a +2024-07-30 15:27:34.87972 2024-07-30 15:27:34.87973 cognd 041382994 R rec 46ecdb89-b062-4977-a5b5-328a659416ed +2024-07-30 15:27:34.974047 2024-07-30 15:27:34.974057 cognd 041380827 R rec c24a1a33-10f1-4e83-9d30-a729633d1adf +2024-07-30 15:27:35.060511 2024-07-30 15:27:35.060526 cognd 041378970 R rec 241fd3e8-5daf-42cc-9fce-da7d55d64122 +2024-07-30 15:27:35.154058 2024-07-30 15:27:35.15407 cognd 041378296 R rec 1cc79862-73b2-4312-8326-4b2a730d8b77 +2024-07-30 15:27:35.258448 2024-07-30 15:27:35.258458 cognd 04137651X R rec aba4afc3-7fce-4d66-9944-5ff40f39067e +2024-07-30 15:27:35.360712 2024-07-30 15:27:35.360728 cognd 041375785 R rec 28db7f27-da3d-47ba-ba73-2b8032bb0638 +2024-07-30 15:27:35.435759 2024-07-30 15:27:35.435769 cognd 041375157 R rec 8805fa0e-552e-4a4f-bdf5-c0f3472d25d5 +2024-07-30 15:27:35.511653 2024-07-30 15:27:35.511669 cognd 041373146 R rec 5202a208-2f96-429d-ad63-ad551e4116b0 +2024-07-30 15:27:35.580949 2024-07-30 15:27:35.58096 cognd 041372867 R rec f1c64f39-c4da-46bc-8352-ec1c8d95c5a7 +2024-07-30 15:27:35.650693 2024-07-30 15:27:35.650703 cognd 041369424 R rec 36553467-84a9-42d4-89e6-f5c084bdfad6 +2024-07-30 15:27:35.717335 2024-07-30 15:27:35.717343 cognd 041368118 R rec 6b837c75-79d0-4409-9684-cf94ac628be3 +2024-07-30 15:27:35.793731 2024-07-30 15:27:35.793744 cognd 041367782 R rec 85f3b796-7773-43dd-afae-112cc5cad69b +2024-07-30 15:27:35.863413 2024-07-30 15:27:35.863424 cognd 041358902 R rec e1e51863-add5-443e-91ab-b749e548135d +2024-07-30 15:27:35.943946 2024-07-30 15:27:35.943957 cognd 041358678 R rec 9458435d-e0d8-4645-8bab-a8d1e2760791 +2024-07-30 15:27:36.020164 2024-07-30 15:27:36.020176 cognd 041357515 R rec cff2073a-7ebd-4d6f-90f5-336e8852ef17 +2024-07-30 15:27:36.090376 2024-07-30 15:27:36.090387 cognd 041351169 R rec d7570880-0df6-4049-adaa-f37116b3b87f +2024-07-30 15:27:36.175206 2024-07-30 15:27:36.175242 cognd 041344677 R rec 5194c876-df39-4fc8-8533-67556b4f956f +2024-07-30 15:27:36.25181 2024-07-30 15:27:36.251821 cognd 041336844 R rec 0bfd83eb-5933-4144-af12-cb9f416f8311 +2024-07-30 15:27:36.324844 2024-07-30 15:27:36.324855 cognd 041336720 R rec 47106888-69d1-48b8-b724-79c04933d4b9 +2024-07-30 15:27:36.403774 2024-07-30 15:27:36.403785 cognd 041332156 R rec df771413-d431-4696-a4d1-6bf343841889 +2024-07-30 15:27:36.477682 2024-07-30 15:27:36.477693 cognd 041330048 R rec 9a9ad331-b343-46ea-a233-2182d3e87f31 +2024-07-30 15:27:36.570614 2024-07-30 15:27:36.570625 cognd 041328523 R rec 10cbd858-4735-4ea4-9801-e3af2a77b454 +2024-07-30 15:27:36.647712 2024-07-30 15:27:36.647724 cognd 041327896 R rec f0b7d50b-1358-438f-be53-7bba1e68fe25 +2024-07-30 15:27:36.718657 2024-07-30 15:27:36.718662 cognd 041326393 R rec 62081650-d816-4ffd-bb02-8d7d1643c6ca +2024-07-30 15:27:36.782538 2024-07-30 15:27:36.782548 cognd 041325109 R rec 47889eef-a642-4b26-a68a-e0cc38e45ed2 +2024-07-30 15:27:36.861224 2024-07-30 15:27:36.86126 cognd 04132501X R rec e73c6a0f-7924-4876-8da4-c535b3d8d1c4 +2024-07-30 15:27:36.942596 2024-07-30 15:27:36.942608 cognd 041321782 R rec 5bfeeec9-30ca-4309-8655-99e0c49d3906 +2024-07-30 15:27:37.020304 2024-07-30 15:27:37.020315 cognd 041318153 R rec 87c6ea6e-dfef-4fad-afa0-1c3c16d97250 +2024-07-30 15:27:37.105664 2024-07-30 15:27:37.105695 cognd 041312406 R rec 1e0f35f0-32af-4637-862d-693a6036ae39 +2024-07-30 15:27:37.188925 2024-07-30 15:27:37.188937 cognd 041311248 R rec 6a5b7e11-28fb-4389-9b6d-c66587024535 +2024-07-30 15:27:37.26413 2024-07-30 15:27:37.264141 cognd 041308263 R rec 69d145e3-2246-4658-be4e-83e09543068e +2024-07-30 15:27:37.329521 2024-07-30 15:27:37.329532 cognd 041306570 R rec 28757a7f-ef08-40a4-914e-e37d97d58476 +2024-07-30 15:27:37.416186 2024-07-30 15:27:37.416198 cognd 041306473 R rec 01313cf6-765c-4de5-8176-5ad6873ccf44 +2024-07-30 15:27:37.498557 2024-07-30 15:27:37.498599 cognd 041305450 R rec 50cdc7b9-c9df-4256-8acd-aa3c3b3b026b +2024-07-30 15:27:37.572987 2024-07-30 15:27:37.572998 cognd 041301005 R rec 0c1d4340-a807-4244-9379-7921fd19cdd8 +2024-07-30 15:27:37.653732 2024-07-30 15:27:37.653743 cognd 041296540 R rec aa194a61-7b8d-4d77-96ed-b1b7488a6aab +2024-07-30 15:27:37.742804 2024-07-30 15:27:37.742809 cognd 041291107 R rec 3cd35625-6d09-4005-b70b-013cab3f81af +2024-07-30 15:27:37.803219 2024-07-30 15:27:37.803229 cognd 041289870 R rec c68bd60c-e279-4e39-ac46-19167fb5786a +2024-07-30 15:27:37.886731 2024-07-30 15:27:37.886742 cognd 041288769 R rec 07136491-3fea-43a9-9285-453686ec09ce +2024-07-30 15:27:37.972605 2024-07-30 15:27:37.972617 cognd 04128805X R rec 729abc76-d63d-448b-84f3-385743bde73f +2024-07-30 15:27:38.072725 2024-07-30 15:27:38.072736 cognd 041287886 R rec c957c3e3-0e89-44ba-a4cb-06b2477be073 +2024-07-30 15:27:38.206396 2024-07-30 15:27:38.206407 cognd 041285913 R rec 5f44264e-5bfe-4d09-81be-bbd434a615aa +2024-07-30 15:27:38.280786 2024-07-30 15:27:38.280798 cognd 041284100 R rec db3a30b3-1a5f-4115-bed9-50a53675a24b +2024-07-30 15:27:38.352043 2024-07-30 15:27:38.352058 cognd 041282787 R rec ab0fb2b9-0983-488a-be8d-ffe26b7d69a3 +2024-07-30 15:27:38.438838 2024-07-30 15:27:38.438847 cognd 041280628 R rec 7b1ea6f2-d5ae-4168-9b35-51eea4f4f03d +2024-07-30 15:27:38.516921 2024-07-30 15:27:38.516933 cognd 041277848 R rec e535dc50-0c55-4b29-97fe-5376e25ca6b1 +2024-07-30 15:27:38.59454 2024-07-30 15:27:38.594552 cognd 041277090 R rec 80c68e49-0889-4f8e-84f7-19a1f082e542 +2024-07-30 15:27:38.677015 2024-07-30 15:27:38.677029 cognd 041275829 R rec cbe1d770-5da8-44d8-9c2e-11530e014b74 +2024-07-30 15:27:38.770709 2024-07-30 15:27:38.77072 cognd 041274059 R rec 3593e8b5-73e7-491c-ad32-8a6f3a3d9494 +2024-07-30 15:27:38.84729 2024-07-30 15:27:38.847336 cognd 041270290 R rec c5f9706a-8210-4cda-80c4-05ec841d2b8b +2024-07-30 15:27:38.919778 2024-07-30 15:27:38.919789 cognd 041264487 R rec 1d652814-78d6-4eb9-ab4d-21638564a7bc +2024-07-30 15:27:38.995631 2024-07-30 15:27:38.995643 cognd 04126133X R rec 53a40571-0424-48cc-b1fe-bf821a4f8526 +2024-07-30 15:27:39.073485 2024-07-30 15:27:39.073496 cognd 041258819 R rec 89c485e7-0d6d-47e3-9cbe-e505b47438fe +2024-07-30 15:27:39.15359 2024-07-30 15:27:39.1536 cognd 041258762 R rec c1e5db46-b493-40fd-a984-43c08870e5c8 +2024-07-30 15:27:39.229572 2024-07-30 15:27:39.229584 cognd 041255364 R rec 6cd86fa8-9bdb-4d02-b313-6576bfb125bf +2024-07-30 15:27:39.32743 2024-07-30 15:27:39.327439 cognd 041254759 R rec 6f231845-5eea-48a2-acbb-97b6be9aa872 +2024-07-30 15:27:39.401789 2024-07-30 15:27:39.401805 cognd 041254538 R rec 4424ed61-8ffb-4509-88f2-4f85c9b6b863 +2024-07-30 15:27:39.479326 2024-07-30 15:27:39.479337 cognd 041251733 R rec 65fa8ab1-3a85-4ef3-a05e-3415855f8bc3 +2024-07-30 15:27:39.552408 2024-07-30 15:27:39.552418 cognd 041250117 R rec 38803ab6-102b-4c72-b0f3-ca6620acb473 +2024-07-30 15:27:39.634154 2024-07-30 15:27:39.63417 cognd 041244362 R rec 923b3fe2-9fbf-4bb5-b77d-466e76115e16 +2024-07-30 15:27:39.722704 2024-07-30 15:27:39.722715 cognd 04124317X R rec d41c545a-5bad-45cf-8eb1-d71630b7ad06 +2024-07-30 15:27:39.812334 2024-07-30 15:27:39.812339 cognd 041240839 R rec b8e64155-6741-4f27-b706-7aae6dffafa5 +2024-07-30 15:27:39.873834 2024-07-30 15:27:39.873845 cognd 041237226 R rec 74dd8d6c-84d2-4056-b30c-87f8f8e0417f +2024-07-30 15:27:39.952013 2024-07-30 15:27:39.952022 cognd 041231899 R rec 0c403387-f651-497e-a138-122dd630fc80 +2024-07-30 15:27:40.030599 2024-07-30 15:27:40.03061 cognd 041220803 R rec 11ad469f-8259-4578-be5c-ea28ba6a6ea5 +2024-07-30 15:27:40.104596 2024-07-30 15:27:40.104608 cognd 041218760 R rec 4757ebf8-f81b-4516-a7db-303437bffaf9 +2024-07-30 15:27:40.190718 2024-07-30 15:27:40.190732 cognd 041217896 R rec 27c35cf8-28dd-4675-8556-02ae34d9fe3c +2024-07-30 15:27:40.285423 2024-07-30 15:27:40.285438 cognd 041217225 R rec 608501fe-13fa-4584-b62e-66ed2fe2c52b +2024-07-30 15:27:40.382059 2024-07-30 15:27:40.382069 cognd 041217020 R rec f5ead1a2-16ed-418f-853a-7969b8658e4d +2024-07-30 15:27:40.446575 2024-07-30 15:27:40.446586 cognd 04121630X R rec 1999a367-7298-4015-90cc-9dffc03618f3 +2024-07-30 15:27:40.51123 2024-07-30 15:27:40.511239 cognd 041214870 R rec 2e2c4f63-8070-4004-abf6-38e5065057db +2024-07-30 15:27:40.577347 2024-07-30 15:27:40.577358 cognd 041212339 R rec 65ca1391-4398-4093-979b-5c266bc267d9 +2024-07-30 15:27:40.647638 2024-07-30 15:27:40.647649 cognd 041211383 R rec be330213-2eff-4bf6-8331-2f678497e92b +2024-07-30 15:27:40.723869 2024-07-30 15:27:40.72388 cognd 041211154 R rec e1e2078a-e3c9-4a40-830a-38d049963ff6 +2024-07-30 15:27:40.800327 2024-07-30 15:27:40.800337 cognd 041208862 R rec ec6edb0b-0c44-4364-962f-621d2e8f21fb +2024-07-30 15:27:40.856865 2024-07-30 15:27:40.856871 cognd 041204409 R rec ef61cf30-badb-4c6c-9d9d-f534912391b1 +2024-07-30 15:27:40.919076 2024-07-30 15:27:40.919087 cognd 041176626 R rec cc6ae561-2e81-46b2-a2af-2d02045d4860 +2024-07-30 15:27:41.000478 2024-07-30 15:27:41.000489 cognd 041175808 R rec 8208b39e-5a54-4d80-a3e5-7bbea1f5824b +2024-07-30 15:27:41.07772 2024-07-30 15:27:41.077731 cognd 041173899 R rec 40f058ea-1986-4801-8116-8faf99a0a1ca +2024-07-30 15:27:41.154925 2024-07-30 15:27:41.154936 cognd 041172922 R rec f33cbabc-295a-4b94-8e1d-8c0e8513f688 +2024-07-30 15:27:41.236271 2024-07-30 15:27:41.236281 cognd 041172299 R rec f916fa39-2722-47b7-a93d-20febd51cce8 +2024-07-30 15:27:41.310766 2024-07-30 15:27:41.310776 cognd 041164334 R rec f4398e7d-f73a-4601-a635-92bfbd0c4660 +2024-07-30 15:27:41.387127 2024-07-30 15:27:41.387138 cognd 04115746X R rec df4c9788-83de-4b38-b36f-46686e7fba39 +2024-07-30 15:27:41.453678 2024-07-30 15:27:41.453689 cognd 041144910 R rec f6aec429-05fc-4dd3-8fd4-3a3c0c436a59 +2024-07-30 15:27:41.530637 2024-07-30 15:27:41.530649 cognd 041142993 R rec c99faff4-693e-487b-b793-57fbe58f4ba3 +2024-07-30 15:27:41.608168 2024-07-30 15:27:41.60818 cognd 041142403 R rec b47df1e3-9447-4130-9c47-04e7b79eb868 +2024-07-30 15:27:41.685535 2024-07-30 15:27:41.685547 cognd 041134346 R rec bee1f819-18ac-40db-90e2-7f274e49c636 +2024-07-30 15:27:41.756149 2024-07-30 15:27:41.756174 cognd 041133889 R rec 384c2fc7-5bb5-44da-a10a-2fc380847fa0 +2024-07-30 15:27:41.826206 2024-07-30 15:27:41.826218 cognd 041125002 R rec 3a520b25-2680-4c28-8db8-27c6402f5cac +2024-07-30 15:27:41.881678 2024-07-30 15:27:41.881683 cognd 041067940 R rec c725b299-d869-4e6f-be97-9fac810505bf +2024-07-30 15:27:41.937476 2024-07-30 15:27:41.937487 cognd 040785947 R rec 42f1b872-1bba-4e02-820e-6991e3ad4920 +2024-07-30 15:27:42.004687 2024-07-30 15:27:42.004698 cognd 04077984X R rec 7a301d21-6bf7-4ccf-a8ed-8eeabaab1420 +2024-07-30 15:27:42.072111 2024-07-30 15:27:42.072121 cognd 040777820 R rec f797b5a2-a602-4281-aeb3-8f8af38e3d61 +2024-07-30 15:27:42.156629 2024-07-30 15:27:42.156642 cognd 040776832 R rec d687c3fd-26b2-4d0d-80bf-2cce4a0e7092 +2024-07-30 15:27:42.229022 2024-07-30 15:27:42.229032 cognd 040760669 R rec d4a7f598-e3ab-4a8f-9066-4220aab1ed78 +2024-07-30 15:27:42.31871 2024-07-30 15:27:42.31872 cognd 04075121X R rec 3655cbc5-fe1b-420e-8915-16ba0921f5be +2024-07-30 15:27:42.385922 2024-07-30 15:27:42.385932 cognd 040741117 R rec f675a5a4-5150-4625-957e-7906b524252d +2024-07-30 15:27:42.459972 2024-07-30 15:27:42.459983 cognd 040737888 R rec 34c3c4c0-d0ee-45c5-83ab-daa4e6d085e9 +2024-07-30 15:27:42.527567 2024-07-30 15:27:42.527577 cognd 040737810 R rec ef5c7e14-9b71-4e5d-b4a0-a87b930a53e2 +2024-07-30 15:27:42.622507 2024-07-30 15:27:42.622516 cognd 040737063 R rec e372d7bd-67c3-4f9d-b9ac-149b8c47bbb3 +2024-07-30 15:27:42.698705 2024-07-30 15:27:42.698714 cognd 040717763 R rec 805b99c5-5dfe-47ae-b6f2-66205c67cdb4 +2024-07-30 15:27:42.787469 2024-07-30 15:27:42.78748 cognd 040717119 R rec ee115e48-62f6-48c8-89b5-c52fd60eea37 +2024-07-30 15:27:42.861544 2024-07-30 15:27:42.861555 cognd 040715213 R rec 331e086a-63e4-4c00-8a8a-3f3b0d866c19 +2024-07-30 15:27:42.90996 2024-07-30 15:27:42.909965 cognd 040712168 R rec 51d48a1a-c8e6-4cfe-a14f-fd77604a12d0 +2024-07-30 15:27:42.973116 2024-07-30 15:27:42.973127 cognd 040709248 R rec 38996aeb-116b-4a34-b2bc-8c4b6accd553 +2024-07-30 15:27:43.045896 2024-07-30 15:27:43.045908 cognd 040707385 R rec 6d6f4ce0-0445-455a-b2b8-f4fcc210d4a2 +2024-07-30 15:27:43.154218 2024-07-30 15:27:43.154223 cognd 040706079 R rec ded092c4-2581-4d64-b135-68b339857022 +2024-07-30 15:27:43.213554 2024-07-30 15:27:43.213564 cognd 040705846 R rec 51b4ae7c-79ff-4014-934a-7f5421859939 +2024-07-30 15:27:43.286226 2024-07-30 15:27:43.286238 cognd 040693759 R rec 7b4575c1-0132-47fc-a756-e7bc00898f80 +2024-07-30 15:27:43.366794 2024-07-30 15:27:43.366805 cognd 040693538 R rec 7b2dc7e2-55a7-495b-952c-5f62d9a8bd63 +2024-07-30 15:27:43.438012 2024-07-30 15:27:43.438023 cognd 040687333 R rec c9a66683-3f0b-407d-90f9-cc6516e281f6 +2024-07-30 15:27:43.513552 2024-07-30 15:27:43.513562 cognd 040685969 R rec ebd29389-05a8-431a-a843-42dc6d2d89fc +2024-07-30 15:27:43.584069 2024-07-30 15:27:43.584081 cognd 040677036 R rec fcc1b34e-fb42-4a46-9041-f11910cbf1b7 +2024-07-30 15:27:43.657175 2024-07-30 15:27:43.657186 cognd 04067701X R rec 4678163d-2c72-4f00-877c-968fa99864d7 +2024-07-30 15:27:43.742183 2024-07-30 15:27:43.742193 cognd 040664643 R rec 584610ad-7ae5-4054-9663-2af4d9de6ca7 +2024-07-30 15:27:43.816102 2024-07-30 15:27:43.816114 cognd 040664244 R rec cb815b1d-2ff9-42e1-9858-7da4545371ff +2024-07-30 15:27:43.891571 2024-07-30 15:27:43.891582 cognd 040664104 R rec fff6aad0-a3d4-41ff-8565-4c6428dfbb1e +2024-07-30 15:27:43.963611 2024-07-30 15:27:43.96362 cognd 040658864 R rec 990b81cf-04ed-49b3-95b2-d6de7acc48ec +2024-07-30 15:27:44.028407 2024-07-30 15:27:44.028419 cognd 040654648 R rec e3131277-365b-4dff-b423-9a1486b559cc +2024-07-30 15:27:44.105113 2024-07-30 15:27:44.105124 cognd 040641805 R rec d7bde878-37e6-4eae-b2bf-b178d0f6f478 +2024-07-30 15:27:44.181559 2024-07-30 15:27:44.18157 cognd 040633306 R rec 3d74a373-a6f7-49e9-85a6-0794a891637c +2024-07-30 15:27:44.271427 2024-07-30 15:27:44.271443 cognd 040628604 R rec ce4a2a51-1de4-4bdf-ad02-a3e92d91bb1b +2024-07-30 15:27:44.374482 2024-07-30 15:27:44.374494 cognd 040628094 R rec 060a6c19-60d4-475a-bb4e-8994a0399936 +2024-07-30 15:27:44.458231 2024-07-30 15:27:44.458241 cognd 040621278 R rec 8849d803-a110-4b09-a781-3948c295f01a +2024-07-30 15:27:44.524688 2024-07-30 15:27:44.524698 cognd 040617203 R rec 0ee91db3-feda-40a3-b348-2b0a2079eafd +2024-07-30 15:27:44.59852 2024-07-30 15:27:44.59853 cognd 040598160 R rec c64f26b9-c24e-4d3b-8062-594b09dd27af +2024-07-30 15:27:44.662124 2024-07-30 15:27:44.662134 cognd 040596648 R rec 131ab41f-70cf-4c0f-93d3-c53eeedbe9fd +2024-07-30 15:27:44.725261 2024-07-30 15:27:44.725271 cognd 04059596X R rec 6ca68b55-66e7-4aa5-b065-26c46b7be908 +2024-07-30 15:27:44.797085 2024-07-30 15:27:44.797096 cognd 040581780 R rec 04ef0aef-b144-4c3d-814f-b48cae2500ed +2024-07-30 15:27:44.874119 2024-07-30 15:27:44.87413 cognd 040579123 R rec 9b49de6a-4aad-4e30-a082-1fe959f191f4 +2024-07-30 15:27:44.953282 2024-07-30 15:27:44.953292 cognd 040576337 R rec e00a0703-4853-4bdd-b652-7478dcf7d506 +2024-07-30 15:27:45.006525 2024-07-30 15:27:45.006534 cognd 040575136 R rec 41e24049-6a38-461e-8b2b-61b73cb5b03f +2024-07-30 15:27:45.073503 2024-07-30 15:27:45.073514 cognd 040570215 R rec 83668220-e17d-46de-842f-d37c01febdf3 +2024-07-30 15:27:45.154467 2024-07-30 15:27:45.15448 cognd 040562182 R rec 74860633-edd3-4105-bf0c-d8d8f7bec5c0 +2024-07-30 15:27:45.240267 2024-07-30 15:27:45.240283 cognd 040539644 R rec 6a33f32b-6f8c-4500-bd1a-7d87a57edd0a +2024-07-30 15:27:45.320862 2024-07-30 15:27:45.320872 cognd 04053376X R rec c1278a36-158f-4083-bb78-51986a649f73 +2024-07-30 15:27:45.407865 2024-07-30 15:27:45.40788 cognd 040515842 R rec 50fc22fa-50fb-4b45-bb3b-8faba7df5198 +2024-07-30 15:27:45.483182 2024-07-30 15:27:45.483193 cognd 040490122 R rec 8e0a4231-4ef7-4a72-9ab1-ba903fbda6c9 +2024-07-30 15:27:45.566287 2024-07-30 15:27:45.566299 cognd 040475972 R rec b2e08193-3f45-4cdd-a5b7-b71bb4bb78c8 +2024-07-30 15:27:45.639636 2024-07-30 15:27:45.639649 cognd 040475778 R rec 36cb85fc-6fc2-44db-8072-f8c40dad4276 +2024-07-30 15:27:45.717229 2024-07-30 15:27:45.71724 cognd 040471713 R rec 7f1c535e-9fe8-450c-9f3b-68e4206064a4 +2024-07-30 15:27:45.791523 2024-07-30 15:27:45.791534 cognd 040471233 R rec afd4e4f8-6863-4faa-b890-2dd111bdb083 +2024-07-30 15:27:45.866934 2024-07-30 15:27:45.866948 cognd 040468003 R rec 70c7d964-a6c4-4487-ae92-1c0fe4f80234 +2024-07-30 15:27:45.950146 2024-07-30 15:27:45.950157 cognd 040461912 R rec 89133972-1e54-4b1c-94d7-e0d4ecd29a2a +2024-07-30 15:27:46.018499 2024-07-30 15:27:46.018511 cognd 040460495 R rec c68a4957-36b0-4acf-98d2-0d5c05502b70 +2024-07-30 15:27:46.105054 2024-07-30 15:27:46.105067 cognd 040459195 R rec 13afb2b3-9397-4c98-ad32-9228f5a06bc8 +2024-07-30 15:27:46.184455 2024-07-30 15:27:46.184465 cognd 040448932 R rec 76316e5b-f9c2-495d-8ed5-0915925c78b1 +2024-07-30 15:27:46.252958 2024-07-30 15:27:46.252971 cognd 040448924 R rec 7936fa21-2d89-4694-8dbe-f4f133b6a3fc +2024-07-30 15:27:46.337043 2024-07-30 15:27:46.337057 cognd 040414124 R rec 7829a174-c4ba-4017-b79a-3ba8140977b0 +2024-07-30 15:27:46.430138 2024-07-30 15:27:46.430152 cognd 04041177X R rec b6c3f21f-af0d-4086-a6ca-e4d3e2a6e1dc +2024-07-30 15:27:46.525245 2024-07-30 15:27:46.525259 cognd 040411583 R rec 22db54b4-b867-4531-91a1-6e4a4b15c9d0 +2024-07-30 15:27:46.617835 2024-07-30 15:27:46.617851 cognd 040372170 R rec 6e75b791-43c0-4031-915d-1b043fa28ef0 +2024-07-30 15:27:46.713063 2024-07-30 15:27:46.713072 cognd 040366898 R rec 8b7aba74-dd02-488c-bf85-1857b030c6a8 +2024-07-30 15:27:46.791857 2024-07-30 15:27:46.791869 cognd 040357228 R rec ade34321-f02e-4544-84d7-055e22d84965 +2024-07-30 15:27:46.871861 2024-07-30 15:27:46.871872 cognd 040354415 R rec c75b2542-ffe2-4e86-90d9-3cc2fb5ebc9c +2024-07-30 15:27:46.936937 2024-07-30 15:27:46.936947 cognd 040351130 R rec 46010dfe-be76-49bd-91d7-2f13dfd52f3b +2024-07-30 15:27:47.006282 2024-07-30 15:27:47.006287 cognd 04034889X R rec fac2e38c-712a-41fe-b14d-7b4a536cfb33 +2024-07-30 15:27:47.066382 2024-07-30 15:27:47.066394 cognd 040344029 R rec b33db983-99e6-485f-b878-670351ffc3b5 +2024-07-30 15:27:47.153871 2024-07-30 15:27:47.153881 cognd 040302482 R rec 28314d43-5f95-4c63-948b-c72a8a3468af +2024-07-30 15:27:47.231933 2024-07-30 15:27:47.231949 cognd 040299848 R rec 3d549458-3309-4928-bfb5-d6c8dca7630b +2024-07-30 15:27:47.305269 2024-07-30 15:27:47.305278 cognd 040297519 R rec 42e9fc51-260b-4f47-bd65-eb5ce786af47 +2024-07-30 15:27:47.369478 2024-07-30 15:27:47.369489 cognd 040296709 R rec a0c9aa10-e80c-444f-9811-e7892054f61c +2024-07-30 15:27:47.445701 2024-07-30 15:27:47.445712 cognd 040270076 R rec 11b08ac1-f66b-4162-a812-c302ce378abb +2024-07-30 15:27:47.515066 2024-07-30 15:27:47.515077 cognd 040267210 R rec aa875f09-a95f-4e85-85c2-d070ce8ad3e3 +2024-07-30 15:27:47.593582 2024-07-30 15:27:47.593592 cognd 040257029 R rec 9464e9e7-eab1-4a3e-9570-69282110b96b +2024-07-30 15:27:47.663831 2024-07-30 15:27:47.663841 cognd 040246655 R rec 23cd03ed-67ed-45fc-b4d1-ea7d767dd710 +2024-07-30 15:27:47.742039 2024-07-30 15:27:47.742051 cognd 040218066 R rec 8a9f5423-0699-4973-a72b-99eba31f000b +2024-07-30 15:27:47.825521 2024-07-30 15:27:47.825531 cognd 04021334X R rec 83c78f34-9a6d-43ad-ba1f-3fdb7ede4030 +2024-07-30 15:27:47.893329 2024-07-30 15:27:47.893339 cognd 040200728 R rec 490cdea7-eca8-40da-8f5b-a6947cb12a3c +2024-07-30 15:27:47.965752 2024-07-30 15:27:47.965764 cognd 040200159 R rec 94036557-b993-4bc7-91cb-edc5895df250 +2024-07-30 15:27:48.03661 2024-07-30 15:27:48.036616 cognd 040195589 R rec e6eb2c64-3dad-4266-98b6-7af0798027cc +2024-07-30 15:27:48.095625 2024-07-30 15:27:48.095637 cognd 040172503 R rec 88e97352-55b3-415c-b506-a1a30acfb3d4 +2024-07-30 15:27:48.189172 2024-07-30 15:27:48.189185 cognd 040171078 R rec 7efde05a-baf1-426d-bf23-3672e065a497 +2024-07-30 15:27:48.279944 2024-07-30 15:27:48.279956 cognd 040163172 R rec 95a2bcf4-3b32-44d2-a1b5-6cdb7d661ef9 +2024-07-30 15:27:48.356147 2024-07-30 15:27:48.356158 cognd 04015985X R rec 91979fdc-6280-4645-a6f3-f2a03b139f03 +2024-07-30 15:27:48.425239 2024-07-30 15:27:48.42525 cognd 040158292 R rec 7426af99-79fd-4f33-8499-586cf706ff0b +2024-07-30 15:27:48.487853 2024-07-30 15:27:48.487863 cognd 040143503 R rec 94309d37-71b8-457a-a99e-b81b091a2e78 +2024-07-30 15:27:48.556289 2024-07-30 15:27:48.5563 cognd 040143376 R rec 9546dbc4-d3ac-41a3-952b-9c040096ad08 +2024-07-30 15:27:48.633965 2024-07-30 15:27:48.633976 cognd 040137465 R rec db1837f8-dd36-4992-be14-f968b8a2e08c +2024-07-30 15:27:48.705978 2024-07-30 15:27:48.705989 cognd 040136302 R rec f4e6229e-0562-44dd-98b6-a19ed0d5f7a9 +2024-07-30 15:27:48.776981 2024-07-30 15:27:48.776993 cognd 040132153 R rec ec406b10-7252-43c9-8ffd-5acd68bea5bf +2024-07-30 15:27:48.855796 2024-07-30 15:27:48.855807 cognd 040110680 R rec abf4af3d-d2b0-49ed-8dbd-89735e3bd8b9 +2024-07-30 15:27:48.925344 2024-07-30 15:27:48.925355 cognd 040105423 R rec 637e19a2-3e66-4060-a2e8-34789564836c +2024-07-30 15:27:49.00164 2024-07-30 15:27:49.001651 cognd 040098923 R rec 088502cc-272b-4913-a5a8-59be7da07d72 +2024-07-30 15:27:49.078068 2024-07-30 15:27:49.078077 cognd 040092755 R rec d9cfe726-7d42-46c0-acfd-d79ba16577c4 +2024-07-30 15:27:49.143917 2024-07-30 15:27:49.143928 cognd 04009104X R rec 3c9935b8-c63b-4581-9680-19f971125a99 +2024-07-30 15:27:49.211061 2024-07-30 15:27:49.211072 cognd 040090809 R rec 79b9a9d1-eadc-4c11-8cbc-8aed4abe21ab +2024-07-30 15:27:49.27539 2024-07-30 15:27:49.2754 cognd 040072118 R rec bce7b8d2-5506-4a46-b851-0947446d6b1e +2024-07-30 15:27:49.342897 2024-07-30 15:27:49.342908 cognd 040070328 R rec 162f2877-ef52-41d1-9c6b-e915eea7b5c0 +2024-07-30 15:27:49.411792 2024-07-30 15:27:49.411803 cognd 040060055 R rec 2e69a51a-cd47-45e9-be13-58c62c72c9b5 +2024-07-30 15:27:49.488912 2024-07-30 15:27:49.488924 cognd 040054020 R rec 0033ffb8-8577-4273-b0db-277461f0ec25 +2024-07-30 15:27:49.561086 2024-07-30 15:27:49.561097 cognd 040048543 R rec 3b687305-8bee-4ebe-a2d5-7d73cd77c60a +2024-07-30 15:27:49.634637 2024-07-30 15:27:49.634648 cognd 040035506 R rec 1c3cc153-de8a-4c36-bdea-5a9a9be1149d +2024-07-30 15:27:49.707977 2024-07-30 15:27:49.707989 cognd 04003500X R rec 9937ae5d-1a02-4aeb-9b0a-469164a805cc +2024-07-30 15:27:49.790268 2024-07-30 15:27:49.79028 cognd 040030962 R rec 655eed8e-5269-4349-a00c-7f42f0bbac7a +2024-07-30 15:27:49.867134 2024-07-30 15:27:49.867145 cognd 040018040 R rec 1516d012-8547-4654-81db-93e6fc5518bd +2024-07-30 15:27:49.9369 2024-07-30 15:27:49.936911 cognd 040009866 R rec 09a8bad7-87bb-41d7-af15-cd025753b9e3 +2024-07-30 15:27:50.010926 2024-07-30 15:27:50.010937 cognd 040009327 R rec 6a5e4336-7c9e-4265-9409-72801bc8db6d +2024-07-30 15:27:50.096492 2024-07-30 15:27:50.096497 cognd 040004570 R rec 46a5c688-78e9-435f-b6b4-9294b95c0376 +2024-07-30 15:27:50.157461 2024-07-30 15:27:50.157471 cognd 04000158X R rec 0a69c5de-fae9-4e84-b404-aeea52d48ac9 +2024-07-30 15:27:50.221406 2024-07-30 15:27:50.221417 cognd 1336884932 R rec 77d2ae1b-0def-4522-8610-ba51367b7518 +2024-07-30 15:27:50.284883 2024-07-30 15:27:50.284895 cognd 1336884762 R rec 0bf93274-1514-43aa-846a-e539df605f19 +2024-07-30 15:27:50.363651 2024-07-30 15:27:50.363663 cognd 1336876913 R rec 2db7bb4d-3f79-490b-9140-22a9dca8f749 +2024-07-30 15:27:50.439448 2024-07-30 15:27:50.439459 cognd 1336874678 R rec 94d7dfc1-6f0c-4c96-b8a7-a33bd0860c81 +2024-07-30 15:27:50.511926 2024-07-30 15:27:50.511936 cognd 1336874414 R rec 2d497741-6ee5-4463-b170-c83f366a1882 +2024-07-30 15:27:50.586993 2024-07-30 15:27:50.587004 cognd 133686463X R rec 7326ba33-328c-4315-8eea-f73d54aa3757 +2024-07-30 15:27:50.652156 2024-07-30 15:27:50.652166 cognd 1336835052 R rec ff4b417a-c4a1-410c-b794-0af03db789bd +2024-07-30 15:27:50.722661 2024-07-30 15:27:50.722672 cognd 1336765410 R rec 8aacf00e-0995-4a60-b250-039fd29a6814 +2024-07-30 15:27:50.80225 2024-07-30 15:27:50.802265 cognd 1336763213 R rec e95eec17-0171-45a9-ac12-20735b323eac +2024-07-30 15:27:50.879972 2024-07-30 15:27:50.879984 cognd 1336761083 R rec 6886b62e-e0f4-4da9-8eb9-656fe18416b3 +2024-07-30 15:27:50.953566 2024-07-30 15:27:50.953578 cognd 1336749369 R rec 8ae2f197-8fd0-4dfc-93bc-90149b4b67ba +2024-07-30 15:27:51.027095 2024-07-30 15:27:51.027111 cognd 1336591390 R rec 28f3683b-72ec-4f7b-adfd-4ecc4eb1f203 +2024-07-30 15:27:51.105725 2024-07-30 15:27:51.10573 cognd 1336589876 R rec 754dee2c-c1d1-453f-a0f3-255fa0a80068 +2024-07-30 15:27:51.199625 2024-07-30 15:27:51.19965 cognd 133658873X R rec abbf94d4-66eb-4ee1-b962-c01a969e2b05 +2024-07-30 15:27:51.286218 2024-07-30 15:27:51.286231 cognd 1336532009 R rec 75dead18-b12f-4571-a075-f07b9b6630a5 +2024-07-30 15:27:51.36265 2024-07-30 15:27:51.36266 cognd 133646609X R rec fbbf99b2-dc42-49fe-99ce-161c74c686a3 +2024-07-30 15:27:51.434556 2024-07-30 15:27:51.434567 cognd 1336401087 R rec 6b98573f-3520-4f57-84a6-8fe89e04e526 +2024-07-30 15:27:51.507313 2024-07-30 15:27:51.507326 cognd 1336381698 R rec d2578a56-c9cd-4271-ad6b-e610b29cce1a +2024-07-30 15:27:51.592477 2024-07-30 15:27:51.592492 cognd 1336261625 R rec 42649344-44c9-48f6-9d5f-9dcbae3940c8 +2024-07-30 15:27:51.675342 2024-07-30 15:27:51.675353 cognd 1336259086 R rec a8594a84-40c6-48ed-964c-ca1c9ae7ef71 +2024-07-30 15:27:51.753423 2024-07-30 15:27:51.753433 cognd 1336255897 R rec e2b60d38-b6d3-4e6a-85ee-3d8c4ec6000b +2024-07-30 15:27:51.818092 2024-07-30 15:27:51.818102 cognd 1336255692 R rec 0b3678bc-f159-41de-aba4-89dc81d8848c +2024-07-30 15:27:51.883773 2024-07-30 15:27:51.883784 cognd 1336255609 R rec 458e82ba-3256-4dd6-bf20-704aad41ed24 +2024-07-30 15:27:51.952064 2024-07-30 15:27:51.952075 cognd 1336248335 R rec d57c24d5-89a0-47ef-8016-3a7cc6d537bf +2024-07-30 15:27:52.031274 2024-07-30 15:27:52.031286 cognd 1336235047 R rec 52f050d2-b3b1-40f9-83bf-435a700a16d4 +2024-07-30 15:27:52.104817 2024-07-30 15:27:52.104829 cognd 1336230754 R rec 5ddb52d0-c172-4489-911e-0bd3ae607f4f +2024-07-30 15:27:52.177635 2024-07-30 15:27:52.177646 cognd 1336223200 R rec 4e95e35d-9a8e-47c3-a45b-f409ca2e2ba6 +2024-07-30 15:27:52.24317 2024-07-30 15:27:52.243181 cognd 1336168528 R rec 7d9da642-231f-460c-8b02-7662b7724f83 +2024-07-30 15:27:52.308714 2024-07-30 15:27:52.308724 cognd 1336166509 R rec d902a041-9df5-42fc-b5d5-48a467ad1548 +2024-07-30 15:27:52.38269 2024-07-30 15:27:52.382701 cognd 1336144033 R rec 2a52ab35-30cb-44bd-9be8-c87712723287 +2024-07-30 15:27:52.44955 2024-07-30 15:27:52.449562 cognd 1336140607 R rec 8df32adb-6197-4bb9-9573-84b0d3159671 +2024-07-30 15:27:52.521817 2024-07-30 15:27:52.521827 cognd 1336136634 R rec afa6538e-50e2-4da4-9f91-106fd2ca9c77 +2024-07-30 15:27:52.596314 2024-07-30 15:27:52.596326 cognd 1336125306 R rec b52ac28d-df29-4d04-9c21-057b8202e725 +2024-07-30 15:27:52.678819 2024-07-30 15:27:52.678828 cognd 1336043652 R rec 206f0a33-1885-4b39-ad2c-69a99859d173 +2024-07-30 15:27:52.75079 2024-07-30 15:27:52.750802 cognd 133603906X R rec ce8284cd-827b-4bf7-84ab-994581c0d38d +2024-07-30 15:27:52.832793 2024-07-30 15:27:52.832804 cognd 1336037571 R rec c2f324ba-4236-41b5-983d-d705e652988a +2024-07-30 15:27:52.916619 2024-07-30 15:27:52.916634 cognd 1336035544 R rec a6bc7585-4c59-483a-bd49-7bf733710308 +2024-07-30 15:27:52.994254 2024-07-30 15:27:52.994265 cognd 1336026758 R rec 211593f3-476a-46bd-9dc2-5121e5773c18 +2024-07-30 15:27:53.065574 2024-07-30 15:27:53.065586 cognd 1336019883 R rec ea18bc1e-c207-4dc9-b91a-1ff38d28b762 +2024-07-30 15:27:53.142642 2024-07-30 15:27:53.142653 cognd 1336015497 R rec dc242e0d-0aec-4c87-84d2-3a693c7db29e +2024-07-30 15:27:53.21935 2024-07-30 15:27:53.21936 cognd 1335982361 R rec 0102bacc-d713-400a-93c6-ec78a51826bd +2024-07-30 15:27:53.289394 2024-07-30 15:27:53.289405 cognd 133595368X R rec 09bc791d-8841-4f73-884a-064480fd38c8 +2024-07-30 15:27:53.362293 2024-07-30 15:27:53.362304 cognd 1335904158 R rec c670befa-a94f-439a-ba19-8bd9e368cd35 +2024-07-30 15:27:53.441868 2024-07-30 15:27:53.441878 cognd 1335903623 R rec 5331fed2-a062-46db-810d-a15d08071a3f +2024-07-30 15:27:53.507784 2024-07-30 15:27:53.507793 cognd 1335900330 R rec 521027e9-f12a-4802-9050-580525efd57c +2024-07-30 15:27:53.578828 2024-07-30 15:27:53.57884 cognd 1335882758 R rec 45c55a5e-99a1-40de-a0c6-0177ffba6daf +2024-07-30 15:27:53.664936 2024-07-30 15:27:53.664945 cognd 1335881247 R rec ad77f9e7-6408-4391-adc9-0466da5a8c9e +2024-07-30 15:27:53.737104 2024-07-30 15:27:53.737116 cognd 133582569X R rec 820400c3-de6a-473d-9ec8-0c3218e695b6 +2024-07-30 15:27:53.824051 2024-07-30 15:27:53.824062 cognd 1335777539 R rec 0a5a3284-e582-4a07-9758-81bc1aa4712a +2024-07-30 15:27:53.895516 2024-07-30 15:27:53.895551 cognd 1335762779 R rec 51e5f370-b03e-4d05-91fd-db87ef02bd4f +2024-07-30 15:27:53.980964 2024-07-30 15:27:53.980976 cognd 1335752897 R rec a60a4530-b905-4d8b-8ccf-0534a4c03ccb +2024-07-30 15:27:54.053886 2024-07-30 15:27:54.053897 cognd 133575086X R rec 79851ac1-6368-4bf0-bb48-d23869951a33 +2024-07-30 15:27:54.124481 2024-07-30 15:27:54.124494 cognd 1335736832 R rec 18b93b33-f247-43b0-a221-c0026d0c074d +2024-07-30 15:27:54.199587 2024-07-30 15:27:54.199592 cognd 1335733086 R rec ec01183e-37a3-42e5-b1cc-9a7d56b704ce +2024-07-30 15:27:54.258935 2024-07-30 15:27:54.258946 cognd 1335729577 R rec 4a0216b3-babd-4032-b241-9986c327e6ff +2024-07-30 15:27:54.333248 2024-07-30 15:27:54.333259 cognd 1335727701 R rec 134fc4fd-2521-4b5c-9f2c-a545ba1d6d9d +2024-07-30 15:27:54.409115 2024-07-30 15:27:54.40913 cognd 1335528539 R rec 451acb9c-7d41-4224-a1db-5c48d20dd6b8 +2024-07-30 15:27:54.486777 2024-07-30 15:27:54.486789 cognd 1335514767 R rec b75c10b7-b6f8-42e4-ac3f-1c51c75247ac +2024-07-30 15:27:54.565988 2024-07-30 15:27:54.565999 cognd 1335503307 R rec 4fe7be59-ff67-465c-9cc2-da2980fe9bee +2024-07-30 15:27:54.648357 2024-07-30 15:27:54.648369 cognd 1335484930 R rec 158d2049-dc5d-4d7a-a1ef-30ebafe8aae7 +2024-07-30 15:27:54.73476 2024-07-30 15:27:54.734771 cognd 1335484639 R rec 082a1f73-61f8-4377-8878-9abc33c06cbb +2024-07-30 15:27:54.825686 2024-07-30 15:27:54.825697 cognd 1335475753 R rec 9a6972e9-2809-4315-a705-af8c3c5d968e +2024-07-30 15:27:54.909954 2024-07-30 15:27:54.909969 cognd 1335475575 R rec 11705259-65f7-4ce3-9681-1c3ed1e07fd6 +2024-07-30 15:27:55.003985 2024-07-30 15:27:55.003996 cognd 1335348379 R rec 216398d9-8fbc-4cbf-8c4b-ff4c917358d0 +2024-07-30 15:27:55.09153 2024-07-30 15:27:55.091541 cognd 1335334955 R rec eefb70f1-edc0-4905-9c65-c95ea1fd80e8 +2024-07-30 15:27:55.175251 2024-07-30 15:27:55.175307 cognd 1335332510 R rec fcebd7a9-f810-4488-a436-4c7fe2046c1a +2024-07-30 15:27:55.250067 2024-07-30 15:27:55.250072 cognd 1335327541 R rec 8de3ecd9-2c01-4b86-82da-e3e01b9dca42 +2024-07-30 15:27:55.310203 2024-07-30 15:27:55.310212 cognd 1335263977 R rec ea16b56b-b6db-418b-adbe-dd52c8c06441 +2024-07-30 15:27:55.430206 2024-07-30 15:27:55.43021 cognd 1335255869 R rec 01221d1d-7573-4b06-9101-5e22184c58a9 +2024-07-30 15:27:55.487724 2024-07-30 15:27:55.487729 cognd 1335237232 R rec e128bbad-f500-412a-b2d5-05ffe8e6054b +2024-07-30 15:27:55.532207 2024-07-30 15:27:55.532212 cognd 1335237046 R rec 8772cbaa-8dec-4495-8e90-086eff7fb98d +2024-07-30 15:27:55.580738 2024-07-30 15:27:55.580749 cognd 133523490X R rec 99c8d428-67cd-4668-a1b3-91f2055d22fa +2024-07-30 15:27:55.649088 2024-07-30 15:27:55.6491 cognd 1335228187 R rec 95396873-a5d3-479d-b8a5-2aafdd69a81c +2024-07-30 15:27:55.728501 2024-07-30 15:27:55.728513 cognd 1335212299 R rec 2511164c-baeb-4afe-8dd9-568d79743782 +2024-07-30 15:27:55.809196 2024-07-30 15:27:55.809207 cognd 133521075X R rec 51fe1c45-bbdc-4311-8f63-10b290eb8a14 +2024-07-30 15:27:55.887684 2024-07-30 15:27:55.887694 cognd 1335201068 R rec 799c4c14-5fa4-45a6-bdd5-5844492d1d21 +2024-07-30 15:27:55.955883 2024-07-30 15:27:55.955895 cognd 1335134549 R rec b18fcf3d-f7ad-4ff4-b430-a6d4e2826fd9 +2024-07-30 15:27:56.028169 2024-07-30 15:27:56.028179 cognd 1335054405 R rec ee6b6888-c97a-455a-b5bb-1f48c5723a7c +2024-07-30 15:27:56.114448 2024-07-30 15:27:56.114459 cognd 1334935475 R rec 2df6a66f-1f4c-42e2-ac7b-e265706d40f3 +2024-07-30 15:27:56.204108 2024-07-30 15:27:56.204123 cognd 1334906815 R rec 3f4f326e-ebc1-4825-a514-ad0c7ca28e91 +2024-07-30 15:27:56.279592 2024-07-30 15:27:56.279597 cognd 1334879079 R rec ff6f2efe-b656-4513-a26a-05519ad07b42 +2024-07-30 15:27:56.32913 2024-07-30 15:27:56.329142 cognd 1334810524 R rec 3d280a20-7bc1-4526-9d51-522c1b25ec95 +2024-07-30 15:27:56.410417 2024-07-30 15:27:56.41043 cognd 1334804893 R rec aea02c1f-6611-4d19-8d75-717e79f610d8 +2024-07-30 15:27:56.50468 2024-07-30 15:27:56.504696 cognd 1334804699 R rec 49fbab06-184c-4182-b934-60f0d2ee50dc +2024-07-30 15:27:56.58972 2024-07-30 15:27:56.589733 cognd 1334804281 R rec 8e765e39-d28b-4779-b079-9a3f64c91949 +2024-07-30 15:27:56.673721 2024-07-30 15:27:56.673732 cognd 1334795533 R rec 8d29435c-1492-414a-a7e8-d4dc9b6058b0 +2024-07-30 15:27:56.754196 2024-07-30 15:27:56.754206 cognd 1334784639 R rec aa638e9c-ed21-4436-b57a-94c6019efdc3 +2024-07-30 15:27:56.823049 2024-07-30 15:27:56.823059 cognd 1334676844 R rec 417684a1-7e86-45f6-af4b-a37d3d43ce3f +2024-07-30 15:27:56.888713 2024-07-30 15:27:56.888723 cognd 1334652074 R rec 577a3b4c-0d99-4eb4-834f-d5817feddf06 +2024-07-30 15:27:56.968784 2024-07-30 15:27:56.968795 cognd 1334205639 R rec 6b9730b9-2b7f-4498-9b11-378679b46111 +2024-07-30 15:27:57.036376 2024-07-30 15:27:57.036386 cognd 1333849850 R rec 496833ed-f481-4a5b-badf-e281a2a453d7 +2024-07-30 15:27:57.107191 2024-07-30 15:27:57.107202 cognd 1333570651 R rec 3be130c1-ed95-40bf-a09f-fda1dd06ff36 +2024-07-30 15:27:57.173767 2024-07-30 15:27:57.173777 cognd 1333353421 R rec cff02efb-1897-4f8a-b31b-a00c848db760 +2024-07-30 15:27:57.244064 2024-07-30 15:27:57.244075 cognd 1333321201 R rec ae4c2406-d0af-4139-b5f0-ade921c52295 +2024-07-30 15:27:57.317675 2024-07-30 15:27:57.317685 cognd 1333260148 R rec 19239d2d-1c56-4046-b599-37226964fa0d +2024-07-30 15:27:57.388304 2024-07-30 15:27:57.388316 cognd 1333126433 R rec d0b896fd-f95f-4158-8bb2-b4c6e758be6e +2024-07-30 15:27:57.477306 2024-07-30 15:27:57.477317 cognd 1333115482 R rec 1d8891b3-c142-4a12-9c92-71a01195bb27 +2024-07-30 15:27:57.547525 2024-07-30 15:27:57.547536 cognd 1332860451 R rec 89ab2876-b844-4061-aca1-4708b6dafc37 +2024-07-30 15:27:57.617064 2024-07-30 15:27:57.617076 cognd 1332767702 R rec 141a7133-16c1-4349-b151-639eed958161 +2024-07-30 15:27:57.691748 2024-07-30 15:27:57.69176 cognd 1332765785 R rec 0761d502-f06d-4700-b2ec-e0920e8aae97 +2024-07-30 15:27:57.771421 2024-07-30 15:27:57.771431 cognd 1332734316 R rec 54b18ac3-1911-42b3-a161-bba7ebf94061 +2024-07-30 15:27:57.846396 2024-07-30 15:27:57.846407 cognd 1332672701 R rec 74a5cd16-a085-4d4d-a262-3241694dee3f +2024-07-30 15:27:57.927191 2024-07-30 15:27:57.927202 cognd 1332661327 R rec 3804a2d2-eb85-4909-8883-92cc97c4729a +2024-07-30 15:27:58.000021 2024-07-30 15:27:58.000033 cognd 1332426336 R rec 1a2e7f0a-3906-4e71-9efd-0807db41b220 +2024-07-30 15:27:58.074892 2024-07-30 15:27:58.074904 cognd 1332101607 R rec 92f61155-316a-441e-a180-2106e460bbc1 +2024-07-30 15:27:58.155388 2024-07-30 15:27:58.155399 cognd 1331864321 R rec 90335193-e3a0-406c-abd2-079506fdb501 +2024-07-30 15:27:58.243919 2024-07-30 15:27:58.243935 cognd 1331496861 R rec 4e95c8b0-be97-43ff-8bb7-ed3f0565a5c4 +2024-07-30 15:27:58.327454 2024-07-30 15:27:58.327459 cognd 1331098114 R rec 7d075de2-92cc-4bae-9167-b8f676d3b365 +2024-07-30 15:27:58.39306 2024-07-30 15:27:58.393071 cognd 133099051X R rec f59dfc64-3120-4634-9e8b-a593950b7657 +2024-07-30 15:27:58.458596 2024-07-30 15:27:58.458639 cognd 1330990056 R rec 24076c65-f768-4a51-ad36-aab6114510dc +2024-07-30 15:27:58.532159 2024-07-30 15:27:58.532171 cognd 1330988728 R rec d65d18ab-7957-45fa-996b-008c3494729a +2024-07-30 15:27:58.61003 2024-07-30 15:27:58.610045 cognd 1330985524 R rec 672af46c-4257-4830-b3a0-83b84c45cef7 +2024-07-30 15:27:58.693126 2024-07-30 15:27:58.693138 cognd 1330588517 R rec 8c672e04-9a8f-4637-a362-c87cfad70f80 +2024-07-30 15:27:58.770321 2024-07-30 15:27:58.770332 cognd 1330408837 R rec 955c9dda-bb36-4f66-a7a6-11e37ba1241b +2024-07-30 15:27:58.871224 2024-07-30 15:27:58.871235 cognd 1330360036 R rec 0ec40d0f-4e03-4fc9-9130-6a46506d4455 +2024-07-30 15:27:58.945165 2024-07-30 15:27:58.945176 cognd 1330201647 R rec 7b788099-2669-4c5d-af75-136a884bb251 +2024-07-30 15:27:59.024071 2024-07-30 15:27:59.024082 cognd 1330126599 R rec 61650325-557b-40f2-b4ea-916de14d8540 +2024-07-30 15:27:59.119905 2024-07-30 15:27:59.119917 cognd 132940422X R rec 07d6580e-29c6-4380-b859-32213033ab48 +2024-07-30 15:27:59.192998 2024-07-30 15:27:59.193009 cognd 1329376129 R rec 6f7ccb6b-8f5a-45f8-9156-9caba234c4d1 +2024-07-30 15:27:59.265577 2024-07-30 15:27:59.265587 cognd 132935639X R rec 985d9a69-dc6d-427f-9ad2-201dafdf25f0 +2024-07-30 15:27:59.340422 2024-07-30 15:27:59.340427 cognd 1329174003 R rec 593eb05d-802f-49f3-8091-0b5a93db63dd +2024-07-30 15:27:59.390195 2024-07-30 15:27:59.390206 cognd 1329171675 R rec d633b01d-0519-45f8-9d13-7d7d5a3bc1c6 +2024-07-30 15:27:59.460308 2024-07-30 15:27:59.460319 cognd 1328712400 R rec 075008e0-1091-44c3-9392-859c3f145d8b +2024-07-30 15:27:59.538506 2024-07-30 15:27:59.538517 cognd 1327991349 R rec 4656f7f7-08b8-4c28-9ea5-c9b9a10b91fd +2024-07-30 15:27:59.616018 2024-07-30 15:27:59.616029 cognd 1327910268 R rec 969bf64f-a845-4f28-9a81-e1cd3fd4f0ac +2024-07-30 15:27:59.696987 2024-07-30 15:27:59.696999 cognd 1327458667 R rec fffdfddf-5b15-42e2-9839-75f1eb7fac0b +2024-07-30 15:27:59.768732 2024-07-30 15:27:59.768743 cognd 1326349392 R rec 205890e0-c293-4a7f-b53c-fe1e617ae50b +2024-07-30 15:27:59.843896 2024-07-30 15:27:59.843907 cognd 132585283X R rec fe596da7-a821-4627-871d-4511f8334b07 +2024-07-30 15:27:59.921947 2024-07-30 15:27:59.921959 cognd 1325643645 R rec d9ac6a2a-cd71-413a-b9de-7804f6944531 +2024-07-30 15:27:59.997107 2024-07-30 15:27:59.997118 cognd 1325061557 R rec 734b24e3-b783-4ae1-af5a-4ca2b36147c2 +2024-07-30 15:28:00.08667 2024-07-30 15:28:00.086681 cognd 1324688629 R rec 7143c42e-b9d0-487a-9d0a-58b43aa7afab +2024-07-30 15:28:00.162114 2024-07-30 15:28:00.162124 cognd 1324590173 R rec 1a42e391-7191-4d94-bc90-f65d553d48ae +2024-07-30 15:28:00.233628 2024-07-30 15:28:00.233708 cognd 1324101318 R rec 70f4c33c-e485-4054-9154-bb3cf8eb2c3a +2024-07-30 15:28:00.297894 2024-07-30 15:28:00.297905 cognd 1324092424 R rec 03cf257e-7059-4875-a71a-07dd538fee12 +2024-07-30 15:28:00.366153 2024-07-30 15:28:00.366158 cognd 1323913084 R rec c44e1f29-6bf6-4fb9-b6c3-f71411e6681f +2024-07-30 15:28:00.423423 2024-07-30 15:28:00.423433 cognd 1323835148 R rec 2958e12a-7796-49aa-bfee-1d9ae4d0adae +2024-07-30 15:28:00.489022 2024-07-30 15:28:00.489033 cognd 1323832262 R rec ef5f56e3-1701-416f-8b02-309f239a37f9 +2024-07-30 15:28:00.556001 2024-07-30 15:28:00.556013 cognd 1323804129 R rec 3aa77cbe-df58-4d92-9247-5f35c60010f2 +2024-07-30 15:28:00.642571 2024-07-30 15:28:00.642582 cognd 1323769536 R rec fcb6fb58-ba16-4d72-acf7-1532578ea55d +2024-07-30 15:28:00.725253 2024-07-30 15:28:00.725265 cognd 1323705910 R rec 5e3cb1ce-cfcb-45c4-9595-b05962bcb7ed +2024-07-30 15:28:00.803687 2024-07-30 15:28:00.803697 cognd 1323590102 R rec 51b35774-0ba9-4ea0-aee2-e0fc85f6a812 +2024-07-30 15:28:00.873861 2024-07-30 15:28:00.873872 cognd 1323303669 R rec ca4287d0-716c-4991-84a8-7dc054ae9acb +2024-07-30 15:28:00.941621 2024-07-30 15:28:00.941632 cognd 1323303103 R rec 86037fef-4269-4f5e-92b8-7a5f56291c38 +2024-07-30 15:28:01.014396 2024-07-30 15:28:01.014406 cognd 1323069380 R rec 39eb8958-6af9-43f7-bbd3-aeb88c1edf7e +2024-07-30 15:28:01.088841 2024-07-30 15:28:01.088856 cognd 1322662401 R rec c736f55c-bd9d-4762-9ba7-34d5fdb3f4fa +2024-07-30 15:28:01.166005 2024-07-30 15:28:01.166016 cognd 1322661030 R rec f2f8d523-d1fc-4087-ab8e-685c156b3b54 +2024-07-30 15:28:01.230552 2024-07-30 15:28:01.23056 cognd 1322508801 R rec 72ccce28-6c29-437d-a38e-c0115aff94f1 +2024-07-30 15:28:01.301222 2024-07-30 15:28:01.301231 cognd 1322264716 R rec 3143359f-303e-4f33-8830-bf2d266fc6f7 +2024-07-30 15:28:01.368263 2024-07-30 15:28:01.368274 cognd 1321257988 R rec 0d224dfe-dd33-44c8-9338-d6b4b4ae9218 +2024-07-30 15:28:01.4209 2024-07-30 15:28:01.420905 cognd 1321125623 R rec 59fcca55-4a86-42cc-97f5-de5859c1f8f5 +2024-07-30 15:28:01.49134 2024-07-30 15:28:01.491351 cognd 1321125577 R rec 57b29a62-1a45-4308-90d6-d078536f88ee +2024-07-30 15:28:01.558932 2024-07-30 15:28:01.558942 cognd 1319483321 R rec 11e9d438-be65-4895-956b-f5ca5ddaae1e +2024-07-30 15:28:01.627586 2024-07-30 15:28:01.627599 cognd 1319390072 R rec 677b4010-c62c-45ff-89ec-d2a9e6cd8ed6 +2024-07-30 15:28:01.69075 2024-07-30 15:28:01.690761 cognd 1318715598 R rec 1e0995c1-d7fc-4e90-86a4-51a1a878c9f7 +2024-07-30 15:28:01.757252 2024-07-30 15:28:01.757262 cognd 1318430968 R rec b23b676b-8b1a-463e-84aa-1fb8ee9c03e3 +2024-07-30 15:28:01.82214 2024-07-30 15:28:01.822151 cognd 131634410X R rec c57b5800-7053-4f20-9e23-103c84ab24a3 +2024-07-30 15:28:01.891028 2024-07-30 15:28:01.891039 cognd 1315679264 R rec 42eb6a36-f5c9-4990-9597-6ee985013a57 +2024-07-30 15:28:01.959712 2024-07-30 15:28:01.959723 cognd 1315456125 R rec 41bed23d-1b62-4ad4-9a69-6e78404abdf2 +2024-07-30 15:28:02.033443 2024-07-30 15:28:02.033453 cognd 1315226715 R rec f5fbab7f-400a-4ba9-898f-960993c13dd8 +2024-07-30 15:28:02.10446 2024-07-30 15:28:02.104471 cognd 1315045133 R rec 676afb0b-fb79-40c3-bfdb-c962e88810c3 +2024-07-30 15:28:02.173994 2024-07-30 15:28:02.174005 cognd 131453260X R rec b11868b4-33a9-4175-92a6-b61b14700a47 +2024-07-30 15:28:02.242121 2024-07-30 15:28:02.242136 cognd 1314347403 R rec ae7ddc23-d91e-49d9-bb63-617424b1f898 +2024-07-30 15:28:02.333423 2024-07-30 15:28:02.333436 cognd 1314019333 R rec 23d45cc9-a1db-4bad-9e16-c13d05d746b5 +2024-07-30 15:28:02.433583 2024-07-30 15:28:02.433588 cognd 1312507497 R rec b53ad825-47b8-4efc-9d76-2c6d7591aea4 +2024-07-30 15:28:02.489051 2024-07-30 15:28:02.489062 cognd 1312506059 R rec 7600f106-e23d-44c3-b6d4-3f2a2f82d670 +2024-07-30 15:28:02.572069 2024-07-30 15:28:02.572084 cognd 1311262989 R rec 0a2d9953-5682-4830-930b-e9d2b20b084a +2024-07-30 15:28:02.663346 2024-07-30 15:28:02.663359 cognd 1311025847 R rec 12889971-5707-46ab-b913-fd814a23c276 +2024-07-30 15:28:02.751849 2024-07-30 15:28:02.751864 cognd 1310673683 R rec 066e3ba5-67c2-45ef-a9c1-915d8ee75042 +2024-07-30 15:28:02.822446 2024-07-30 15:28:02.822456 cognd 1309822123 R rec ee1bbe04-7d58-4b37-a598-e080ccb3b6ee +2024-07-30 15:28:02.887051 2024-07-30 15:28:02.887061 cognd 1308550189 R rec 0524d1ae-7330-44ef-a23b-8640624cc350 +2024-07-30 15:28:02.959098 2024-07-30 15:28:02.959108 cognd 1305189876 R rec b89044e1-d581-4f2a-83d0-e66811830eec +2024-07-30 15:28:03.026018 2024-07-30 15:28:03.026028 cognd 1304711749 R rec b52a9815-0a86-45c6-80b2-15a792fc1aad +2024-07-30 15:28:03.09721 2024-07-30 15:28:03.097221 cognd 1304458741 R rec e8164e77-9703-43f5-a1c2-1fb2175e0d87 +2024-07-30 15:28:03.212376 2024-07-30 15:28:03.212388 cognd 1303066408 R rec 876aefad-de68-4c6c-8577-ee7804a41c37 +2024-07-30 15:28:03.317738 2024-07-30 15:28:03.317748 cognd 1302981390 R rec dea8bd71-fd67-4126-a2dd-813419994859 +2024-07-30 15:28:03.390153 2024-07-30 15:28:03.390164 cognd 1302782517 R rec ba9c76ab-5f52-41a5-b18f-f6045a7f8a25 +2024-07-30 15:28:03.454589 2024-07-30 15:28:03.454595 cognd 1302782274 R rec 3efde5e7-e94e-4933-b919-e51f390eb1fa +2024-07-30 15:28:03.516455 2024-07-30 15:28:03.516466 cognd 1302781162 R rec 357ee620-0139-4fd6-aacf-eac09c1985af +2024-07-30 15:28:03.58951 2024-07-30 15:28:03.589521 cognd 1302592122 R rec ad2afdaf-c5ae-4c80-84ba-443f86e3a94e +2024-07-30 15:28:03.657632 2024-07-30 15:28:03.657643 cognd 1298190746 R rec 128a7bee-828e-4651-8d17-4da1be1564da +2024-07-30 15:28:03.721789 2024-07-30 15:28:03.7218 cognd 1296860906 R rec 3d78530b-7453-46bf-8549-3c4ad2e7a45f +2024-07-30 15:28:03.788453 2024-07-30 15:28:03.788465 cognd 1296369811 R rec 8ff8f668-9dc2-4f42-a408-585215a41589 +2024-07-30 15:28:03.859337 2024-07-30 15:28:03.859349 cognd 1295208512 R rec 24b6dad5-056a-4877-bfc4-079acc303478 +2024-07-30 15:28:03.931745 2024-07-30 15:28:03.93179 cognd 1294996460 R rec 23418006-7434-42bc-a941-e3077a01124d +2024-07-30 15:28:03.999223 2024-07-30 15:28:03.999234 cognd 1294772627 R rec c364e081-2537-49a6-809e-8ea6cc66d1a4 +2024-07-30 15:28:04.066823 2024-07-30 15:28:04.066834 cognd 129400283X R rec 5ca3b5c8-4cca-4495-928e-01c8cfcfe6ce +2024-07-30 15:28:04.140605 2024-07-30 15:28:04.140616 cognd 1292845384 R rec d949827c-0071-44f3-86fd-471baa4ab885 +2024-07-30 15:28:04.223648 2024-07-30 15:28:04.223658 cognd 1286766397 R rec bdbafb3b-0b37-4a7e-98e4-f78040fff080 +2024-07-30 15:28:04.290381 2024-07-30 15:28:04.29039 cognd 1286227941 R rec e88a4056-c258-4539-a359-7edee521f970 +2024-07-30 15:28:04.359174 2024-07-30 15:28:04.359185 cognd 1286106745 R rec 7dbc2042-8a92-4ac3-ba57-cea2626b40e3 +2024-07-30 15:28:04.424024 2024-07-30 15:28:04.424034 cognd 1285304527 R rec 7e7f32d0-5775-4d58-bb73-9a8a346ba231 +2024-07-30 15:28:04.487572 2024-07-30 15:28:04.487577 cognd 1284854744 R rec 954eb632-ed7a-49ad-a643-c1648d443e79 +2024-07-30 15:28:04.541872 2024-07-30 15:28:04.541884 cognd 1284760456 R rec 8e74f6b7-fc06-44d6-94d4-cc2163417067 +2024-07-30 15:28:04.607573 2024-07-30 15:28:04.607585 cognd 127990271X R rec 407c7ab0-f5ec-4f4f-abb6-290e35f72bbf +2024-07-30 15:28:04.675827 2024-07-30 15:28:04.675848 cognd 1279534311 R rec 3958e344-0822-4930-8682-732193651055 +2024-07-30 15:28:04.754343 2024-07-30 15:28:04.754353 cognd 1278300821 R rec f0b8c281-0b79-4c80-b7a9-939bc52007e2 +2024-07-30 15:28:04.833116 2024-07-30 15:28:04.833131 cognd 1275762158 R rec bf03d934-566a-49c9-b1d3-955015821918 +2024-07-30 15:28:04.910433 2024-07-30 15:28:04.910445 cognd 1275016057 R rec 59177af6-be98-4024-a72a-000d7211124e +2024-07-30 15:28:04.985709 2024-07-30 15:28:04.985749 cognd 1274846765 R rec 5562957e-b231-46a8-8582-b39cd3e6f240 +2024-07-30 15:28:05.059032 2024-07-30 15:28:05.059043 cognd 1272439836 R rec 8d53b4d5-11d7-4fe9-ad44-a1cff4369556 +2024-07-30 15:28:05.138479 2024-07-30 15:28:05.13849 cognd 1272436322 R rec 0840f55c-f392-4ef4-81eb-ff7c03278371 +2024-07-30 15:28:05.21018 2024-07-30 15:28:05.210189 cognd 127243124X R rec e421b314-d84a-4fab-a5ee-f7eb2ba172fe +2024-07-30 15:28:05.27874 2024-07-30 15:28:05.278781 cognd 1272429997 R rec 384aefd4-69ff-4766-818e-d832cb0946c9 +2024-07-30 15:28:05.347121 2024-07-30 15:28:05.347132 cognd 1272339785 R rec 609c5668-58bb-448c-8484-82157e507c29 +2024-07-30 15:28:05.415066 2024-07-30 15:28:05.415107 cognd 1272271439 R rec 2fcbda60-a1b8-4165-a3ab-d5f89f436a58 +2024-07-30 15:28:05.490827 2024-07-30 15:28:05.490838 cognd 1272267792 R rec 77856b95-c9f8-4c70-bdc6-087fcc3c4b46 +2024-07-30 15:28:05.548854 2024-07-30 15:28:05.548866 cognd 1272258963 R rec f96a6042-85b7-4a7d-8ac0-7397b1e4d99c +2024-07-30 15:28:05.616282 2024-07-30 15:28:05.616294 cognd 1271905698 R rec 94c0638b-4df2-4cc5-8227-c371a7e90a2f +2024-07-30 15:28:05.693011 2024-07-30 15:28:05.693026 cognd 1271895765 R rec 70ed7098-4e5a-4b23-80e6-ebf59a566b2d +2024-07-30 15:28:05.77426 2024-07-30 15:28:05.774271 cognd 127188898X R rec 709c9801-6444-4b10-a293-3485a154e0e4 +2024-07-30 15:28:05.844666 2024-07-30 15:28:05.844677 cognd 1271822776 R rec 0f9d0e45-0cbb-4f90-a0aa-da91af00b1ef +2024-07-30 15:28:05.917858 2024-07-30 15:28:05.917869 cognd 1271808897 R rec 950e59d0-2824-4613-a821-f346fdc1c2fc +2024-07-30 15:28:05.988444 2024-07-30 15:28:05.988455 cognd 1271790165 R rec 06bd9b9f-761c-4756-b256-a7e06fa2a13a +2024-07-30 15:28:06.058802 2024-07-30 15:28:06.058814 cognd 1271715899 R rec eb12f88a-41f1-4908-86c0-6e9db6d68f2b +2024-07-30 15:28:06.147781 2024-07-30 15:28:06.147794 cognd 1271381702 R rec d331fac9-0250-407b-9e07-3cc421277476 +2024-07-30 15:28:06.226059 2024-07-30 15:28:06.226069 cognd 1270556959 R rec 628d7af4-de75-4e9e-a728-2ea3a1498614 +2024-07-30 15:28:06.320478 2024-07-30 15:28:06.320492 cognd 1268246964 R rec e117cd4d-72fe-4d0b-b2ab-8d5a773bb756 +2024-07-30 15:28:06.41109 2024-07-30 15:28:06.411105 cognd 126750370X R rec c09e449d-d078-442b-aa1d-dae40e3ad4f2 +2024-07-30 15:28:06.496365 2024-07-30 15:28:06.496381 cognd 1267495847 R rec b288d94a-3642-44ac-be79-ff5a8e5dc265 +2024-07-30 15:28:06.555487 2024-07-30 15:28:06.555492 cognd 1267493216 R rec 30826e4a-1bc6-4b39-82af-a26f2952c8db +2024-07-30 15:28:06.615085 2024-07-30 15:28:06.615097 cognd 1266330917 R rec f179bf95-c2b3-4529-bf7a-488ac6112fe8 +2024-07-30 15:28:06.687411 2024-07-30 15:28:06.687425 cognd 1265612927 R rec a4b42540-3793-426a-ab58-d3a68d8b89be +2024-07-30 15:28:06.771161 2024-07-30 15:28:06.771173 cognd 1265218374 R rec 40c052a3-d622-4537-97c4-d44bca796ba7 +2024-07-30 15:28:06.858513 2024-07-30 15:28:06.858528 cognd 1261254937 R rec 1d434f9b-8bd7-439d-86ec-c7de9e77b604 +2024-07-30 15:28:06.945075 2024-07-30 15:28:06.945091 cognd 1259273660 R rec 3ffce312-95b0-48f1-b7e1-979bc091deae +2024-07-30 15:28:07.016881 2024-07-30 15:28:07.016891 cognd 1257092030 R rec dac22c3e-de47-49ef-86a2-64d3c786c9e8 +2024-07-30 15:28:07.101035 2024-07-30 15:28:07.101046 cognd 1256073210 R rec bba19916-4e2d-4ee8-aee8-e1226c25cc62 +2024-07-30 15:28:07.183922 2024-07-30 15:28:07.183937 cognd 1256072893 R rec 9a00fdab-6de0-49e5-a1af-fff8f2f27410 +2024-07-30 15:28:07.267165 2024-07-30 15:28:07.26718 cognd 1254291482 R rec 3b89f640-b98b-428e-8ca7-4ea1420f0be3 +2024-07-30 15:28:07.346665 2024-07-30 15:28:07.346676 cognd 1251426239 R rec fe09444e-6d2c-482e-8ab2-3ffd8fc8e97c +2024-07-30 15:28:07.409287 2024-07-30 15:28:07.409303 cognd 1248276604 R rec a10702c1-2646-4ab9-bd5b-9ce616a6e118 +2024-07-30 15:28:07.475782 2024-07-30 15:28:07.475794 cognd 1245158511 R rec 26068ea2-3494-464b-bd68-2ea73396a1d6 +2024-07-30 15:28:07.539195 2024-07-30 15:28:07.539205 cognd 1242560637 R rec e0c677d1-a141-4bbc-ab29-24ea3e2ac916 +2024-07-30 15:28:07.597579 2024-07-30 15:28:07.597588 cognd 124129562X R rec f4dd862d-0602-45dd-8a48-86c15b8c74b8 +2024-07-30 15:28:07.67637 2024-07-30 15:28:07.676379 cognd 1239152302 R rec fdb3b4a4-e45f-4310-a7cd-a5c4cbd89d0b +2024-07-30 15:28:07.742239 2024-07-30 15:28:07.742254 cognd 1237145422 R rec f4fbf167-c98a-4bfa-b8b3-78f6c8bfa9bc +2024-07-30 15:28:07.80801 2024-07-30 15:28:07.808021 cognd 1232354244 R rec 906cf24e-fbdb-4e4c-b5cc-d170cf1ccef8 +2024-07-30 15:28:07.882306 2024-07-30 15:28:07.882319 cognd 1229013695 R rec f348fa6e-2d24-4bf6-8e75-d1f5bedbf4c5 +2024-07-30 15:28:07.951828 2024-07-30 15:28:07.951839 cognd 1225001064 R rec 23b41af9-3db0-4b63-b075-2a1bddcd8003 +2024-07-30 15:28:08.02202 2024-07-30 15:28:08.022031 cognd 1217543678 R rec 887f9fd7-1866-45f5-a369-57440466449e +2024-07-30 15:28:08.086703 2024-07-30 15:28:08.086713 cognd 1213474337 R rec e61ac509-8257-4a66-840e-1d59048c7a15 +2024-07-30 15:28:08.157519 2024-07-30 15:28:08.157596 cognd 1213276500 R rec ce5bfbf6-0b61-4ff1-9ac9-2a3fd2cdd37e +2024-07-30 15:28:08.288275 2024-07-30 15:28:08.288287 cognd 1211610659 R rec e69247cd-7443-468f-9a8e-5970e90e54c8 +2024-07-30 15:28:08.401474 2024-07-30 15:28:08.401487 cognd 1206111984 R rec d2e5bb54-537b-41f1-9b0f-a2e24b64c1e5 +2024-07-30 15:28:08.487774 2024-07-30 15:28:08.487813 cognd 1205504184 R rec ebe7ef1d-46ed-4378-87c6-3adb42afb3be +2024-07-30 15:28:08.566187 2024-07-30 15:28:08.566198 cognd 1204138915 R rec 452e7e22-bdc7-4cd0-851b-2e7473948347 +2024-07-30 15:28:08.622101 2024-07-30 15:28:08.622112 cognd 120246193X R rec ea24bcac-062a-4f5e-ae31-6d9bbecc40bf +2024-07-30 15:28:08.690785 2024-07-30 15:28:08.690796 cognd 1201306663 R rec 4a111a67-85ef-42d6-bfff-9e7037381fa6 +2024-07-30 15:28:08.766599 2024-07-30 15:28:08.76661 cognd 1197813853 R rec fb062691-b72e-4492-ba6a-05eca6c33afc +2024-07-30 15:28:08.838707 2024-07-30 15:28:08.838718 cognd 1197084231 R rec b792f44b-0521-4ad7-a98d-2c31f5102b6c +2024-07-30 15:28:08.915268 2024-07-30 15:28:08.91528 cognd 1196153183 R rec e04cdeb1-0651-4746-aa75-fadfbad6b9b7 +2024-07-30 15:28:08.995271 2024-07-30 15:28:08.995282 cognd 1195721455 R rec b33827cb-6026-4324-b07e-de0e910b7b29 +2024-07-30 15:28:09.078924 2024-07-30 15:28:09.078935 cognd 1195720424 R rec 96be1686-3d5d-4d0d-b088-e1362e1c22d9 +2024-07-30 15:28:09.158048 2024-07-30 15:28:09.158058 cognd 1192998324 R rec 8161f073-413a-4f6e-9901-a35d498a6abd +2024-07-30 15:28:09.224527 2024-07-30 15:28:09.224538 cognd 119298918X R rec 8a3e8ecb-0631-464a-9826-6050884ca25b +2024-07-30 15:28:09.310324 2024-07-30 15:28:09.310333 cognd 1191213307 R rec 50562a76-b6ea-4cef-940b-e4822a37cdd6 +2024-07-30 15:28:09.395283 2024-07-30 15:28:09.395294 cognd 1190744996 R rec 2b8100a1-c2a1-492a-b383-a0a872053978 +2024-07-30 15:28:09.473821 2024-07-30 15:28:09.473833 cognd 1189251949 R rec 77e181d7-9710-4c34-91c3-0c8398fc6030 +2024-07-30 15:28:09.546154 2024-07-30 15:28:09.546165 cognd 1181270391 R rec ba9bb35b-f815-47ce-b112-c093f0121236 +2024-07-30 15:28:09.622123 2024-07-30 15:28:09.622128 cognd 1177428253 R rec 01fe5e8b-b1d3-4a60-b192-9b7590c35928 +2024-07-30 15:28:09.683846 2024-07-30 15:28:09.683858 cognd 1172931720 R rec 6e027bbe-c417-485d-8403-dcf617e6d201 +2024-07-30 15:28:09.768263 2024-07-30 15:28:09.768273 cognd 1164102931 R rec c022d52c-5185-4a21-9cd5-350850978a17 +2024-07-30 15:28:09.844759 2024-07-30 15:28:09.844769 cognd 1162074078 R rec 00290085-5e76-4068-b479-c0bd92844594 +2024-07-30 15:28:09.924155 2024-07-30 15:28:09.924167 cognd 1162070234 R rec 19f0305d-d47b-4b3c-bf45-5e0a2f2ee1ae +2024-07-30 15:28:09.997503 2024-07-30 15:28:09.997514 cognd 1162069848 R rec 481b1f2f-c473-4f3c-a267-16642a900b45 +2024-07-30 15:28:10.088749 2024-07-30 15:28:10.08876 cognd 1162069279 R rec f7bdf32e-918d-4073-9939-47f16b848b52 +2024-07-30 15:28:10.178495 2024-07-30 15:28:10.178507 cognd 1161370048 R rec 20b8024b-58b2-4474-ac86-ad635f016325 +2024-07-30 15:28:10.254643 2024-07-30 15:28:10.254656 cognd 1160916276 R rec d3e94c8c-8185-4a76-91f6-ea8406ee62e6 +2024-07-30 15:28:10.33917 2024-07-30 15:28:10.339185 cognd 1160040834 R rec aafacf43-2fcc-4b02-87d0-1151875e90dc +2024-07-30 15:28:10.440502 2024-07-30 15:28:10.440516 cognd 1159933278 R rec 41293c0e-cdd7-45ec-8236-cbea7b63edd4 +2024-07-30 15:28:10.523428 2024-07-30 15:28:10.523444 cognd 1159933006 R rec 01400490-1e31-4076-ba56-559364df1f41 +2024-07-30 15:28:10.586261 2024-07-30 15:28:10.586272 cognd 115992869X R rec 679a1ffd-fa88-4d45-8fe6-9f70e6955939 +2024-07-30 15:28:10.648602 2024-07-30 15:28:10.648607 cognd 1159920850 R rec 6abcabf9-cc36-447e-a6a1-6bbf58c6835c +2024-07-30 15:28:10.700613 2024-07-30 15:28:10.700625 cognd 115992063X R rec a1f115d7-7f69-4dc0-bc1e-de115dfaafe4 +2024-07-30 15:28:10.761967 2024-07-30 15:28:10.761979 cognd 1159919828 R rec 11991d4c-418d-4c57-b9e3-7d193a8d9161 +2024-07-30 15:28:10.834148 2024-07-30 15:28:10.834159 cognd 1159716978 R rec 16039e6a-d25b-4d18-a68c-e63952c389e6 +2024-07-30 15:28:10.90552 2024-07-30 15:28:10.905531 cognd 1159673381 R rec 5790b493-8e58-4ae4-9ad1-3096def5add8 +2024-07-30 15:28:10.981415 2024-07-30 15:28:10.981426 cognd 1159652686 R rec 1403d906-a3bd-4cff-a3e4-80bc7ff5ae1a +2024-07-30 15:28:11.054647 2024-07-30 15:28:11.054658 cognd 1158529643 R rec f92b5b6c-03d0-4006-9157-910caa3cd617 +2024-07-30 15:28:11.128751 2024-07-30 15:28:11.128762 cognd 1156463467 R rec 1e97680f-224a-4f30-bc97-ee6c028799d2 +2024-07-30 15:28:11.197574 2024-07-30 15:28:11.197583 cognd 1153904039 R rec 36e2f7e5-917f-4c3a-a3a6-7fc5cfca1fcf +2024-07-30 15:28:11.274058 2024-07-30 15:28:11.274089 cognd 1153848325 R rec c2783129-56cd-42e6-8719-21336ac10a0f +2024-07-30 15:28:11.34735 2024-07-30 15:28:11.347361 cognd 1153645505 R rec fa4de4e5-c2cb-4502-a877-e00cbdb5d13f +2024-07-30 15:28:11.415362 2024-07-30 15:28:11.415374 cognd 1148983325 R rec 3f725cdf-0c45-48e9-b372-fd495c849b07 +2024-07-30 15:28:11.490941 2024-07-30 15:28:11.490952 cognd 1148983317 R rec 457bca1b-cced-439c-8720-a52616d39563 +2024-07-30 15:28:11.565809 2024-07-30 15:28:11.565821 cognd 1148982329 R rec edd1be8e-5bd0-4acf-a719-65eb2fcb929f +2024-07-30 15:28:11.639698 2024-07-30 15:28:11.639709 cognd 1145164617 R rec b54c25ce-eeeb-4d2a-9b48-3675b1107dce +2024-07-30 15:28:11.696071 2024-07-30 15:28:11.696076 cognd 113724061X R rec 1affe6c4-91cf-4e2a-82fc-af99457fc346 +2024-07-30 15:28:11.767701 2024-07-30 15:28:11.767712 cognd 1136198113 R rec ed75dcc1-db3f-4a6d-8f33-e66231f30732 +2024-07-30 15:28:11.838053 2024-07-30 15:28:11.838063 cognd 1136044426 R rec a84db322-73fd-4043-b822-b42168386251 +2024-07-30 15:28:11.908448 2024-07-30 15:28:11.908458 cognd 1133521657 R rec 99f044d6-b031-4372-9e46-98f665fed79a +2024-07-30 15:28:11.97882 2024-07-30 15:28:11.978829 cognd 1132275067 R rec 67adc792-fcfa-44e9-8ab0-0e390140edc7 +2024-07-30 15:28:12.049939 2024-07-30 15:28:12.049951 cognd 1132231477 R rec 270f036a-bc1b-4fcb-9738-59b6f6bac619 +2024-07-30 15:28:12.122198 2024-07-30 15:28:12.122209 cognd 1131360478 R rec 89417ee3-1ae0-478a-906a-4d91e25f6c9f +2024-07-30 15:28:12.195265 2024-07-30 15:28:12.195275 cognd 1127087932 R rec 25a99f7a-9fb2-4390-b6fb-59dfd436a701 +2024-07-30 15:28:12.271164 2024-07-30 15:28:12.271175 cognd 1126284823 R rec 91457c9c-6625-46d2-a2c8-989732d888cf +2024-07-30 15:28:12.35471 2024-07-30 15:28:12.354721 cognd 1124811885 R rec 5d3acad1-abcd-4464-97f0-f5cf5fe96ea0 +2024-07-30 15:28:12.420653 2024-07-30 15:28:12.420664 cognd 1124612114 R rec c1090b69-4392-4217-8ce8-c21af24cfd35 +2024-07-30 15:28:12.487014 2024-07-30 15:28:12.487025 cognd 1120527775 R rec 2fceeab5-6389-4499-a52d-fc7ec2bb91a5 +2024-07-30 15:28:12.564108 2024-07-30 15:28:12.564119 cognd 1120526310 R rec 5fa2a82f-695d-45a3-ab1f-f5eb8c1703a8 +2024-07-30 15:28:12.635536 2024-07-30 15:28:12.635547 cognd 1119923417 R rec c38fedbc-eaf0-4dfe-8a35-3bbd87bd143c +2024-07-30 15:28:12.704388 2024-07-30 15:28:12.704394 cognd 1117228215 R rec 829cba5b-866a-478c-b6fb-246184d99b18 +2024-07-30 15:28:12.753272 2024-07-30 15:28:12.753291 cognd 1114188395 R rec ca6952d6-3f5e-4a10-8f7f-922b5e116280 +2024-07-30 15:28:12.817919 2024-07-30 15:28:12.817929 cognd 1113031921 R rec 4aa937ee-6595-45c4-92da-035f110a5361 +2024-07-30 15:28:12.893296 2024-07-30 15:28:12.893308 cognd 1111593051 R rec 94d6a71b-5602-4959-acc3-9822136d4c1d +2024-07-30 15:28:12.963786 2024-07-30 15:28:12.963797 cognd 110642154X R rec e73a4d2c-e397-4ac2-8dc8-bf20235c6fa9 +2024-07-30 15:28:13.030571 2024-07-30 15:28:13.030582 cognd 1104861453 R rec d8cdd79f-a249-4be2-becc-3bfd64ffd781 +2024-07-30 15:28:13.095887 2024-07-30 15:28:13.095899 cognd 1103248596 R rec 19c12266-99a6-4887-91fe-00086a83bebd +2024-07-30 15:28:13.18735 2024-07-30 15:28:13.187361 cognd 1103240579 R rec f5bc2e43-5423-4ca5-a793-aa919a4499df +2024-07-30 15:28:13.264679 2024-07-30 15:28:13.264692 cognd 1101498900 R rec 7117b237-a4c9-427a-b07e-b01dff4e19f4 +2024-07-30 15:28:13.350564 2024-07-30 15:28:13.350575 cognd 1085190633 R rec 4eb6478c-4d6c-4316-bdb6-49bce5e7bf4f +2024-07-30 15:28:13.421405 2024-07-30 15:28:13.421415 cognd 108229814X R rec eae2be2c-8553-41b8-be0e-7c8e7ea4b3fd +2024-07-30 15:28:13.486904 2024-07-30 15:28:13.486914 cognd 1077459335 R rec 8337f000-a484-47ff-8596-693c53cb5619 +2024-07-30 15:28:13.558676 2024-07-30 15:28:13.558687 cognd 1077386478 R rec b2255657-9ee9-41dd-bfa0-eb9abd2ee1b1 +2024-07-30 15:28:13.630265 2024-07-30 15:28:13.630276 cognd 1077065876 R rec d6493d7f-ea66-42ad-ae6a-5633831e66ab +2024-07-30 15:28:13.706447 2024-07-30 15:28:13.706459 cognd 1069876534 R rec 34d86f89-a813-41dd-b290-cc3afb23fcf8 +2024-07-30 15:28:13.769197 2024-07-30 15:28:13.769209 cognd 1069526703 R rec 5565fcc8-7f67-4eea-91b7-fe599dcf3595 +2024-07-30 15:28:13.85603 2024-07-30 15:28:13.856041 cognd 1069453420 R rec c5b723e9-fe54-4bbd-8d11-fd1f5d702bb5 +2024-07-30 15:28:13.92421 2024-07-30 15:28:13.924221 cognd 1068825820 R rec 31ec7334-0f92-4e40-9d76-615a5a03f8df +2024-07-30 15:28:14.009504 2024-07-30 15:28:14.009515 cognd 1068606975 R rec 91eb8417-8476-4c80-afe9-5ecbf5345308 +2024-07-30 15:28:14.077017 2024-07-30 15:28:14.077028 cognd 1068048328 R rec 553b0ea2-b443-4bdf-853a-4fde4e65b810 +2024-07-30 15:28:14.155588 2024-07-30 15:28:14.155597 cognd 1067974490 R rec e83bbd87-d8f7-4f2d-8844-bc6c8f6aa574 +2024-07-30 15:28:14.247114 2024-07-30 15:28:14.247129 cognd 1066896534 R rec ed12cdd5-5a8e-4970-b419-7eef37e99072 +2024-07-30 15:28:14.334788 2024-07-30 15:28:14.334798 cognd 1065486421 R rec e36a8e65-b475-4cf6-8bea-8d45276ae9ac +2024-07-30 15:28:14.410408 2024-07-30 15:28:14.410426 cognd 106307147X R rec bf50611a-e8db-4877-97c0-926c7c23fb9f +2024-07-30 15:28:14.487291 2024-07-30 15:28:14.487302 cognd 105858488X R rec a2134fb9-311e-4199-b701-6080e73b2206 +2024-07-30 15:28:14.560033 2024-07-30 15:28:14.560048 cognd 1055013458 R rec 1a3280e3-eaf5-4316-b78c-ddda2eb682cd +2024-07-30 15:28:14.635039 2024-07-30 15:28:14.635048 cognd 1054183104 R rec c95c4cb4-240b-4310-8ee4-0d4c54f1db8e +2024-07-30 15:28:14.708064 2024-07-30 15:28:14.708083 cognd 1054182779 R rec 30fce290-a7e0-460b-b870-ef36a79679f2 +2024-07-30 15:28:14.774528 2024-07-30 15:28:14.774537 cognd 1054182620 R rec 15814502-2424-430f-b87c-69c9c1e63018 +2024-07-30 15:28:14.838535 2024-07-30 15:28:14.838544 cognd 1051146089 R rec c05cacc3-1b57-46ce-bad8-0f2b53b3bbb9 +2024-07-30 15:28:14.903668 2024-07-30 15:28:14.903679 cognd 1049270851 R rec b7b3a510-a40b-43c6-a4a9-032bd07e3249 +2024-07-30 15:28:15.005868 2024-07-30 15:28:15.005879 cognd 1044279206 R rec e2b77808-a42b-451a-a3ca-fdb57b879b67 +2024-07-30 15:28:15.100949 2024-07-30 15:28:15.10096 cognd 1041611064 R rec f935608d-d060-4a34-a7c6-1c60813985ab +2024-07-30 15:28:15.18384 2024-07-30 15:28:15.183849 cognd 1036907430 R rec 23e8e3b8-da66-407f-91bd-a3b39081badd +2024-07-30 15:28:15.256808 2024-07-30 15:28:15.256818 cognd 1036857263 R rec 99aff91a-4c0e-4b9e-a1a1-28ec4b58d60a +2024-07-30 15:28:15.334118 2024-07-30 15:28:15.334128 cognd 1029263361 R rec 522acbbe-85fe-4fa3-983e-f693aa1d8cf5 +2024-07-30 15:28:15.412472 2024-07-30 15:28:15.412483 cognd 1019980389 R rec b04f4700-701d-46a6-9152-4ab2b4b77502 +2024-07-30 15:28:15.486679 2024-07-30 15:28:15.48669 cognd 1015187382 R rec 0dccef42-f3da-4d85-b6fb-cbcf263244dd +2024-07-30 15:28:15.562446 2024-07-30 15:28:15.562457 cognd 1014400783 R rec 0ea87561-9ee3-4727-acf1-8d9f7168efef +2024-07-30 15:28:15.646037 2024-07-30 15:28:15.646049 cognd 1013709640 R rec 5b147c58-388a-4986-9b47-8bb16d6713c5 +2024-07-30 15:28:15.725824 2024-07-30 15:28:15.725836 cognd 1010242008 R rec 7f814777-ddb6-4ef6-83b5-aab755e0a1d6 +2024-07-30 15:28:15.799264 2024-07-30 15:28:15.799269 cognd 1009887017 R rec 0b10da7b-5364-404a-99cb-6dadfc9be150 +2024-07-30 15:28:15.85764 2024-07-30 15:28:15.857651 cognd 1008996270 R rec 7980d125-3584-4dde-8ef0-63edea830bf8 +2024-07-30 15:28:15.934284 2024-07-30 15:28:15.934295 cognd 1008049115 R rec 7dffb9c1-b3e6-4086-a262-f4596fd7c199 +2024-07-30 15:28:16.025937 2024-07-30 15:28:16.025949 cognd 100735531X R rec 256675f9-6bdd-4b48-adb0-8816a8d016ef +2024-07-30 15:28:16.119034 2024-07-30 15:28:16.119045 cognd 1006894675 R rec 6f923220-b0d1-4ddc-8a8f-834759283baf +2024-07-30 15:28:16.201624 2024-07-30 15:28:16.201639 cognd 1002238951 R rec f5ac3feb-84ed-4b75-b130-ecf3d8e962c6 +2024-07-30 15:28:16.294229 2024-07-30 15:28:16.294245 cognd 1000642119 R rec 4367eb21-c060-4fa3-9373-bdfc30f792cc +2024-07-30 15:28:16.385907 2024-07-30 15:28:16.385921 cognd 1000168972 R rec cd5cab2c-4f76-4481-a3df-beb9c473eac6 +2024-07-30 15:28:16.485691 2024-07-30 15:28:16.485707 cognd 998776785 R rec 40f459ec-c44b-4fe5-b8f7-a7b6fa704f77 +2024-07-30 15:28:16.573446 2024-07-30 15:28:16.573457 cognd 995780951 R rec eb64d882-3c18-4b36-8f43-83e29dc9abf0 +2024-07-30 15:28:16.663544 2024-07-30 15:28:16.663559 cognd 994659857 R rec 07c9d314-41fb-4bb5-89fb-932f9c02a441 +2024-07-30 15:28:16.764824 2024-07-30 15:28:16.764835 cognd 99405212X R rec fd193658-5958-486b-a4f6-e919bec34ba3 +2024-07-30 15:28:16.844654 2024-07-30 15:28:16.844664 cognd 99283600X R rec 21a2704d-f263-4aaa-8e97-0921b6f41373 +2024-07-30 15:28:16.927331 2024-07-30 15:28:16.927346 cognd 992757126 R rec 9ecb73dd-44de-4a23-aa42-fa90d49bdf43 +2024-07-30 15:28:17.018234 2024-07-30 15:28:17.018247 cognd 992754909 R rec e6dba631-cc10-4e6e-921c-4a2568aac7e5 +2024-07-30 15:28:17.108814 2024-07-30 15:28:17.108825 cognd 992754550 R rec abe7cc68-e4cf-4cb3-b089-4e59707c9619 +2024-07-30 15:28:17.195043 2024-07-30 15:28:17.195056 cognd 992754534 R rec 5f8cbfe6-e48e-4625-887d-2d768dee060d +2024-07-30 15:28:17.289602 2024-07-30 15:28:17.289608 cognd 992754305 R rec 3f0b4eea-812f-413c-bcc1-677d315500e0 +2024-07-30 15:28:17.376105 2024-07-30 15:28:17.376121 cognd 992753694 R rec fd2aa6e8-8937-47a5-b5a4-f2b6931abd29 +2024-07-30 15:28:17.467232 2024-07-30 15:28:17.467247 cognd 99275366X R rec af92244f-8fc3-4ca9-8e3c-489c1b81294e +2024-07-30 15:28:17.541141 2024-07-30 15:28:17.541151 cognd 992752973 R rec 64ecb273-c53d-429e-998a-c6a155045bf2 +2024-07-30 15:28:17.608832 2024-07-30 15:28:17.608842 cognd 992751020 R rec 146a4235-b827-469c-9b41-339e7c7ffe6c +2024-07-30 15:28:17.670858 2024-07-30 15:28:17.670868 cognd 99274881X R rec 176834dc-a7f6-4910-9462-559bd332145a +2024-07-30 15:28:17.738678 2024-07-30 15:28:17.738689 cognd 992747031 R rec 32be81d7-798c-4bbe-8cd7-3bcd993a8fa1 +2024-07-30 15:28:17.807393 2024-07-30 15:28:17.807402 cognd 992746779 R rec 6d654982-7a86-4a90-ad82-767c475c1d58 +2024-07-30 15:28:17.869186 2024-07-30 15:28:17.869191 cognd 992746248 R rec aeecc3c6-4107-4631-ad3f-b3c5cce4b593 +2024-07-30 15:28:17.933195 2024-07-30 15:28:17.933236 cognd 992745969 R rec eeb9aace-49b2-48b0-aa5c-348b9ec3a70e +2024-07-30 15:28:18.020312 2024-07-30 15:28:18.020323 cognd 992745292 R rec 573df28f-205e-4187-8367-696af598322e +2024-07-30 15:28:18.0901 2024-07-30 15:28:18.090111 cognd 992745187 R rec e773ed2f-ec97-412e-9bf0-af7fb60aa47a +2024-07-30 15:28:18.162919 2024-07-30 15:28:18.162929 cognd 99274508X R rec 2e4c1fbd-42b7-4db3-85d9-dbaed4896072 +2024-07-30 15:28:18.233303 2024-07-30 15:28:18.233314 cognd 992744792 R rec dd1789a0-abd5-43b9-bea6-dde120d9a7d3 +2024-07-30 15:28:18.316083 2024-07-30 15:28:18.316093 cognd 992744091 R rec d02ebfb6-d930-4654-87be-f482feb2c488 +2024-07-30 15:28:18.401139 2024-07-30 15:28:18.401149 cognd 992743605 R rec 55fc0b02-a5b2-420e-9243-b3111d74839d +2024-07-30 15:28:18.489112 2024-07-30 15:28:18.489124 cognd 992743273 R rec bc5b087e-1c8d-4618-9891-2ec06d70327c +2024-07-30 15:28:18.564451 2024-07-30 15:28:18.564461 cognd 992742889 R rec 620f5bae-adde-4c27-9ee4-53878fd9f6c9 +2024-07-30 15:28:18.639576 2024-07-30 15:28:18.639587 cognd 992742854 R rec 68232993-9604-4a65-8ff6-f6e542546e46 +2024-07-30 15:28:18.710325 2024-07-30 15:28:18.710336 cognd 992742722 R rec 850a28d9-764b-4915-bc9b-7fb6abd880e6 +2024-07-30 15:28:18.784085 2024-07-30 15:28:18.784096 cognd 992742498 R rec 12714ea2-7f68-46df-a63f-05bc23fb284b +2024-07-30 15:28:18.855154 2024-07-30 15:28:18.85518 cognd 992741696 R rec 57bcf172-3a2b-4df4-9765-965d019051a0 +2024-07-30 15:28:18.913652 2024-07-30 15:28:18.913662 cognd 992741491 R rec a8825427-7b18-4609-8592-7a1fe8028749 +2024-07-30 15:28:18.986181 2024-07-30 15:28:18.986192 cognd 992739659 R rec 78b13126-4556-4b03-abb1-0e68122b15a4 +2024-07-30 15:28:19.05705 2024-07-30 15:28:19.057061 cognd 992738601 R rec b30ff0d3-4bbf-4c2b-ba20-df0a90b295ea +2024-07-30 15:28:19.130042 2024-07-30 15:28:19.130052 cognd 992738172 R rec 2906b914-acf1-4dd5-b66c-cf7c8c042566 +2024-07-30 15:28:19.20723 2024-07-30 15:28:19.207239 cognd 992738083 R rec 7ce4fbbc-d247-4c98-8581-4401e8fa12fb +2024-07-30 15:28:19.278916 2024-07-30 15:28:19.278926 cognd 992738075 R rec 70810802-1ccd-472a-bfdf-98404c8e5f67 +2024-07-30 15:28:19.353837 2024-07-30 15:28:19.353849 cognd 992737834 R rec 845bb52a-3049-4110-b0d2-25582e62ad16 +2024-07-30 15:28:19.43694 2024-07-30 15:28:19.43695 cognd 992737826 R rec 5b403950-f917-417e-9d2c-97eeaac8ffa2 +2024-07-30 15:28:19.510266 2024-07-30 15:28:19.510276 cognd 992737788 R rec b02b0209-d079-4519-8853-5620e7657eca +2024-07-30 15:28:19.584353 2024-07-30 15:28:19.584365 cognd 992737532 R rec 7fdae269-c7c5-4449-accf-a99c59a25b8b +2024-07-30 15:28:19.657876 2024-07-30 15:28:19.657887 cognd 992736269 R rec e8eb5f10-68fb-49b1-87f0-246a4fcfaa5b +2024-07-30 15:28:19.737111 2024-07-30 15:28:19.737122 cognd 992736099 R rec a8c08d20-3287-48a8-b44c-7150c4b076a2 +2024-07-30 15:28:19.812666 2024-07-30 15:28:19.812677 cognd 992735858 R rec 519d3f7e-72f0-49d1-8b82-af8950f022c4 +2024-07-30 15:28:19.894293 2024-07-30 15:28:19.894303 cognd 99273584X R rec 75198662-6004-4dd5-b2e5-4ef114710117 +2024-07-30 15:28:19.958106 2024-07-30 15:28:19.958116 cognd 992735823 R rec 392d2231-6053-41d3-85ef-b35a71f12a93 +2024-07-30 15:28:20.032191 2024-07-30 15:28:20.032202 cognd 992735270 R rec 0084c423-3db6-479c-96b8-c8207ccd780d +2024-07-30 15:28:20.140984 2024-07-30 15:28:20.140995 cognd 992735122 R rec b865c586-4ae6-4bd6-8daf-e49d45695cbf +2024-07-30 15:28:20.230748 2024-07-30 15:28:20.23076 cognd 992733634 R rec 2f493e3c-c0a5-4aa3-92c2-e01974baf918 +2024-07-30 15:28:20.321252 2024-07-30 15:28:20.321265 cognd 99273312X R rec 377e7ebe-ee28-427d-9984-69a35bdd9f61 +2024-07-30 15:28:20.423104 2024-07-30 15:28:20.423115 cognd 992732468 R rec 4b8a78ae-88d3-4cb6-84de-975aa9cacdd1 +2024-07-30 15:28:20.507626 2024-07-30 15:28:20.507642 cognd 992731496 R rec 3ce6a758-5b99-465a-b667-001e2bbbb309 +2024-07-30 15:28:20.598285 2024-07-30 15:28:20.598296 cognd 99273147X R rec e300072a-69c1-41f1-bb7e-6f00b374adc0 +2024-07-30 15:28:20.696761 2024-07-30 15:28:20.696776 cognd 992731348 R rec eaed9b5f-ef8c-4a18-b859-6c500c11eb8a +2024-07-30 15:28:20.801885 2024-07-30 15:28:20.801895 cognd 992730937 R rec 776a0abe-4c73-4708-b215-0806e7a9770e +2024-07-30 15:28:20.878091 2024-07-30 15:28:20.878102 cognd 99273052X R rec 353e9c84-d401-47d3-a93b-8141198d20ed +2024-07-30 15:28:20.944993 2024-07-30 15:28:20.944999 cognd 992096200 R rec 652fb77e-ba05-4d80-b360-bd2c76c09ed1 +2024-07-30 15:28:21.001623 2024-07-30 15:28:21.001634 cognd 99018207X R rec 5f899faf-366a-4000-81b6-6a663f7b5681 +2024-07-30 15:28:21.074274 2024-07-30 15:28:21.074284 cognd 987870920 R rec a91e7781-a237-467d-8fbe-a77ec2456054 +2024-07-30 15:28:21.173311 2024-07-30 15:28:21.173323 cognd 987031708 R rec a88162b3-e8b0-409c-b7fd-f5beb38b2777 +2024-07-30 15:28:21.24837 2024-07-30 15:28:21.248384 cognd 985142758 R rec f0b211f8-8277-425e-8ec6-5164c4489397 +2024-07-30 15:28:21.316459 2024-07-30 15:28:21.316469 cognd 984855246 R rec 5937933a-1a11-40be-a564-1fa49427e14b +2024-07-30 15:28:21.389615 2024-07-30 15:28:21.389627 cognd 984430695 R rec 035cfb6e-1613-40c4-8c1e-1f23ab078bbf +2024-07-30 15:28:21.472532 2024-07-30 15:28:21.472541 cognd 981355196 R rec 8a1f85f2-64a2-49c7-806c-e2d57a052929 +2024-07-30 15:28:21.547592 2024-07-30 15:28:21.547604 cognd 981078206 R rec 3e89bf28-b4de-4bbf-b94b-967fb6964952 +2024-07-30 15:28:21.611113 2024-07-30 15:28:21.611124 cognd 980596920 R rec 9235159e-a966-4b41-9927-80c11e220d2f +2024-07-30 15:28:21.683321 2024-07-30 15:28:21.683333 cognd 980485371 R rec e7eb9ec8-9138-476b-af9f-5c347b570552 +2024-07-30 15:28:21.761284 2024-07-30 15:28:21.761295 cognd 979728509 R rec 835434da-2ee4-4ca1-8d58-c99b2b89327c +2024-07-30 15:28:21.832787 2024-07-30 15:28:21.832797 cognd 979385261 R rec 2b04bfab-b598-49d1-9f56-5050977cf67e +2024-07-30 15:28:21.903166 2024-07-30 15:28:21.903177 cognd 979340586 R rec d8721d85-7c9a-4a1b-aa9d-9bbf35c8923c +2024-07-30 15:28:21.975801 2024-07-30 15:28:21.975806 cognd 978483669 R rec feee2b5b-5d1a-4a36-b2e6-796c5cc7914c +2024-07-30 15:28:22.034159 2024-07-30 15:28:22.03417 cognd 97549175X R rec 7271a3a6-75ba-4a99-908a-6de7a6439c42 +2024-07-30 15:28:22.110354 2024-07-30 15:28:22.110365 cognd 974924423 R rec 7db0e7b7-da1c-4ec5-903f-a5fe07ac3b83 +2024-07-30 15:28:22.186317 2024-07-30 15:28:22.186328 cognd 974131733 R rec b6de8fb2-e331-4ccf-a942-b47e3ab23d7b +2024-07-30 15:28:22.254939 2024-07-30 15:28:22.254951 cognd 973073764 R rec 7549db0d-1711-4f8d-9664-b2406f82254a +2024-07-30 15:28:22.323256 2024-07-30 15:28:22.323267 cognd 973067144 R rec 94d62461-8096-4ae1-8ee6-30ea521a979b +2024-07-30 15:28:22.396978 2024-07-30 15:28:22.396989 cognd 971890188 R rec 5eb80f61-9e54-4967-8776-182d1f79fb03 +2024-07-30 15:28:22.467871 2024-07-30 15:28:22.467884 cognd 971874549 R rec 045fe82d-f83c-43fe-83c2-b4efbd1bc2af +2024-07-30 15:28:22.545187 2024-07-30 15:28:22.545198 cognd 971750289 R rec b6f151c7-aae5-4ee5-b4e6-adbcd9b18dde +2024-07-30 15:28:22.63627 2024-07-30 15:28:22.636283 cognd 971566429 R rec 3214c57d-5f7c-4fa1-aec0-46c565cc15d6 +2024-07-30 15:28:22.713425 2024-07-30 15:28:22.713436 cognd 970782195 R rec ed054681-3bab-4aa3-a4bc-f9c55364e4a2 +2024-07-30 15:28:22.789712 2024-07-30 15:28:22.789722 cognd 970665806 R rec 08137aae-d78d-4f85-adac-fc044aa911a2 +2024-07-30 15:28:22.864419 2024-07-30 15:28:22.86443 cognd 970188919 R rec 7b12dd56-f466-4008-965b-63cd2ba18d99 +2024-07-30 15:28:22.939633 2024-07-30 15:28:22.939644 cognd 970142838 R rec ecbc7256-efe3-470b-b6b9-ce7f5f85e6f6 +2024-07-30 15:28:23.009773 2024-07-30 15:28:23.009778 cognd 969789726 R rec dcf55fde-483e-4b25-9421-85731c2a8682 +2024-07-30 15:28:23.072709 2024-07-30 15:28:23.07272 cognd 968800459 R rec 34d8868c-e62b-4671-aac6-08e953aba9bd +2024-07-30 15:28:23.144288 2024-07-30 15:28:23.144301 cognd 967930308 R rec 31a1e22a-cdc0-4a80-85b9-23f515ec3cb1 +2024-07-30 15:28:23.217011 2024-07-30 15:28:23.217022 cognd 967681758 R rec 55b5bd7d-0fca-4af6-a2d2-8c70102342fa +2024-07-30 15:28:23.283767 2024-07-30 15:28:23.283778 cognd 967612896 R rec a5c821d9-4177-4ff9-908b-37e1c67cad3a +2024-07-30 15:28:23.365428 2024-07-30 15:28:23.365439 cognd 967286034 R rec 0414bb30-51ba-47ee-b095-85c04f15bf26 +2024-07-30 15:28:23.429651 2024-07-30 15:28:23.429662 cognd 966464141 R rec 7a96f85e-2887-4bfe-a229-7f6fdb807275 +2024-07-30 15:28:23.49579 2024-07-30 15:28:23.4958 cognd 966016297 R rec 5634f641-b830-4339-837b-39f3faa07184 +2024-07-30 15:28:23.56116 2024-07-30 15:28:23.561171 cognd 965886654 R rec 12fa2796-a867-44da-b5cd-0d1305e31c49 +2024-07-30 15:28:23.642318 2024-07-30 15:28:23.64237 cognd 965195686 R rec 56ea4703-96de-41db-be40-b4e0187d9852 +2024-07-30 15:28:23.7151 2024-07-30 15:28:23.715111 cognd 96441631X R rec 5cbb8c89-52bd-4bfa-82c5-7ec2f04a7d36 +2024-07-30 15:28:23.787189 2024-07-30 15:28:23.787201 cognd 964240300 R rec cddcaf6c-1926-4996-bf87-b07e726d970f +2024-07-30 15:28:23.861782 2024-07-30 15:28:23.861794 cognd 964240254 R rec ebec6e47-6b18-406f-9639-511538e64428 +2024-07-30 15:28:23.931208 2024-07-30 15:28:23.931221 cognd 964115166 R rec 37450fbe-c538-4c15-92eb-c24d123c87fe +2024-07-30 15:28:24.004466 2024-07-30 15:28:24.004477 cognd 963711636 R rec e5717f91-38f6-45ce-a78f-1c4b6340c0c8 +2024-07-30 15:28:24.058476 2024-07-30 15:28:24.058487 cognd 963708872 R rec 93313107-432e-49af-9f18-8674e8c1391f +2024-07-30 15:28:24.13697 2024-07-30 15:28:24.136997 cognd 963708856 R rec bd99cebe-1e43-4c78-a7fd-6c0db0c29730 +2024-07-30 15:28:24.212051 2024-07-30 15:28:24.21206 cognd 963658166 R rec 985d8a27-b227-47c4-bb0e-6d63cafd9873 +2024-07-30 15:28:24.295847 2024-07-30 15:28:24.295858 cognd 963553984 R rec 8699e651-cf54-4cae-8f34-8f176e0e3ecd +2024-07-30 15:28:24.377212 2024-07-30 15:28:24.377261 cognd 962075272 R rec 200a0388-223c-4d53-b0b5-5c2cc3dcf046 +2024-07-30 15:28:24.452039 2024-07-30 15:28:24.452051 cognd 962073881 R rec b3e24725-eb92-443a-b7a9-997762e8f608 +2024-07-30 15:28:24.52844 2024-07-30 15:28:24.528451 cognd 961897546 R rec 81af1046-60c5-472b-b3c6-a282dd57180a +2024-07-30 15:28:24.606538 2024-07-30 15:28:24.606552 cognd 961236752 R rec 297b126b-c5a8-4f6a-9b9c-eaa8a699b9dd +2024-07-30 15:28:24.686625 2024-07-30 15:28:24.686636 cognd 961192356 R rec 62bd463c-a0e2-416a-b3b3-cf2ff19378be +2024-07-30 15:28:24.761825 2024-07-30 15:28:24.761837 cognd 961049510 R rec 3db80e29-1e18-4150-b691-4150590c5cfe +2024-07-30 15:28:24.836945 2024-07-30 15:28:24.836956 cognd 960895175 R rec abb1c992-4bee-42ec-91a0-b1a9537e173f +2024-07-30 15:28:24.914229 2024-07-30 15:28:24.91424 cognd 96037650X R rec 66d71e32-ad74-4801-8227-ba1038699886 +2024-07-30 15:28:24.99547 2024-07-30 15:28:24.995483 cognd 960375988 R rec 59394b08-47e8-4f05-a0b1-c846dfc0ac65 +2024-07-30 15:28:25.064951 2024-07-30 15:28:25.064962 cognd 960175105 R rec 4f7f92de-d4c9-4357-af2f-18a122b1d2d8 +2024-07-30 15:28:25.13317 2024-07-30 15:28:25.133181 cognd 959959750 R rec 24ef62df-7ad0-469c-83b1-c42b0797c3d1 +2024-07-30 15:28:25.201309 2024-07-30 15:28:25.201319 cognd 959794972 R rec 3f43ab85-09ed-4335-ab8a-036457555c2e +2024-07-30 15:28:25.271949 2024-07-30 15:28:25.271959 cognd 959794921 R rec 044ad740-bf87-47c6-9554-1468ead62f3f +2024-07-30 15:28:25.340783 2024-07-30 15:28:25.340792 cognd 959794859 R rec 7e369e2b-33a7-4f8e-aaf0-0bbd3a46cd5b +2024-07-30 15:28:25.414932 2024-07-30 15:28:25.414944 cognd 959740864 R rec dfc7b2c3-9453-4c1b-b009-e55a78167551 +2024-07-30 15:28:25.484256 2024-07-30 15:28:25.484268 cognd 959716688 R rec 56fb605a-1a51-4ae5-b21f-cffc6d4f541c +2024-07-30 15:28:25.55938 2024-07-30 15:28:25.559391 cognd 959148523 R rec dc40727d-2ec3-43dd-b498-a4a1084e6ba9 +2024-07-30 15:28:25.627878 2024-07-30 15:28:25.627889 cognd 959148485 R rec a22f3f17-223e-4aed-8c2e-fb284f98c5aa +2024-07-30 15:28:25.700753 2024-07-30 15:28:25.700764 cognd 959148477 R rec 20f083e9-33df-4029-9147-3ccf50481428 +2024-07-30 15:28:25.767516 2024-07-30 15:28:25.767538 cognd 958503001 R rec a867b4ca-b0bf-44c5-bf96-2e457f31ccf9 +2024-07-30 15:28:25.840525 2024-07-30 15:28:25.840538 cognd 958467102 R rec 24921560-fb3d-46c0-b8c8-375ae8c7a773 +2024-07-30 15:28:25.910825 2024-07-30 15:28:25.910836 cognd 958224625 R rec 8ca43f37-2019-4054-8202-1d2c4a19ad75 +2024-07-30 15:28:25.982138 2024-07-30 15:28:25.98215 cognd 958195889 R rec 6945ff15-18e9-4d43-80f8-2bd6177e8f30 +2024-07-30 15:28:26.06648 2024-07-30 15:28:26.066492 cognd 958190453 R rec 92a17ad2-80b0-4b42-b0f3-45d3d3b0cb35 +2024-07-30 15:28:26.120184 2024-07-30 15:28:26.12019 cognd 957705611 R rec 5056a172-e57a-44b9-83d2-177a2b100c6e +2024-07-30 15:28:26.19542 2024-07-30 15:28:26.195432 cognd 95765894X R rec d4d314a7-c6b8-47c5-8ebb-b218c1015396 +2024-07-30 15:28:26.28363 2024-07-30 15:28:26.283642 cognd 957331940 R rec 109ddea0-71fd-4b93-8a10-4b3cf8c73768 +2024-07-30 15:28:26.36577 2024-07-30 15:28:26.365783 cognd 957331673 R rec 0ba787b4-4db5-43aa-9c4d-457749864276 +2024-07-30 15:28:26.469266 2024-07-30 15:28:26.469277 cognd 957192517 R rec d9b12304-437d-474d-a892-b13aade9cd8d +2024-07-30 15:28:26.564812 2024-07-30 15:28:26.564827 cognd 956838049 R rec 2de2ffc4-a55f-48f9-a720-ade84e056c7d +2024-07-30 15:28:26.6494 2024-07-30 15:28:26.64941 cognd 956643221 R rec 69256697-772a-46f1-9b7d-4b07606da899 +2024-07-30 15:28:26.736593 2024-07-30 15:28:26.736604 cognd 956635709 R rec 391a2a34-6d97-4782-9ad5-1dcc8df9dca2 +2024-07-30 15:28:26.828569 2024-07-30 15:28:26.828579 cognd 956220495 R rec b08c18d2-0c85-4862-bd72-423c57646696 +2024-07-30 15:28:26.93484 2024-07-30 15:28:26.934855 cognd 955244641 R rec 1c49ccf9-be9d-4b47-b651-ef339d2b2f0c +2024-07-30 15:28:27.025494 2024-07-30 15:28:27.025507 cognd 95489748X R rec 7f79bfe5-5994-4cf2-9694-51e8a0591428 +2024-07-30 15:28:27.109732 2024-07-30 15:28:27.109737 cognd 954782232 R rec 28137cd4-2f54-4aed-8736-c4fbaa94e31d +2024-07-30 15:28:27.161422 2024-07-30 15:28:27.161428 cognd 95462839X R rec b64c7747-aafb-4c1b-ba45-d0cfcccf97e7 +2024-07-30 15:28:27.22294 2024-07-30 15:28:27.222952 cognd 954211774 R rec 31a3b44a-3571-4827-8ea2-d338abb678a5 +2024-07-30 15:28:27.288289 2024-07-30 15:28:27.288301 cognd 954206738 R rec 0a82fc84-ee81-4e28-bc9d-da275a9bbf15 +2024-07-30 15:28:27.368775 2024-07-30 15:28:27.368788 cognd 954203232 R rec 5a60c32a-40b3-4d50-81b9-68a77d5cbfc9 +2024-07-30 15:28:27.461596 2024-07-30 15:28:27.46161 cognd 953679802 R rec 2e3103b6-bcdd-4b7b-b0a6-323d9b0b5aa9 +2024-07-30 15:28:27.542009 2024-07-30 15:28:27.542022 cognd 953550346 R rec f1003178-b8c8-4697-8398-82cd95fc6763 +2024-07-30 15:28:27.617761 2024-07-30 15:28:27.617769 cognd 953444201 R rec b636f27f-ebc7-473e-8074-fd27ef5795d0 +2024-07-30 15:28:27.683572 2024-07-30 15:28:27.683582 cognd 953056082 R rec b513aedf-0706-4596-87ed-c2928cf66a96 +2024-07-30 15:28:27.755016 2024-07-30 15:28:27.755027 cognd 952896605 R rec 1f3d8c67-25b0-4b6e-8ebc-e76f0cb5ee7e +2024-07-30 15:28:27.826902 2024-07-30 15:28:27.826917 cognd 952702053 R rec 2e96ca3a-49a2-4df4-8f97-4f5c5091028f +2024-07-30 15:28:27.896022 2024-07-30 15:28:27.896032 cognd 952619636 R rec 22c9d2ce-2cb8-4091-abc2-99bfb36708c4 +2024-07-30 15:28:27.969138 2024-07-30 15:28:27.969149 cognd 952440431 R rec af39d884-3dac-40e5-a535-6513e318364d +2024-07-30 15:28:28.052935 2024-07-30 15:28:28.052946 cognd 952431602 R rec 3fa556a6-0e06-4a46-8e7e-4e066717afe8 +2024-07-30 15:28:28.13318 2024-07-30 15:28:28.133186 cognd 951810189 R rec 09ceaff0-1c82-4abb-88f9-1f6c41fd7185 +2024-07-30 15:28:28.180581 2024-07-30 15:28:28.180592 cognd 951618563 R rec 83bf3100-2d02-43be-b000-f3a7322b7939 +2024-07-30 15:28:28.243082 2024-07-30 15:28:28.243095 cognd 951607804 R rec cc82a6f2-be51-4684-bf8a-5e36215ab1b4 +2024-07-30 15:28:28.312056 2024-07-30 15:28:28.312066 cognd 95159981X R rec ce263199-aeab-4688-a49e-80445e4e66d5 +2024-07-30 15:28:28.385454 2024-07-30 15:28:28.385465 cognd 951549650 R rec 1e81cdf2-4567-4199-9e2f-d5bc42aaaf8f +2024-07-30 15:28:28.454663 2024-07-30 15:28:28.454674 cognd 95153047X R rec 6342d94a-9404-4737-9e53-2c46cdc8776c +2024-07-30 15:28:28.522442 2024-07-30 15:28:28.522453 cognd 95152092X R rec a73d30ae-66df-4be8-847b-fcb6459b8030 +2024-07-30 15:28:28.603459 2024-07-30 15:28:28.60347 cognd 950857157 R rec 3412972b-45fb-43ea-a6cd-1163fd6f2645 +2024-07-30 15:28:28.680936 2024-07-30 15:28:28.680947 cognd 950693413 R rec 0917f631-0d50-497b-a863-d8565fe2a0ae +2024-07-30 15:28:28.747473 2024-07-30 15:28:28.747484 cognd 950693375 R rec 0eeb2346-4659-47f1-909b-e865cd852840 +2024-07-30 15:28:28.812626 2024-07-30 15:28:28.812634 cognd 950692433 R rec 124a8c19-192a-4640-955a-63ca9ee64f08 +2024-07-30 15:28:28.887914 2024-07-30 15:28:28.887924 cognd 950632481 R rec 4f0881c3-2aa5-4ff2-a5f3-585f438d96f7 +2024-07-30 15:28:28.960762 2024-07-30 15:28:28.960773 cognd 950276014 R rec 55ea8588-eb92-4dec-ba5c-0a66093217f5 +2024-07-30 15:28:29.04351 2024-07-30 15:28:29.04352 cognd 949894028 R rec 1f4a36fe-c6b8-4c9b-9038-844493dc1357 +2024-07-30 15:28:29.126514 2024-07-30 15:28:29.126524 cognd 949435015 R rec bcb96add-222f-4cb4-b056-1f50e8e26951 +2024-07-30 15:28:29.186328 2024-07-30 15:28:29.186333 cognd 948897244 R rec a29c3bf3-f542-4920-8cdf-655861b1848b +2024-07-30 15:28:29.241322 2024-07-30 15:28:29.241333 cognd 948567341 R rec f7e615d1-5e4d-4759-a773-ab37d251347a +2024-07-30 15:28:29.31361 2024-07-30 15:28:29.31362 cognd 948567317 R rec 1bfa160b-4cba-49e3-a1ff-63f08acf0569 +2024-07-30 15:28:29.390739 2024-07-30 15:28:29.390751 cognd 948565977 R rec befe0526-d0e8-4e62-8dbb-02fb4a20a1dd +2024-07-30 15:28:29.456489 2024-07-30 15:28:29.456498 cognd 948520116 R rec 6184d1fc-8b4f-467e-aa23-73e7afda13f5 +2024-07-30 15:28:29.532871 2024-07-30 15:28:29.532883 cognd 948474688 R rec b729e6db-bf66-4a6b-8cd4-bcb2c1279169 +2024-07-30 15:28:29.610717 2024-07-30 15:28:29.610728 cognd 947762868 R rec fdc5c6de-615e-4c15-9cb5-010f6665935d +2024-07-30 15:28:29.686856 2024-07-30 15:28:29.686867 cognd 947572090 R rec dd482df7-f13b-49a4-b876-63d679100036 +2024-07-30 15:28:29.760372 2024-07-30 15:28:29.760387 cognd 947210601 R rec 4a417680-ab51-47fc-94ec-4c0d8dbf662f +2024-07-30 15:28:29.837237 2024-07-30 15:28:29.837248 cognd 947024387 R rec 2a53a6e0-55c0-41ea-8430-8e69a527499a +2024-07-30 15:28:29.920347 2024-07-30 15:28:29.920358 cognd 946840318 R rec 1711e2d0-cc0e-406d-b29c-5e9e3675ce90 +2024-07-30 15:28:29.993785 2024-07-30 15:28:29.9938 cognd 94683203X R rec 12955aeb-8e0a-4f4f-8e95-609f6bf2bff9 +2024-07-30 15:28:30.066309 2024-07-30 15:28:30.06632 cognd 946538506 R rec 667e7ec3-e622-4102-a30c-3b0e575871ee +2024-07-30 15:28:30.141138 2024-07-30 15:28:30.141148 cognd 946529981 R rec 33400213-8f8d-4915-9a7b-ec2abcff0220 +2024-07-30 15:28:30.212597 2024-07-30 15:28:30.212603 cognd 946267340 R rec f8a17d4f-b650-4719-b9d4-c679652e7ed6 +2024-07-30 15:28:30.276569 2024-07-30 15:28:30.27658 cognd 945831749 R rec 147ecf1b-5be3-4395-92f4-d8317e564774 +2024-07-30 15:28:30.337439 2024-07-30 15:28:30.33745 cognd 94574577X R rec 05b4f0d6-8948-4f34-a911-469dcc74f246 +2024-07-30 15:28:30.398967 2024-07-30 15:28:30.398977 cognd 945675267 R rec a3a66d73-9726-4e03-90f1-8399b13d80b7 +2024-07-30 15:28:30.463134 2024-07-30 15:28:30.463145 cognd 945372604 R rec ae7b854a-3262-4903-9c5c-20956cf3a76d +2024-07-30 15:28:30.530739 2024-07-30 15:28:30.530751 cognd 945325150 R rec 580ca111-19f6-4f87-937b-0bd04aac8c13 +2024-07-30 15:28:30.607274 2024-07-30 15:28:30.607283 cognd 944352820 R rec ec812569-afd9-4530-b0b4-60530128e492 +2024-07-30 15:28:30.672611 2024-07-30 15:28:30.672621 cognd 94392961X R rec ae40fff0-d6f7-4135-ab1e-72030afb6313 +2024-07-30 15:28:30.743632 2024-07-30 15:28:30.743644 cognd 94392684X R rec b27c42d5-b4f2-429c-b0c3-0f23aded550b +2024-07-30 15:28:30.812754 2024-07-30 15:28:30.812764 cognd 943618118 R rec 30bff399-a859-4eb5-9908-160848dc87f7 +2024-07-30 15:28:30.891527 2024-07-30 15:28:30.891539 cognd 943592267 R rec cdbbff0c-1c3f-4367-8d04-8c502f7099be +2024-07-30 15:28:30.959669 2024-07-30 15:28:30.95968 cognd 943496799 R rec f1e8afcd-db62-4af2-b5fd-c5168e993821 +2024-07-30 15:28:31.035377 2024-07-30 15:28:31.035461 cognd 943138604 R rec 2b93da9b-b918-47d3-a18f-fd8a2a9eb61c +2024-07-30 15:28:31.107959 2024-07-30 15:28:31.10797 cognd 942370295 R rec b6d12ab1-20c8-4681-b636-16a57324779b +2024-07-30 15:28:31.195795 2024-07-30 15:28:31.195806 cognd 942203283 R rec 1a88492b-2a6b-44b6-8d71-5d2ef981f945 +2024-07-30 15:28:31.249228 2024-07-30 15:28:31.249233 cognd 94206285X R rec 8a356c7d-ee15-4b6e-ad0b-55c6ae601d4a +2024-07-30 15:28:31.314675 2024-07-30 15:28:31.314696 cognd 941781437 R rec e8f5e220-cac2-4951-9efc-031d69a964dc +2024-07-30 15:28:31.403308 2024-07-30 15:28:31.403318 cognd 940910004 R rec d3f2d02b-74b9-448a-bf0e-fe330016f6a4 +2024-07-30 15:28:31.474591 2024-07-30 15:28:31.4746 cognd 940842440 R rec 128bac97-45f3-4d67-ac7a-4044dec23d76 +2024-07-30 15:28:31.539638 2024-07-30 15:28:31.539648 cognd 94063855X R rec 576bbfcd-785f-40cb-b4f4-cb13bc9f0908 +2024-07-30 15:28:31.606455 2024-07-30 15:28:31.606465 cognd 940594919 R rec 5ae6d6bb-8b53-40ba-950b-39647f8d79e1 +2024-07-30 15:28:31.666458 2024-07-30 15:28:31.666468 cognd 199289190 R rec 0041cf7c-4873-4e0a-9ee3-f12951b4687c +2024-07-30 15:28:31.732512 2024-07-30 15:28:31.732522 cognd 199281823 R rec a8fd78ae-7ab1-4a64-ab1d-4dcab1595178 +2024-07-30 15:28:31.802879 2024-07-30 15:28:31.802889 cognd 199193835 R rec 5548dd31-5fe4-488a-bfed-42c6969e40d7 +2024-07-30 15:28:31.875815 2024-07-30 15:28:31.875826 cognd 19917606X R rec a7fcb4f3-9afb-4152-8dcd-2713b0913cd1 +2024-07-30 15:28:31.948289 2024-07-30 15:28:31.948301 cognd 199170711 R rec 5fb5a09b-489d-474e-a820-327890df18b6 +2024-07-30 15:28:32.019837 2024-07-30 15:28:32.019849 cognd 19915046X R rec 38f4f719-66b2-4286-a1a0-606b90fc6360 +2024-07-30 15:28:32.089236 2024-07-30 15:28:32.089248 cognd 199129215 R rec 9d5e7d0f-19d5-4594-b69d-f0bb9ecfca09 +2024-07-30 15:28:32.162099 2024-07-30 15:28:32.162111 cognd 130791008 R rec 0905d7c2-2f71-487a-b1f9-9b18e7db1b48 +2024-07-30 15:28:32.236578 2024-07-30 15:28:32.236589 cognd 130750085 R rec e3411772-3cd3-4926-bd90-709c481526ec +2024-07-30 15:28:32.283059 2024-07-30 15:28:32.283063 cognd 130741094 R rec 085e63e7-8e33-4201-9ffb-d10e22899537 +2024-07-30 15:28:32.339951 2024-07-30 15:28:32.339962 cognd 130724572 R rec 4aa69c63-f406-481a-9b44-0d512eb8e4d4 +2024-07-30 15:28:32.412064 2024-07-30 15:28:32.412077 cognd 130715387 R rec a4ea0e30-2d3d-4f58-a045-399e902ec774 +2024-07-30 15:28:32.485019 2024-07-30 15:28:32.485034 cognd 130714941 R rec 69a02f56-0b26-4c49-b4c8-7ad562dc918f +2024-07-30 15:28:32.571776 2024-07-30 15:28:32.571787 cognd 130708291 R rec a0b683fd-2945-46f7-bcd0-3b67c0332ed0 +2024-07-30 15:28:32.637284 2024-07-30 15:28:32.637294 cognd 130703907 R rec 8efaeb32-1647-4107-ae91-8bb7d30705bf +2024-07-30 15:28:32.704041 2024-07-30 15:28:32.70405 cognd 130702722 R rec 46cce0b2-ddc2-4bc9-b158-8638374761a0 +2024-07-30 15:28:32.773527 2024-07-30 15:28:32.773538 cognd 13069374X R rec c6c09f37-215c-494b-b2da-8e3dfe76b987 +2024-07-30 15:28:32.841448 2024-07-30 15:28:32.841459 cognd 130692476 R rec 7883151f-c69c-4c5d-bfdc-19e334e8fe7b +2024-07-30 15:28:32.90848 2024-07-30 15:28:32.90849 cognd 04328762X R rec 085ee507-f16a-4162-80c9-13eccbfcafac +2024-07-30 15:28:32.977889 2024-07-30 15:28:32.9779 cognd 043282695 R rec e4f7a076-3230-4086-90fe-052f46ad29ef +2024-07-30 15:28:33.050467 2024-07-30 15:28:33.050477 cognd 04328213X R rec 969dfd71-5276-49b0-9edf-3356a39b38a9 +2024-07-30 15:28:33.128734 2024-07-30 15:28:33.128746 cognd 043274994 R rec 26e7d26c-3d6f-41bc-9b5b-ade1cf2706d6 +2024-07-30 15:28:33.206016 2024-07-30 15:28:33.206027 cognd 043252044 R rec 890b7967-7914-4dc0-8c51-38a9246a6dfa +2024-07-30 15:28:33.275742 2024-07-30 15:28:33.275748 cognd 043203469 R rec 31c7f7d6-29dc-419e-8789-9586882484a8 +2024-07-30 15:28:33.319015 2024-07-30 15:28:33.319026 cognd 043197574 R rec b4bd9b01-ad3a-4543-98f4-afe78f2774cb +2024-07-30 15:28:33.390056 2024-07-30 15:28:33.390068 cognd 043195733 R rec 7aa06f75-d194-43ec-a6f3-4c367a209822 +2024-07-30 15:28:33.46317 2024-07-30 15:28:33.463186 cognd 04313291X R rec 9d654266-6e03-407a-a19e-d492a99e79ea +2024-07-30 15:28:33.541571 2024-07-30 15:28:33.541582 cognd 043128629 R rec f8172f6e-3901-4e4b-83b0-eeec2dd3c715 +2024-07-30 15:28:33.61116 2024-07-30 15:28:33.611171 cognd 043062008 R rec 484c0108-0322-4cac-9aa2-c4f40ec5c073 +2024-07-30 15:28:33.687913 2024-07-30 15:28:33.687924 cognd 04304929X R rec cca38f56-d102-4c04-90c9-b849c16bbd99 +2024-07-30 15:28:33.76565 2024-07-30 15:28:33.765662 cognd 043035167 R rec bc4b7614-37ca-46ed-a76a-a27eafd32425 +2024-07-30 15:28:33.856674 2024-07-30 15:28:33.856684 cognd 043022790 R rec 063b33ff-81a8-422c-b016-9cc4f0e5dac4 +2024-07-30 15:28:33.933777 2024-07-30 15:28:33.933786 cognd 043004164 R rec f86c167e-75ad-447c-9ee2-5d2e97c85250 +2024-07-30 15:28:34.012552 2024-07-30 15:28:34.012564 cognd 043003583 R rec c93e48b9-957c-4bbc-9f9e-0b03ac9fd3ae +2024-07-30 15:28:34.091537 2024-07-30 15:28:34.091549 cognd 043001173 R rec 45bed6c5-bd4f-4e61-b846-98e61d0524bd +2024-07-30 15:28:34.176946 2024-07-30 15:28:34.176958 cognd 04300024X R rec f05d0c87-a837-454d-8d86-ce03b582c75d +2024-07-30 15:28:34.250887 2024-07-30 15:28:34.250899 cognd 043000150 R rec 9a83d4f8-8918-4eb4-8336-fff7efc0b84b +2024-07-30 15:28:34.323812 2024-07-30 15:28:34.323822 cognd 042982553 R rec 31ddbabf-1561-4b5e-9edb-95adb2d74abb +2024-07-30 15:28:34.387133 2024-07-30 15:28:34.387143 cognd 042981794 R rec cee1ceab-c5b9-488f-85a8-b2120854d730 +2024-07-30 15:28:34.460557 2024-07-30 15:28:34.460572 cognd 042940664 R rec dfd2454a-ea83-4ddb-b42c-66acf50d10c3 +2024-07-30 15:28:34.543199 2024-07-30 15:28:34.54321 cognd 042914582 R rec b5ea4288-cd77-4097-945a-e6d6b703a70f +2024-07-30 15:28:34.624811 2024-07-30 15:28:34.624823 cognd 042913748 R rec 56191a2c-df48-491c-8097-8d9da5f22fb0 +2024-07-30 15:28:34.70413 2024-07-30 15:28:34.704141 cognd 04291096X R rec 6ee37093-2598-434b-be49-03d9f825ffbf +2024-07-30 15:28:34.787442 2024-07-30 15:28:34.787453 cognd 042910870 R rec 70799fcd-3fcd-4dc8-ae79-5e6dfad67623 +2024-07-30 15:28:34.865344 2024-07-30 15:28:34.865356 cognd 042892562 R rec 6ac695b3-da06-476e-b9b6-e5324bed1e64 +2024-07-30 15:28:34.952979 2024-07-30 15:28:34.952989 cognd 042870526 R rec e9d44555-7f4c-47f6-9a04-950c4bc8d23d +2024-07-30 15:28:35.030966 2024-07-30 15:28:35.03098 cognd 042863627 R rec 99c0b0cb-ed2e-4354-a1ca-3ad2379b7f60 +2024-07-30 15:28:35.109817 2024-07-30 15:28:35.109828 cognd 042848792 R rec 1ea3bd28-16b0-4a16-a4a0-d2b21ad60ab5 +2024-07-30 15:28:35.209683 2024-07-30 15:28:35.209694 cognd 042841259 R rec 3ac844b0-6837-48da-ae75-173dc4159f9f +2024-07-30 15:28:35.283468 2024-07-30 15:28:35.283489 cognd 042819458 R rec 6feec4be-ffc4-4984-ac28-12bf80506367 +2024-07-30 15:28:35.36204 2024-07-30 15:28:35.362051 cognd 042815479 R rec b1cf3039-fe0c-4462-aaa5-e75a058da1fb +2024-07-30 15:28:35.433011 2024-07-30 15:28:35.433021 cognd 042777089 R rec a65e2ae0-fcab-43df-8921-ac10d77a1d39 +2024-07-30 15:28:35.499978 2024-07-30 15:28:35.499987 cognd 042765315 R rec 96e57485-b2fe-45e9-90b9-02c8f1a18a80 +2024-07-30 15:28:35.570908 2024-07-30 15:28:35.570919 cognd 042731887 R rec eef762ac-94ae-4434-a699-d78bb6ff2883 +2024-07-30 15:28:35.649521 2024-07-30 15:28:35.649532 cognd 042731437 R rec ed0370d8-1241-49dd-80d8-489baf455958 +2024-07-30 15:28:35.732591 2024-07-30 15:28:35.732602 cognd 042720133 R rec 03c1a10a-e890-45a7-8a47-8af9d3e00bff +2024-07-30 15:28:35.808865 2024-07-30 15:28:35.808875 cognd 04266702X R rec d72f6ccc-b02f-4f7b-b7bd-028bae706906 +2024-07-30 15:28:35.888969 2024-07-30 15:28:35.888979 cognd 042653304 R rec d9b5353a-2de7-4302-aa63-955cf287b1f6 +2024-07-30 15:28:35.963893 2024-07-30 15:28:35.963905 cognd 042645212 R rec 1282efbc-7c89-422a-adb5-d16b92f2d766 +2024-07-30 15:28:36.040108 2024-07-30 15:28:36.040119 cognd 042627222 R rec 7444b374-2ae1-49f2-ad92-c4d049ccbc89 +2024-07-30 15:28:36.118889 2024-07-30 15:28:36.1189 cognd 042586208 R rec 2e93f0c1-d9ab-4565-9564-3a20e6684ea0 +2024-07-30 15:28:36.202055 2024-07-30 15:28:36.202066 cognd 042578205 R rec cb7c38a9-80c5-4b6a-b2c2-1f76e035e69b +2024-07-30 15:28:36.292621 2024-07-30 15:28:36.292634 cognd 042573254 R rec c2b13c13-933d-4272-aa17-206812e9644f +2024-07-30 15:28:36.373301 2024-07-30 15:28:36.373306 cognd 042536367 R rec 5846efcf-86ac-4bb8-9af2-de15fd82bbd6 +2024-07-30 15:28:36.426988 2024-07-30 15:28:36.426999 cognd 042496675 R rec 26123233-f98c-4045-8a7b-51c1c2e3eb9e +2024-07-30 15:28:36.498868 2024-07-30 15:28:36.49888 cognd 042486386 R rec aaf56f2f-157a-45d7-9de8-110148f739ff +2024-07-30 15:28:36.576644 2024-07-30 15:28:36.576655 cognd 042447690 R rec 9f510918-efba-467c-9527-1acb99ceeb85 +2024-07-30 15:28:36.653155 2024-07-30 15:28:36.653165 cognd 042438799 R rec 57e4b5dd-aa21-435f-8933-7def03fe3bd1 +2024-07-30 15:28:36.723327 2024-07-30 15:28:36.723337 cognd 042425875 R rec 1b9f552d-b0f0-47c4-bd0e-49169478f9ab +2024-07-30 15:28:36.81119 2024-07-30 15:28:36.811199 cognd 042422825 R rec 0e13299d-0be5-4d38-9b43-6a438299802a +2024-07-30 15:28:36.888518 2024-07-30 15:28:36.888532 cognd 042380480 R rec 842ddc8a-4f74-4a0d-8c72-e84c9733c4d4 +2024-07-30 15:28:36.95926 2024-07-30 15:28:36.959295 cognd 042374480 R rec da7a24d6-8f4d-4325-80f8-d526f9df0e42 +2024-07-30 15:28:37.040211 2024-07-30 15:28:37.040223 cognd 042325900 R rec 57a3ff71-bad2-43a2-9abd-41743590d031 +2024-07-30 15:28:37.122348 2024-07-30 15:28:37.122358 cognd 042325897 R rec ca552ee9-f124-4901-934b-ab64d8642f9d +2024-07-30 15:28:37.208897 2024-07-30 15:28:37.208908 cognd 042313414 R rec f1fe69c6-ed55-4a3e-8a46-f456b5b5fdf4 +2024-07-30 15:28:37.30346 2024-07-30 15:28:37.30347 cognd 042277558 R rec 6286649a-becd-45b2-b2b9-56ff5ae811c8 +2024-07-30 15:28:37.38422 2024-07-30 15:28:37.38423 cognd 042266289 R rec f8e465cb-fa76-4980-9cc0-b729a7bfd8ff +2024-07-30 15:28:37.446027 2024-07-30 15:28:37.446037 cognd 042241839 R rec ce70ca96-8e81-4efb-a1de-b86fbcf0a06a +2024-07-30 15:28:37.538315 2024-07-30 15:28:37.538325 cognd 042230284 R rec fa0ebcae-eacf-40cc-8dee-e0b6f99b88fc +2024-07-30 15:28:37.611448 2024-07-30 15:28:37.611458 cognd 042213010 R rec 89e8349d-0cc8-474b-9fa1-483250209016 +2024-07-30 15:28:37.685938 2024-07-30 15:28:37.685948 cognd 042183154 R rec 2e860b10-28da-421c-a943-ca77a14e99d4 +2024-07-30 15:28:37.763893 2024-07-30 15:28:37.763905 cognd 04216818X R rec e62311e1-3a02-4ace-b03f-0de585801905 +2024-07-30 15:28:37.853472 2024-07-30 15:28:37.853482 cognd 042161258 R rec b348d21a-1bdb-4eeb-9e3d-8ad6007fd7ca +2024-07-30 15:28:37.934649 2024-07-30 15:28:37.93466 cognd 042147670 R rec 7e38d12d-a6d6-44f8-8d3c-0a4639509c8c +2024-07-30 15:28:38.011317 2024-07-30 15:28:38.011328 cognd 042142237 R rec 04a8aca9-26c0-4b48-a31f-a29aee00e8a7 +2024-07-30 15:28:38.091773 2024-07-30 15:28:38.091785 cognd 042137519 R rec effa5997-4f3f-4a47-ab7f-c965130fed43 +2024-07-30 15:28:38.172431 2024-07-30 15:28:38.172442 cognd 042124093 R rec 47efc35c-0ae4-4990-a005-8ffe029f6bf2 +2024-07-30 15:28:38.239365 2024-07-30 15:28:38.239374 cognd 042123909 R rec de160c66-9790-40de-b3ea-be3fe115cd6c +2024-07-30 15:28:38.346035 2024-07-30 15:28:38.346045 cognd 04211277X R rec f1f4176c-e04a-4340-a1e2-0e674919eba5 +2024-07-30 15:28:38.417558 2024-07-30 15:28:38.417564 cognd 042104378 R rec cf497c21-0feb-4959-b1f8-f4d9d7ba30b9 +2024-07-30 15:28:38.464918 2024-07-30 15:28:38.464927 cognd 042100917 R rec 89ca3438-fbfe-40c1-afcb-d9fa7b117647 +2024-07-30 15:28:38.53202 2024-07-30 15:28:38.532031 cognd 042100445 R rec 590a0277-745d-40a1-b3fc-3807a2a991f5 +2024-07-30 15:28:38.61793 2024-07-30 15:28:38.617942 cognd 042081033 R rec 86c199e8-5735-4db7-932f-df519603e822 +2024-07-30 15:28:38.717908 2024-07-30 15:28:38.71792 cognd 042074150 R rec e8f35de7-5980-401b-9745-a84afc2966a3 +2024-07-30 15:28:38.802766 2024-07-30 15:28:38.802776 cognd 042044529 R rec 307df572-c33b-4a1c-b988-7f6c16d139f1 +2024-07-30 15:28:38.881886 2024-07-30 15:28:38.881897 cognd 042033276 R rec 2f70f1ba-9d1e-4c6f-9138-3455386dc40e +2024-07-30 15:28:38.952636 2024-07-30 15:28:38.952648 cognd 042022622 R rec 9ff1068e-dbdc-429c-a057-df00bdc858c8 +2024-07-30 15:28:39.031696 2024-07-30 15:28:39.031706 cognd 042020646 R rec 1bf76910-55c1-40d6-a783-73a09060a21d +2024-07-30 15:28:39.115203 2024-07-30 15:28:39.115215 cognd 041969596 R rec 592be113-4fcd-4778-af0f-99131bc09fde +2024-07-30 15:28:39.193462 2024-07-30 15:28:39.193473 cognd 041966716 R rec c10306de-8de4-4a9a-bf4a-8dcb430244f7 +2024-07-30 15:28:39.288316 2024-07-30 15:28:39.288328 cognd 041962923 R rec 3c6dd39e-f535-43f7-be99-733003d6aac0 +2024-07-30 15:28:39.371947 2024-07-30 15:28:39.371957 cognd 041961080 R rec 336e921a-d53b-48bb-bf54-0cca63c1e06a +2024-07-30 15:28:39.436896 2024-07-30 15:28:39.436901 cognd 041944240 R rec 960e412c-f307-4199-b7e5-068c35e072fd +2024-07-30 15:28:39.484829 2024-07-30 15:28:39.484839 cognd 041935659 R rec 4d303eda-26e4-4d81-b302-dd71a025588e +2024-07-30 15:28:39.568026 2024-07-30 15:28:39.568038 cognd 04193458X R rec 320227d3-f169-48e8-8d1e-d1e25b6e4e84 +2024-07-30 15:28:39.65384 2024-07-30 15:28:39.65385 cognd 041920287 R rec ef5a5c04-2d78-42f5-919f-504c7f285519 +2024-07-30 15:28:39.726759 2024-07-30 15:28:39.726771 cognd 041920279 R rec 60611ae9-3766-4d58-a989-8de981eaca96 +2024-07-30 15:28:39.801007 2024-07-30 15:28:39.801016 cognd 041917413 R rec eeb6e2f0-b0b0-48a2-a4c7-4b709434a449 +2024-07-30 15:28:39.884242 2024-07-30 15:28:39.884253 cognd 041913574 R rec a2f90f2b-15fb-4f0a-9517-704f181d546a +2024-07-30 15:28:39.958639 2024-07-30 15:28:39.95865 cognd 041912888 R rec 4a75a242-47a1-45e2-86f9-c5311aa9153b +2024-07-30 15:28:40.038145 2024-07-30 15:28:40.038156 cognd 041909836 R rec efb3274f-26e3-4a9a-982e-c51de44fc5cf +2024-07-30 15:28:40.119397 2024-07-30 15:28:40.119408 cognd 041906683 R rec ba4eb26b-2a22-4dc5-a2b5-7095f23fffe7 +2024-07-30 15:28:40.201392 2024-07-30 15:28:40.201405 cognd 041901398 R rec cbd049ff-c315-4b3e-9e00-eeb928066574 +2024-07-30 15:28:40.284413 2024-07-30 15:28:40.284423 cognd 041890353 R rec a73d1052-7a64-48e5-9a97-997804237605 +2024-07-30 15:28:40.359904 2024-07-30 15:28:40.359919 cognd 04188566X R rec 26530e69-55a8-4963-a358-dbc4a9ac5a06 +2024-07-30 15:28:40.442797 2024-07-30 15:28:40.442814 cognd 041856333 R rec f13aebe6-4ef6-4203-9093-11ec6663ccca +2024-07-30 15:28:40.528248 2024-07-30 15:28:40.52826 cognd 041856325 R rec 55edebad-ca1f-4b1e-aef5-08804fcda654 +2024-07-30 15:28:40.606311 2024-07-30 15:28:40.606323 cognd 041848020 R rec f47997be-f5d9-4c6a-9da2-cc335842c900 +2024-07-30 15:28:40.673333 2024-07-30 15:28:40.673345 cognd 041844793 R rec fce8e92f-35dc-43b9-8704-38502c2640ec +2024-07-30 15:28:40.746115 2024-07-30 15:28:40.746127 cognd 041844513 R rec d72c83c8-0c29-47e0-8804-7a1be1d00cf5 +2024-07-30 15:28:40.821478 2024-07-30 15:28:40.82149 cognd 041840658 R rec e87bacc9-fcef-4438-b663-d022c8714d44 +2024-07-30 15:28:40.906747 2024-07-30 15:28:40.906763 cognd 041830180 R rec 4f2ddfb5-39c0-4542-9653-769a820f295b +2024-07-30 15:28:40.990066 2024-07-30 15:28:40.990077 cognd 041822218 R rec 70f222e7-5c21-45c9-8fd0-013a56c957d6 +2024-07-30 15:28:41.062329 2024-07-30 15:28:41.062341 cognd 041815173 R rec e6f33fe3-a6d6-486c-b60c-3b3f3ee8800e +2024-07-30 15:28:41.142295 2024-07-30 15:28:41.142306 cognd 041810252 R rec adbb761f-bce4-4b93-bdee-a202a8667733 +2024-07-30 15:28:41.214942 2024-07-30 15:28:41.214953 cognd 041806417 R rec 990385da-d7fc-4534-bb95-aebe75ae919a +2024-07-30 15:28:41.286601 2024-07-30 15:28:41.286611 cognd 041796462 R rec 7e2ef5d2-3b96-41e0-9bd0-2d212a4efe10 +2024-07-30 15:28:41.367983 2024-07-30 15:28:41.367994 cognd 041794923 R rec c8cc4b23-87f0-42fb-bdf3-7e2f418cb238 +2024-07-30 15:28:41.436927 2024-07-30 15:28:41.436943 cognd 041789989 R rec 34f4e10f-439d-4917-866e-afc44def7a30 +2024-07-30 15:28:41.518508 2024-07-30 15:28:41.518519 cognd 041787250 R rec f7618c68-1173-4a9b-9f5b-b0e28ffe286a +2024-07-30 15:28:41.599488 2024-07-30 15:28:41.599498 cognd 041785134 R rec 7addea0d-d56d-4103-83dc-99407e099a89 +2024-07-30 15:28:41.673227 2024-07-30 15:28:41.673238 cognd 041782445 R rec 22960e6f-f60e-4f6b-be42-8689ac1e6433 +2024-07-30 15:28:41.753997 2024-07-30 15:28:41.754008 cognd 041766040 R rec 67edab8b-72b8-449c-bd38-cf6080e645aa +2024-07-30 15:28:41.826732 2024-07-30 15:28:41.826743 cognd 041762223 R rec f869c028-acb1-4c3f-acef-208f762e8403 +2024-07-30 15:28:41.901168 2024-07-30 15:28:41.901179 cognd 041753615 R rec 7cdcc953-28f4-4b7e-929e-35c8d2cff7a8 +2024-07-30 15:28:41.976214 2024-07-30 15:28:41.976223 cognd 041748379 R rec 83e6425f-3c72-4c5c-b385-ef4ef25e7cf6 +2024-07-30 15:28:42.051661 2024-07-30 15:28:42.051673 cognd 041734467 R rec 8c9bbd3d-f070-4437-ade1-448c0a2cc13c +2024-07-30 15:28:42.133058 2024-07-30 15:28:42.133072 cognd 041730380 R rec ea9608ce-59fd-4496-89ba-03cf4645c2c4 +2024-07-30 15:28:42.208988 2024-07-30 15:28:42.208998 cognd 041718380 R rec 011ebc79-90f0-47fe-b1ab-14ede41bb61d +2024-07-30 15:28:42.273678 2024-07-30 15:28:42.273686 cognd 041717007 R rec 95ebde48-8a53-4791-b1ad-3e8ff0ea4a20 +2024-07-30 15:28:42.342687 2024-07-30 15:28:42.342697 cognd 041712900 R rec 7c700144-d13d-4e67-b6bd-d2e98a1e63d1 +2024-07-30 15:28:42.408208 2024-07-30 15:28:42.40822 cognd 041707222 R rec 204bb5f9-f461-47de-b73d-5fe3e1193c17 +2024-07-30 15:28:42.476804 2024-07-30 15:28:42.476814 cognd 04170553X R rec 1a6197d3-784b-4789-986e-e10ad86aa6cd +2024-07-30 15:28:42.534184 2024-07-30 15:28:42.534189 cognd 041701852 R rec 960dce49-fef0-4827-bdc7-d35d4a281499 +2024-07-30 15:28:42.590833 2024-07-30 15:28:42.590844 cognd 041699122 R rec b355c71c-5ae5-4cc5-a9d5-84cf89f2a537 +2024-07-30 15:28:42.655768 2024-07-30 15:28:42.65578 cognd 041699114 R rec 55fa2e30-d6ac-4241-9e30-6e2e4e454744 +2024-07-30 15:28:42.731543 2024-07-30 15:28:42.731555 cognd 041696492 R rec 6e0fdba8-297e-4e91-b25b-1b917ff02dee +2024-07-30 15:28:42.805819 2024-07-30 15:28:42.805829 cognd 041693477 R rec 6f92a99a-b1b3-4d14-9495-90d5601a79cc +2024-07-30 15:28:42.884151 2024-07-30 15:28:42.884163 cognd 041692705 R rec 63691e67-cfaf-42a4-98a5-80c546f5c821 +2024-07-30 15:28:42.952983 2024-07-30 15:28:42.952995 cognd 041689763 R rec 42072555-8e35-47a0-84d1-a909f0922537 +2024-07-30 15:28:43.026423 2024-07-30 15:28:43.026433 cognd 041687167 R rec e9248e74-5527-4366-8ee5-8e51b48afa79 +2024-07-30 15:28:43.099869 2024-07-30 15:28:43.09988 cognd 041667689 R rec e4287e15-8635-4c5b-a998-8178ebf58891 +2024-07-30 15:28:43.192269 2024-07-30 15:28:43.192293 cognd 041667670 R rec fef07643-fd77-4b4c-a2b4-309853489df9 +2024-07-30 15:28:43.286727 2024-07-30 15:28:43.286737 cognd 041663659 R rec 8235ce9d-e2a7-42ed-9611-0269d75a94f3 +2024-07-30 15:28:43.370675 2024-07-30 15:28:43.370685 cognd 04165725X R rec 513445b5-0534-44b1-ace1-374ad2dc4188 +2024-07-30 15:28:43.446715 2024-07-30 15:28:43.446727 cognd 041656032 R rec 6c4435e8-99f4-48d0-8f2f-a9cb2b23f420 +2024-07-30 15:28:43.524273 2024-07-30 15:28:43.524285 cognd 041655974 R rec fac78d5e-b8c0-4399-a195-74052b0cebd4 +2024-07-30 15:28:43.586132 2024-07-30 15:28:43.586143 cognd 041655168 R rec fc869203-90b5-4df6-9dc5-44252fbc61cf +2024-07-30 15:28:43.656891 2024-07-30 15:28:43.656903 cognd 041654013 R rec b8577a46-f0e9-4d9d-b9e9-55983ba89a73 +2024-07-30 15:28:43.733369 2024-07-30 15:28:43.733381 cognd 041653386 R rec 15ba1fe9-9a51-4b8e-8518-01706d1eb1b9 +2024-07-30 15:28:43.808028 2024-07-30 15:28:43.808038 cognd 041647459 R rec 3783d369-38b2-45e6-9f20-d28dd1d886eb +2024-07-30 15:28:43.883286 2024-07-30 15:28:43.883297 cognd 041637763 R rec 8f15db93-b19a-48c9-86f8-b6310d712dcb +2024-07-30 15:28:43.960666 2024-07-30 15:28:43.960678 cognd 041636422 R rec 0ee62191-9172-4d57-80ec-55d6c1c0791d +2024-07-30 15:28:44.034592 2024-07-30 15:28:44.034607 cognd 041633237 R rec 609228d5-025c-424e-a7d5-e50942f763ba +2024-07-30 15:28:44.114748 2024-07-30 15:28:44.114759 cognd 041616715 R rec 93ef54bd-4dac-40ae-a83d-869745536cff +2024-07-30 15:28:44.1971 2024-07-30 15:28:44.197113 cognd 041614909 R rec e35caf92-923c-4e75-aff6-fd59faee3963 +2024-07-30 15:28:44.269868 2024-07-30 15:28:44.269879 cognd 041614836 R rec 2562b2a6-4ab1-4dc0-b349-38ec8b488973 +2024-07-30 15:28:44.343531 2024-07-30 15:28:44.343541 cognd 041613872 R rec 66224003-e177-4e4b-ae56-7a9feeaca65b +2024-07-30 15:28:44.425607 2024-07-30 15:28:44.425618 cognd 041613597 R rec e716717f-2d20-4a08-bbe4-490ee8f4a44b +2024-07-30 15:28:44.491021 2024-07-30 15:28:44.491031 cognd 041606760 R rec 752af172-463e-4888-ae1e-011008cfdfb5 +2024-07-30 15:28:44.554571 2024-07-30 15:28:44.554581 cognd 041599470 R rec 1e1fff52-0761-436b-977b-379fcc74f163 +2024-07-30 15:28:44.628896 2024-07-30 15:28:44.628919 cognd 041597508 R rec 40a97737-0f94-4e7c-a651-2d56d4ce5dc7 +2024-07-30 15:28:44.694022 2024-07-30 15:28:44.694032 cognd 041594800 R rec ba31d72f-531e-4e3a-9bdb-2307fce4081c +2024-07-30 15:28:44.764646 2024-07-30 15:28:44.764655 cognd 041591267 R rec 8649071f-81b1-40e0-8213-4cd8c9f18a4e +2024-07-30 15:28:44.832456 2024-07-30 15:28:44.832466 cognd 041585623 R rec 6667de6f-7231-4e8d-bd5d-31136095565d +2024-07-30 15:28:44.897226 2024-07-30 15:28:44.897237 cognd 041584929 R rec 5fb76bba-470d-4572-ad8f-4051feabe814 +2024-07-30 15:28:44.972323 2024-07-30 15:28:44.972333 cognd 041582667 R rec 2f5b70e3-7b9c-4f59-a2c4-2f84d370b77c +2024-07-30 15:28:45.056258 2024-07-30 15:28:45.05627 cognd 041570170 R rec 00a5121f-e2f5-4664-9b33-d764b90e9c9b +2024-07-30 15:28:45.139805 2024-07-30 15:28:45.139814 cognd 041570103 R rec 26bb43e7-6080-4521-95e6-a0fe7962a1ca +2024-07-30 15:28:45.205735 2024-07-30 15:28:45.205745 cognd 041565568 R rec 0b606e1c-0d32-42ed-ad47-b4d9e44cd37e +2024-07-30 15:28:45.278982 2024-07-30 15:28:45.278993 cognd 041563247 R rec b7516ae0-d930-426b-af0d-91db37a5f7df +2024-07-30 15:28:45.360771 2024-07-30 15:28:45.360782 cognd 041553128 R rec 49cb332a-0e8d-42ce-8022-2494116bbdef +2024-07-30 15:28:45.430223 2024-07-30 15:28:45.430235 cognd 041544323 R rec 3aa5f296-d94c-48c1-a525-0aa270726353 +2024-07-30 15:28:45.50126 2024-07-30 15:28:45.501272 cognd 041542436 R rec 36eff4c8-cd0b-42ad-a4a5-dcd500c136ce +2024-07-30 15:28:45.584603 2024-07-30 15:28:45.584614 cognd 041534646 R rec a207a74a-632e-4ba7-8c71-8cb50ffa7079 +2024-07-30 15:28:45.644867 2024-07-30 15:28:45.644877 cognd 041531426 R rec 00dd23cf-a781-411f-af11-33cf488442d5 +2024-07-30 15:28:45.720101 2024-07-30 15:28:45.720112 cognd 04152697X R rec ce6ede16-8782-4e8f-b59d-b23e02b95f5d +2024-07-30 15:28:45.799212 2024-07-30 15:28:45.799221 cognd 041523393 R rec 9af3c5c8-687b-409a-a38f-3d4f8e1f5526 +2024-07-30 15:28:45.868202 2024-07-30 15:28:45.868212 cognd 041523318 R rec 6182645c-be60-424e-9b32-0b924eca6f9f +2024-07-30 15:28:45.938418 2024-07-30 15:28:45.938432 cognd 04151923X R rec 7946acf7-1443-4315-ac3b-3cd5be443fdf +2024-07-30 15:28:46.027614 2024-07-30 15:28:46.027631 cognd 041518160 R rec 9fbb474b-5874-4921-9089-b19301f77298 +2024-07-30 15:28:46.122263 2024-07-30 15:28:46.122282 cognd 041516613 R rec e79358bf-6e75-44b3-aa57-721e658f2f11 +2024-07-30 15:28:46.211567 2024-07-30 15:28:46.211578 cognd 041515420 R rec 774d6023-92a0-44c8-b84e-fa1d076a8d83 +2024-07-30 15:28:46.310503 2024-07-30 15:28:46.310517 cognd 041512820 R rec 0149a34c-1b34-40fc-9c41-045832a4f694 +2024-07-30 15:28:46.394721 2024-07-30 15:28:46.394737 cognd 041509412 R rec f3c3ae9a-d0fd-4635-b489-d45b3237364a +2024-07-30 15:28:46.484234 2024-07-30 15:28:46.484245 cognd 041505336 R rec ced77c22-1270-4e5b-9015-1b4dbb7e5cdf +2024-07-30 15:28:46.554198 2024-07-30 15:28:46.554226 cognd 041505077 R rec c0aec86f-cf95-47f6-bbcd-bbf371df886a +2024-07-30 15:28:46.626054 2024-07-30 15:28:46.626065 cognd 04150335X R rec b343960b-44a7-4e7d-94bc-adbaf0c00ee1 +2024-07-30 15:28:46.673213 2024-07-30 15:28:46.673224 cognd 041502264 R rec 5c34bf4d-8e68-4cf0-8aa6-79d67a706844 +2024-07-30 15:28:46.758149 2024-07-30 15:28:46.75816 cognd 041487109 R rec 3d6fbdb3-65d3-45db-9792-39e2d1f9c6f8 +2024-07-30 15:28:46.82728 2024-07-30 15:28:46.827292 cognd 041477936 R rec deeaea04-9326-41e7-b69b-474a10e2cc9e +2024-07-30 15:28:46.905068 2024-07-30 15:28:46.905078 cognd 041470966 R rec 40f8267f-b8ac-4a11-af12-fa32a18b51b5 +2024-07-30 15:28:46.981522 2024-07-30 15:28:46.981534 cognd 041470044 R rec f4cdad6c-cece-412e-8c7f-d5c89e04a1f3 +2024-07-30 15:28:47.063308 2024-07-30 15:28:47.063319 cognd 04146768X R rec c955a9a0-76d3-480f-8265-d9b9f7009edb +2024-07-30 15:28:47.139889 2024-07-30 15:28:47.1399 cognd 041467612 R rec f663b972-0f05-4dfa-9737-f0afc33e4918 +2024-07-30 15:28:47.218257 2024-07-30 15:28:47.218267 cognd 041466578 R rec 356c3bb4-c069-4a2e-9148-7b6d394dbe0f +2024-07-30 15:28:47.293739 2024-07-30 15:28:47.293751 cognd 041466365 R rec a05f1381-e3e1-4641-813c-b6334732a7e3 +2024-07-30 15:28:47.364242 2024-07-30 15:28:47.36452 cognd 041463692 R rec fc2eb743-c0ff-463e-ae1b-dc4a70be31d6 +2024-07-30 15:28:47.444914 2024-07-30 15:28:47.444924 cognd 041450809 R rec 44dca1ad-2c65-4cf2-9dfc-b79f2bc8b1b3 +2024-07-30 15:28:47.527517 2024-07-30 15:28:47.527528 cognd 041450469 R rec 3405b823-bc33-4c68-93cf-bbc6401a54e5 +2024-07-30 15:28:47.626559 2024-07-30 15:28:47.626571 cognd 041446186 R rec 5d82cc95-33a8-4c20-9101-536231676490 +2024-07-30 15:28:47.692847 2024-07-30 15:28:47.692853 cognd 041444280 R rec f93ed3f6-b92e-4d6a-bce9-b76beaaf5040 +2024-07-30 15:28:47.75893 2024-07-30 15:28:47.75894 cognd 041439902 R rec d4170af8-ca0f-4f80-9491-b0f0aa96a6cf +2024-07-30 15:28:47.82928 2024-07-30 15:28:47.829291 cognd 04143823X R rec ca60b6bf-1139-41db-ac0b-d0611f180b30 +2024-07-30 15:28:47.901745 2024-07-30 15:28:47.901756 cognd 041437896 R rec a78efdc9-3e77-4ebe-866e-fcbef83b1836 +2024-07-30 15:28:47.971098 2024-07-30 15:28:47.971108 cognd 041431049 R rec c8381002-f504-43ea-9b62-1d31978250d0 +2024-07-30 15:28:48.047836 2024-07-30 15:28:48.047847 cognd 04143028X R rec 4bf0a6ad-788f-4a8e-add1-f17a2c69166c +2024-07-30 15:28:48.125131 2024-07-30 15:28:48.125143 cognd 04142641X R rec 3d6e130f-e10a-44b0-8fa7-f7532cce87f4 +2024-07-30 15:28:48.210689 2024-07-30 15:28:48.2107 cognd 04142574X R rec 18c6b105-5e48-4f1e-a84f-8f4894b9aa3d +2024-07-30 15:28:48.303837 2024-07-30 15:28:48.303852 cognd 041424573 R rec 1e38bd50-9a79-4c4f-a337-3ce9eb5b49c6 +2024-07-30 15:28:48.401691 2024-07-30 15:28:48.401702 cognd 041424492 R rec e210ed5b-e8e5-4ec9-878c-4ef481cebd31 +2024-07-30 15:28:48.474813 2024-07-30 15:28:48.474823 cognd 041422260 R rec e2ed7df6-da54-46c9-9778-9d2e3ff00a80 +2024-07-30 15:28:48.540912 2024-07-30 15:28:48.540922 cognd 041422058 R rec 50c48aab-6a6d-4925-91dd-41bb99cd78c4 +2024-07-30 15:28:48.614899 2024-07-30 15:28:48.614912 cognd 041419677 R rec dee77cb8-50c3-4e1b-af18-7324919f6029 +2024-07-30 15:28:48.683827 2024-07-30 15:28:48.683833 cognd 041411137 R rec 4710914a-c3ee-4d0a-9250-07f09544bc99 +2024-07-30 15:28:48.747255 2024-07-30 15:28:48.747266 cognd 041409965 R rec 93c50731-ef7e-434b-b472-2be1f3623307 +2024-07-30 15:28:48.818154 2024-07-30 15:28:48.818166 cognd 041409760 R rec bbd4b7ba-e9c1-42ee-9ec8-b5b532f05732 +2024-07-30 15:28:48.891054 2024-07-30 15:28:48.891065 cognd 041392450 R rec ab7d0ed2-d6ba-4800-8aac-2e61451d17df +2024-07-30 15:28:48.959287 2024-07-30 15:28:48.959298 cognd 041388984 R rec 7efa10d9-e311-4198-94ad-4075e32ace2c +2024-07-30 15:28:49.025242 2024-07-30 15:28:49.025253 cognd 041378407 R rec 888181d2-20f7-4b13-8830-4290480d2cf7 +2024-07-30 15:28:49.092207 2024-07-30 15:28:49.092218 cognd 041374444 R rec 7b5e50e1-bf82-4cc1-9d63-0951f846d030 +2024-07-30 15:28:49.169695 2024-07-30 15:28:49.169704 cognd 041369785 R rec 3c4b42d3-9b35-4792-b6a1-a03897d22f5b +2024-07-30 15:28:49.248904 2024-07-30 15:28:49.248919 cognd 041368517 R rec 0f884434-5492-4d94-a7d3-05116676f0b5 +2024-07-30 15:28:49.334109 2024-07-30 15:28:49.334125 cognd 041366352 R rec bc8938e6-3e01-4abc-88d3-26f08eefd450 +2024-07-30 15:28:49.437427 2024-07-30 15:28:49.43744 cognd 041365844 R rec 99d0aa07-c09e-4fa2-92d6-70a80d3ed3ac +2024-07-30 15:28:49.528266 2024-07-30 15:28:49.528281 cognd 041354710 R rec ea604753-f321-4b55-bb75-0afdf2862adf +2024-07-30 15:28:49.617348 2024-07-30 15:28:49.617363 cognd 041345835 R rec fb53af07-35c9-4120-b78f-af3608da806d +2024-07-30 15:28:49.706608 2024-07-30 15:28:49.706613 cognd 04134166X R rec ef566f44-593e-444e-a12e-619a0c7b22ce +2024-07-30 15:28:49.754098 2024-07-30 15:28:49.754121 cognd 041340892 R rec 0288c11e-f73a-4161-b569-01863dcf3aed +2024-07-30 15:28:49.820644 2024-07-30 15:28:49.820655 cognd 041333004 R rec ea074149-2d49-49ed-9511-997ef6d3cb52 +2024-07-30 15:28:49.883062 2024-07-30 15:28:49.883073 cognd 041332997 R rec e3fab1f4-98b3-4aad-8f48-16e42a0d092a +2024-07-30 15:28:49.943939 2024-07-30 15:28:49.943948 cognd 041332237 R rec bb6a0575-fe4c-4e0e-8499-991b340df2fe +2024-07-30 15:28:50.024927 2024-07-30 15:28:50.024937 cognd 041326202 R rec f38ed596-c010-435c-ad08-c93634ef4f98 +2024-07-30 15:28:50.08862 2024-07-30 15:28:50.088631 cognd 041325710 R rec 5b9c2e1f-14cc-4337-94d5-49701d6b0cbb +2024-07-30 15:28:50.157232 2024-07-30 15:28:50.157242 cognd 04132305X R rec cfbe21f5-459c-42d0-b1f5-b55dbaa94fca +2024-07-30 15:28:50.224522 2024-07-30 15:28:50.224532 cognd 041322886 R rec 94d5f9bc-2a55-41c8-b2c6-610ea1b848d7 +2024-07-30 15:28:50.302497 2024-07-30 15:28:50.302506 cognd 041319125 R rec eed91305-1076-45b6-907d-ec047c34ef42 +2024-07-30 15:28:50.370809 2024-07-30 15:28:50.370819 cognd 041317718 R rec 13a2a4f1-2360-4c00-922c-1ff0e2b69a08 +2024-07-30 15:28:50.450557 2024-07-30 15:28:50.450569 cognd 041312368 R rec 06dba3b7-254c-4c15-a659-a6ae9b79540f +2024-07-30 15:28:50.532137 2024-07-30 15:28:50.532148 cognd 041308166 R rec b85fafdf-1669-4d95-a188-b21640fbc8ca +2024-07-30 15:28:50.603855 2024-07-30 15:28:50.603866 cognd 041308107 R rec 449ddda8-cb74-4af5-997d-bce9b9cf6ae2 +2024-07-30 15:28:50.673493 2024-07-30 15:28:50.673528 cognd 041303768 R rec 3f47ea74-ef2f-4aaa-8774-3be23558b05a +2024-07-30 15:28:50.742968 2024-07-30 15:28:50.742973 cognd 041299604 R rec c4e9ff62-f7e7-4551-87ac-dc8b6e687a23 +2024-07-30 15:28:50.802844 2024-07-30 15:28:50.802859 cognd 041287045 R rec e6e980ec-6703-4921-acc2-a050b882f109 +2024-07-30 15:28:50.882102 2024-07-30 15:28:50.882114 cognd 04128237X R rec 0c8db0d4-124d-4de8-be9d-0ef0ed322b50 +2024-07-30 15:28:50.95466 2024-07-30 15:28:50.954671 cognd 041281632 R rec a3cd4045-6817-44df-9421-9d397f88d4c8 +2024-07-30 15:28:51.023397 2024-07-30 15:28:51.023408 cognd 041273230 R rec 08af1fdf-7412-4321-a4bd-1465321a0dcb +2024-07-30 15:28:51.107475 2024-07-30 15:28:51.107486 cognd 041269950 R rec f807f3ad-89b4-4dd5-9457-7e0f9870a5fb +2024-07-30 15:28:51.181003 2024-07-30 15:28:51.181015 cognd 041258584 R rec 04f81f99-928d-4cbf-b738-efb64566f8b3 +2024-07-30 15:28:51.264645 2024-07-30 15:28:51.264656 cognd 041255887 R rec 69fd7ed4-b514-42eb-a721-f89ea60bd2e6 +2024-07-30 15:28:51.339968 2024-07-30 15:28:51.339979 cognd 041252896 R rec a7a8eaae-4bb8-486e-8373-79cf5bbaf266 +2024-07-30 15:28:51.417029 2024-07-30 15:28:51.417039 cognd 041245296 R rec 4b815cc6-b303-419b-b95f-cb8fbba2cbef +2024-07-30 15:28:51.491406 2024-07-30 15:28:51.491418 cognd 041240510 R rec e6edf0df-8025-489e-978d-de77a1155a7e +2024-07-30 15:28:51.560435 2024-07-30 15:28:51.560447 cognd 041239288 R rec 71c35430-b75d-40a3-a475-767b898aeecd +2024-07-30 15:28:51.652229 2024-07-30 15:28:51.652241 cognd 041238826 R rec 49bb5ca1-7572-44f4-beec-0513b76c3880 +2024-07-30 15:28:51.731771 2024-07-30 15:28:51.731782 cognd 041236599 R rec 089b7892-4560-485b-84d0-bf8c8d006540 +2024-07-30 15:28:51.783907 2024-07-30 15:28:51.783912 cognd 041235347 R rec 7e42eaeb-86a8-444f-bc4e-1b5d69e82bd8 +2024-07-30 15:28:51.843409 2024-07-30 15:28:51.84342 cognd 041227980 R rec 58c86386-8996-445e-a4e7-5b0669528f30 +2024-07-30 15:28:51.917931 2024-07-30 15:28:51.917941 cognd 041220609 R rec 73cd2395-06b5-43de-8b4e-7cfab22e008d +2024-07-30 15:28:51.98906 2024-07-30 15:28:51.989071 cognd 04121952X R rec cbf7f00d-a4e4-4bfc-a3f9-14f8d2712cb5 +2024-07-30 15:28:52.063863 2024-07-30 15:28:52.063874 cognd 041218108 R rec c3a76516-5e8b-4e3a-b165-3275b4da8149 +2024-07-30 15:28:52.142116 2024-07-30 15:28:52.142126 cognd 041217616 R rec 48581f24-e1fb-49c2-b945-b98bc7e4de81 +2024-07-30 15:28:52.239436 2024-07-30 15:28:52.239452 cognd 041212304 R rec 99be4d25-a02f-425f-97c7-50904a678f32 +2024-07-30 15:28:52.331218 2024-07-30 15:28:52.331234 cognd 041207017 R rec 8bff3605-ea80-4fa3-884a-a2e34a7bee71 +2024-07-30 15:28:52.422441 2024-07-30 15:28:52.422456 cognd 041206592 R rec 397bf833-86f9-4259-8b02-f9b0df072333 +2024-07-30 15:28:52.510336 2024-07-30 15:28:52.510346 cognd 041201116 R rec d57e2aba-0eed-443f-a056-89827a7e013e +2024-07-30 15:28:52.591924 2024-07-30 15:28:52.591935 cognd 041184432 R rec 01849ea5-02a7-41e7-adf0-8ebbeb1908da +2024-07-30 15:28:52.655643 2024-07-30 15:28:52.655654 cognd 041176065 R rec 5d8e800e-b62a-44b0-986a-8e2ead410970 +2024-07-30 15:28:52.738154 2024-07-30 15:28:52.738164 cognd 041155513 R rec 944037ea-ff9a-4f29-9c00-1e748768d708 +2024-07-30 15:28:52.811018 2024-07-30 15:28:52.811028 cognd 041154630 R rec bd02495e-a901-41cf-9ee3-e6bb668a8c66 +2024-07-30 15:28:52.877539 2024-07-30 15:28:52.877574 cognd 04114516X R rec 68a2796a-b0a8-4c14-9ea6-a8d49c826b2b +2024-07-30 15:28:52.951075 2024-07-30 15:28:52.951086 cognd 041091507 R rec e171af23-85b4-46be-a013-3f637d97a0a8 +2024-07-30 15:28:53.02782 2024-07-30 15:28:53.027831 cognd 041076842 R rec 9c1ae8e2-971b-48d9-9372-a0fc6723d2da +2024-07-30 15:28:53.1022 2024-07-30 15:28:53.102212 cognd 041018699 R rec 5508656a-7485-4949-af81-f182e7ee4906 +2024-07-30 15:28:53.177053 2024-07-30 15:28:53.177063 cognd 040775593 R rec 47eb5ef0-dbe8-41c3-bce4-8ba8d012c469 +2024-07-30 15:28:53.250256 2024-07-30 15:28:53.250267 cognd 040763889 R rec 4f3efe92-515d-4c18-85cc-acc4a8318687 +2024-07-30 15:28:53.329342 2024-07-30 15:28:53.329353 cognd 040730913 R rec 8a2cd27a-b1a8-4b0a-a9ef-618774113d44 +2024-07-30 15:28:53.402481 2024-07-30 15:28:53.402492 cognd 04071781X R rec e28c68db-6930-408c-8bd0-00d27286749a +2024-07-30 15:28:53.483174 2024-07-30 15:28:53.483186 cognd 04067777X R rec d457a3bd-d658-4ece-a4c1-e977ccad6cb6 +2024-07-30 15:28:53.560168 2024-07-30 15:28:53.56018 cognd 04066533X R rec 0de6548f-c900-49c7-92f0-305d71824b3a +2024-07-30 15:28:53.636557 2024-07-30 15:28:53.636569 cognd 040645312 R rec aff8e500-ca97-4ea8-b34e-1f4b2d419f40 +2024-07-30 15:28:53.709876 2024-07-30 15:28:53.709887 cognd 040633217 R rec 954c882a-1a4e-461a-ac31-625f532ff03c +2024-07-30 15:28:53.789157 2024-07-30 15:28:53.789166 cognd 040583317 R rec fe369158-0e25-438c-957b-cd2674aca452 +2024-07-30 15:28:53.841583 2024-07-30 15:28:53.841594 cognd 040544567 R rec d115d692-b61b-440a-8405-630c93cee497 +2024-07-30 15:28:53.903044 2024-07-30 15:28:53.903055 cognd 040519384 R rec 0f10950f-10d8-4f3b-aeb3-ffd7e3fa72c9 +2024-07-30 15:28:53.975137 2024-07-30 15:28:53.975148 cognd 040514927 R rec e91f799d-d324-45c2-afd3-019a08bea508 +2024-07-30 15:28:54.049239 2024-07-30 15:28:54.049254 cognd 040512665 R rec d58ce350-f63b-44d0-a285-e5a2f1b4b3c0 +2024-07-30 15:28:54.139155 2024-07-30 15:28:54.139166 cognd 04051238X R rec 6b9e171e-f0d7-4e8d-9515-2c93e136bcdd +2024-07-30 15:28:54.213706 2024-07-30 15:28:54.213717 cognd 040490297 R rec 10b8b7d0-07d7-4f39-a379-5775caab847b +2024-07-30 15:28:54.297026 2024-07-30 15:28:54.297041 cognd 040459608 R rec 9b7e6e61-6d76-4be1-a501-918d5b46fdb7 +2024-07-30 15:28:54.385749 2024-07-30 15:28:54.385762 cognd 040451259 R rec 95f57507-a979-44cc-9046-629b881af0ee +2024-07-30 15:28:54.460397 2024-07-30 15:28:54.460408 cognd 040438163 R rec a78ba596-b829-4ab6-a56f-a24a2042bcbc +2024-07-30 15:28:54.534355 2024-07-30 15:28:54.534365 cognd 040432149 R rec 64430bdf-55c4-475b-801c-fcb82f1a61a3 +2024-07-30 15:28:54.603417 2024-07-30 15:28:54.603427 cognd 040416496 R rec bde33667-5264-4087-8c34-205c02029239 +2024-07-30 15:28:54.684736 2024-07-30 15:28:54.684746 cognd 040406938 R rec 5ca88b9b-ad21-4ce5-a9ab-94498fc19f0b +2024-07-30 15:28:54.756336 2024-07-30 15:28:54.756348 cognd 040403688 R rec 7134338e-9952-488d-a682-bac899b325c7 +2024-07-30 15:28:54.830934 2024-07-30 15:28:54.830945 cognd 040389065 R rec d98d78e6-f32b-45a0-9890-691ddd19ed7e +2024-07-30 15:28:54.885536 2024-07-30 15:28:54.885546 cognd 040335682 R rec 19609b78-8ad2-48f8-b0a2-aefef4310183 +2024-07-30 15:28:54.965507 2024-07-30 15:28:54.965522 cognd 040328260 R rec 3b513a5a-137e-4592-be00-286bbd036904 +2024-07-30 15:28:55.061738 2024-07-30 15:28:55.061748 cognd 04032009X R rec 6323915e-0262-4bdc-83f5-3bb7256eb425 +2024-07-30 15:28:55.14404 2024-07-30 15:28:55.144054 cognd 040252434 R rec 107afdf2-9b01-45e9-8b60-447b03a0ac6b +2024-07-30 15:28:55.234407 2024-07-30 15:28:55.234417 cognd 040247996 R rec 75eb7717-7524-4de8-b187-5277d5403f23 +2024-07-30 15:28:55.315507 2024-07-30 15:28:55.315518 cognd 04024055X R rec 59036929-be3e-49e7-b665-91fef4607867 +2024-07-30 15:28:55.387581 2024-07-30 15:28:55.387633 cognd 040205487 R rec df73b6a8-e195-4f3e-b180-8b2eabac64df +2024-07-30 15:28:55.459288 2024-07-30 15:28:55.459299 cognd 040189074 R rec a39cfd6a-e769-4c2b-812f-997d7b444616 +2024-07-30 15:28:55.538857 2024-07-30 15:28:55.538868 cognd 040130193 R rec 70a09161-f0ac-4aa0-b364-ae09d896f6aa +2024-07-30 15:28:55.604273 2024-07-30 15:28:55.604284 cognd 04009006X R rec 29e98eba-4c64-4734-adb3-259689e783f0 +2024-07-30 15:28:55.680247 2024-07-30 15:28:55.680258 cognd 040085287 R rec b4b5edbe-50fa-4f72-bed4-d9324c53b7b5 +2024-07-30 15:28:55.760191 2024-07-30 15:28:55.760203 cognd 040085244 R rec 4eedf27a-7157-411d-8e59-68fd1dca2af7 +2024-07-30 15:28:55.852252 2024-07-30 15:28:55.852263 cognd 040078124 R rec 4ebcef65-d6cf-4fbb-b5d1-6758876b58c7 +2024-07-30 15:28:55.911494 2024-07-30 15:28:55.911505 cognd 040068560 R rec 6036d47d-1c67-4e3c-b57f-1c62f3198d62 +2024-07-30 15:28:55.993117 2024-07-30 15:28:55.993128 cognd 040062120 R rec f1336772-8f37-4643-b949-e02ac5037c76 +2024-07-30 15:28:56.07445 2024-07-30 15:28:56.074461 cognd 040036774 R rec 44237036-47f2-45d7-9e42-e11f5d6b2ddb +2024-07-30 15:28:56.162103 2024-07-30 15:28:56.162114 cognd 040030415 R rec b84e797b-35f4-46df-b360-b197f1808a52 +2024-07-30 15:28:56.249737 2024-07-30 15:28:56.249769 cognd 040021475 R rec 8d59007a-84b2-4273-9217-79f589d7f6b0 +2024-07-30 15:28:56.335753 2024-07-30 15:28:56.335765 cognd 040021459 R rec ba595662-43b6-4e22-a0a0-972f95fceb6e 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..bf9e8123 100644 --- a/data/pidref.json +++ b/data/pidref.json @@ -5015,14 +5015,14 @@ } ], "bnf_type": "sujet Rameau", - "closeMatch": [ + "exactMatch": [ { "source": "LCA", - "identifiedBy": { + "identifiedBy": [{ "type": "uri", "value": "http://id.loc.gov/authorities/names/n80104828", "source": "LCA" - }, + }], "authorized_access_point": "Valais (Switzerland)" } ], @@ -9313,14 +9313,14 @@ ], "type": "bf:Place", "bnf_type": "sujet Rameau", - "closeMatch": [ + "exactMatch": [ { "source": "LCA", - "identifiedBy": { + "identifiedBy": [{ "type": "uri", "value": "http://id.loc.gov/authorities/names/n91123541", "source": "LCA" - }, + }], "authorized_access_point": "Notre-Dame de Val\u00e8re (Church : Sion, Switzerland)" } ], @@ -11020,14 +11020,14 @@ ], "type": "bf:Place", "bnf_type": "sujet Rameau", - "closeMatch": [ + "exactMatch": [ { "source": "LCA", - "identifiedBy": { + "identifiedBy": [{ "type": "uri", "value": "http://id.loc.gov/authorities/names/n85344685", "source": "LCA" - }, + }], "authorized_access_point": "Sierre (Switzerland)" } ], @@ -11105,14 +11105,14 @@ ], "type": "bf:Place", "bnf_type": "sujet Rameau", - "closeMatch": [ + "exactMatch": [ { "source": "LCA", - "identifiedBy": { + "identifiedBy": [{ "type": "uri", "value": "http://id.loc.gov/authorities/names/n83221461", "source": "LCA" - }, + }], "authorized_access_point": "Grimentz (Switzerland)" } ], @@ -11186,14 +11186,14 @@ ], "type": "bf:Place", "bnf_type": "sujet Rameau", - "closeMatch": [ + "exactMatch": [ { "source": "LCA", - "identifiedBy": { + "identifiedBy": [{ "type": "uri", "value": "http://id.loc.gov/authorities/names/n83224886", "source": "LCA" - }, + }], "authorized_access_point": "Bouveret (Switzerland)" } ], @@ -11375,14 +11375,14 @@ ], "type": "bf:Place", "bnf_type": "sujet Rameau", - "closeMatch": [ + "exactMatch": [ { "source": "LCA", - "identifiedBy": { + "identifiedBy": [{ "type": "uri", "value": "http://id.loc.gov/authorities/names/n83239447", "source": "LCA" - }, + }], "authorized_access_point": "Vouvry (Switzerland)" } ], @@ -11561,14 +11561,14 @@ ], "type": "bf:Place", "bnf_type": "sujet Rameau", - "closeMatch": [ + "exactMatch": [ { "source": "LCSH", - "identifiedBy": { + "identifiedBy": [{ "type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85087214", "source": "LCSH" - }, + }], "authorized_access_point": "Morat, Lake of (Switzerland)" } ], @@ -11716,14 +11716,14 @@ ], "type": "bf:Place", "bnf_type": "sujet Rameau", - "closeMatch": [ + "exactMatch": [ { "source": "LCSH", - "identifiedBy": { + "identifiedBy": [{ "type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057315", "source": "LCSH" - }, + }], "authorized_access_point": "Gressoney Valley (Italy)" } ], @@ -12148,14 +12148,14 @@ ], "type": "bf:Place", "bnf_type": "sujet Rameau", - "closeMatch": [ + "exactMatch": [ { "source": "LCA", - "identifiedBy": { + "identifiedBy": [{ "type": "uri", "value": "http://id.loc.gov/authorities/names/nb2015012569", "source": "LCA" - }, + }], "authorized_access_point": "Gamsen (Switzerland)" } ], @@ -12300,14 +12300,14 @@ ], "type": "bf:Place", "bnf_type": "sujet Rameau", - "closeMatch": [ + "exactMatch": [ { "source": "LCA", - "identifiedBy": { + "identifiedBy": [{ "type": "uri", "value": "http://id.loc.gov/authorities/names/no2011036870", "source": "LCA" - }, + }], "authorized_access_point": "Saint-Gingolph (France)" } ], @@ -12537,14 +12537,14 @@ ], "type": "bf:Place", "bnf_type": "sujet Rameau", - "closeMatch": [ + "exactMatch": [ { "source": "LCA", - "identifiedBy": { + "identifiedBy": [{ "type": "uri", "value": "http://id.loc.gov/authorities/names/n85279520", "source": "LCA" - }, + }], "authorized_access_point": "Kaiseraugst (Switzerland)" } ], @@ -12716,14 +12716,14 @@ ], "type": "bf:Place", "bnf_type": "sujet Rameau", - "closeMatch": [ + "exactMatch": [ { "source": "LCSH", - "identifiedBy": { + "identifiedBy": [{ "type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92003686", "source": "LCSH" - }, + }], "authorized_access_point": "Kleinwalsertal (Austria)" } ], diff --git a/data/pidref_metadata.csv b/data/pidref_metadata.csv index 68237c2a..18cdeb05 100644 --- a/data/pidref_metadata.csv +++ b/data/pidref_metadata.csv @@ -1,268 +1,267 @@ -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-07-30 15:28:58.429815 2024-07-30 15:28:58.429818 6609deab-d1cf-418a-9698-96a8f3b4666b {"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-30 15:28:58.534319 2024-07-30 15:28:58.534323 b625a2dc-cb4c-4c1b-b886-c0cccc07468a {"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-30 15:28:58.58388 2024-07-30 15:28:58.583883 a0df8d1f-a13a-4c11-be39-ee4a57d6012d {"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-30 15:28:58.629944 2024-07-30 15:28:58.629946 7eee3e6c-0c23-4477-9d5d-c0b08f895284 {"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-30 15:28:58.672411 2024-07-30 15:28:58.672414 f8990bc3-41fc-4485-b2ff-3ba0bc5b790c {"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-30 15:29:16.413823 2024-07-30 15:29:16.413831 4e07a65c-9b1b-4475-b44f-4180093106c3 {"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-30 15:28:58.765731 2024-07-30 15:28:58.765744 bea01018-220a-4fe5-ad70-a3da9e67bdbf {"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-30 15:28:58.848616 2024-07-30 15:28:58.848627 5278c756-7815-437d-bb23-f0728d223148 {"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-30 15:28:58.916987 2024-07-30 15:28:58.916991 6d7425ce-d777-4594-953b-bce149da8aaa {"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-30 15:28:58.977723 2024-07-30 15:28:58.977731 1147f332-07a1-4141-b703-5f485ea97d26 {"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-30 15:28:59.043825 2024-07-30 15:28:59.043832 0841e3d6-f324-4038-8714-d86f696e07f1 {"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-30 15:28:59.120468 2024-07-30 15:28:59.120475 cb9e2991-dac1-4748-878f-f706342cc4de {"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-30 15:29:16.476157 2024-07-30 15:29:16.476166 f9679c22-09d0-4e12-9341-44854923f6d8 {"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-30 15:28:59.20328 2024-07-30 15:28:59.203293 150f3ddf-6d48-44d9-912a-8e9a7c321115 {"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-30 15:28:59.292282 2024-07-30 15:28:59.292289 b6b13e9a-6bf2-49da-9ea6-3d18de79e093 {"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-30 15:28:59.37193 2024-07-30 15:28:59.37194 37142a5c-3dc3-4d83-ae46-6327137f83b1 {"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-30 15:28:59.458475 2024-07-30 15:28:59.458487 c527b60f-7887-4864-8d2d-75efe32ab061 {"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-30 15:28:59.548895 2024-07-30 15:28:59.548926 2858033a-21bf-4de0-9d36-7e2a3ef5e0f8 {"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-30 15:28:59.639643 2024-07-30 15:28:59.63965 a0eed71a-fb4e-49c4-89ac-f6a1fe951196 {"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-30 15:28:59.72325 2024-07-30 15:28:59.72326 be79c019-671c-4a01-baae-dc4b92189444 {"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-30 15:28:59.800055 2024-07-30 15:28:59.800065 1dc73cbe-2292-44d0-838c-a72b208781d3 {"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-30 15:28:59.86747 2024-07-30 15:28:59.867479 d959afd9-ede9-41ce-9b99-829e3d7796ed {"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-30 15:28:59.939903 2024-07-30 15:28:59.93991 8ed54428-ca04-44c6-8b5d-b09d182090c8 {"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-30 15:28:59.991626 2024-07-30 15:28:59.991634 c44a6a02-5c8b-435b-a57f-1078ae210943 {"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-30 15:29:00.062539 2024-07-30 15:29:00.062549 5b1085c0-7df7-4b05-849d-c78d393156e2 {"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-30 15:29:00.760149 2024-07-30 15:29:00.760157 e22ccff8-9154-4618-aaf9-5cef14a457f6 {"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-30 15:29:00.158223 2024-07-30 15:29:00.158233 40285f31-a2e6-414b-9679-f600e130031e {"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-30 15:29:00.241263 2024-07-30 15:29:00.241271 49d5f09a-c775-4b9f-b6da-dd89f1360f29 {"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-30 15:29:00.323178 2024-07-30 15:29:00.323187 589837da-5693-4d98-82db-f51d05e9a17c {"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-30 15:29:00.403145 2024-07-30 15:29:00.403155 b429a8e1-d4e0-46c3-879e-6c8a793ae91c {"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-30 15:29:00.497197 2024-07-30 15:29:00.497208 1fe0fbd3-d09a-41e1-8f4f-dab3a567f8a2 {"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-30 15:29:00.585761 2024-07-30 15:29:00.585773 c211a491-4e83-45fe-ab01-51f0be699c61 {"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-30 15:29:00.674168 2024-07-30 15:29:00.674181 80f58009-6515-490f-8e21-187f15ed5b19 {"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-30 15:29:00.829883 2024-07-30 15:29:00.829893 2e634864-bf2d-4f23-805c-c7e3825554dd {"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-30 15:29:00.913209 2024-07-30 15:29:00.913221 e32b602a-2b93-4840-8787-b8b2724e8b41 {"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-30 15:29:00.979935 2024-07-30 15:29:00.979939 644e9b19-1feb-4f7a-a373-a4f9b00526b5 {"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-30 15:29:01.055415 2024-07-30 15:29:01.055421 346a7335-edf1-4c15-bb0d-3f17000e162c {"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-30 15:29:01.124289 2024-07-30 15:29:01.124295 7dc87dd8-aca3-4721-a856-fd2760cc1aa1 {"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-30 15:29:01.2026 2024-07-30 15:29:01.202609 ff301ea1-6af9-46f9-bdf9-8b47aa252981 {"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-30 15:29:01.284355 2024-07-30 15:29:01.284364 d3c93f52-7dad-4591-8440-5e3a169d9dc8 {"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-30 15:29:01.378571 2024-07-30 15:29:01.378581 2f4675c9-d55e-4a06-8ab7-5bf29c5310ac {"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-30 15:29:01.462426 2024-07-30 15:29:01.462437 2fdd0a90-1b00-4a7e-a7bb-d7555af73f48 {"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-30 15:29:01.552146 2024-07-30 15:29:01.552157 5d795848-aa2b-411a-8b2f-5e77b6f2a162 {"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-30 15:29:01.621871 2024-07-30 15:29:01.621879 3cb7a0cb-2869-4e61-9f40-745c5905596c {"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-30 15:29:01.686221 2024-07-30 15:29:01.68623 335e3fb4-c7b1-455b-a12a-b742ce434fb7 {"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-30 15:29:01.758101 2024-07-30 15:29:01.758109 d51056c4-96fc-4e05-8520-ed6eaa5b0d6b {"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-30 15:29:01.825089 2024-07-30 15:29:01.825096 21cd368d-4b73-4c8e-b7de-38a883e98a99 {"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-30 15:29:01.890668 2024-07-30 15:29:01.890675 212cc57a-26f9-4cae-b878-90579d8bcf9d {"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-30 15:29:01.954699 2024-07-30 15:29:01.954752 a8b2eeff-b5b9-43bb-aaf4-f2c7bd8f8105 {"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-30 15:29:02.021597 2024-07-30 15:29:02.0216 93d694ef-01cd-4e14-b50a-4d76b956472e {"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-30 15:29:02.090906 2024-07-30 15:29:02.090914 55792504-328f-42d2-bb2a-f7439b72e3e8 {"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-30 15:29:07.048159 2024-07-30 15:29:07.048167 38279f1b-9867-4633-963b-162d5ce970f9 {"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-30 15:29:02.171977 2024-07-30 15:29:02.171986 45730200-0fff-405d-b242-5a9c313148e5 {"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-30 15:29:02.243701 2024-07-30 15:29:02.243772 dcf81d8c-39bc-444c-8d9d-d6ca98ace19e {"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-30 15:29:02.321473 2024-07-30 15:29:02.321482 d0582e87-c80e-4861-b9af-ca33d5540f4f {"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-30 15:29:02.399687 2024-07-30 15:29:02.399696 7d8c6ab2-11ae-44aa-89ab-40fca147a9d0 {"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-30 15:29:02.473634 2024-07-30 15:29:02.473643 0845feb7-65ef-4a21-8ded-85925305ded5 {"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-30 15:29:02.555848 2024-07-30 15:29:02.555904 25c20e47-b65f-439a-811c-8a5263d84eac {"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-30 15:29:02.626308 2024-07-30 15:29:02.626319 053790ff-72fb-452c-9344-ca6927f2fcf9 {"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-30 15:29:02.698242 2024-07-30 15:29:02.69825 2aa05d62-a6a0-41f0-a700-a0dc26660149 {"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-30 15:29:02.77282 2024-07-30 15:29:02.772828 044acca7-f798-4050-9ccf-629f081ca962 {"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-30 15:29:02.844915 2024-07-30 15:29:02.844924 1e646e67-f687-4b54-8f51-cd9ec80c4b0a {"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-30 15:29:02.924719 2024-07-30 15:29:02.924729 2559b9df-1790-4f00-93a4-34d27ac430a7 {"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-30 15:29:03.004295 2024-07-30 15:29:03.004302 c2929b50-22ec-45ac-acee-98214c7c67aa {"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-30 15:29:03.066748 2024-07-30 15:29:03.066752 2ecb4f02-4c84-4643-b9fb-2474fdcffa77 {"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-30 15:29:03.138931 2024-07-30 15:29:03.13894 8555241a-62ca-43a7-89f3-5b2ea7308547 {"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-30 15:29:03.218241 2024-07-30 15:29:03.218248 a416299e-df0a-4786-879d-51266056b640 {"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-30 15:29:03.294346 2024-07-30 15:29:03.294353 f946e6aa-f2af-48e8-bf5d-9ccb505f8746 {"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-30 15:29:03.373852 2024-07-30 15:29:03.37386 b8cbe4f9-00d2-47d7-8c01-c66b120620a6 {"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-30 15:29:03.455338 2024-07-30 15:29:03.455346 4d8724b2-84f4-4442-b4f8-92d2adb1da38 {"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-30 15:29:03.545216 2024-07-30 15:29:03.545225 edfbd76e-a3a6-4343-887a-dc25384704cc {"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-30 15:29:08.16773 2024-07-30 15:29:08.167733 b5584d50-fc61-4f00-9844-59ee5ed5ea7d {"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-30 15:29:03.628785 2024-07-30 15:29:03.628795 ccd281f9-3839-45d6-b45c-4d9b6657adc7 {"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-30 15:29:03.704125 2024-07-30 15:29:03.704135 72955fdb-f514-4b93-a7cf-c26c83ca951d {"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-30 15:29:03.789506 2024-07-30 15:29:03.789514 03a55d59-e242-4c36-afe0-598a5284574d {"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-30 15:29:03.866769 2024-07-30 15:29:03.866779 5e939ad3-e9b7-46ea-9532-315225243d47 {"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-30 15:29:03.944329 2024-07-30 15:29:03.944342 a1653c5e-df61-4d7b-8ee2-c753257cd0d0 {"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-30 15:29:04.023205 2024-07-30 15:29:04.023215 c0824197-2860-4fcb-a8d0-bae352552f27 {"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-30 15:29:04.081952 2024-07-30 15:29:04.081955 75ba7cc8-ec86-4699-8c01-6a456b4fde9b {"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-30 15:29:04.156443 2024-07-30 15:29:04.156452 9315c303-0fc1-4026-9221-37abb0a8d780 {"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-30 15:29:04.229374 2024-07-30 15:29:04.229382 ea698b5b-a95b-4d2e-b5e6-67b11b3b7863 {"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-30 15:29:04.300416 2024-07-30 15:29:04.300424 15e054dd-b5d7-4bd6-b701-08a07f0520f9 {"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-30 15:29:04.373284 2024-07-30 15:29:04.373293 5b8b5767-200a-411a-9bb7-e9145ddc470c {"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-30 15:29:04.466386 2024-07-30 15:29:04.466396 675eb02a-af7f-4190-82ad-91901400cc3a {"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-30 15:29:04.568598 2024-07-30 15:29:04.568606 f9396a3c-c362-4c45-ab75-b1fd2f267199 {"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-30 15:29:04.647094 2024-07-30 15:29:04.647102 034c68ff-5bb8-4ce0-9fd3-84a9924e6782 {"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-30 15:29:04.722173 2024-07-30 15:29:04.722181 d774f95c-3a70-4841-9396-f13a09a6f262 {"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-30 15:29:04.809553 2024-07-30 15:29:04.809562 7259b17b-6c61-4759-8d6f-de84fc8514b2 {"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-30 15:29:04.900143 2024-07-30 15:29:04.900153 0759eb7c-84c7-4c42-9bbd-5998b71d7056 {"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-30 15:29:04.975751 2024-07-30 15:29:04.975787 cb0b4bab-57b6-4c0f-8a8d-8a29298cb67f {"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-30 15:29:05.054143 2024-07-30 15:29:05.054153 bf4a24cd-f81e-4dd7-ac10-5b8faf97d0e7 {"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-30 15:29:05.139461 2024-07-30 15:29:05.139472 eaea22c3-9317-4219-8e04-e3b0d98a9a42 {"md5": "d0d07617b75eb41ab87405bb49d09893", "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", "exactMatch": [{"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-30 15:29:05.218883 2024-07-30 15:29:05.218892 5f6eb1d7-9ab2-4eaa-8aa4-207afcaedd73 {"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-30 15:29:05.297991 2024-07-30 15:29:05.297999 7d92e5e8-a7ea-4be8-91b9-5dbbebab7c70 {"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-30 15:29:05.377839 2024-07-30 15:29:05.378349 f2b710fe-490e-471b-8bec-ca495d13dedd {"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-30 15:29:05.456443 2024-07-30 15:29:05.456452 f63a0694-ad2e-4a93-bf6f-2066588d8166 {"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-30 15:29:05.535123 2024-07-30 15:29:05.535133 eb2624ab-f07c-437c-bdca-ab87eb784352 {"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-30 15:29:05.608941 2024-07-30 15:29:05.608951 3ccfd4b6-4c86-409c-a67f-5eb09852ffd3 {"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-30 15:29:16.54413 2024-07-30 15:29:16.544141 65a9ceb7-0f2b-4244-9ceb-5d3fb6175f2d {"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-30 15:29:05.68056 2024-07-30 15:29:05.680569 09b6ce96-835f-4fb4-834f-060efcdf9601 {"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-30 15:29:05.755216 2024-07-30 15:29:05.755225 25d8cc8b-fd2a-457a-a14e-b2c20b167398 {"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-30 15:29:05.829759 2024-07-30 15:29:05.829797 257db24f-9608-40e4-91c3-1e3c2e19d94b {"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-30 15:29:05.898651 2024-07-30 15:29:05.898659 639ca290-f26f-4851-91c2-c48c71bf2146 {"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-30 15:29:05.981134 2024-07-30 15:29:05.981143 90d2d21e-09cc-4ea2-aa73-334b157a08e1 {"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-30 15:29:06.454588 2024-07-30 15:29:06.454599 665ab452-00d5-49aa-888b-2dda0bb1e9b9 {"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-30 15:29:06.054454 2024-07-30 15:29:06.054463 4649b8f1-86fb-4a51-85a4-fa9ca11d2b81 {"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-30 15:29:06.117194 2024-07-30 15:29:06.117198 cb70926c-48c5-4b94-b1ae-f25a5af920f9 {"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-30 15:29:06.172911 2024-07-30 15:29:06.172919 7a2ccd65-db9d-4329-b29a-4033a00df6ed {"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-30 15:29:06.230809 2024-07-30 15:29:06.230813 0eb9f562-8265-4cd2-a011-e0a34e0691d8 {"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-30 15:29:06.297893 2024-07-30 15:29:06.297904 89e176c4-0bd1-4a7f-a621-f52720009bd0 {"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-30 15:29:06.374029 2024-07-30 15:29:06.374037 14dad1b9-35ca-43be-8658-8c2dedf7498d {"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-30 15:29:06.536921 2024-07-30 15:29:06.536932 ee89ec89-3990-4867-abc1-192e3a88ff1c {"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-30 15:29:06.623016 2024-07-30 15:29:06.623026 49a51669-5545-4fb4-b514-fe6585b65c62 {"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-30 15:29:06.713255 2024-07-30 15:29:06.713265 2cc22272-896a-4798-bca4-da6e20f6232a {"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-30 15:29:06.79724 2024-07-30 15:29:06.79725 38a15d02-a4fd-41cc-9b51-b8d5fe86a2d6 {"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-30 15:29:06.883911 2024-07-30 15:29:06.883925 affa995e-2a01-4647-b18d-e46a0a9f6c4c {"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-30 15:29:06.967418 2024-07-30 15:29:06.967427 a87498f9-ee57-4546-a99b-26af3aae6f7a {"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-30 15:29:16.621658 2024-07-30 15:29:16.621672 6e8a01fc-563a-4647-b2bf-8076e630d94f {"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-30 15:29:07.124543 2024-07-30 15:29:07.124547 3bbec6d1-b844-43b2-9011-ebc4795d6073 {"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-30 15:29:07.190119 2024-07-30 15:29:07.190128 2343b133-4c12-43ed-bfa7-06a1a5f895c0 {"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-30 15:29:07.270314 2024-07-30 15:29:07.270325 b6d3883d-76e5-4301-a9ac-e0c2366196d7 {"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-30 15:29:07.361714 2024-07-30 15:29:07.361724 a613eef5-a7ad-48ec-b08b-7da4187c7e10 {"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-30 15:29:07.447242 2024-07-30 15:29:07.447271 b8050ea7-46ab-46e7-8dae-3deae0bcdf79 {"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-30 15:29:07.5314 2024-07-30 15:29:07.531408 fcab5dee-2dbb-4960-bc65-1b46470ce05b {"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-30 15:29:07.594734 2024-07-30 15:29:07.594741 b84c46f2-c88a-4970-9348-f7148c7f9d07 {"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-30 15:29:07.665188 2024-07-30 15:29:07.665196 91782761-c3d4-468c-a147-a0cef20bd411 {"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-30 15:29:07.728761 2024-07-30 15:29:07.728768 c18b97a0-1496-4ff6-a683-12fcf91149b8 {"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-30 15:29:07.79924 2024-07-30 15:29:07.799248 b89372f3-5273-4307-9522-074f65838d25 {"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-30 15:29:07.87656 2024-07-30 15:29:07.87657 e1a9e1bb-f50c-4a1b-b4b4-6ceefc21efc1 {"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-30 15:29:07.951139 2024-07-30 15:29:07.951147 5662d423-2b35-40de-bb1c-e1b2c5bc09d1 {"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-30 15:29:08.02195 2024-07-30 15:29:08.021959 36356c57-2253-48e4-bd81-33ab9c70363d {"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-30 15:29:08.093472 2024-07-30 15:29:08.093482 544250e2-0f8d-4a8f-b334-c0e6c48e07d1 {"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-30 15:29:08.223208 2024-07-30 15:29:08.223216 a44706cc-359f-4ca6-ab20-3b3dd21d8fa6 {"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-30 15:29:08.290697 2024-07-30 15:29:08.290704 fe821362-2add-4006-b5a0-8aff0ea831d0 {"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-30 15:29:08.451631 2024-07-30 15:29:08.45164 47b251a1-76c7-491c-8ede-c6873d8a7082 {"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-30 15:29:08.534365 2024-07-30 15:29:08.534376 361030da-f1ee-49c1-8b0c-ee87cf4dd3dd {"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-30 15:29:08.620636 2024-07-30 15:29:08.620645 1f19ca3b-884b-4a5a-8bc0-6ee765250f3e {"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-30 15:29:08.697513 2024-07-30 15:29:08.697521 6e00970d-93ca-4ff6-990d-8ab0cb778d67 {"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-30 15:29:08.771424 2024-07-30 15:29:08.771432 0afd7f16-f3d7-4684-b2db-4ea95879131a {"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-30 15:29:08.847247 2024-07-30 15:29:08.847257 7ef04afa-06a8-4f4b-bb81-d83e00372752 {"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-30 15:29:08.9208 2024-07-30 15:29:08.920808 f9caf1d0-a6aa-4694-af49-23553d89356d {"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-30 15:29:08.999751 2024-07-30 15:29:08.99976 8fef83d8-470e-4a12-b132-f5dcbffb05d2 {"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-30 15:29:09.075357 2024-07-30 15:29:09.075365 f0125fa4-b579-4031-b15a-e851efba83c0 {"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-30 15:29:09.157527 2024-07-30 15:29:09.157536 3ddfba53-ba6f-4970-b8b0-69f9ecaa1c6f {"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-30 15:29:09.215725 2024-07-30 15:29:09.215734 fc9211de-41c1-432a-b481-dcb0bd40d3cf {"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-30 15:29:09.292138 2024-07-30 15:29:09.292146 dd2436e9-69ab-4c92-a829-533c1edc268d {"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-30 15:29:09.373236 2024-07-30 15:29:09.373245 39bebfd8-0f28-429a-b350-99f14ac197ce {"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-30 15:29:09.445068 2024-07-30 15:29:09.445077 ea920c01-1e74-4408-9be1-01835aada037 {"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-30 15:29:09.516707 2024-07-30 15:29:09.516719 a6049859-7e4c-4356-9103-92eff8f00b5a {"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-30 15:29:09.585415 2024-07-30 15:29:09.585423 10f2bdc0-d72c-4301-8057-adb7b214140e {"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-30 15:29:09.651354 2024-07-30 15:29:09.651363 ab17a696-b5e0-47b7-a547-bc557405582c {"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-30 15:29:09.719966 2024-07-30 15:29:09.719974 f6b671d4-b32c-4d29-97f0-52065e35fee2 {"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-30 15:29:09.801405 2024-07-30 15:29:09.801416 713191a8-5786-432d-a91f-bdcbf5ac776c {"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-30 15:29:09.881963 2024-07-30 15:29:09.881972 5c86da79-865f-4362-9cc9-d0eee058c17d {"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-30 15:29:09.952924 2024-07-30 15:29:09.952934 735b0abb-7c35-41b9-9591-b44c2a68b8d8 {"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-30 15:29:10.038811 2024-07-30 15:29:10.03882 f071253d-70bb-4367-9df6-abffa2d7484a {"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-30 15:29:10.115851 2024-07-30 15:29:10.115859 561194bb-ff34-42a1-b75c-b01775e1cf48 {"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-30 15:29:10.181365 2024-07-30 15:29:10.181374 8a8b37e7-4a9e-42e9-8243-9351a1bfc6cb {"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-30 15:29:10.235261 2024-07-30 15:29:10.235265 960f66e0-3715-4a36-a440-870b1b46b12e {"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-30 15:29:10.290411 2024-07-30 15:29:10.290414 85c4e913-1060-45b7-b9a6-d4a6e5863a61 {"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-30 15:29:10.358627 2024-07-30 15:29:10.358636 fae58cca-1dd2-436b-a30f-003ae7006d44 {"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-30 15:29:10.429657 2024-07-30 15:29:10.429666 5b32b089-4355-435e-a19e-d1234343d765 {"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-30 15:29:10.498995 2024-07-30 15:29:10.499004 35b63446-44dd-49bc-8ecf-4b933e26e841 {"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-30 15:29:10.585796 2024-07-30 15:29:10.585805 a601bb02-e604-47e2-8bc5-4d8d83f433c4 {"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-30 15:29:10.690493 2024-07-30 15:29:10.690504 14d6a654-9268-42a6-94c7-e05171178036 {"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-30 15:29:10.776722 2024-07-30 15:29:10.776731 8609eae1-e37d-4853-b335-5d2fc0ce6400 {"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-30 15:29:10.846645 2024-07-30 15:29:10.846653 1f741431-5958-4c4d-a71f-c61fe3a97c6f {"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-30 15:29:13.356354 2024-07-30 15:29:13.356363 47d8cdf6-2499-4f7b-a3c0-95d9609dd470 {"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-30 15:29:10.930037 2024-07-30 15:29:10.930045 b82589d5-c610-4ba7-b70e-01a5e1091ec4 {"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-30 15:29:11.001393 2024-07-30 15:29:11.001401 b4e5efe5-66b6-4ac9-af16-48d9e4bfc8c8 {"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-30 15:29:11.083126 2024-07-30 15:29:11.083136 b1302c20-52b5-413d-9c9d-8d82f086c73c {"md5": "03adb06b29a933feafbd110c84dcddab", "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", "exactMatch": [{"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-30 15:29:11.163692 2024-07-30 15:29:11.163702 0a02c105-11fe-4736-914f-d50a27707ade {"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-30 15:29:11.227154 2024-07-30 15:29:11.227157 0f7ebf79-0992-44ba-87fb-2b5e5987d1cc {"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-30 15:29:11.285182 2024-07-30 15:29:11.285191 547e2c68-0cfe-4673-a20b-6cc997fe6d4c {"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-30 15:29:11.352506 2024-07-30 15:29:11.352515 b0e2fbe5-1af7-4dba-939e-dbc56530847f {"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-30 15:29:13.928386 2024-07-30 15:29:13.928394 832b8b24-8f04-4a95-9544-5499c63985cf {"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-30 15:29:11.418106 2024-07-30 15:29:11.418111 77bc51b1-63ae-4c43-a688-48e904befd4f {"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-30 15:29:11.477579 2024-07-30 15:29:11.477585 70bec1c5-470c-441b-9954-64a5e57764b9 {"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-30 15:29:11.545676 2024-07-30 15:29:11.545685 bb94eb7b-caa6-4acd-92e3-297e2eb709a0 {"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-30 15:29:11.613882 2024-07-30 15:29:11.613891 c7aea15f-849d-41be-8d1c-a42dd1661783 {"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-30 15:29:11.686711 2024-07-30 15:29:11.686721 7bc44b87-ff18-47fe-9fa9-80d100846313 {"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-30 15:29:11.763374 2024-07-30 15:29:11.763383 a0e2bbab-ed6e-4133-acca-807cd969adf2 {"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-30 15:29:15.449351 2024-07-30 15:29:15.449357 05e0d49c-62f5-4d2b-bca9-139e8900d297 {"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-30 15:29:11.837859 2024-07-30 15:29:11.837867 7c6f5333-078e-4e8c-85e6-195fd6bcaa12 {"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-30 15:29:11.912404 2024-07-30 15:29:11.912413 b623bb62-0b95-4cb5-aa8b-09adc5d00921 {"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-30 15:29:11.991243 2024-07-30 15:29:11.991251 6ba11510-d727-4312-a44b-c4408217fe9d {"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-30 15:29:12.060993 2024-07-30 15:29:12.061 f6113f9a-541c-425d-ad8f-57013ba7cd09 {"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-07-30 15:29:12.131215 2024-07-30 15:29:12.131227 ed8a5eeb-94f4-4038-abe8-0c950e2b3fb1 {"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-30 15:29:12.196559 2024-07-30 15:29:12.196566 c9150fef-f3be-44a3-bf7e-73c7967a3b89 {"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-30 15:29:12.255443 2024-07-30 15:29:12.255446 981356e8-d66b-4052-bb2d-a24f584d513c {"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-30 15:29:12.304671 2024-07-30 15:29:12.304678 4ce56190-e19b-4b95-b9eb-b6d7b5f5e139 {"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-30 15:29:12.372128 2024-07-30 15:29:12.372136 5f8e5748-d0a8-4807-a515-10cc5c389ad4 {"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-30 15:29:12.439733 2024-07-30 15:29:12.43974 662e8bfb-218e-4e7d-bce8-40e5c5fb678a {"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-30 15:29:12.508695 2024-07-30 15:29:12.508703 3a61154f-6892-426e-8cb2-aea20a259a58 {"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-30 15:29:12.586475 2024-07-30 15:29:12.586483 d475bccf-3df9-442b-a3dd-d33e3605cab1 {"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-30 15:29:12.657337 2024-07-30 15:29:12.657345 cddfeb04-4b91-4461-a2f2-8a353a24dac3 {"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-30 15:29:13.295696 2024-07-30 15:29:13.295699 330fa639-7853-4dac-a2b9-d4b4af1b0e75 {"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-30 15:29:12.729405 2024-07-30 15:29:12.729414 0b931686-32c5-4b0f-beae-f65bbf858a5d {"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-30 15:29:12.801706 2024-07-30 15:29:12.801714 e7b1df5c-e635-4bf5-8e6d-2afbbd85fd62 {"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-30 15:29:12.878646 2024-07-30 15:29:12.878654 f20958b1-0e68-48ec-8f0b-415a51ff560d {"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-30 15:29:12.948185 2024-07-30 15:29:12.948194 80a4abb3-8391-40c7-8d9b-694fb804f5e3 {"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-30 15:29:13.018422 2024-07-30 15:29:13.018431 2ef77754-8e3e-4fcf-b6e3-5c052d37145c {"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-30 15:29:13.10129 2024-07-30 15:29:13.101301 611881d8-9bf7-4b4d-9d65-da748e0dbe25 {"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-30 15:29:13.174645 2024-07-30 15:29:13.174656 0c3ab0b2-9c04-46bc-88e2-ca6828e3fd9c {"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-30 15:29:13.246879 2024-07-30 15:29:13.246887 64c36bcf-429c-4a1a-b984-ab1d6b299a7c {"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-30 15:29:13.431944 2024-07-30 15:29:13.431951 92db7734-cc4a-4b8d-bc78-f2ef7466cdd6 {"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-30 15:29:13.507837 2024-07-30 15:29:13.507845 bbfa9ecf-1abf-4956-b35b-d92b65ba84de {"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-30 15:29:13.579065 2024-07-30 15:29:13.579073 36382c39-9d22-4bc1-a426-574180598e0f {"md5": "0c4e881a4b7cec79b12bdbfba9446818", "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", "exactMatch": [{"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-30 15:29:13.649122 2024-07-30 15:29:13.649132 9bad2a6e-1078-49ce-b117-5ef2d2893073 {"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-30 15:29:13.716147 2024-07-30 15:29:13.716156 ee7f718e-1631-4266-9014-66d3b28c8103 {"md5": "77bc2404e7ce88baea2f8eae9761b0f5", "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", "exactMatch": [{"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-30 15:29:13.782562 2024-07-30 15:29:13.78257 2def3ca0-ecb9-473d-8618-7824d2fddb51 {"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-30 15:29:13.853406 2024-07-30 15:29:13.853415 91b79e9c-01f6-444a-8f17-06618aa65efd {"md5": "5476bd81921f5c9222cfad0e024a5968", "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", "exactMatch": [{"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)"} 1 +2024-07-30 15:29:13.997184 2024-07-30 15:29:13.997193 44573a1c-a115-4ff5-9187-d2d4717cca23 {"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-30 15:29:14.067607 2024-07-30 15:29:14.067614 711e9623-c54f-4211-98ff-9581b87c3671 {"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)"} 1 +2024-07-30 15:29:14.136718 2024-07-30 15:29:14.13673 370ce8b9-3c1d-4836-bd76-4499c7551fe3 {"md5": "aa76b032bb7862ced72570073c7a7ba6", "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", "exactMatch": [{"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-30 15:29:14.222535 2024-07-30 15:29:14.222546 90684f64-6404-4afa-a5b5-d62d2cf04940 {"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-30 15:29:14.294302 2024-07-30 15:29:14.294307 07a0610c-cc21-4172-ab4c-0708fa8bc0f0 {"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)"} 1 +2024-07-30 15:29:14.347413 2024-07-30 15:29:14.347422 434c7bd8-42f4-49d9-9eda-d2a5f8469515 {"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-30 15:29:14.40884 2024-07-30 15:29:14.408851 d6f7e978-3ec9-4cf6-ab14-71f52963b99c {"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-30 15:29:14.4943 2024-07-30 15:29:14.494312 be37c245-0b27-40ff-a854-a29282478a89 {"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-30 15:29:15.533309 2024-07-30 15:29:15.533322 4924b377-5307-4559-9904-d101ec751efc {"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-30 15:29:14.580598 2024-07-30 15:29:14.580611 f89232a7-9a67-4a28-ad13-6393b06e895b {"md5": "5c51c8f15795b9f0a09f1d43809c564b", "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", "exactMatch": [{"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-30 15:29:14.664589 2024-07-30 15:29:14.664602 cad3d46d-5b26-4760-b812-cd1e40d4967a {"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-30 15:29:14.745871 2024-07-30 15:29:14.745879 77d11385-8a24-40c4-8d38-1e71a12b295b {"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-30 15:29:14.824555 2024-07-30 15:29:14.824566 69521087-d7e5-4572-88d3-3594baf43c5d {"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-30 15:29:14.899566 2024-07-30 15:29:14.899577 1d9a3482-b409-45e3-9d59-e15ba7d4b572 {"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-30 15:29:15.009337 2024-07-30 15:29:15.009345 ceaa1b43-023a-4ddb-be27-4478393403eb {"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-30 15:29:15.085619 2024-07-30 15:29:15.085628 1dbe98d2-e012-4d9b-820d-d70b6870a97e {"md5": "085953ab151a33d0ee1e052ff7e5c755", "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", "exactMatch": [{"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-30 15:29:15.162778 2024-07-30 15:29:15.162786 f00078c2-93f1-45c7-9fde-3add74c0d13d {"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-30 15:29:15.237593 2024-07-30 15:29:15.237605 bb754d22-1ff8-4c6b-84ad-b24093bbc524 {"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-30 15:29:15.318597 2024-07-30 15:29:15.318602 ff4f7373-55fa-4ff0-8abf-56f3f723e47a {"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-30 15:29:15.377708 2024-07-30 15:29:15.377716 18fa0653-c7a7-465a-b165-cb9560875fb6 {"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-30 15:29:15.610406 2024-07-30 15:29:15.610425 3c215214-0c5b-4ee6-8343-93bbd093e51a {"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-30 15:29:15.679327 2024-07-30 15:29:15.679335 104601d9-762d-4a4f-a5fa-26db07892d77 {"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-30 15:29:15.741344 2024-07-30 15:29:15.741352 efba4dde-cf5c-4336-b9fd-3550ad5501b2 {"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-30 15:29:15.811799 2024-07-30 15:29:15.811808 049ce880-9782-4d03-b607-3acba3c5b7ad {"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-30 15:29:15.886317 2024-07-30 15:29:15.886327 f2614cab-0999-43e7-92bf-b10a58493c77 {"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-30 15:29:15.955765 2024-07-30 15:29:15.955774 a2f290f1-8541-4d6f-9660-369f13a8a18c {"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-30 15:29:16.038181 2024-07-30 15:29:16.03819 8771217c-cabc-482b-abbc-bd0268a39774 {"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-30 15:29:16.121446 2024-07-30 15:29:16.121456 7f0f6217-0ceb-4015-b684-2659d830e32c {"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-30 15:29:16.20345 2024-07-30 15:29:16.203462 d11f213f-cd55-4e10-b394-d722bce6f92a {"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-30 15:29:16.299393 2024-07-30 15:29:16.299402 1d71840c-bb2a-4757-9dc9-66a4f505b19a {"md5": "b3307d50b2d493f2ab43f6f392cd260b", "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", "exactMatch": [{"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-30 15:29:16.362918 2024-07-30 15:29:16.362922 f4accac6-88d6-4aa2-97fb-2fb98cbd915c {"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-30 15:29:16.699554 2024-07-30 15:29:16.699562 0b946100-7480-4c1b-8691-1577514860d9 {"md5": "e3e3d0d60f9f0a38a8315f05d9bcd5e7", "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", "exactMatch": [{"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-30 15:29:16.763259 2024-07-30 15:29:16.763267 9aa81886-4d20-4cbd-bf5e-7a9b832a5553 {"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-30 15:29:16.825081 2024-07-30 15:29:16.825089 13f58c4a-1d56-4002-921f-4224b41d69f7 {"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-30 15:29:16.904653 2024-07-30 15:29:16.904659 7748c68c-e2e3-4ea8-a17c-8d407a42f12f {"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-30 15:29:16.992715 2024-07-30 15:29:16.992729 8c757328-8a2d-40dc-8c4e-ee1cbb9531be {"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-30 15:29:17.073294 2024-07-30 15:29:17.073304 1833cc8c-5854-45d1-b08d-6b28ed37278f {"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-30 15:29:17.151192 2024-07-30 15:29:17.1512 3c3d6b18-7fb4-415a-935b-a735fd77691d {"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-30 15:29:17.230825 2024-07-30 15:29:17.230889 52558b59-15c9-4cf6-857b-42c97c6cf061 {"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-30 15:29:17.309405 2024-07-30 15:29:17.309416 d15f58a3-823c-4566-9903-8d502d050915 {"md5": "f30fe7f4fa79d4472795ecebc22568bf", "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", "exactMatch": [{"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-30 15:29:17.381776 2024-07-30 15:29:17.381779 c97b9613-a8e0-4c9b-b7b4-4ede5efc9432 {"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-30 15:29:17.437256 2024-07-30 15:29:17.437264 be14f68e-e06f-470d-903c-98eb1e0218ae {"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-30 15:29:17.498783 2024-07-30 15:29:17.498791 1d6d88fb-2717-4b2d-9020-67b889f13821 {"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-30 15:29:17.564386 2024-07-30 15:29:17.564395 9d0660d8-8dbb-4046-8d30-b87080be6db4 {"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-30 15:29:17.639812 2024-07-30 15:29:17.639821 2ec70105-9495-425c-85e2-2bc29dfba768 {"md5": "659ce6bb264514ea2a36bd8e8f4465f5", "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", "exactMatch": [{"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-30 15:29:17.715712 2024-07-30 15:29:17.715721 71fbcaa3-e050-4507-a591-4c971285de82 {"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-30 15:29:17.787666 2024-07-30 15:29:17.787675 4caacccb-42cf-4021-bc59-66388b18ac4b {"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-30 15:29:17.856314 2024-07-30 15:29:17.856322 1099e79e-604b-4492-9f62-5a9af833e8b2 {"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-30 15:29:17.922882 2024-07-30 15:29:17.92289 3ece01af-1ea8-426f-8edb-ff810a3a193a {"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-30 15:29:17.990455 2024-07-30 15:29:17.990463 98074513-64b9-4ce4-9198-25894731f6bf {"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-30 15:29:18.061409 2024-07-30 15:29:18.061418 a6b64bb5-8258-48eb-8009-90df7fa5b030 {"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-30 15:29:18.132171 2024-07-30 15:29:18.13218 558b9db4-b704-4fa0-b49c-e6fc3a681f3c {"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-30 15:29:18.200344 2024-07-30 15:29:18.200352 b31b4b56-8ca8-47a4-bc8f-4fe7a0a037c4 {"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-30 15:29:18.26293 2024-07-30 15:29:18.262942 e5567e69-d864-44b7-8616-601d529720ca {"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-30 15:29:18.339072 2024-07-30 15:29:18.339087 b99e0756-6b3d-4f06-9dd8-a098cd8a81c9 {"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 diff --git a/data/pidref_pidstore.csv b/data/pidref_pidstore.csv index 1c3e2ea9..628bee1f 100644 --- a/data/pidref_pidstore.csv +++ b/data/pidref_pidstore.csv @@ -1,267 +1,267 @@ -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-07-30 15:28:58.417168 2024-07-30 15:28:58.417173 pidref 027218546 R rec 6609deab-d1cf-418a-9698-96a8f3b4666b +2024-07-30 15:28:58.531916 2024-07-30 15:28:58.531922 pidref 027218562 R rec b625a2dc-cb4c-4c1b-b886-c0cccc07468a +2024-07-30 15:28:58.581382 2024-07-30 15:28:58.581387 pidref 027218597 R rec a0df8d1f-a13a-4c11-be39-ee4a57d6012d +2024-07-30 15:28:58.627876 2024-07-30 15:28:58.627881 pidref 027218619 R rec 7eee3e6c-0c23-4477-9d5d-c0b08f895284 +2024-07-30 15:28:58.670307 2024-07-30 15:28:58.670312 pidref 027218767 R rec f8990bc3-41fc-4485-b2ff-3ba0bc5b790c +2024-07-30 15:28:58.760113 2024-07-30 15:28:58.760123 pidref 027218856 R rec bea01018-220a-4fe5-ad70-a3da9e67bdbf +2024-07-30 15:28:58.839879 2024-07-30 15:28:58.839894 pidref 027218961 R rec 5278c756-7815-437d-bb23-f0728d223148 +2024-07-30 15:28:58.914781 2024-07-30 15:28:58.914787 pidref 02721897X R rec 6d7425ce-d777-4594-953b-bce149da8aaa +2024-07-30 15:28:58.971017 2024-07-30 15:28:58.971027 pidref 027220443 R rec 1147f332-07a1-4141-b703-5f485ea97d26 +2024-07-30 15:28:59.038738 2024-07-30 15:28:59.038747 pidref 027222950 R rec 0841e3d6-f324-4038-8714-d86f696e07f1 +2024-07-30 15:28:59.115501 2024-07-30 15:28:59.115512 pidref 027223736 R rec cb9e2991-dac1-4748-878f-f706342cc4de +2024-07-30 15:28:59.195202 2024-07-30 15:28:59.195217 pidref 027223779 R rec 150f3ddf-6d48-44d9-912a-8e9a7c321115 +2024-07-30 15:28:59.287644 2024-07-30 15:28:59.28768 pidref 027224406 R rec b6b13e9a-6bf2-49da-9ea6-3d18de79e093 +2024-07-30 15:28:59.363783 2024-07-30 15:28:59.363804 pidref 027224651 R rec 37142a5c-3dc3-4d83-ae46-6327137f83b1 +2024-07-30 15:28:59.449706 2024-07-30 15:28:59.449721 pidref 027224678 R rec c527b60f-7887-4864-8d2d-75efe32ab061 +2024-07-30 15:28:59.542807 2024-07-30 15:28:59.542821 pidref 027224694 R rec 2858033a-21bf-4de0-9d36-7e2a3ef5e0f8 +2024-07-30 15:28:59.63237 2024-07-30 15:28:59.632386 pidref 027225488 R rec a0eed71a-fb4e-49c4-89ac-f6a1fe951196 +2024-07-30 15:28:59.715594 2024-07-30 15:28:59.71561 pidref 027226042 R rec be79c019-671c-4a01-baae-dc4b92189444 +2024-07-30 15:28:59.792247 2024-07-30 15:28:59.792262 pidref 027226794 R rec 1dc73cbe-2292-44d0-838c-a72b208781d3 +2024-07-30 15:28:59.860933 2024-07-30 15:28:59.860943 pidref 027227812 R rec d959afd9-ede9-41ce-9b99-829e3d7796ed +2024-07-30 15:28:59.934783 2024-07-30 15:28:59.934793 pidref 027228428 R rec 8ed54428-ca04-44c6-8b5d-b09d182090c8 +2024-07-30 15:28:59.987153 2024-07-30 15:28:59.987163 pidref 027228517 R rec c44a6a02-5c8b-435b-a57f-1078ae210943 +2024-07-30 15:29:00.056531 2024-07-30 15:29:00.056536 pidref 027228959 R rec 5b1085c0-7df7-4b05-849d-c78d393156e2 +2024-07-30 15:29:00.150463 2024-07-30 15:29:00.150474 pidref 027229246 R rec 40285f31-a2e6-414b-9679-f600e130031e +2024-07-30 15:29:00.235643 2024-07-30 15:29:00.235655 pidref 02722953X R rec 49d5f09a-c775-4b9f-b6da-dd89f1360f29 +2024-07-30 15:29:00.317165 2024-07-30 15:29:00.317176 pidref 027230309 R rec 589837da-5693-4d98-82db-f51d05e9a17c +2024-07-30 15:29:00.396861 2024-07-30 15:29:00.396873 pidref 027230430 R rec b429a8e1-d4e0-46c3-879e-6c8a793ae91c +2024-07-30 15:29:00.491031 2024-07-30 15:29:00.491046 pidref 027234002 R rec 1fe0fbd3-d09a-41e1-8f4f-dab3a567f8a2 +2024-07-30 15:29:00.580541 2024-07-30 15:29:00.580556 pidref 027234592 R rec c211a491-4e83-45fe-ab01-51f0be699c61 +2024-07-30 15:29:00.665516 2024-07-30 15:29:00.665531 pidref 027236536 R rec 80f58009-6515-490f-8e21-187f15ed5b19 +2024-07-30 15:29:00.754991 2024-07-30 15:29:00.755001 pidref 027236668 R rec e22ccff8-9154-4618-aaf9-5cef14a457f6 +2024-07-30 15:29:00.824174 2024-07-30 15:29:00.824185 pidref 027237249 R rec 2e634864-bf2d-4f23-805c-c7e3825554dd +2024-07-30 15:29:00.904644 2024-07-30 15:29:00.904659 pidref 027237664 R rec e32b602a-2b93-4840-8787-b8b2724e8b41 +2024-07-30 15:29:00.97735 2024-07-30 15:29:00.977355 pidref 027238180 R rec 644e9b19-1feb-4f7a-a373-a4f9b00526b5 +2024-07-30 15:29:01.051029 2024-07-30 15:29:01.051039 pidref 027239365 R rec 346a7335-edf1-4c15-bb0d-3f17000e162c +2024-07-30 15:29:01.12 2024-07-30 15:29:01.120011 pidref 027239497 R rec 7dc87dd8-aca3-4721-a856-fd2760cc1aa1 +2024-07-30 15:29:01.196376 2024-07-30 15:29:01.196389 pidref 027241912 R rec ff301ea1-6af9-46f9-bdf9-8b47aa252981 +2024-07-30 15:29:01.276324 2024-07-30 15:29:01.27634 pidref 027242005 R rec d3c93f52-7dad-4591-8440-5e3a169d9dc8 +2024-07-30 15:29:01.371598 2024-07-30 15:29:01.371612 pidref 02724301X R rec 2f4675c9-d55e-4a06-8ab7-5bf29c5310ac +2024-07-30 15:29:01.454311 2024-07-30 15:29:01.454326 pidref 027243222 R rec 2fdd0a90-1b00-4a7e-a7bb-d7555af73f48 +2024-07-30 15:29:01.545395 2024-07-30 15:29:01.545408 pidref 027244482 R rec 5d795848-aa2b-411a-8b2f-5e77b6f2a162 +2024-07-30 15:29:01.616955 2024-07-30 15:29:01.616965 pidref 027244520 R rec 3cb7a0cb-2869-4e61-9f40-745c5905596c +2024-07-30 15:29:01.680096 2024-07-30 15:29:01.680107 pidref 02724606X R rec 335e3fb4-c7b1-455b-a12a-b742ce434fb7 +2024-07-30 15:29:01.752667 2024-07-30 15:29:01.752676 pidref 027249654 R rec d51056c4-96fc-4e05-8520-ed6eaa5b0d6b +2024-07-30 15:29:01.820425 2024-07-30 15:29:01.820435 pidref 02725030X R rec 21cd368d-4b73-4c8e-b7de-38a883e98a99 +2024-07-30 15:29:01.886276 2024-07-30 15:29:01.886286 pidref 027250504 R rec 212cc57a-26f9-4cae-b878-90579d8bcf9d +2024-07-30 15:29:01.94924 2024-07-30 15:29:01.949251 pidref 027250636 R rec a8b2eeff-b5b9-43bb-aaf4-f2c7bd8f8105 +2024-07-30 15:29:02.019516 2024-07-30 15:29:02.01952 pidref 027250644 R rec 93d694ef-01cd-4e14-b50a-4d76b956472e +2024-07-30 15:29:02.084809 2024-07-30 15:29:02.084834 pidref 027250679 R rec 55792504-328f-42d2-bb2a-f7439b72e3e8 +2024-07-30 15:29:02.166284 2024-07-30 15:29:02.166296 pidref 027250911 R rec 45730200-0fff-405d-b242-5a9c313148e5 +2024-07-30 15:29:02.238229 2024-07-30 15:29:02.23824 pidref 027250938 R rec dcf81d8c-39bc-444c-8d9d-d6ca98ace19e +2024-07-30 15:29:02.315892 2024-07-30 15:29:02.315902 pidref 02725108X R rec d0582e87-c80e-4861-b9af-ca33d5540f4f +2024-07-30 15:29:02.394116 2024-07-30 15:29:02.394127 pidref 027251411 R rec 7d8c6ab2-11ae-44aa-89ab-40fca147a9d0 +2024-07-30 15:29:02.468318 2024-07-30 15:29:02.46833 pidref 027251551 R rec 0845feb7-65ef-4a21-8ded-85925305ded5 +2024-07-30 15:29:02.550115 2024-07-30 15:29:02.550126 pidref 027251659 R rec 25c20e47-b65f-439a-811c-8a5263d84eac +2024-07-30 15:29:02.620643 2024-07-30 15:29:02.620652 pidref 027252124 R rec 053790ff-72fb-452c-9344-ca6927f2fcf9 +2024-07-30 15:29:02.692617 2024-07-30 15:29:02.692629 pidref 027252272 R rec 2aa05d62-a6a0-41f0-a700-a0dc26660149 +2024-07-30 15:29:02.767644 2024-07-30 15:29:02.767656 pidref 027252361 R rec 044acca7-f798-4050-9ccf-629f081ca962 +2024-07-30 15:29:02.839624 2024-07-30 15:29:02.839633 pidref 027252388 R rec 1e646e67-f687-4b54-8f51-cd9ec80c4b0a +2024-07-30 15:29:02.919021 2024-07-30 15:29:02.919031 pidref 027252620 R rec 2559b9df-1790-4f00-93a4-34d27ac430a7 +2024-07-30 15:29:02.999215 2024-07-30 15:29:02.999226 pidref 02725349X R rec c2929b50-22ec-45ac-acee-98214c7c67aa +2024-07-30 15:29:03.06385 2024-07-30 15:29:03.063861 pidref 027254755 R rec 2ecb4f02-4c84-4643-b9fb-2474fdcffa77 +2024-07-30 15:29:03.132416 2024-07-30 15:29:03.132426 pidref 027255123 R rec 8555241a-62ca-43a7-89f3-5b2ea7308547 +2024-07-30 15:29:03.211376 2024-07-30 15:29:03.211387 pidref 027256308 R rec a416299e-df0a-4786-879d-51266056b640 +2024-07-30 15:29:03.289226 2024-07-30 15:29:03.289236 pidref 027259234 R rec f946e6aa-f2af-48e8-bf5d-9ccb505f8746 +2024-07-30 15:29:03.367492 2024-07-30 15:29:03.367503 pidref 027259285 R rec b8cbe4f9-00d2-47d7-8c01-c66b120620a6 +2024-07-30 15:29:03.448645 2024-07-30 15:29:03.448781 pidref 027259641 R rec 4d8724b2-84f4-4442-b4f8-92d2adb1da38 +2024-07-30 15:29:03.539308 2024-07-30 15:29:03.539319 pidref 027259978 R rec edfbd76e-a3a6-4343-887a-dc25384704cc +2024-07-30 15:29:03.622716 2024-07-30 15:29:03.622726 pidref 027262162 R rec ccd281f9-3839-45d6-b45c-4d9b6657adc7 +2024-07-30 15:29:03.698137 2024-07-30 15:29:03.698147 pidref 027262952 R rec 72955fdb-f514-4b93-a7cf-c26c83ca951d +2024-07-30 15:29:03.785042 2024-07-30 15:29:03.785053 pidref 027263061 R rec 03a55d59-e242-4c36-afe0-598a5284574d +2024-07-30 15:29:03.860256 2024-07-30 15:29:03.860266 pidref 027263487 R rec 5e939ad3-e9b7-46ea-9532-315225243d47 +2024-07-30 15:29:03.937978 2024-07-30 15:29:03.937989 pidref 027263495 R rec a1653c5e-df61-4d7b-8ee2-c753257cd0d0 +2024-07-30 15:29:04.017636 2024-07-30 15:29:04.017648 pidref 02726369X R rec c0824197-2860-4fcb-a8d0-bae352552f27 +2024-07-30 15:29:04.079816 2024-07-30 15:29:04.079822 pidref 027263711 R rec 75ba7cc8-ec86-4699-8c01-6a456b4fde9b +2024-07-30 15:29:04.151 2024-07-30 15:29:04.151012 pidref 027263762 R rec 9315c303-0fc1-4026-9221-37abb0a8d780 +2024-07-30 15:29:04.224176 2024-07-30 15:29:04.224186 pidref 02726453X R rec ea698b5b-a95b-4d2e-b5e6-67b11b3b7863 +2024-07-30 15:29:04.295391 2024-07-30 15:29:04.295401 pidref 027264580 R rec 15e054dd-b5d7-4bd6-b701-08a07f0520f9 +2024-07-30 15:29:04.368278 2024-07-30 15:29:04.36829 pidref 027266060 R rec 5b8b5767-200a-411a-9bb7-e9145ddc470c +2024-07-30 15:29:04.459713 2024-07-30 15:29:04.459729 pidref 027266257 R rec 675eb02a-af7f-4190-82ad-91901400cc3a +2024-07-30 15:29:04.558699 2024-07-30 15:29:04.55871 pidref 027267830 R rec f9396a3c-c362-4c45-ab75-b1fd2f267199 +2024-07-30 15:29:04.640699 2024-07-30 15:29:04.640709 pidref 027267873 R rec 034c68ff-5bb8-4ce0-9fd3-84a9924e6782 +2024-07-30 15:29:04.716625 2024-07-30 15:29:04.716635 pidref 027275922 R rec d774f95c-3a70-4841-9396-f13a09a6f262 +2024-07-30 15:29:04.803659 2024-07-30 15:29:04.80367 pidref 027283518 R rec 7259b17b-6c61-4759-8d6f-de84fc8514b2 +2024-07-30 15:29:04.894729 2024-07-30 15:29:04.894741 pidref 027286703 R rec 0759eb7c-84c7-4c42-9bbd-5998b71d7056 +2024-07-30 15:29:04.970481 2024-07-30 15:29:04.970491 pidref 027290530 R rec cb0b4bab-57b6-4c0f-8a8d-8a29298cb67f +2024-07-30 15:29:05.047429 2024-07-30 15:29:05.04744 pidref 027296946 R rec bf4a24cd-f81e-4dd7-ac10-5b8faf97d0e7 +2024-07-30 15:29:05.130898 2024-07-30 15:29:05.130908 pidref 027303063 R rec eaea22c3-9317-4219-8e04-e3b0d98a9a42 +2024-07-30 15:29:05.212695 2024-07-30 15:29:05.212707 pidref 027311430 R rec 5f6eb1d7-9ab2-4eaa-8aa4-207afcaedd73 +2024-07-30 15:29:05.291988 2024-07-30 15:29:05.291999 pidref 027316211 R rec 7d92e5e8-a7ea-4be8-91b9-5dbbebab7c70 +2024-07-30 15:29:05.371317 2024-07-30 15:29:05.371327 pidref 027316696 R rec f2b710fe-490e-471b-8bec-ca495d13dedd +2024-07-30 15:29:05.448585 2024-07-30 15:29:05.448597 pidref 027318494 R rec f63a0694-ad2e-4a93-bf6f-2066588d8166 +2024-07-30 15:29:05.528279 2024-07-30 15:29:05.52829 pidref 027321940 R rec eb2624ab-f07c-437c-bdca-ab87eb784352 +2024-07-30 15:29:05.603569 2024-07-30 15:29:05.603579 pidref 027322998 R rec 3ccfd4b6-4c86-409c-a67f-5eb09852ffd3 +2024-07-30 15:29:05.675015 2024-07-30 15:29:05.675026 pidref 027323072 R rec 09b6ce96-835f-4fb4-834f-060efcdf9601 +2024-07-30 15:29:05.748822 2024-07-30 15:29:05.74884 pidref 027331180 R rec 25d8cc8b-fd2a-457a-a14e-b2c20b167398 +2024-07-30 15:29:05.823672 2024-07-30 15:29:05.823683 pidref 027333752 R rec 257db24f-9608-40e4-91c3-1e3c2e19d94b +2024-07-30 15:29:05.892589 2024-07-30 15:29:05.892601 pidref 027342395 R rec 639ca290-f26f-4851-91c2-c48c71bf2146 +2024-07-30 15:29:05.974164 2024-07-30 15:29:05.974176 pidref 027350789 R rec 90d2d21e-09cc-4ea2-aa73-334b157a08e1 +2024-07-30 15:29:06.046552 2024-07-30 15:29:06.046564 pidref 027356302 R rec 4649b8f1-86fb-4a51-85a4-fa9ca11d2b81 +2024-07-30 15:29:06.114783 2024-07-30 15:29:06.114789 pidref 027356949 R rec cb70926c-48c5-4b94-b1ae-f25a5af920f9 +2024-07-30 15:29:06.168452 2024-07-30 15:29:06.168463 pidref 02735895X R rec 7a2ccd65-db9d-4329-b29a-4033a00df6ed +2024-07-30 15:29:06.225378 2024-07-30 15:29:06.22539 pidref 027360199 R rec 0eb9f562-8265-4cd2-a011-e0a34e0691d8 +2024-07-30 15:29:06.291774 2024-07-30 15:29:06.291783 pidref 027367428 R rec 89e176c4-0bd1-4a7f-a621-f52720009bd0 +2024-07-30 15:29:06.366036 2024-07-30 15:29:06.366047 pidref 027369714 R rec 14dad1b9-35ca-43be-8658-8c2dedf7498d +2024-07-30 15:29:06.446618 2024-07-30 15:29:06.446628 pidref 027375080 R rec 665ab452-00d5-49aa-888b-2dda0bb1e9b9 +2024-07-30 15:29:06.52975 2024-07-30 15:29:06.52976 pidref 027375412 R rec ee89ec89-3990-4867-abc1-192e3a88ff1c +2024-07-30 15:29:06.614741 2024-07-30 15:29:06.614756 pidref 027377067 R rec 49a51669-5545-4fb4-b514-fe6585b65c62 +2024-07-30 15:29:06.704572 2024-07-30 15:29:06.704587 pidref 027377768 R rec 2cc22272-896a-4798-bca4-da6e20f6232a +2024-07-30 15:29:06.788132 2024-07-30 15:29:06.788147 pidref 027401421 R rec 38a15d02-a4fd-41cc-9b51-b8d5fe86a2d6 +2024-07-30 15:29:06.878209 2024-07-30 15:29:06.878223 pidref 027401448 R rec affa995e-2a01-4647-b18d-e46a0a9f6c4c +2024-07-30 15:29:06.961671 2024-07-30 15:29:06.961681 pidref 027401901 R rec a87498f9-ee57-4546-a99b-26af3aae6f7a +2024-07-30 15:29:07.042842 2024-07-30 15:29:07.042855 pidref 027405621 R rec 38279f1b-9867-4633-963b-162d5ce970f9 +2024-07-30 15:29:07.121986 2024-07-30 15:29:07.121992 pidref 027407012 R rec 3bbec6d1-b844-43b2-9011-ebc4795d6073 +2024-07-30 15:29:07.184732 2024-07-30 15:29:07.184742 pidref 027407918 R rec 2343b133-4c12-43ed-bfa7-06a1a5f895c0 +2024-07-30 15:29:07.262089 2024-07-30 15:29:07.262105 pidref 027408647 R rec b6d3883d-76e5-4301-a9ac-e0c2366196d7 +2024-07-30 15:29:07.353251 2024-07-30 15:29:07.353266 pidref 027416925 R rec a613eef5-a7ad-48ec-b08b-7da4187c7e10 +2024-07-30 15:29:07.438459 2024-07-30 15:29:07.438474 pidref 027417298 R rec b8050ea7-46ab-46e7-8dae-3deae0bcdf79 +2024-07-30 15:29:07.524922 2024-07-30 15:29:07.524938 pidref 027429261 R rec fcab5dee-2dbb-4960-bc65-1b46470ce05b +2024-07-30 15:29:07.589964 2024-07-30 15:29:07.589975 pidref 027434141 R rec b84c46f2-c88a-4970-9348-f7148c7f9d07 +2024-07-30 15:29:07.660639 2024-07-30 15:29:07.660649 pidref 027437213 R rec 91782761-c3d4-468c-a147-a0cef20bd411 +2024-07-30 15:29:07.72361 2024-07-30 15:29:07.723621 pidref 027437221 R rec c18b97a0-1496-4ff6-a683-12fcf91149b8 +2024-07-30 15:29:07.793527 2024-07-30 15:29:07.793539 pidref 027442128 R rec b89372f3-5273-4307-9522-074f65838d25 +2024-07-30 15:29:07.871062 2024-07-30 15:29:07.871073 pidref 027443876 R rec e1a9e1bb-f50c-4a1b-b4b4-6ceefc21efc1 +2024-07-30 15:29:07.946082 2024-07-30 15:29:07.946093 pidref 027465012 R rec 5662d423-2b35-40de-bb1c-e1b2c5bc09d1 +2024-07-30 15:29:08.016506 2024-07-30 15:29:08.016519 pidref 027468909 R rec 36356c57-2253-48e4-bd81-33ab9c70363d +2024-07-30 15:29:08.087674 2024-07-30 15:29:08.087684 pidref 027472906 R rec 544250e2-0f8d-4a8f-b334-c0e6c48e07d1 +2024-07-30 15:29:08.16553 2024-07-30 15:29:08.165537 pidref 027483304 R rec b5584d50-fc61-4f00-9844-59ee5ed5ea7d +2024-07-30 15:29:08.217339 2024-07-30 15:29:08.217509 pidref 027501302 R rec a44706cc-359f-4ca6-ab20-3b3dd21d8fa6 +2024-07-30 15:29:08.286375 2024-07-30 15:29:08.286386 pidref 027501418 R rec fe821362-2add-4006-b5a0-8aff0ea831d0 +2024-07-30 15:29:08.445952 2024-07-30 15:29:08.445963 pidref 027502333 R rec 47b251a1-76c7-491c-8ede-c6873d8a7082 +2024-07-30 15:29:08.5232 2024-07-30 15:29:08.523211 pidref 027502368 R rec 361030da-f1ee-49c1-8b0c-ee87cf4dd3dd +2024-07-30 15:29:08.614977 2024-07-30 15:29:08.614989 pidref 027524329 R rec 1f19ca3b-884b-4a5a-8bc0-6ee765250f3e +2024-07-30 15:29:08.691006 2024-07-30 15:29:08.691017 pidref 027526836 R rec 6e00970d-93ca-4ff6-990d-8ab0cb778d67 +2024-07-30 15:29:08.765572 2024-07-30 15:29:08.765583 pidref 02754785X R rec 0afd7f16-f3d7-4684-b2db-4ea95879131a +2024-07-30 15:29:08.840875 2024-07-30 15:29:08.84089 pidref 027584763 R rec 7ef04afa-06a8-4f4b-bb81-d83e00372752 +2024-07-30 15:29:08.915958 2024-07-30 15:29:08.915969 pidref 027585190 R rec f9caf1d0-a6aa-4694-af49-23553d89356d +2024-07-30 15:29:08.994246 2024-07-30 15:29:08.994259 pidref 027597334 R rec 8fef83d8-470e-4a12-b132-f5dcbffb05d2 +2024-07-30 15:29:09.07033 2024-07-30 15:29:09.070341 pidref 027614697 R rec f0125fa4-b579-4031-b15a-e851efba83c0 +2024-07-30 15:29:09.152126 2024-07-30 15:29:09.152137 pidref 027622444 R rec 3ddfba53-ba6f-4970-b8b0-69f9ecaa1c6f +2024-07-30 15:29:09.210256 2024-07-30 15:29:09.210265 pidref 027633179 R rec fc9211de-41c1-432a-b481-dcb0bd40d3cf +2024-07-30 15:29:09.28672 2024-07-30 15:29:09.286729 pidref 02763857X R rec dd2436e9-69ab-4c92-a829-533c1edc268d +2024-07-30 15:29:09.36833 2024-07-30 15:29:09.368341 pidref 027705781 R rec 39bebfd8-0f28-429a-b350-99f14ac197ce +2024-07-30 15:29:09.439434 2024-07-30 15:29:09.439445 pidref 02773417X R rec ea920c01-1e74-4408-9be1-01835aada037 +2024-07-30 15:29:09.509983 2024-07-30 15:29:09.509994 pidref 02775751X R rec a6049859-7e4c-4356-9103-92eff8f00b5a +2024-07-30 15:29:09.579914 2024-07-30 15:29:09.579925 pidref 027768678 R rec 10f2bdc0-d72c-4301-8057-adb7b214140e +2024-07-30 15:29:09.644948 2024-07-30 15:29:09.644959 pidref 027801101 R rec ab17a696-b5e0-47b7-a547-bc557405582c +2024-07-30 15:29:09.714447 2024-07-30 15:29:09.714457 pidref 027804151 R rec f6b671d4-b32c-4d29-97f0-52065e35fee2 +2024-07-30 15:29:09.794024 2024-07-30 15:29:09.794036 pidref 027810674 R rec 713191a8-5786-432d-a91f-bdcbf5ac776c +2024-07-30 15:29:09.87613 2024-07-30 15:29:09.87614 pidref 027849414 R rec 5c86da79-865f-4362-9cc9-d0eee058c17d +2024-07-30 15:29:09.946201 2024-07-30 15:29:09.946213 pidref 02788743X R rec 735b0abb-7c35-41b9-9591-b44c2a68b8d8 +2024-07-30 15:29:10.033351 2024-07-30 15:29:10.033361 pidref 027945774 R rec f071253d-70bb-4367-9df6-abffa2d7484a +2024-07-30 15:29:10.108514 2024-07-30 15:29:10.108525 pidref 028146239 R rec 561194bb-ff34-42a1-b75c-b01775e1cf48 +2024-07-30 15:29:10.175919 2024-07-30 15:29:10.175929 pidref 028179420 R rec 8a8b37e7-4a9e-42e9-8243-9351a1bfc6cb +2024-07-30 15:29:10.230072 2024-07-30 15:29:10.230082 pidref 02847158X R rec 960f66e0-3715-4a36-a440-870b1b46b12e +2024-07-30 15:29:10.288253 2024-07-30 15:29:10.288258 pidref 028567005 R rec 85c4e913-1060-45b7-b9a6-d4a6e5863a61 +2024-07-30 15:29:10.353318 2024-07-30 15:29:10.353329 pidref 028706536 R rec fae58cca-1dd2-436b-a30f-003ae7006d44 +2024-07-30 15:29:10.424196 2024-07-30 15:29:10.424207 pidref 028724208 R rec 5b32b089-4355-435e-a19e-d1234343d765 +2024-07-30 15:29:10.493955 2024-07-30 15:29:10.49397 pidref 028931491 R rec 35b63446-44dd-49bc-8ecf-4b933e26e841 +2024-07-30 15:29:10.575664 2024-07-30 15:29:10.575677 pidref 028988310 R rec a601bb02-e604-47e2-8bc5-4d8d83f433c4 +2024-07-30 15:29:10.680321 2024-07-30 15:29:10.680333 pidref 028992318 R rec 14d6a654-9268-42a6-94c7-e05171178036 +2024-07-30 15:29:10.771544 2024-07-30 15:29:10.771555 pidref 02899275X R rec 8609eae1-e37d-4853-b335-5d2fc0ce6400 +2024-07-30 15:29:10.842103 2024-07-30 15:29:10.842113 pidref 029036690 R rec 1f741431-5958-4c4d-a71f-c61fe3a97c6f +2024-07-30 15:29:10.924187 2024-07-30 15:29:10.924198 pidref 029201098 R rec b82589d5-c610-4ba7-b70e-01a5e1091ec4 +2024-07-30 15:29:10.995932 2024-07-30 15:29:10.995943 pidref 029805287 R rec b4e5efe5-66b6-4ac9-af16-48d9e4bfc8c8 +2024-07-30 15:29:11.076579 2024-07-30 15:29:11.07659 pidref 030519799 R rec b1302c20-52b5-413d-9c9d-8d82f086c73c +2024-07-30 15:29:11.154868 2024-07-30 15:29:11.154879 pidref 030575257 R rec 0a02c105-11fe-4736-914f-d50a27707ade +2024-07-30 15:29:11.22483 2024-07-30 15:29:11.224836 pidref 031211097 R rec 0f7ebf79-0992-44ba-87fb-2b5e5987d1cc +2024-07-30 15:29:11.279678 2024-07-30 15:29:11.279688 pidref 031649424 R rec 547e2c68-0cfe-4673-a20b-6cc997fe6d4c +2024-07-30 15:29:11.345831 2024-07-30 15:29:11.345841 pidref 032861621 R rec b0e2fbe5-1af7-4dba-939e-dbc56530847f +2024-07-30 15:29:11.412404 2024-07-30 15:29:11.412414 pidref 033640874 R rec 77bc51b1-63ae-4c43-a688-48e904befd4f +2024-07-30 15:29:11.473305 2024-07-30 15:29:11.473315 pidref 055302149 R rec 70bec1c5-470c-441b-9954-64a5e57764b9 +2024-07-30 15:29:11.538639 2024-07-30 15:29:11.538649 pidref 071586709 R rec bb94eb7b-caa6-4acd-92e3-297e2eb709a0 +2024-07-30 15:29:11.60821 2024-07-30 15:29:11.608221 pidref 085560839 R rec c7aea15f-849d-41be-8d1c-a42dd1661783 +2024-07-30 15:29:11.680198 2024-07-30 15:29:11.680209 pidref 085703419 R rec 7bc44b87-ff18-47fe-9fa9-80d100846313 +2024-07-30 15:29:11.757914 2024-07-30 15:29:11.757924 pidref 097857300 R rec a0e2bbab-ed6e-4133-acca-807cd969adf2 +2024-07-30 15:29:11.83249 2024-07-30 15:29:11.832502 pidref 110868056 R rec 7c6f5333-078e-4e8c-85e6-195fd6bcaa12 +2024-07-30 15:29:11.907144 2024-07-30 15:29:11.907155 pidref 114526591 R rec b623bb62-0b95-4cb5-aa8b-09adc5d00921 +2024-07-30 15:29:11.985459 2024-07-30 15:29:11.98547 pidref 116317825 R rec 6ba11510-d727-4312-a44b-c4408217fe9d +2024-07-30 15:29:12.056219 2024-07-30 15:29:12.056231 pidref 116459425 R rec f6113f9a-541c-425d-ad8f-57013ba7cd09 +2024-07-30 15:29:12.123968 2024-07-30 15:29:12.123978 pidref 127372547 R rec ed8a5eeb-94f4-4038-abe8-0c950e2b3fb1 +2024-07-30 15:29:12.191796 2024-07-30 15:29:12.191825 pidref 144820072 R rec c9150fef-f3be-44a3-bf7e-73c7967a3b89 +2024-07-30 15:29:12.253354 2024-07-30 15:29:12.253359 pidref 14704233X R rec 981356e8-d66b-4052-bb2d-a24f584d513c +2024-07-30 15:29:12.299806 2024-07-30 15:29:12.299815 pidref 150220200 R rec 4ce56190-e19b-4b95-b9eb-b6d7b5f5e139 +2024-07-30 15:29:12.367262 2024-07-30 15:29:12.367273 pidref 157143392 R rec 5f8e5748-d0a8-4807-a515-10cc5c389ad4 +2024-07-30 15:29:12.43564 2024-07-30 15:29:12.435652 pidref 157143422 R rec 662e8bfb-218e-4e7d-bce8-40e5c5fb678a +2024-07-30 15:29:12.504391 2024-07-30 15:29:12.504401 pidref 161911846 R rec 3a61154f-6892-426e-8cb2-aea20a259a58 +2024-07-30 15:29:12.579516 2024-07-30 15:29:12.579527 pidref 185110363 R rec d475bccf-3df9-442b-a3dd-d33e3605cab1 +2024-07-30 15:29:12.65223 2024-07-30 15:29:12.652242 pidref 198231288 R rec cddfeb04-4b91-4461-a2f2-8a353a24dac3 +2024-07-30 15:29:12.724122 2024-07-30 15:29:12.724133 pidref 237279614 R rec 0b931686-32c5-4b0f-beae-f65bbf858a5d +2024-07-30 15:29:12.796582 2024-07-30 15:29:12.796593 pidref 25887421X R rec e7b1df5c-e635-4bf5-8e6d-2afbbd85fd62 +2024-07-30 15:29:12.873059 2024-07-30 15:29:12.87307 pidref 260966401 R rec f20958b1-0e68-48ec-8f0b-415a51ff560d +2024-07-30 15:29:12.942871 2024-07-30 15:29:12.942882 pidref 261121162 R rec 80a4abb3-8391-40c7-8d9b-694fb804f5e3 +2024-07-30 15:29:13.012034 2024-07-30 15:29:13.012043 pidref 26144722X R rec 2ef77754-8e3e-4fcf-b6e3-5c052d37145c +2024-07-30 15:29:13.094879 2024-07-30 15:29:13.094893 pidref 263259935 R rec 611881d8-9bf7-4b4d-9d65-da748e0dbe25 +2024-07-30 15:29:13.166403 2024-07-30 15:29:13.166418 pidref 263837920 R rec 0c3ab0b2-9c04-46bc-88e2-ca6828e3fd9c +2024-07-30 15:29:13.241787 2024-07-30 15:29:13.241797 pidref 264287010 R rec 64c36bcf-429c-4a1a-b984-ab1d6b299a7c +2024-07-30 15:29:13.293552 2024-07-30 15:29:13.293557 pidref 264406095 R rec 330fa639-7853-4dac-a2b9-d4b4af1b0e75 +2024-07-30 15:29:13.351181 2024-07-30 15:29:13.351192 pidref 264644093 R rec 47d8cdf6-2499-4f7b-a3c0-95d9609dd470 +2024-07-30 15:29:13.426337 2024-07-30 15:29:13.426353 pidref 264645081 R rec 92db7734-cc4a-4b8d-bc78-f2ef7466cdd6 +2024-07-30 15:29:13.50113 2024-07-30 15:29:13.501145 pidref 271321628 R rec bbfa9ecf-1abf-4956-b35b-d92b65ba84de +2024-07-30 15:29:13.573246 2024-07-30 15:29:13.573257 pidref 271323337 R rec 36382c39-9d22-4bc1-a426-574180598e0f +2024-07-30 15:29:13.640632 2024-07-30 15:29:13.640645 pidref 271323353 R rec 9bad2a6e-1078-49ce-b117-5ef2d2893073 +2024-07-30 15:29:13.710416 2024-07-30 15:29:13.710425 pidref 271323426 R rec ee7f718e-1631-4266-9014-66d3b28c8103 +2024-07-30 15:29:13.777229 2024-07-30 15:29:13.777244 pidref 271323485 R rec 2def3ca0-ecb9-473d-8618-7824d2fddb51 +2024-07-30 15:29:13.847015 2024-07-30 15:29:13.847026 pidref 271323515 R rec 91b79e9c-01f6-444a-8f17-06618aa65efd +2024-07-30 15:29:13.921832 2024-07-30 15:29:13.921843 pidref 271323523 R rec 832b8b24-8f04-4a95-9544-5499c63985cf +2024-07-30 15:29:13.99086 2024-07-30 15:29:13.990875 pidref 271323566 R rec 44573a1c-a115-4ff5-9187-d2d4717cca23 +2024-07-30 15:29:14.063373 2024-07-30 15:29:14.063384 pidref 271323590 R rec 711e9623-c54f-4211-98ff-9581b87c3671 +2024-07-30 15:29:14.130149 2024-07-30 15:29:14.130159 pidref 271323663 R rec 370ce8b9-3c1d-4836-bd76-4499c7551fe3 +2024-07-30 15:29:14.21574 2024-07-30 15:29:14.215756 pidref 27132368X R rec 90684f64-6404-4afa-a5b5-d62d2cf04940 +2024-07-30 15:29:14.291807 2024-07-30 15:29:14.291813 pidref 271323698 R rec 07a0610c-cc21-4172-ab4c-0708fa8bc0f0 +2024-07-30 15:29:14.339694 2024-07-30 15:29:14.339705 pidref 271323728 R rec 434c7bd8-42f4-49d9-9eda-d2a5f8469515 +2024-07-30 15:29:14.402428 2024-07-30 15:29:14.402441 pidref 271323752 R rec d6f7e978-3ec9-4cf6-ab14-71f52963b99c +2024-07-30 15:29:14.487078 2024-07-30 15:29:14.487094 pidref 271323957 R rec be37c245-0b27-40ff-a854-a29282478a89 +2024-07-30 15:29:14.572296 2024-07-30 15:29:14.572312 pidref 271323973 R rec f89232a7-9a67-4a28-ad13-6393b06e895b +2024-07-30 15:29:14.656859 2024-07-30 15:29:14.656872 pidref 271324015 R rec cad3d46d-5b26-4760-b812-cd1e40d4967a +2024-07-30 15:29:14.739701 2024-07-30 15:29:14.739714 pidref 271324031 R rec 77d11385-8a24-40c4-8d38-1e71a12b295b +2024-07-30 15:29:14.818086 2024-07-30 15:29:14.818097 pidref 271324058 R rec 69521087-d7e5-4572-88d3-3594baf43c5d +2024-07-30 15:29:14.892705 2024-07-30 15:29:14.89272 pidref 271324074 R rec 1d9a3482-b409-45e3-9d59-e15ba7d4b572 +2024-07-30 15:29:15.003417 2024-07-30 15:29:15.003445 pidref 271324562 R rec ceaa1b43-023a-4ddb-be27-4478393403eb +2024-07-30 15:29:15.080307 2024-07-30 15:29:15.080317 pidref 271326441 R rec 1dbe98d2-e012-4d9b-820d-d70b6870a97e +2024-07-30 15:29:15.157379 2024-07-30 15:29:15.15739 pidref 271326476 R rec f00078c2-93f1-45c7-9fde-3add74c0d13d +2024-07-30 15:29:15.230468 2024-07-30 15:29:15.230479 pidref 271326484 R rec bb754d22-1ff8-4c6b-84ad-b24093bbc524 +2024-07-30 15:29:15.313814 2024-07-30 15:29:15.313825 pidref 271326506 R rec ff4f7373-55fa-4ff0-8abf-56f3f723e47a +2024-07-30 15:29:15.372894 2024-07-30 15:29:15.372905 pidref 271326514 R rec 18fa0653-c7a7-465a-b165-cb9560875fb6 +2024-07-30 15:29:15.445284 2024-07-30 15:29:15.445295 pidref 271326522 R rec 05e0d49c-62f5-4d2b-bca9-139e8900d297 +2024-07-30 15:29:15.528223 2024-07-30 15:29:15.528238 pidref 271326530 R rec 4924b377-5307-4559-9904-d101ec751efc +2024-07-30 15:29:15.603754 2024-07-30 15:29:15.603764 pidref 271326557 R rec 3c215214-0c5b-4ee6-8343-93bbd093e51a +2024-07-30 15:29:15.674217 2024-07-30 15:29:15.674226 pidref 271326603 R rec 104601d9-762d-4a4f-a5fa-26db07892d77 +2024-07-30 15:29:15.737056 2024-07-30 15:29:15.737065 pidref 271326670 R rec efba4dde-cf5c-4336-b9fd-3550ad5501b2 +2024-07-30 15:29:15.804888 2024-07-30 15:29:15.804898 pidref 271326700 R rec 049ce880-9782-4d03-b607-3acba3c5b7ad +2024-07-30 15:29:15.87955 2024-07-30 15:29:15.879559 pidref 271326727 R rec f2614cab-0999-43e7-92bf-b10a58493c77 +2024-07-30 15:29:15.950395 2024-07-30 15:29:15.950407 pidref 271326751 R rec a2f290f1-8541-4d6f-9660-369f13a8a18c +2024-07-30 15:29:16.02643 2024-07-30 15:29:16.026441 pidref 27132676X R rec 8771217c-cabc-482b-abbc-bd0268a39774 +2024-07-30 15:29:16.115494 2024-07-30 15:29:16.115508 pidref 271326778 R rec 7f0f6217-0ceb-4015-b684-2659d830e32c +2024-07-30 15:29:16.196141 2024-07-30 15:29:16.196157 pidref 271326786 R rec d11f213f-cd55-4e10-b394-d722bce6f92a +2024-07-30 15:29:16.287422 2024-07-30 15:29:16.287437 pidref 271326794 R rec 1d71840c-bb2a-4757-9dc9-66a4f505b19a +2024-07-30 15:29:16.360788 2024-07-30 15:29:16.360792 pidref 271326808 R rec f4accac6-88d6-4aa2-97fb-2fb98cbd915c +2024-07-30 15:29:16.409381 2024-07-30 15:29:16.40939 pidref 271326824 R rec 4e07a65c-9b1b-4475-b44f-4180093106c3 +2024-07-30 15:29:16.470233 2024-07-30 15:29:16.470246 pidref 271326832 R rec f9679c22-09d0-4e12-9341-44854923f6d8 +2024-07-30 15:29:16.53693 2024-07-30 15:29:16.536944 pidref 271326840 R rec 65a9ceb7-0f2b-4244-9ceb-5d3fb6175f2d +2024-07-30 15:29:16.613029 2024-07-30 15:29:16.613044 pidref 271327383 R rec 6e8a01fc-563a-4647-b2bf-8076e630d94f +2024-07-30 15:29:16.694732 2024-07-30 15:29:16.694744 pidref 271328762 R rec 0b946100-7480-4c1b-8691-1577514860d9 +2024-07-30 15:29:16.758726 2024-07-30 15:29:16.758735 pidref 271329017 R rec 9aa81886-4d20-4cbd-bf5e-7a9b832a5553 +2024-07-30 15:29:16.820232 2024-07-30 15:29:16.820241 pidref 271329335 R rec 13f58c4a-1d56-4002-921f-4224b41d69f7 +2024-07-30 15:29:16.902078 2024-07-30 15:29:16.902083 pidref 271329696 R rec 7748c68c-e2e3-4ea8-a17c-8d407a42f12f +2024-07-30 15:29:16.98384 2024-07-30 15:29:16.983856 pidref 271329734 R rec 8c757328-8a2d-40dc-8c4e-ee1cbb9531be +2024-07-30 15:29:17.066735 2024-07-30 15:29:17.066748 pidref 271329831 R rec 1833cc8c-5854-45d1-b08d-6b28ed37278f +2024-07-30 15:29:17.145612 2024-07-30 15:29:17.145621 pidref 271329912 R rec 3c3d6b18-7fb4-415a-935b-a735fd77691d +2024-07-30 15:29:17.224681 2024-07-30 15:29:17.224692 pidref 271329998 R rec 52558b59-15c9-4cf6-857b-42c97c6cf061 +2024-07-30 15:29:17.302321 2024-07-30 15:29:17.302332 pidref 271330031 R rec d15f58a3-823c-4566-9903-8d502d050915 +2024-07-30 15:29:17.379293 2024-07-30 15:29:17.379299 pidref 271330163 R rec c97b9613-a8e0-4c9b-b7b4-4ede5efc9432 +2024-07-30 15:29:17.433117 2024-07-30 15:29:17.433127 pidref 271331658 R rec be14f68e-e06f-470d-903c-98eb1e0218ae +2024-07-30 15:29:17.493753 2024-07-30 15:29:17.493764 pidref 271331712 R rec 1d6d88fb-2717-4b2d-9020-67b889f13821 +2024-07-30 15:29:17.558928 2024-07-30 15:29:17.558938 pidref 27133181X R rec 9d0660d8-8dbb-4046-8d30-b87080be6db4 +2024-07-30 15:29:17.634882 2024-07-30 15:29:17.634892 pidref 271332352 R rec 2ec70105-9495-425c-85e2-2bc29dfba768 +2024-07-30 15:29:17.7086 2024-07-30 15:29:17.708615 pidref 271332778 R rec 71fbcaa3-e050-4507-a591-4c971285de82 +2024-07-30 15:29:17.782929 2024-07-30 15:29:17.78294 pidref 271332824 R rec 4caacccb-42cf-4021-bc59-66388b18ac4b +2024-07-30 15:29:17.850678 2024-07-30 15:29:17.850689 pidref 271333081 R rec 1099e79e-604b-4492-9f62-5a9af833e8b2 +2024-07-30 15:29:17.918329 2024-07-30 15:29:17.918341 pidref 271333197 R rec 3ece01af-1ea8-426f-8edb-ff810a3a193a +2024-07-30 15:29:17.985574 2024-07-30 15:29:17.985585 pidref 271333243 R rec 98074513-64b9-4ce4-9198-25894731f6bf +2024-07-30 15:29:18.056052 2024-07-30 15:29:18.056063 pidref 271337214 R rec a6b64bb5-8258-48eb-8009-90df7fa5b030 +2024-07-30 15:29:18.126109 2024-07-30 15:29:18.12612 pidref 271438436 R rec 558b9db4-b704-4fa0-b49c-e6fc3a681f3c +2024-07-30 15:29:18.195639 2024-07-30 15:29:18.19565 pidref 275775569 R rec b31b4b56-8ca8-47a4-bc8f-4fe7a0a037c4 +2024-07-30 15:29:18.256536 2024-07-30 15:29:18.256546 pidref 276510216 R rec e5567e69-d864-44b7-8616-601d529720ca +2024-07-30 15:29:18.333715 2024-07-30 15:29:18.333725 pidref 276534921 R rec b99e0756-6b3d-4f06-9dd8-a098cd8a81c9 diff --git a/data/plgnd.json b/data/plgnd.json index 7f265f44..e407c4c1 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", @@ -39,7 +32,7 @@ "Katowice", "Katowitz" ], - "md5": "94179a3a9fb9e72053f299534acfbeb8" + "md5": "0ecfcfaa3dd393f2158f06b906a4f166" }, { "authorized_access_point": "Katovice", @@ -66,6 +59,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Katovice&oldid=242019016" ] + }, + { + "noteType": "general", + "label": [ + "Minderstadt im Okres Strakonnice" + ] } ], "pid": "1335257101", @@ -73,7 +72,7 @@ "variant_access_point": [ "Katowitz" ], - "md5": "1957d4f38b442be11cb057eaaf7e9880" + "md5": "8dd759fa372c28f603f9f44e87e431e8" }, { "authorized_access_point": "Malbork-Wielbark", @@ -104,7 +103,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 +114,7 @@ "Wielbark", "Willenberg" ], - "md5": "87b304ecb151a650c9367d93c40ff32d" + "md5": "4128f98884ffa34f7a92f56adbe020d0" }, { "authorized_access_point": "Kwiatko\u0301w", @@ -141,21 +141,21 @@ "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": "d0d0bcfab6515fe7e7d4d43e96257e59" }, { "authorized_access_point": "Steinburg (Su\u0308derau)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tiefenburg" - } - ], "identifiedBy": [ { "source": "GND", @@ -179,6 +179,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Steinburg_(Holstein)" ] + }, + { + "noteType": "general", + "label": [ + "Abgebrochen ab 1641, seither wu\u0308st" + ] } ], "pid": "1335249966", @@ -188,17 +194,10 @@ "authorized_access_point": "Su\u0308derau" } ], - "md5": "a5325d2bbb62afe52cb7ebbcb815ca5c" + "md5": "9a5d419500024b788bd5c42ebd5b799b" }, { "authorized_access_point": "San Pietro Apostolo (San Basilio, Sardinien)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -216,6 +215,14 @@ "value": "(DE-588)1335243240" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Pfarrkirche, der Kirchenbau stammt aus der Zeit 1593 bis 1723" + ] + } + ], "pid": "1335243240", "type": "bf:Place", "broader": [ @@ -223,17 +230,10 @@ "authorized_access_point": "San Basilio (Sardinien)" } ], - "md5": "937cf0248f6d4da93792064e35dcedd6" + "md5": "8a7734ee14a4fad28fffe1a8f80706c4" }, { "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 +251,14 @@ "value": "(DE-588)133523909X" } ], + "note": [ + { + "noteType": "general", + "label": [ + "nach Aufgabe des Klosters 1810 als Arbeitshaus und Gefa\u0308ngnis genutzt" + ] + } + ], "pid": "133523909X", "type": "bf:Place", "broader": [ @@ -258,7 +266,7 @@ "authorized_access_point": "Venedig" } ], - "md5": "1a4877fe79fc01dacd70b37352479599" + "md5": "df5e41fd13dff03c8f5770ba978f8943" }, { "authorized_access_point": "Gunzenhausen-Bu\u0308chelberg", @@ -347,21 +355,20 @@ "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": "b461bfc1e7c2d34084d7930e1503877c" }, { "authorized_access_point": "Hokuriku", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Region" - } - ], "identifiedBy": [ { "source": "GND", @@ -379,6 +386,14 @@ "value": "(DE-588)1335107711" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Teilregion der japanischen Region Chu\u0304bu" + ] + } + ], "pid": "1335107711", "type": "bf:Place", "broader": [ @@ -390,7 +405,7 @@ "Hokuriku Chiho\u0304", "\u5317\u9678\u5730\u65b9" ], - "md5": "d80ee3c9ce81f4f91547769bee01fb28" + "md5": "5f3564b40a6a5ef3255ea7d422645922" }, { "authorized_access_point": "Alt-Albenreuth", @@ -417,6 +432,12 @@ "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 +452,7 @@ "Altalbenreuth", "Stary\u0301 Albenreuth" ], - "md5": "83042e35d08f362226a9d447b8c872bf" + "md5": "9aca5824ca86a0a67070d6d9d1de0e7e" }, { "authorized_access_point": "Portsmouth (Dominica)", @@ -458,21 +479,20 @@ "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": "5ad8121969261132efbc547d89436855" }, { "authorized_access_point": "Villa Wente\u0301 (Bad Breisig)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Villa" - } - ], "identifiedBy": [ { "source": "GND", @@ -496,6 +516,12 @@ "label": [ "AW-Wiki - https://www.aw-wiki.de/index.php/Villa_Wente_(Niederbreisig)" ] + }, + { + "noteType": "general", + "label": [ + "1970 abgerissen" + ] } ], "pid": "1335092390", @@ -515,7 +541,7 @@ "Villa Wente\u0301 (Bad Niederbreisig)", "Villa Wente\u0301 (Bad Breisig- Niederbreisig)" ], - "md5": "9871042c3dcdb867a88ed1f6e6d37c1a" + "md5": "149e88793a98785da389a915e15cb2b0" }, { "authorized_access_point": "Mu\u0308nchen-Neufreimann", @@ -542,6 +568,12 @@ "label": [ "Homepage - https://www.neufreimann.de/" ] + }, + { + "noteType": "general", + "label": [ + "Das Areal der fu\u0308heren Bayernkaserne wird zum neuen Wohnquartier" + ] } ], "pid": "1335092196", @@ -554,7 +586,7 @@ "variant_access_point": [ "Neufreimann (Mu\u0308nchen-Neufreimann)" ], - "md5": "92c77e0dc91babe1e42a3d7377974d79" + "md5": "63dc2ac0ce9ed8bf0966cb0255453418" }, { "authorized_access_point": "Podsuliszka", @@ -618,6 +650,12 @@ "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 +668,7 @@ "variant_access_point": [ "Riposto- Torre Archirafi" ], - "md5": "5120f843913fcc8a36c9a790cd4ede39" + "md5": "113b39dcfb50f28523ee29186aa22ee2" }, { "authorized_access_point": "Jusepi\u0301n", @@ -657,21 +695,20 @@ "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": "5cf14361dd0a611afd3a326699a29dca" }, { "authorized_access_point": "Villa Stefaneo (San Vito al Torre)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landhaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -703,17 +740,10 @@ "Palazzo Steffaneo (San Vito al Torre)", "Palazzo Steffaneo Roncato (San Vito al Torre)" ], - "md5": "6e2a3f8de22c437fd123d907d8ce9835" + "md5": "de12503e88e93b0b4df12878a49e91a7" }, { "authorized_access_point": "Sankt-Veits-Dom (Prag)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Portal" - } - ], "identifiedBy": [ { "source": "GND", @@ -731,6 +761,14 @@ "value": "(DE-588)1334916292" } ], + "note": [ + { + "noteType": "general", + "label": [ + "1367 als Festeingang errichtet, das Portal schmu\u0308ckt ein Glasmosaik" + ] + } + ], "pid": "1334916292", "type": "bf:Place", "broader": [ @@ -738,17 +776,10 @@ "authorized_access_point": "Sankt-Veits-Dom (Prag)" } ], - "md5": "2e1a42e7d88632f19de8f66ad6cbc4cf" + "md5": "f0cb5f0ee7568d2eb5f41c50ca5f3d8a" }, { "authorized_access_point": "Burg Hohenschelklingen (Schelklingen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burg" - } - ], "identifiedBy": [ { "source": "GND", @@ -766,6 +797,14 @@ "value": "(DE-588)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 +816,10 @@ "Schloss Hohenschelklingen (Schelklingen)", "Burg Hohen Schelklingen (Schelklingen)" ], - "md5": "c68e98c9801783ba57fcf34eab33ad14" + "md5": "1befefa00d00bf37c094418c87d11d66" }, { "authorized_access_point": "Terc\u030cino u\u0301doli\u0301 (Zlate\u0301 Hory, Jeseni\u0301k)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landschaftspark" - } - ], "identifiedBy": [ { "source": "GND", @@ -828,17 +860,10 @@ "Terezino u\u0301doli\u0301 (Zlate\u0301 Hory, Jeseni\u0301k)", "Theresiental (Zlate\u0301 Hory, Jeseni\u0301k)" ], - "md5": "ef5870f8141de7279b5fa857b56a238a" + "md5": "1043a431bc4f10f4e5fcf097dca1e5a7" }, { "authorized_access_point": "SPO\u0308-Parteihaus (Innsbruck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bu\u0308rohaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -856,6 +881,14 @@ "value": "(DE-588)1334907048" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Sitz der SPO\u0308 Tirol." + ] + } + ], "pid": "1334907048", "type": "bf:Place", "broader": [ @@ -866,7 +899,7 @@ "variant_access_point": [ "Salurner Stra\u00dfe 2 (Innsbruck)" ], - "md5": "3eecc7ab0092c308a65eea2a04019df8" + "md5": "e3f581ecf339fa953b5b8692f76a1b5d" }, { "authorized_access_point": "Wyszko\u0301w S\u0301la\u0328ski", @@ -907,13 +940,6 @@ }, { "authorized_access_point": "Schloss Weissenegg (Fernitz-Mellach)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -946,17 +972,10 @@ "authorized_access_point": "Fernitz-Mellach" } ], - "md5": "7c49a6cffedfe0f5095dcb9091d86531" + "md5": "a1ef780f6ea651d80c3f652d2f9d2c6c" }, { "authorized_access_point": "Schloss Grub (Obertraun)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -989,17 +1008,10 @@ "authorized_access_point": "Obertraun" } ], - "md5": "fbafd9ee61e7c145304eda646b97d4ab" + "md5": "fd78fd0ce2a56d40209e76cb52e3f476" }, { "authorized_access_point": "Spiemont", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -1017,24 +1029,20 @@ "value": "(DE-588)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": "49ccb1225208f502b77f6aa57bc7565c" }, { "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", @@ -1073,17 +1081,10 @@ "variant_access_point": [ "Kaiserplatz (Hamburg)" ], - "md5": "e329684aa17692f8b54399a3ff6040fa" + "md5": "7909bbf721b856045f9ce5dd753721d3" }, { "authorized_access_point": "Phoenixhof (Hamburg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gewerbehof" - } - ], "identifiedBy": [ { "source": "GND", @@ -1116,17 +1117,10 @@ "authorized_access_point": "Hamburg-Bahrenfeld" } ], - "md5": "e24b9606efe72a56b20c78623b052fa9" + "md5": "1585b6187b7c40fe8f11c21426c91b30" }, { "authorized_access_point": "Neues Amt Altona (Hamburg-Altona)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gewerbegeba\u0308ude" - } - ], "identifiedBy": [ { "source": "GND", @@ -1162,7 +1156,7 @@ "variant_access_point": [ "NAA" ], - "md5": "8fbec11784de7b45207836bb0d9e3f96" + "md5": "a5d8f5b51f6202493e7d6c9269b90d83" }, { "authorized_access_point": "Holowaniwsk", @@ -1189,6 +1183,12 @@ "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 +1199,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": "6974efab8ba720fae5d2c3b166468176" }, { "authorized_access_point": "Mattituck, NY", @@ -1235,13 +1235,6 @@ }, { "authorized_access_point": "Sankt Georg (Hainersdorf)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -1270,17 +1263,10 @@ "Pfarrkirche Heiliger Georg (Hainersdorf)", "Pfarrkirche Hl. Georg (Hainersdorf)" ], - "md5": "04367a688edcae98b6084ec91eef7490" + "md5": "bf6e5c4667514ebd3b08844e6ade03ee" }, { "authorized_access_point": "Sankt Donatus (Altenmarkt bei Fu\u0308rstenfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -1309,17 +1295,10 @@ "Pfarrkirche Heiliger Donatus (Altenmarkt bei Fu\u0308rstenfeld)", "Pfarrkirche Hl. Donatus (Altenmarkt bei Fu\u0308rstenfeld)" ], - "md5": "0c184fb5f3adb9fdfd5abbbadc707307" + "md5": "55ec925a465dbcf25836624e8fe0cc0c" }, { "authorized_access_point": "Schloss Birkenstein (Birkfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -1344,7 +1323,7 @@ "authorized_access_point": "Birkfeld" } ], - "md5": "13f6279b1b5a731c35538538d28f9b0c" + "md5": "4945a081325eeb07647eedb6aab1da25" }, { "authorized_access_point": "Comunita\u0300 Montana delle Prealpi Trevigiane", @@ -1387,13 +1366,6 @@ }, { "authorized_access_point": "Schloss Neudau (Neudau)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -1418,17 +1390,10 @@ "authorized_access_point": "Neudau" } ], - "md5": "03fa849ab5ad4b50fd9376d37adb1870" + "md5": "c3c1b9de0710bbede820063ef5902c14" }, { "authorized_access_point": "Kreuzkapelle (Trier)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kapelle" - } - ], "identifiedBy": [ { "source": "GND", @@ -1446,6 +1411,14 @@ "value": "(DE-588)1334804621" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Kapelle auf dem Petrisberg" + ] + } + ], "pid": "1334804621", "type": "bf:Place", "broader": [ @@ -1461,17 +1434,10 @@ "Kreuzchen (Trier)", "Kreuzchen (Trier-Ku\u0308renz)" ], - "md5": "f98852feaa7f1114b7e8fd1bc5fd8994" + "md5": "b35e0dccfed6283e8297c5bc69033f6a" }, { "authorized_access_point": "Sankt Cornelius-Kapelle (Trier)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kapelle" - } - ], "identifiedBy": [ { "source": "GND", @@ -1489,6 +1455,14 @@ "value": "(DE-588)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 +1479,10 @@ "St. Cornelius-Kapelle (Trier-Ku\u0308renz)", "Ju\u0308ngere Ku\u0308renzer Kapelle (Trier)" ], - "md5": "d86fe5ce9f50b4310ed335acc13ef18b" + "md5": "90c40219384fbaf139d3a0ff16fa6646" }, { "authorized_access_point": "Naturschutzgebiet Gradberg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Naturschutzgebiet" - } - ], "identifiedBy": [ { "source": "GND", @@ -1555,7 +1522,7 @@ "NSG Gradberg", "Gradberg" ], - "md5": "0d61925c469a05b0f6bbedef3065e823" + "md5": "9b096f48a550991be586f26fff0b623c" }, { "authorized_access_point": "Ostentrop", @@ -1582,6 +1549,12 @@ "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 +1564,7 @@ "authorized_access_point": "Finnentrop-Ostentrop" } ], - "md5": "2f5b81c86421c2b6ec079cbb0756e485" + "md5": "9867d19c75f8b03d5f9ae7b3eb346fb1" }, { "authorized_access_point": "Egloffstein-Bieberbach", @@ -1652,26 +1625,20 @@ "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": "cef0a657d2faec5e65cf2414843cf0d2" }, { "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", @@ -1695,6 +1662,12 @@ "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 +1683,7 @@ "variant_access_point": [ "Geba\u0308udeensemble Gerricusplatz 26-27 (Du\u0308sseldorf)" ], - "md5": "ba39b0c9f27122b96d37a20056d3975a" + "md5": "636095869c8e057dcd65316a181c16d5" }, { "authorized_access_point": "Rusdorf (Ostritz)", @@ -1737,6 +1710,12 @@ "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 +1728,7 @@ "variant_access_point": [ "Ru\u00dfdorf" ], - "md5": "e42bca8c0514775c39fe714827074b4e" + "md5": "38e45f32cf456da32cdea9435e871c56" }, { "authorized_access_point": "Czerwona Woda", @@ -1776,6 +1755,12 @@ "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 +1768,10 @@ "variant_access_point": [ "Rothwasser" ], - "md5": "d3c3b53852795dda707236f6d067b74f" + "md5": "236bf968cd45859394a40f121e7ca976" }, { "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", @@ -1827,7 +1805,7 @@ "authorized_access_point": "Paris" } ], - "md5": "af6e5f96acb06b0a5570b522cb6e8d89" + "md5": "69cc1ddc27cf69b051d7cd400f8ed574" }, { "authorized_access_point": "Stanowitz", @@ -1854,6 +1832,12 @@ "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 +1846,10 @@ "Stannowitz", "Stonwitz" ], - "md5": "0b2eb52f3ed0d3188408fac8c11efcea" + "md5": "7f5b529cdf10bdd142a770981da4b44f" }, { "authorized_access_point": "Hung Yen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stadt" - } - ], "identifiedBy": [ { "source": "GND", @@ -1890,6 +1867,14 @@ "value": "(DE-588)1334725756" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Hauptstadt der gleichnamigen Provinz in Nordvietnam" + ] + } + ], "pid": "1334725756", "type": "bf:Place", "broader": [ @@ -1900,17 +1885,10 @@ "variant_access_point": [ "Hu\u031bng Ye\u0302n" ], - "md5": "6f82b88b844ebddf1daa2d89d4f56903" + "md5": "d258c56241a28ec6700a0964b463da9d" }, { "authorized_access_point": "Provinz Hung Yen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Provinz" - } - ], "identifiedBy": [ { "source": "GND", @@ -1934,6 +1912,12 @@ "label": [ "Homepage - https://hungyen.gov.vn/portal/Pages/default.aspx" ] + }, + { + "noteType": "general", + "label": [ + "Provinz in Nordvietnam" + ] } ], "pid": "1334725691", @@ -1942,22 +1926,10 @@ "Provinz Hu\u031bng Ye\u0302n", "Ti\u0309nh Hu\u031bng Ye\u0302n" ], - "md5": "b25a5e37290a4c37b7bb937325f14b9e" + "md5": "21378658c63ba3b965fc448af624a390" }, { "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", @@ -1982,17 +1954,10 @@ "authorized_access_point": "Valencia" } ], - "md5": "eafb7740dffa7cb26ce4d877f09ae82a" + "md5": "d60ab8fcbd7ad12751133b42f26bb68c" }, { "authorized_access_point": "Kornmarkt (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Marktplatz" - } - ], "identifiedBy": [ { "source": "GND", @@ -2017,6 +1982,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 +2000,7 @@ "authorized_access_point": "Altstadt (Luzern)" } ], - "md5": "01c4f403fd973f0b22b06cf043aa3423" + "md5": "44c6129ecd22ffcd98ad80ae00cf675a" }, { "authorized_access_point": "Friedrichshain (Felixsee)", @@ -2072,13 +2043,6 @@ }, { "authorized_access_point": "El pintor Ribera (Valencia)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -2096,6 +2060,14 @@ "value": "(DE-588)1334670323" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ehrendenkmal fu\u0308r den Maler Jose\u0301 de Ribera" + ] + } + ], "pid": "1334670323", "type": "bf:Place", "broader": [ @@ -2107,7 +2079,7 @@ "Monument al pintor Josep de Ribera (Valencia)", "Monumento al pintor Jose\u0301 de Ribera (Valencia)" ], - "md5": "e64631a69abeff3d15acfde5b8336639" + "md5": "98a3216a2943b1abac2905d2753703c0" }, { "authorized_access_point": "Friedrichshof", @@ -2150,13 +2122,6 @@ }, { "authorized_access_point": "Heiligenha\u0308uschen (Weibern, Landkreis Ahrweiler)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bildstock" - } - ], "identifiedBy": [ { "source": "GND", @@ -2181,17 +2146,10 @@ "authorized_access_point": "Weibern (Landkreis Ahrweiler)" } ], - "md5": "e3c54fe0e3e9d0674a63087ca082f4a9" + "md5": "95b9343cb252be5f9882d1b99085c889" }, { "authorized_access_point": "Mariensa\u0308ule Weibern (Weibern, Landkreis Ahrweiler)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Mariensa\u0308ule" - } - ], "identifiedBy": [ { "source": "GND", @@ -2216,7 +2174,7 @@ "authorized_access_point": "Weibern (Landkreis Ahrweiler)" } ], - "md5": "a7092cd0b87c3adb701b0d2861563b45" + "md5": "ed95568f27d5c27c5e575e0296721eb8" }, { "authorized_access_point": "Neuhausen/Spree", @@ -2349,6 +2307,14 @@ "value": "(DE-588)1334658196" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Sirenen-Statuen auf der Bru\u0308cke Pontelungo in Bologna" + ] + } + ], "pid": "1334658196", "type": "bf:Place", "broader": [ @@ -2362,7 +2328,7 @@ "variant_access_point": [ "Pontelungo (Bologna)" ], - "md5": "242564ed5cab96feb7187650a6c5399e" + "md5": "0430e3cb7bc7b95343041270db33040c" }, { "authorized_access_point": "E\u0301causseville", @@ -2394,13 +2360,6 @@ }, { "authorized_access_point": "Marienkirche (Wardenburg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -2418,6 +2377,14 @@ "value": "(DE-588)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 +2392,7 @@ "authorized_access_point": "Wardenburg" } ], - "md5": "31bcecd5402fd7ae25a3abc60197698d" + "md5": "dd55df2adca1feb21b30b3ca0d91d708" }, { "authorized_access_point": "Rieflinghausen", @@ -2452,6 +2419,12 @@ "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 +2439,7 @@ "Rifelinchusen", "Burschafft Ryffelinghau\u00dfen" ], - "md5": "1f870dc472a6189cf6e7bbab8a55e0d6" + "md5": "b8f57203a37cd682a943ca81ecfd6ae5" }, { "authorized_access_point": "Helden-Rieflinghausen", @@ -2493,6 +2466,12 @@ "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 +2486,10 @@ "authorized_access_point": "Attendorn-Rieflinghausen" } ], - "md5": "624813f800b88098094a5ecc1b7ab133" + "md5": "a18e84673fc2be72a8e7f440bbb68d0d" }, { "authorized_access_point": "Sankt-Karli-Strasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -2542,6 +2514,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 +2533,10 @@ "St.-Karli-Strasse (Luzern)", "St. Karlistrasse (Luzern)" ], - "md5": "91cb2bab6def2cef79804c1d6674bb4c" + "md5": "eae20940da3a034cbf77ee9f5338e3fd" }, { "authorized_access_point": "Pfistergasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gasse" - } - ], "identifiedBy": [ { "source": "GND", @@ -2595,6 +2561,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 +2579,10 @@ "authorized_access_point": "Altstadt (Luzern)" } ], - "md5": "fa83934e09f0acb453f35e059df0f227" + "md5": "af1496a34e3c525b2768f5de58f2053d" }, { "authorized_access_point": "Neustadtstrasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -2642,6 +2607,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 +2622,10 @@ "authorized_access_point": "Luzern" } ], - "md5": "51719a3ebc31845d711e6450e5a250d8" + "md5": "1fa7a33ab2b6e2bac5308fca33d79b01" }, { "authorized_access_point": "Murbacherstrasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -2686,6 +2650,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 +2668,10 @@ "authorized_access_point": "Luzern" } ], - "md5": "509664709826cad65f2251217f1f9031" + "md5": "764fb87226477459863c512645269a93" }, { "authorized_access_point": "Sankt-Leodegar-Strasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -2733,6 +2696,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 +2715,10 @@ "St.-Leodegar-Strasse (Luzern)", "St. Leodegar-Str. (Luzern)" ], - "md5": "ffd9df76c568c600a30386f9cd620a65" + "md5": "4c7f3e6dd01b1d50de3ce85a8973e2f2" }, { "authorized_access_point": "Santuario della Madonna del Bosco (Ozegna)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -2792,22 +2754,10 @@ "variant_access_point": [ "Madonna del Bosco (Ozegna)" ], - "md5": "745f54d03302ea46ce566641935d8d02" + "md5": "a435c64338b906b05b303dc50265b48c" }, { "authorized_access_point": "Weggisgasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gasse" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -2831,6 +2781,12 @@ "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 +2799,10 @@ "authorized_access_point": "Altstadt (Luzern)" } ], - "md5": "968276153d5a9002b9154c4022b3bd58" + "md5": "6d185debe7bc94a43b5589e2c57e4d4f" }, { "authorized_access_point": "Gewerbegeba\u0308ude (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gewerbegeba\u0308ude" - } - ], "identifiedBy": [ { "source": "GND", @@ -2877,6 +2826,12 @@ "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 +2844,7 @@ "variant_access_point": [ "Das Gewerbegeba\u0308ude in Luzern" ], - "md5": "dda3f998b1754dbc808c191b1fa8a1c7" + "md5": "7be9c2dcd20ab305c3cb7729fb84108d" }, { "authorized_access_point": "Le\u0301signy (Departement Seine-et-Marne)", @@ -2921,13 +2876,6 @@ }, { "authorized_access_point": "Junkerhaus (Weggis)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Herrenhaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -2951,6 +2899,12 @@ "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 +2914,10 @@ "authorized_access_point": "Weggis" } ], - "md5": "adb6d5feb74a6f69c432a3ad864a9012" + "md5": "8789100de3a77575ce8fdc8d3b01dd23" }, { "authorized_access_point": "Schloss Stockau (Reichertshofen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -3006,17 +2953,10 @@ "variant_access_point": [ "Hofmarktschloss Stockau (Reichertshofen)" ], - "md5": "17a47547c1c87fb2311654ebd1c16d12" + "md5": "413676e0ba3cef72bf4b88c5a50c1a55" }, { "authorized_access_point": "Marienkirche (Ehningen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -3040,6 +2980,12 @@ "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 +3000,10 @@ "St. Marien (Ehningen)", "Sankt Marien (Ehningen)" ], - "md5": "4192bf31530634fbcfdb67fd668f42c3" + "md5": "ed9965dc44e1b113b8f96e99d542d171" }, { "authorized_access_point": "Villenkolonie Buchschlag (Dreieich)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Villenviertel" - } - ], "identifiedBy": [ { "source": "GND", @@ -3088,6 +3027,12 @@ "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 +3048,7 @@ "authorized_access_point": "Dreieich" } ], - "md5": "1c78726288afa8ce3b48b039aeb1e088" + "md5": "d6c8db7e76aa35240c7028e5fb5f55a8" }, { "authorized_access_point": "Oakhurst, Calif.", @@ -3130,6 +3075,12 @@ "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 +3088,10 @@ "variant_access_point": [ "Fresno Flats, Calif." ], - "md5": "4bfffe586026b0cf91ea7da807455eb2" + "md5": "e1d862b1162221e0402d0426ae2693e1" }, { "authorized_access_point": "Burg Lauenstein (Ludwigsstadt)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burg" - } - ], "identifiedBy": [ { "source": "GND", @@ -3171,6 +3115,12 @@ "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 +3138,10 @@ "Burg (Lauenstein)", "Burg und Renaissanceschloss Lauenstein (Ludwigsstadt)" ], - "md5": "b8e162acbf1c8b5fa93e54e415d155e9" + "md5": "33dd569888c6fb72a030e60951721285" }, { "authorized_access_point": "Pac\u0327o de Alca\u0301c\u0327ova (Lissabon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Palast" - } - ], "identifiedBy": [ { "source": "GND", @@ -3226,17 +3169,10 @@ "variant_access_point": [ "Pac\u0327o Real (Lissabon)" ], - "md5": "5794bf79da5477e5e90c4b1f66ef4765" + "md5": "d12ea0be18855a066bc4f4a28be90c25" }, { "authorized_access_point": "Vallesina", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], "identifiedBy": [ { "source": "GND", @@ -3264,17 +3200,10 @@ "variant_access_point": [ "Vallesina" ], - "md5": "49ecb3832851a4a6e40b016d407eed60" + "md5": "881a8ad8cf43c21cc881e044e9e53e43" }, { "authorized_access_point": "Rathaus Barsbu\u0308ttel (Barsbu\u0308ttel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rathaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -3311,7 +3240,7 @@ "variant_access_point": [ "Barsbu\u0308tteler Rathaus (Barsbu\u0308ttel)" ], - "md5": "b1c33956e274ad10d03031c0fef4cd3a" + "md5": "316e42f6c7c9cf7c21cd25039cfe7046" }, { "authorized_access_point": "Stockhausen (Landkreis Gie\u00dfen)", @@ -3332,6 +3261,14 @@ "value": "(DE-588)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 +3279,10 @@ "authorized_access_point": "Landkreis Gie\u00dfen" } ], - "md5": "f456088145be57f5a9f3ef5ebebc249f" + "md5": "70fcf0a82af8dedee2e3e02f7828f5a0" }, { "authorized_access_point": "Rathaus Gro\u00dfhansdorf (Gro\u00dfhansdorf)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rathaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -3389,7 +3319,7 @@ "variant_access_point": [ "Gro\u00dfhansdorfer Rathaus (Gro\u00dfhansdorf)" ], - "md5": "1fc6cdb81f88d22c13945f22c85ec2bb" + "md5": "96ae9af18082f4e76dc487caf05742ff" }, { "authorized_access_point": "Queckborn", @@ -3410,6 +3340,14 @@ "value": "(DE-588)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 +3355,10 @@ "authorized_access_point": "Gru\u0308nberg-Queckborn" } ], - "md5": "2585221e53ef5ed91aa9ae5bc639c309" + "md5": "00d30993494099aa398425f94570bdbe" }, { "authorized_access_point": "Rathaus Glinde (Glinde)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rathaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -3463,7 +3394,7 @@ "variant_access_point": [ "Glinder Rathaus (Glinde)" ], - "md5": "a451bf470ebab0d98344cfd60c8a43be" + "md5": "7c6f8d1bc8ed21e5272c35597d119865" }, { "authorized_access_point": "Lumda", @@ -3484,6 +3415,14 @@ "value": "(DE-588)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 +3430,10 @@ "authorized_access_point": "Gru\u0308nberg-Lumda" } ], - "md5": "b53d35fd6514b00c1f48e5ff163274ba" + "md5": "9837b25d4076e062538062ebaa1b1fe9" }, { "authorized_access_point": "Rathaus Reinbek (Reinbek)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rathaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -3538,7 +3470,7 @@ "variant_access_point": [ "Reinbeker Rathaus (Reinbek)" ], - "md5": "281e34304a1fd347ab60c89959c9f398" + "md5": "a675607a13360522410c20a52ed230f0" }, { "authorized_access_point": "Lehnheim", @@ -3559,6 +3491,14 @@ "value": "(DE-588)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 +3506,10 @@ "authorized_access_point": "Gru\u0308nberg-Lehnheim" } ], - "md5": "fa5d3a9093322a7bb89ba9ea4506833a" + "md5": "3c337a55adc70bafe6fb9b6a5473f55b" }, { "authorized_access_point": "Mo\u0308hnefriedhof (Arnsberg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Friedhof" - } - ], "identifiedBy": [ { "source": "GND", @@ -3594,6 +3527,14 @@ "value": "(DE-588)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 +3545,7 @@ "authorized_access_point": "Arnsberg-Neheim" } ], - "md5": "d71f572971c71627cbcad8ee5b7adbec" + "md5": "10cf184be021dedb28e127c109e11fb0" }, { "authorized_access_point": "Furth-Arth", @@ -3639,13 +3580,6 @@ }, { "authorized_access_point": "Holy Trinity Church (Schanghai)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -3669,6 +3603,12 @@ "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 +3625,10 @@ "\u4e0a\u6d77\u5723\u4e09\u4e00\u5802", "Sha\u0300ngha\u030ci she\u0300ng sa\u0304nyi\u0304 ta\u0301ng" ], - "md5": "4a3ab3b53def7d72564b816982acdbde" + "md5": "46758f2f289253bcd1268b0ba67b9f7e" }, { "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", @@ -3728,17 +3656,10 @@ "variant_access_point": [ "Mu\u0308hlenpforte (Bad Driburg)" ], - "md5": "1aef493e64f8bc3f7b3c222604abb549" + "md5": "a514a170832f22a8a03e8ab71c9ee315" }, { "authorized_access_point": "Santuario della Madonna della Neve (Casto)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -3777,7 +3698,7 @@ "variant_access_point": [ "Madonna della Neve (Casto)" ], - "md5": "ce8188f645218d55c19afa9cd9d247ca" + "md5": "bc875241b838c5043aadc9128a7f3b40" }, { "authorized_access_point": "Ostrov (Constant\u0323a)", @@ -3804,6 +3725,12 @@ "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 +3740,7 @@ "authorized_access_point": "Constant\u0323a" } ], - "md5": "9178fcbe64427c58cea704e4528cc0bc" + "md5": "3c075ac7411d5565e6bb1084276e6f70" }, { "authorized_access_point": "S\u0327oimos\u0327", @@ -3840,6 +3767,12 @@ "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 +3782,7 @@ "Schojmosch", "Schoimosch" ], - "md5": "b9b943c5900b8542359b1617e58a7712" + "md5": "63a8e0fdc49ad8c896d6dade233a6751" }, { "authorized_access_point": "Brunnelaite (Donau)", @@ -3877,6 +3810,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 +3828,7 @@ "variant_access_point": [ "Brunnleite (Donau)" ], - "md5": "2649c150792f0dd2ccc82886e2c031f2" + "md5": "288d2e80658d530b6da579d7df96bb76" }, { "authorized_access_point": "Radziejewo", @@ -3910,6 +3849,15 @@ "value": "(DE-588)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 +3868,7 @@ "variant_access_point": [ "Sonnwalde" ], - "md5": "2ea56fad3356f1d23f9881020374bbea" + "md5": "e69f6de91ac482179d3fac322918dd2a" }, { "authorized_access_point": "Sonnwalde", @@ -3941,6 +3889,15 @@ "value": "(DE-588)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 +3905,7 @@ "authorized_access_point": "Radziejewo" } ], - "md5": "c197f39af5ce4e1a800031980242f8cf" + "md5": "5684ab3c25b5de440da087cc29b8f80c" }, { "authorized_access_point": "Reimerswalde", @@ -3975,16 +3932,22 @@ "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": "1c26e3ea84c61da837eb5ff072f759c9" }, { "authorized_access_point": "Ignalin", @@ -4011,6 +3974,12 @@ "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 +3994,7 @@ "Ignalin (Lidzbark Warmin\u0301ski)", "Reimerswalde" ], - "md5": "22db906d622745022d339a39484414ea" + "md5": "ffd3a36f3bfaa36eee4465c2becf2701" }, { "authorized_access_point": "Meschede-Frielinghausen", @@ -4091,6 +4060,12 @@ "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 +4073,7 @@ "variant_access_point": [ "Todda" ], - "md5": "7ab27b6c97d94ede6db740741684cc81" + "md5": "fc2747780550c9ad507da42faf31a0bd" }, { "authorized_access_point": "Bystrez", @@ -4126,6 +4101,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 +4115,10 @@ "Bystrec\u02b9", "Bystrets" ], - "md5": "4d8be98fa1c1d2934e9438bafe46ba16" + "md5": "b74fa2ac08d3d9bbd0914931eee50289" }, { "authorized_access_point": "Holzheim (Horevun, Wu\u0308stung)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wu\u0308stung" - } - ], "identifiedBy": [ { "source": "GND", @@ -4172,17 +4146,10 @@ "variant_access_point": [ "Wu\u0308stung Holzheim" ], - "md5": "2d2015dca53e90fc08c886fd6ca4cdc7" + "md5": "7c8f39793d28901332280ae081bd5cdf" }, { "authorized_access_point": "Teubnitz", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wu\u0308stung" - } - ], "identifiedBy": [ { "source": "GND", @@ -4208,17 +4175,10 @@ "Wu\u0308stung Teubentz", "Teubnitz (Ahornthal)" ], - "md5": "8fdc58464e622759f96573cf7802e7ac" + "md5": "7c44bcf023266ec3ea813aead0e4d42a" }, { "authorized_access_point": "Siedlung Bornheimer Hang (Frankfurt am Main)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wohnsiedlung" - } - ], "identifiedBy": [ { "source": "GND", @@ -4259,7 +4219,7 @@ "Siedlung Bornheimer Hang (Frankfurt-Bornheim)", "Ernst-May-Siedlung (Frankfurt-Bornheim)" ], - "md5": "1e9aeec4c83824784b8a4cabd8dfc9b4" + "md5": "57840ae5b1aada6efc5daeacfab84b20" }, { "authorized_access_point": "Burla\u0306nes\u0327ti", @@ -4287,6 +4247,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 +4261,7 @@ "Burlaneshti", "Burlaneshty" ], - "md5": "b59a49600cf4c5f325d85ef779412518" + "md5": "a0601539d45a7519c3f54f8117147e9a" }, { "authorized_access_point": "Altenkunstadt-Trebitzmu\u0308hle", @@ -4353,21 +4319,20 @@ "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": "1d04dfe143d1431527f45e3217246e83" }, { "authorized_access_point": "Evangelische Reformationsgeda\u0308chtniskirche (Egloffstein)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -4409,17 +4374,10 @@ "Reformationsgeda\u0308chtniskirche (Egloffstein)", "Reformationsgeda\u0308chtniskirche (Egloffstein-Bieberbach)" ], - "md5": "853b8afe3a09d4e039f1ba6bef878244" + "md5": "fe54893d7c90630c6f78bfb3f8d91152" }, { "authorized_access_point": "Sankt Georg (Wolfersgru\u0308n)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -4457,7 +4415,7 @@ "Filialkirche Sankt Georg (Wolfersgru\u0308n)", "Katholische Filialkirche Sankt Georg (Wolfersgru\u0308n)" ], - "md5": "2ed191412af8520bb56d89e4b5ba0034" + "md5": "9f78d332aec391e15ac5af745f145b84" }, { "authorized_access_point": "Thala", @@ -4555,6 +4513,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 +4527,10 @@ "Krilos", "Kry\u0142os" ], - "md5": "6f226e6b7dc429639a6d536b50880ab7" + "md5": "8e4ce06ecb5e2ddb0cd40cbd555add2f" }, { "authorized_access_point": "Slierbach (Wu\u0308stung)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wu\u0308stung" - } - ], "identifiedBy": [ { "source": "GND", @@ -4597,6 +4554,12 @@ "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 +4572,7 @@ "variant_access_point": [ "Wu\u0308stung Slierbach" ], - "md5": "b92ce5f375562b025697f95ae9840bcf" + "md5": "0856d6c65c341b556aeb9defe1c027d2" }, { "authorized_access_point": "Durihin", @@ -4636,11 +4599,17 @@ "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": "30afeb534f28cab78f0812581f941113" }, { "authorized_access_point": "Su\u0308lchgau", @@ -4667,6 +4636,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%BClchgau&oldid=208578053" ] + }, + { + "noteType": "general", + "label": [ + "Mittelalterlicher Gau" + ] } ], "pid": "1332749054", @@ -4677,7 +4652,7 @@ "Sulichkewe", "Su\u0308lichgau" ], - "md5": "a81b60275126d56a112f85fe8becedf2" + "md5": "252ebe1482d9e3ec3ab4695ba4fc5bc0" }, { "authorized_access_point": "Nagoldgau", @@ -4704,6 +4679,12 @@ "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 +4693,7 @@ "Nagoldgouw", "Nagaltgouwe" ], - "md5": "0b637672c570fc3e58b9dba5d3489b62" + "md5": "65c42fdc218acfd9b6520b5a40272ee6" }, { "authorized_access_point": "Glehuntra", @@ -4739,11 +4720,17 @@ "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": "2e4ac91684a363e3f331464b485c2765" }, { "authorized_access_point": "Riesgau", @@ -4770,6 +4757,12 @@ "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 +4770,7 @@ "variant_access_point": [ "Rezia" ], - "md5": "186196cc90624949c43ce59d1c7370b5" + "md5": "a436c65edfe71b56ddb230af830e9740" }, { "authorized_access_point": "Salzburggau", @@ -4804,11 +4797,17 @@ "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": "61182faf2a67403f04a57bfb5f28b6b0" }, { "authorized_access_point": "Mattiggau", @@ -4835,11 +4834,17 @@ "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": "65b039273658ef6af5c44c17856b1bfc" }, { "authorized_access_point": "Donaugau", @@ -4866,11 +4871,17 @@ "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": "51aaf24875673bb350c26aff06d4634a" }, { "authorized_access_point": "Kelsgau", @@ -4897,6 +4908,12 @@ "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 +4921,10 @@ "variant_access_point": [ "Chelesgau" ], - "md5": "eb3454ac083a84966b303db7115fe82b" + "md5": "5d77e5d4a3b970068b774f8e1cbb3ec2" }, { "authorized_access_point": "Monte San Primo", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -4938,6 +4948,12 @@ "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 +4966,7 @@ "variant_access_point": [ "San Primo (Berg)" ], - "md5": "cad2266fe4ca451ac816425ca3644bdc" + "md5": "04c8e301513969ad3c4e117026d6fa47" }, { "authorized_access_point": "Brackmills", @@ -5016,6 +5032,12 @@ "label": [ "GeoNames - https://www.geonames.org/2657658/adwick-le-street.html" ] + }, + { + "noteType": "general", + "label": [ + "Dorf in der Metropolitanstadt Doncaster" + ] } ], "pid": "1332669689", @@ -5028,7 +5050,7 @@ "variant_access_point": [ "Doncaster- Adwick le Street" ], - "md5": "6e8b47dfacd661122b4773ab6e60b5ce" + "md5": "c446fecda5f2b0b52b82f58ce90ccdac" }, { "authorized_access_point": "My\u0301tina", @@ -5055,6 +5077,13 @@ "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 +5096,7 @@ "variant_access_point": [ "Alt-Albenreuth" ], - "md5": "cdb1dde18755b13050f3ed648461c565" + "md5": "79f2027fa3eff7657e8ce3a4d40757c4" }, { "authorized_access_point": "Borrello", @@ -5094,11 +5123,17 @@ "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": "ca7f859d6fe92ed38d5e078f181db65d" }, { "authorized_access_point": "Olmeda de la Cuesta", @@ -5126,11 +5161,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": "f148a46c559e2f1b607d53882d60f57b" }, { "authorized_access_point": "Bluc\u030cina", @@ -5162,13 +5203,6 @@ }, { "authorized_access_point": "Amt S\u00f8nderjylland", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -5192,6 +5226,12 @@ "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 +5264,10 @@ "S\u00f8nderjyllands Amtskommune", "Amtskommune S\u00f8nderjylland" ], - "md5": "45b056d7cce11c620c58e200463b0f04" + "md5": "031fb17caae924afed5a0bf9acdf3c8a" }, { "authorized_access_point": "Europa-Viertel am Waldhu\u0308gel (Rheine)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wohngebiet" - } - ], "identifiedBy": [ { "source": "GND", @@ -5258,6 +5291,12 @@ "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 +5311,10 @@ "Europaviertel (Rheine)", "EuVie (Rheine)" ], - "md5": "676cfbe467c17e74b951e73946954a6e" + "md5": "e46d1d06ec203ac2b8be1740542c575c" }, { "authorized_access_point": "Bas\u030cc\u030cars\u030cija (Sarajevo)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Platz" - } - ], "identifiedBy": [ { "source": "GND", @@ -5318,17 +5350,10 @@ "variant_access_point": [ "Hauptmarkt (Sarajevo)" ], - "md5": "2eeb253d743d2d16bad5b5ade7f6e5ce" + "md5": "f7fcd50e83886486b931b5ac98e9ab0b" }, { "authorized_access_point": "Crkva Svetog Nikole (Borci, Kotor Varos\u030c)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -5356,7 +5381,7 @@ "variant_access_point": [ "Nikolauskirche (Borci, Kotor Varos\u030c)" ], - "md5": "7bb8d6b00d05923fefb5ac90e458401e" + "md5": "9469e8577f8a870af6a4a66d897eba28" }, { "authorized_access_point": "Borci (Kotor Varos\u030c)", @@ -5420,6 +5445,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 +5460,7 @@ "authorized_access_point": "\u0141omz\u0307a (Powiat)" } ], - "md5": "cdb110e283439e9856ad881100f43af4" + "md5": "ad31d566449821c5d2fb8b37e4a6b71f" }, { "authorized_access_point": "Attel-Gabersee", @@ -5456,6 +5487,12 @@ "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 +5513,7 @@ "variant_access_point": [ "Gabersee (Attel-Gabersee)" ], - "md5": "0b8122d006d2b11fc2ad93bd1bb56eb9" + "md5": "ed21b8384d9363383e06eb3046139f33" }, { "authorized_access_point": "Attel", @@ -5497,6 +5534,14 @@ "value": "(DE-588)1331513952" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ehemals selbststa\u0308ndige Gemeinde; seit 01.05.1978 Ortsteil von Wasserburg" + ] + } + ], "pid": "1331513952", "type": "bf:Place", "broader": [ @@ -5504,7 +5549,7 @@ "authorized_access_point": "Wasserburg-Attel" } ], - "md5": "604b7e054d7728796a242180610065cd" + "md5": "b6d1dba3ed000c9680aa9645e99f36c1" }, { "authorized_access_point": "Trogen-Ullitz", @@ -5539,13 +5584,6 @@ }, { "authorized_access_point": "Fetislam", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Festung" - } - ], "identifiedBy": [ { "source": "GND", @@ -5582,7 +5620,7 @@ "variant_access_point": [ "Tvr\u0111ava Fetislam" ], - "md5": "88836b79e9b936777a83d56a0d16f2f4" + "md5": "c45aa1df94ff74b0082981d50577ad55" }, { "authorized_access_point": "Opato\u0301wek", @@ -5767,13 +5805,6 @@ }, { "authorized_access_point": "Denkmal der Helden des Ghettos (Warschau)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -5797,6 +5828,12 @@ "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 +5847,10 @@ "Warschauer Ghetto-Ehrenmal (Warschau)", "Pomnik Bohatero\u0301w Getta (Warschau)" ], - "md5": "d5490254082cc8cd0c5fff0bb7925b7b" + "md5": "ca2f3857f351437a865f557134ccf045" }, { "authorized_access_point": "Wassermu\u0308hle Nu\u0308tschau (Travenbru\u0308ck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wassermu\u0308hle" - } - ], "identifiedBy": [ { "source": "GND", @@ -5844,6 +5874,12 @@ "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 +5895,10 @@ "variant_access_point": [ "Wassermu\u0308hle Nu\u0308tschau (Travenbru\u0308ck-Nu\u0308tschau)" ], - "md5": "e91d4e7a96e470e54624c475b4770e03" + "md5": "025f42a1cfb8f204dc0ea69385754700" }, { "authorized_access_point": "Drahtmu\u0308hle Gro\u0308nwohld (Gro\u0308nwohld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Papiermu\u0308hle" - } - ], "identifiedBy": [ { "source": "GND", @@ -5903,22 +5932,10 @@ "authorized_access_point": "Gro\u0308nwohld" } ], - "md5": "dbcf29c8c89fe37754c88ec20391b83e" + "md5": "7b45970e199cc28f40eba0ebb38b5737" }, { "authorized_access_point": "Fasanenhof (Jersbek)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gaststa\u0308tte" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Beherbergungsbetrieb" - } - ], "identifiedBy": [ { "source": "GND", @@ -5956,22 +5973,10 @@ "Landgasthaus Zum Fasanenhof (Jersbek)", "Landgasthof Zum Fasanenhof (Jersbek)" ], - "md5": "401502d75c9aef12dfa30c1df0bb4334" + "md5": "840f7011be6df0fcbfcb8d5b84b40a9e" }, { "authorized_access_point": "TOP-Grenzwanderweg Schifflersgrund", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Grenzwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -5996,6 +6001,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 +6023,10 @@ "Grenzwanderweg Schifflersgrund", "Rundwanderweg Schifflersgrund" ], - "md5": "06b748c011c45a523593e168466f68bd" + "md5": "dc5171079a2ee62886f95d2b915fdc6b" }, { "authorized_access_point": "Orchideenbrunnen (Jena)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Brunnen" - } - ], "identifiedBy": [ { "source": "GND", @@ -6046,6 +6050,12 @@ "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 +6068,7 @@ "variant_access_point": [ "Jenaer Orchideenbrunnen (Jena)" ], - "md5": "bb755e3e55cfdaf6bc070221f3481421" + "md5": "5c4dbc5976dd42d97e241717f53cc0f7" }, { "authorized_access_point": "Merville (Departement Nord)", @@ -6086,6 +6096,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 +6111,7 @@ "authorized_access_point": "Departement Nord" } ], - "md5": "66eda11c5443a102146a33078dd28a2a" + "md5": "1d983cb78bb14306dcaf16e01d6ea558" }, { "authorized_access_point": "Smolotely", @@ -6125,13 +6141,6 @@ }, { "authorized_access_point": "Oberes Schloss (Mitwitz)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -6156,17 +6165,10 @@ "authorized_access_point": "Mitwitz" } ], - "md5": "616f3f9d464e32e89c6b90ceebcdcc59" + "md5": "e20cbeb1d767d2a52851a9121a5aef2b" }, { "authorized_access_point": "Straubelstra\u00dfe (Po\u0308\u00dfneck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -6184,6 +6186,14 @@ "value": "(DE-588)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 +6204,7 @@ "variant_access_point": [ "Schulstra\u00dfe (Po\u0308\u00dfneck)" ], - "md5": "7d4035e63e8a60fb7db46cedc2cfd4e9" + "md5": "f334405cd62a82534f2511aa0c7fe1f3" }, { "authorized_access_point": "Lindow (Kreis Oststernberg)", @@ -6221,6 +6231,12 @@ "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 +6246,7 @@ "authorized_access_point": "Kreis Oststernberg" } ], - "md5": "f6aec753d4484e8a89b208fd6f092d22" + "md5": "67978dbc6e1e9ae4d50a8908a4938a24" }, { "authorized_access_point": "Leipzig-Mockau-Su\u0308d", @@ -6257,6 +6273,12 @@ "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 +6294,7 @@ "variant_access_point": [ "Mockau-Su\u0308d (Leipzig)" ], - "md5": "be5cfb151f26783eeb1cf32dd58b032e" + "md5": "bd8d32e402ce730e52eb001dd25df29e" }, { "authorized_access_point": "Turza Wielka", @@ -6299,6 +6321,12 @@ "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 +6336,10 @@ "authorized_access_point": "Gro\u00df Tauersee" } ], - "md5": "31f5b8017dd770aa865d532c0f1fe86c" + "md5": "3f9b6d084fc50e61e2157be27f2fed25" }, { "authorized_access_point": "Goethe-Erlebnisweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -6343,7 +6364,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 +6382,7 @@ "authorized_access_point": "Uhlsta\u0308dt-Kirchhasel- Gro\u00dfkochberg" } ], - "md5": "3a8fe015fa46c04a301ff4ab4a109bda" + "md5": "89b2eecd2241858e71a8f369af3bf64d" }, { "authorized_access_point": "Bollingstedt-Gammellund", @@ -6382,6 +6409,12 @@ "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 +6427,7 @@ "authorized_access_point": "Gammellund" } ], - "md5": "190249772f56f085481c52864e4543f3" + "md5": "5fe86af664920539553de1966e7f5f88" }, { "authorized_access_point": "Leipzig-Stu\u0308nz", @@ -6445,18 +6478,6 @@ }, { "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 +6495,14 @@ "value": "(DE-588)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 +6513,7 @@ "variant_access_point": [ "Sust (Horgen)" ], - "md5": "7b4e3172f1c0fba13f4e5f1c42ab4949" + "md5": "03f81a8fe8532964a550223444cdc619" }, { "authorized_access_point": "Fehmarn-Gahlendorf", @@ -6511,6 +6540,12 @@ "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 +6558,10 @@ "authorized_access_point": "Gahlendorf" } ], - "md5": "713704a0fea2512485777fdb506760bf" + "md5": "8949f9359e3f0ba531341e699ef8d305" }, { "authorized_access_point": "E\u0307glis\u030ckiai-Anduliai", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gra\u0308berfeld" - } - ], "identifiedBy": [ { "source": "GND", @@ -6561,17 +6589,10 @@ "variant_access_point": [ "Anduln" ], - "md5": "506a6a108734be4e534ed05f3653c6ec" + "md5": "66123f09b2cd26455411c9f77c136793" }, { "authorized_access_point": "N\u00f8rre Herred (Amt Bornholm)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bezirk" - } - ], "identifiedBy": [ { "source": "GND", @@ -6595,6 +6616,12 @@ "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 +6631,10 @@ "authorized_access_point": "Amt Bornholm" } ], - "md5": "f258957c96b6bca72c9c39bbb294052e" + "md5": "2a6d07cd3009ff4c6a570b2ad073593e" }, { "authorized_access_point": "Beskid Makowski", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gebirgszug" - } - ], "identifiedBy": [ { "source": "GND", @@ -6639,6 +6659,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 +6680,10 @@ "Beskid S\u0301redni", "Mittelbeskiden" ], - "md5": "3b20f436e5d22b18f586fc1513431f20" + "md5": "a17a15374076d584f5a7cfabff750baf" }, { "authorized_access_point": "Altenburg (Stadtlauringen, Berg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -6682,6 +6701,14 @@ "value": "(DE-588)1262419808" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Bergsporn zwischen Stadtlauringen und Oberlauringen im Landkreis Schweinfurt" + ] + } + ], "pid": "1262419808", "type": "bf:Place", "broader": [ @@ -6689,7 +6716,7 @@ "authorized_access_point": "Stadtlauringen" } ], - "md5": "d3d3b05d6898abb1f4f88c5028fb1d7e" + "md5": "374f4ee6b6ed3badf9172536828d88cc" }, { "authorized_access_point": "Wodzis\u0142aw S\u0301la\u0328ski", @@ -6722,13 +6749,6 @@ }, { "authorized_access_point": "Mount Ferguson, Nev.", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -6746,24 +6766,20 @@ "value": "(DE-588)1239866968" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Berg im US-Bundesstaat Nevada" + ] + } + ], "pid": "1239866968", "type": "bf:Place", - "md5": "93b7cb909c80abb690bf04357045f357" + "md5": "f96db1c59174fe225e0fd1a327aec7f9" }, { "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,13 +6797,22 @@ "value": "(DE-588)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": "6106324cc9a1da791a255c9ef6f0692d" }, { "authorized_access_point": "Kolbuszowa", @@ -6928,13 +6953,6 @@ }, { "authorized_access_point": "Lublin-Synklinale", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Synklinale" - } - ], "identifiedBy": [ { "source": "GND", @@ -6959,7 +6977,7 @@ "authorized_access_point": "Polen" } ], - "md5": "11ba3c3c783e50706a2d0ed3ad1884e9" + "md5": "86f259dc77f4e7a9ffb299cc6c200695" }, { "authorized_access_point": "Zwolen\u0301", @@ -7003,13 +7021,6 @@ }, { "authorized_access_point": "Croker Island", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Insel" - } - ], "identifiedBy": [ { "source": "GND", @@ -7027,6 +7038,14 @@ "value": "(DE-588)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 +7053,7 @@ "authorized_access_point": "Arafurasee" } ], - "md5": "8e07b30946443951da1f6ec76db2d7f0" + "md5": "42ba4fdbbb4428645c8d48fb847c9698" }, { "authorized_access_point": "Dubring", @@ -7061,6 +7080,12 @@ "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 +7099,10 @@ "Dubrjenk", "Eichhain" ], - "md5": "976ed55f2d9ba3734df0ec6342aaa85b" + "md5": "47ae3f7c5e5ccfb6a56883f4c76105e4" }, { "authorized_access_point": "Ehrenberg (Berg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -7117,17 +7135,10 @@ "authorized_access_point": "Ilmenau" } ], - "md5": "ce71c6bc1345c7da1e731559884d0b21" + "md5": "4b8484d0ccfd0788a1b2606dc8d68b53" }, { "authorized_access_point": "Schiller-Denkmal (Marbach am Neckar)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -7151,6 +7162,12 @@ "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 +7177,10 @@ "authorized_access_point": "Marbach am Neckar" } ], - "md5": "1631d08665b41dddcdb90b2f1b835898" + "md5": "a7d1a4f796f5fb09e87d2f997b43b469" }, { "authorized_access_point": "Akademietheater Wien (Wien)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Theaterbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -7196,6 +7206,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 +7228,10 @@ "Akademie-Theater Wien (Wien)", "Akademie Theater Wien (Wien)" ], - "md5": "de967b6c062a458c4fd38ecaf273bd23" + "md5": "f861a7cc624d1d608e70848f6bd6a8a6" }, { "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", @@ -7264,7 +7268,7 @@ "Turmhu\u0308gel Woja (Rehau-Woja)", "Burg Woja (Rehau-Woja)" ], - "md5": "b73a01e1cc93e22aae01c72564e5a10a" + "md5": "1ddb8e2cd6ec7fb28483a35c07487e2f" }, { "authorized_access_point": "Balninkai", @@ -7285,6 +7289,14 @@ "value": "(DE-588)122219953X" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Bezirk Utena, Litauen" + ] + } + ], "pid": "122219953X", "type": "bf:Place", "related": [ @@ -7300,7 +7312,7 @@ "Bal\u02b9ninkaj", "\u0411\u0430\u043b\u044c\u043d\u0438\u043d\u043a\u0430\u0438\u0306" ], - "md5": "c0fdf9edc3d55d42e4ce3e2642be4b03" + "md5": "1327965752e283a90f12e6ee99e9a374" }, { "authorized_access_point": "Kamajai", @@ -7321,6 +7333,14 @@ "value": "(DE-588)1222199440" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt in der Gemeinde Rokis\u030ckis in Litauen" + ] + } + ], "pid": "1222199440", "type": "bf:Place", "variant_access_point": [ @@ -7330,22 +7350,10 @@ "Kamajaj", "\u041a\u0430\u043c\u0430\u044f\u0438\u0306" ], - "md5": "f1e86709fa43abd1ed33abd107013380" + "md5": "b2787fdec9a73a946e8483b5724af82d" }, { "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 +7371,14 @@ "value": "(DE-588)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 +7389,7 @@ "authorized_access_point": "La Boissie\u0300re" } ], - "md5": "b845ae7738756612970b2fb3ed316af3" + "md5": "a4aa1ccdbd280a97acc617828de1ba40" }, { "authorized_access_point": "Kirs\u030cai", @@ -7400,11 +7416,17 @@ "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": "0f3cb5eb33793e20fcf74382bd9f057e" }, { "authorized_access_point": "Dirz\u030ciai (Pakruojis)", @@ -7497,6 +7519,12 @@ "label": [ "GeoNames - http://geotree.geonames.org/598959/" ] + }, + { + "noteType": "general", + "label": [ + "Dorf in Litauen" + ] } ], "pid": "1203261837", @@ -7506,7 +7534,7 @@ "authorized_access_point": "Kreis Paneve\u0307z\u030cys" } ], - "md5": "84e257911751c505d92d05afa8fe40a3" + "md5": "a1031d65cce3679899a7bd12036a867a" }, { "authorized_access_point": "Ziemia Jarocinska", @@ -7569,23 +7597,6 @@ }, { "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", @@ -7613,7 +7624,7 @@ "variant_access_point": [ "Stadthalle (Chemnitz)" ], - "md5": "909098c53c9ae4475505a70c92eb1715" + "md5": "dcb644e0e5e2785c9bda571cbe640457" }, { "authorized_access_point": "Kleine-Spree-Gebiet", @@ -7643,13 +7654,6 @@ }, { "authorized_access_point": "Kleine Spree", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -7673,6 +7677,12 @@ "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 +7690,10 @@ "variant_access_point": [ "Ma\u0142a Sprjewja" ], - "md5": "6708cb6c741ee709f2d174aaf3b87edf" + "md5": "ad30c5f9540984e65fef082dee729900" }, { "authorized_access_point": "Swine", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -7708,13 +7711,21 @@ "value": "(DE-588)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": "7597b2c4f5d1765a4366f3a68e6291a3" }, { "authorized_access_point": "Wa\u0142cz", @@ -7755,23 +7766,6 @@ }, { "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", @@ -7796,6 +7790,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 +7808,10 @@ "variant_access_point": [ "Gemeindezentrum Schwedenheim (Cloppenburg)" ], - "md5": "6e3f09f530796cf475090a756c4c7a8e" + "md5": "4f9e99f519f29df4794d2baabeb7fdb3" }, { "authorized_access_point": "Geopark Bayern-Bo\u0308hmen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Geopark" - } - ], "identifiedBy": [ { "source": "GND", @@ -7842,6 +7835,12 @@ "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 +7856,10 @@ "variant_access_point": [ "C\u030cesko-Bavorsky\u0301 Geopark" ], - "md5": "bcf4453d0f8b18b914276f84fb4873e9" + "md5": "1ed4d8f11f09d1ab0507fc06a397d7ea" }, { "authorized_access_point": "Halbinsel Dwang", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Halbinsel" - } - ], "identifiedBy": [ { "source": "GND", @@ -7885,6 +7877,14 @@ "value": "(DE-588)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 +7896,7 @@ "Halbinsel Zwang", "Dwang, Halbinsel" ], - "md5": "2a6d2a173baa75b80e987cef2ff9fa11" + "md5": "e0fb3e8cec52537cf9513a911fcba319" }, { "authorized_access_point": "Trattendorf", @@ -7923,6 +7923,12 @@ "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 +7941,7 @@ "variant_access_point": [ "Dubrawa" ], - "md5": "93371d31e0ebf99a7d358e7c974af7a2" + "md5": "174e7b2938341aff3e8eee8c9a4c43c9" }, { "authorized_access_point": "Neu Sallenthin", @@ -7963,6 +7969,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 +7984,10 @@ "authorized_access_point": "Heringsdorf-Neu Sallenthin" } ], - "md5": "fd26780c7d5a56e21d1327ced9ecd631" + "md5": "f151515f8d2379ee4a265c63c9b29d4c" }, { "authorized_access_point": "Belgier-Kaserne (Graz)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kaserne" - } - ], "identifiedBy": [ { "source": "GND", @@ -8022,7 +8027,7 @@ "Belgierkaserne (Graz)", "SS-Kaserne Wetzelsdorf" ], - "md5": "a19b6580598402d73afc49625bb54bfb" + "md5": "ecda6d99cc813806f73aed6e70fe0550" }, { "authorized_access_point": "Heringsdorf-Neu Sallenthin", @@ -8050,6 +8055,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,7 +8077,7 @@ "Heringsdorf- Neu Sallenthin", "Neu Sallenthin (Heringsdorf, Seebad)" ], - "md5": "e5447bfb35c33369045359ed9e3b2569" + "md5": "73cffcef7b5cf0ffbe0763b27e79fa3c" }, { "authorized_access_point": "Krotoszyn", @@ -8099,13 +8110,6 @@ }, { "authorized_access_point": "Ijsselmeer-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8129,6 +8133,12 @@ "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 +8149,10 @@ "Zuiderzeeroute", "Ijsselmeer Radroute" ], - "md5": "215496db4e2d5b02fc24714ddbbd084d" + "md5": "9affbe952ebb96e9521c297bc90eb43e" }, { "authorized_access_point": "Elsterstausee (Leipzig)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stausee" - } - ], "identifiedBy": [ { "source": "GND", @@ -8173,6 +8176,12 @@ "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 +8191,10 @@ "Elsterstausee Leipzig-Knauthain", "Stausee Bo\u0308sdorf" ], - "md5": "c463af5e3b560fa49ba57b3077904120" + "md5": "c6aa6033c72238fef261fe4b376c1601" }, { "authorized_access_point": "Ru\u030az\u030covsky\u0301 vrch", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8216,6 +8218,12 @@ "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,7 +8237,7 @@ "Rosenberg (Bo\u0308hmische Schweiz : Berg)", "Ru\u030az\u030ca\u0301k" ], - "md5": "5a67d78a7e4eaf06ab90572d8bd270b9" + "md5": "57971643c7f60194e67159b9ebbff904" }, { "authorized_access_point": "Kaunas", @@ -8377,14 +8385,7 @@ }, { "authorized_access_point": "Louisville Seamount Chain", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tiefseeberg" - } - ], - "identifiedBy": [ + "identifiedBy": [ { "source": "GND", "type": "uri", @@ -8401,6 +8402,14 @@ "value": "(DE-588)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 +8419,7 @@ "Louisville Ridge", "Louisville-Ridge" ], - "md5": "65934d9c42984d59df483ddc96e76749" + "md5": "ef8e3a0d832a92b2b000f9777e73da0d" }, { "authorized_access_point": "Leipzig-Neuscho\u0308nefeld", @@ -8437,6 +8446,12 @@ "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 +8472,7 @@ "variant_access_point": [ "Neuscho\u0308nefeld (Leipzig)" ], - "md5": "93d4d9e217001d9976fd9a7bbf2687b4" + "md5": "def1e37830072370aa2145c6ef80eca7" }, { "authorized_access_point": "Leipzig-Neustadt", @@ -8484,6 +8499,12 @@ "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,7 +8525,7 @@ "variant_access_point": [ "Neustadt (Leipzig)" ], - "md5": "635f32495a7a8f570b8e01d3fa1dd739" + "md5": "fc420be70594d6b0ee9c1c401fb5f1f4" }, { "authorized_access_point": "Lubawa", @@ -8578,13 +8599,6 @@ }, { "authorized_access_point": "Sentiero Rusca", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8608,6 +8622,12 @@ "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 +8640,7 @@ "authorized_access_point": "Sondrio" } ], - "md5": "66cfad226e7a3edfffa2c95585fd1a15" + "md5": "48580749dc871537669883c90c8ed8c8" }, { "authorized_access_point": "Heringsdorf-Ahlbeck", @@ -8647,6 +8667,12 @@ "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 +8688,7 @@ "variant_access_point": [ "Ahlbeck (Heringsdorf, Seebad)" ], - "md5": "1ef82d8eed7bcba6642643d49154e861" + "md5": "fbb2767390b7807db665f4f5a2520b65" }, { "authorized_access_point": "Dreikaiserba\u0308der-Ahlbeck", @@ -8689,6 +8715,12 @@ "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 +8741,7 @@ "variant_access_point": [ "Ahlbeck (Dreikaiserba\u0308der)" ], - "md5": "80689850a80c788cc503a3ebfd88eed9" + "md5": "58401eac07f95db3d7da9a684cff6060" }, { "authorized_access_point": "Dreikaiserba\u0308der-Bansin", @@ -8730,6 +8762,14 @@ "value": "(DE-588)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 +8788,10 @@ "variant_access_point": [ "Bansin (Dreikaiserba\u0308der)" ], - "md5": "c008d2ce886646d8d6171620481a3bc6" + "md5": "b8b0cb01e0d05433aae69868d34d932f" }, { "authorized_access_point": "Flandern-Route", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8782,6 +8815,12 @@ "label": [ "Internet - https://www.esterbauer.com/db_detail.php?buecher_code=TDF" ] + }, + { + "noteType": "general", + "label": [ + "Radwanderweg durch den Norden Belgiens" + ] } ], "pid": "1161830820", @@ -8789,17 +8828,10 @@ "variant_access_point": [ "Vlaanderen Fietsroute" ], - "md5": "40f9169b27956bdb15c4d521ef7f15ff" + "md5": "fd1ccfe2e90d5e039b60fde144617d55" }, { "authorized_access_point": "Schlossparkradrunde im Allga\u0308u", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8837,17 +8869,10 @@ "variant_access_point": [ "Allga\u0308uer Schlossparkradrunde" ], - "md5": "b851e3c235cb82965ee68eb6a577f15c" + "md5": "239f8f4c63bba1bc9124bf6bab56cffa" }, { "authorized_access_point": "Paul-Gerhardt-Weg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8871,6 +8896,12 @@ "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 +8917,10 @@ "variant_access_point": [ "Paul-Gerhardt-Wanderweg" ], - "md5": "4269169561a74fe1a8b5706dec50494e" + "md5": "8245e53598ec697a23d502a14c02cca1" }, { "authorized_access_point": "Industriestrasse 9 (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - } - ], "identifiedBy": [ { "source": "GND", @@ -8929,7 +8953,7 @@ "authorized_access_point": "Luzern" } ], - "md5": "7161c3af99cd8d02a63769743ade428c" + "md5": "c3c1f56650474fb4836433503a392fd8" }, { "authorized_access_point": "Hohenhameln-Equord", @@ -8950,6 +8974,14 @@ "value": "(DE-588)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 +8992,10 @@ "authorized_access_point": "Equord" } ], - "md5": "f6d67c1de1aab483c1bf84bddd5476b6" + "md5": "98d995e2fde2f3f4f0b37b64a536bf4f" }, { "authorized_access_point": "RheinTerrassenWeg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8995,6 +9020,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,7 +9042,7 @@ "Rheinterrassenweg", "Rhein-Terrassen-Weg" ], - "md5": "df50ecd0e121010fcbf43b99f6aff71a" + "md5": "5236cfafe3127c7c1eabe69fff10ff34" }, { "authorized_access_point": "Kurpie", @@ -9038,6 +9069,12 @@ "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 +9082,10 @@ "variant_access_point": [ "Kurpengau" ], - "md5": "f00b7bb6142c74cefa2e98e408651242" + "md5": "73ff2e1b76ddb13d4ae94a842cdfc47f" }, { "authorized_access_point": "Continental Divide Trail", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9079,6 +9109,12 @@ "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 +9122,10 @@ "variant_access_point": [ "CDT (Fernwanderweg)" ], - "md5": "e1be8232aa6a34cc034d5714444e4af0" + "md5": "0158294508e9829f6c38e1a9a650b2ab" }, { "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 +9143,14 @@ "value": "(DE-588)1142135993" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Beitrag zur Skulpturenausstellung \"Skulptur-Projekte Mu\u0308nster 1987\"" + ] + } + ], "pid": "1142135993", "type": "bf:Place", "broader": [ @@ -9140,17 +9172,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": "a54d921460a664afa57d7529bc9e4571" }, { "authorized_access_point": "Weitwanderweg Nibelungengau", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9174,6 +9199,12 @@ "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 +9217,10 @@ "authorized_access_point": "Emmersdorf an der Donau" } ], - "md5": "23c5b2ab45260986a68a660da8f832af" + "md5": "5a7095678d5c480f5d218dec24c043e2" }, { "authorized_access_point": "3-Flu\u0308sse-Tour", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9220,6 +9244,12 @@ "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 +9259,10 @@ "Drei-Flu\u0308sse-Radweg", "Drei-Flu\u0308sse-Radwanderweg" ], - "md5": "ba6fe76846367a6b2fa849411f5bf694" + "md5": "fc01dd08eb3ead5f63f7405014e1b9b5" }, { "authorized_access_point": "Hansaweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9263,6 +9286,12 @@ "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 +9309,7 @@ "Hansawanderweg", "Hansa Wanderweg" ], - "md5": "06c4bbc01e8205a54d1ca7d2d3a11e2d" + "md5": "2dc40459e74656143f1f68e12694cc98" }, { "authorized_access_point": "Naarn- Au an der Donau", @@ -9341,13 +9370,6 @@ }, { "authorized_access_point": "Obere Angertal (Niederbergisches Land)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wu\u0308stung" - } - ], "identifiedBy": [ { "source": "GND", @@ -9371,6 +9393,12 @@ "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 +9415,7 @@ "Obere Angerbachtal", "Oberes Angertal" ], - "md5": "c7f1cc2c8431c5eee91f3224dc3a89bf" + "md5": "e7fded18bcbc579fa8e01e610bd5e165" }, { "authorized_access_point": "Jas\u030ciu\u0304nai", @@ -9414,21 +9442,20 @@ "label": [ "GeoNames - http://www.geonames.org/598887/jasiunai.html" ] + }, + { + "noteType": "general", + "label": [ + "Stadt in Litauen" + ] } ], "pid": "1135798842", "type": "bf:Place", - "md5": "a6edd4042118eea5fa1057986a8aafbd" + "md5": "2df5922665a006cec3bcb08f9e351060" }, { "authorized_access_point": "Martinskirche (Isingen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -9446,6 +9473,14 @@ "value": "(DE-588)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 +9488,10 @@ "authorized_access_point": "Isingen" } ], - "md5": "4e28ec05f50469b39995518acaf97a69" + "md5": "a0d33d5f807518d46d9a54e70ac76992" }, { "authorized_access_point": "Ignatiusweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wallfahrtsweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9487,6 +9515,12 @@ "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 +9538,7 @@ "Camino Ignaciano", "Inaziotar Bidea" ], - "md5": "635db23f5a6c7a4f718f6bc53920b092" + "md5": "ea3bd10262e38bd202ccaed972b08f2b" }, { "authorized_access_point": "Gampenpass-Gebiet", @@ -9597,18 +9631,6 @@ }, { "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", @@ -9632,6 +9654,12 @@ "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 +9667,10 @@ "variant_access_point": [ "Sakdrisi" ], - "md5": "942877fcae630dccf08a947a9c4d6c77" + "md5": "04bf3725692f944cb47d3bdd8904eb39" }, { "authorized_access_point": "Himmelsstu\u0308rmer Route", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9673,6 +9694,12 @@ "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 +9720,10 @@ "variant_access_point": [ "Himmelsstu\u0308rmer-Route" ], - "md5": "4f07c8343a61394ce8040dab1bd5e277" + "md5": "613c375c3dd85785ace0466df1f67c0d" }, { "authorized_access_point": "Wasserla\u0308ufer Route", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9732,6 +9747,12 @@ "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 +9765,10 @@ "variant_access_point": [ "Wasserla\u0308ufer-Route" ], - "md5": "ffca4da314ab08b39ea845b7cb811bdf" + "md5": "d23f576e437e7d15989f7b6f44a6f785" }, { "authorized_access_point": "Yimeng Shan", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gebirge" - } - ], "identifiedBy": [ { "source": "GND", @@ -9778,6 +9792,12 @@ "label": [ "Wikipedia: - https://de.wikipedia.org/wiki/Yimeng_Shan" ] + }, + { + "noteType": "general", + "label": [ + "Gebirge in der Provinz Shandong" + ] } ], "pid": "1101612258", @@ -9787,17 +9807,10 @@ "Yimeng", "Yimeng-Bergland" ], - "md5": "7014efdc10d8e84efd6e8a09cb103a91" + "md5": "7ea3f2eb2faf36bdcfad1f3e624624e9" }, { "authorized_access_point": "Nahe-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9821,6 +9834,12 @@ "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 +9852,10 @@ "authorized_access_point": "Bingen am Rhein" } ], - "md5": "162fa01d4b584fade40ff5827d70bd18" + "md5": "9dc030be33265443b478d0866988997d" }, { "authorized_access_point": "Enns-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9867,6 +9879,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Ennsradweg" ] + }, + { + "noteType": "general", + "label": [ + "ca. 260 km langer Radwanderweg entlang der Enns" + ] } ], "pid": "1100201831", @@ -9882,22 +9900,10 @@ "variant_access_point": [ "Ennsradweg" ], - "md5": "08b6d7bc801b5a7e81f1640a2fce86d3" + "md5": "e32682fe04a7276a089c9321dd865df0" }, { "authorized_access_point": "Wandertrilogie Allga\u0308u", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9921,6 +9927,12 @@ "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 +9940,10 @@ "variant_access_point": [ "Wandertrilogie-Allga\u0308u" ], - "md5": "8739a066649a05f4879019b55ab980c5" + "md5": "6c7df7a5fef6a2db54145f953cf04f1f" }, { "authorized_access_point": "Wiesenga\u0308nger Route", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9967,6 +9967,12 @@ "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 +9985,7 @@ "variant_access_point": [ "Wiesenga\u0308nger-Route" ], - "md5": "cbd4b918eb3690c311cf83e0b790ab37" + "md5": "fda86dde5824dc23eb29d7f9e5946f17" }, { "authorized_access_point": "Leipzig-Gundorf", @@ -10000,6 +10006,14 @@ "value": "(DE-588)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 +10024,7 @@ "variant_access_point": [ "Gundorf (Leipzig)" ], - "md5": "b56db1509c76b7e1a3073e2b926e4970" + "md5": "98d04cb764bfc69fb8cc5f6a107fa0f2" }, { "authorized_access_point": "Gomo-Gebiet (Nias)", @@ -10037,6 +10051,12 @@ "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 +10069,7 @@ "variant_access_point": [ "Gomo-Gebiet (Nias)" ], - "md5": "e356e91c32f3dcc6bdb09e0fa0f9680a" + "md5": "3d8581ae66ea8887c0a3e5f0de4cb5f8" }, { "authorized_access_point": "Leitmeritz", @@ -10070,6 +10090,14 @@ "value": "(DE-588)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 +10111,11 @@ "Statt Leu\u0308tmaritz", "Litome\u030cr\u030cice (-XX.05.1945)" ], - "md5": "815832e2d7f7c2e9d323554d4e60c8db" + "md5": "30a38a774ae347f88683ccbe4a5618db" }, { "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", @@ -10139,17 +10155,10 @@ "Stuttgarter Fernsehturm (Stuttgart)", "Stuttgarter Fernsehturm (Stuttgart-Degerloch)" ], - "md5": "4379412f22a4dc675ba20359abd42993" + "md5": "5ec92eb62ec3888d62ad5e44d52d0593" }, { "authorized_access_point": "Idyllische Stra\u00dfe", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fremdenverkehrsstra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -10173,6 +10182,12 @@ "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 +10197,10 @@ "authorized_access_point": "Welzheim" } ], - "md5": "50e857a4f051f6087bf31c0d6d19e317" + "md5": "84f49d5301a6383c09959d5f03d42126" }, { "authorized_access_point": "Weg der Helden", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -10216,6 +10224,12 @@ "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 +10247,10 @@ "authorized_access_point": "Duklapass" } ], - "md5": "8f5b9bb73d952314e7f01653e199c681" + "md5": "335dce96c07399c2b716de481e8038a0" }, { "authorized_access_point": "SalzAlpenSteig", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -10267,6 +10274,12 @@ "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 +10296,10 @@ "Salzalpensteig", "Salzalpen-Steig" ], - "md5": "62017e1d04175f673f46e78614aceb69" + "md5": "0bdeab4c6d6355c9a1d50b4eef0fed37" }, { "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 +10317,14 @@ "value": "(DE-588)1082001430" } ], + "note": [ + { + "noteType": "general", + "label": [ + "A\u0308ltestes Kricket-Stadion Indiens" + ] + } + ], "pid": "1082001430", "type": "bf:Place", "broader": [ @@ -10328,22 +10337,10 @@ "Ran\u0303ji St\u0323ed\u0323iy\u0307a\u0304ma (Kalkutta)", "I\u0304d\u0323ena Ga\u0304rd\u0323ensa (Kalkutta)" ], - "md5": "2c045522ceba1f3215f55346bf2980e0" + "md5": "05c8af2b98cbb4144e3be678874f43f9" }, { "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 +10358,14 @@ "value": "(DE-588)1081845031" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Armenanstalt seit 1798; abgebrannt 1885" + ] + } + ], "pid": "1081845031", "type": "bf:Place", "broader": [ @@ -10371,22 +10376,10 @@ "variant_access_point": [ "Ehemalige Burg Tellenburg (Frutigen)" ], - "md5": "89834efd07f15f64d33cdd5f06bd5da0" + "md5": "eca9f673d5129166514cf141edf179bb" }, { "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 +10397,14 @@ "value": "(DE-588)1081844973" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Burg erbaut im 12. Jh.; ab 1874 Schulheim" + ] + } + ], "pid": "1081844973", "type": "bf:Place", "broader": [ @@ -10415,17 +10416,10 @@ "Schulheim Schloss Erlach (Erlach, Kanton Bern)", "Burg Erlach (Erlach, Kanton Bern)" ], - "md5": "dca2cc61ec3a16cbfde88797634ab86e" + "md5": "b1bbe3471fcab4f289e2a32d3b55ddda" }, { "authorized_access_point": "Burgruine Blauenstein (Kleinlu\u0308tzel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burgruine" - } - ], "identifiedBy": [ { "source": "GND", @@ -10443,6 +10437,14 @@ "value": "(DE-588)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 +10455,10 @@ "variant_access_point": [ "Burg Blauenstein (Kleinlu\u0308tzel)" ], - "md5": "8bb0ac13e2523a69cb118b4881edf931" + "md5": "27bc83f14b2821626efb5b1705b00f77" }, { "authorized_access_point": "Schloss Toffen (Toffen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -10481,6 +10476,14 @@ "value": "(DE-588)1081839082" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Erstellt im 13. Jh. als Burg, schrittweiser Umbau in eine Schlossanlage" + ] + } + ], "pid": "1081839082", "type": "bf:Place", "broader": [ @@ -10491,17 +10494,10 @@ "variant_access_point": [ "Burg Toffen (Toffen)" ], - "md5": "cf9872085a5e5124caefce0f62ee14d9" + "md5": "ebcec031a7718fa85f0d3e0039ab6873" }, { "authorized_access_point": "Schloss Belp (Belp)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -10519,6 +10515,14 @@ "value": "(DE-588)1081838779" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Herrschaftssitz bis 1798" + ] + } + ], "pid": "1081838779", "type": "bf:Place", "broader": [ @@ -10526,17 +10530,10 @@ "authorized_access_point": "Belp" } ], - "md5": "b3665957472256c20949614dfc7167a7" + "md5": "a980aafafb01da4768b6e21613887648" }, { "authorized_access_point": "Schloss Wyl (Schlosswil)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -10560,6 +10557,12 @@ "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 +10577,10 @@ "Burg Wyl (Schlosswil)", "Burg Wil (Schlosswil)" ], - "md5": "9738c183d86de8f642ed1952dc25e6a6" + "md5": "6c36e6374ade724c9fecdbac3749ad47" }, { "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 +10598,14 @@ "value": "(DE-588)1081838507" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ab 1866 Armenanstalt; seit 1892 Frauen-Justizvollzugsanstalt" + ] + } + ], "pid": "1081838507", "type": "bf:Place", "broader": [ @@ -10623,22 +10617,10 @@ "Geba\u0308ude der Anstalten Hindelbank (Hindelbank)", "Geba\u0308ude der Zwangsanstalt fu\u0308r Weiber (Hindelbank)" ], - "md5": "9d426d00d439348f45e88833f9c94b7d" + "md5": "4471682b30770d041f0341e9e742acd1" }, { "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 +10638,14 @@ "value": "(DE-588)1081838396" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Seit 1131 nachgewiesen; 1835-1928 Erziehungsanstalt" + ] + } + ], "pid": "1081838396", "type": "bf:Place", "broader": [ @@ -10663,37 +10653,10 @@ "authorized_access_point": "Trachselwald" } ], - "md5": "42b4d675e9bb7c56c46c1dcceb66f7d6" + "md5": "ef9305b2fdd4d9a3b82ea7e0dd54109f" }, { "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 +10674,14 @@ "value": "(DE-588)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 +10689,10 @@ "authorized_access_point": "Krauchthal" } ], - "md5": "1da5533e77dd19b863ecb608d1daf4ff" + "md5": "00f8183a7fae5ad315d1e75cdaa733c5" }, { "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 +10710,14 @@ "value": "(DE-588)1081838167" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Bereits 1175 erwa\u0308hnt" + ] + } + ], "pid": "1081838167", "type": "bf:Place", "broader": [ @@ -10758,17 +10725,10 @@ "authorized_access_point": "Utzigen" } ], - "md5": "8908c407fe8e9721dcc9455d9d9d0771" + "md5": "9f9e00ba4588c8af57a40666f0844280" }, { "authorized_access_point": "Schloss Aarwangen (Aarwangen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -10793,22 +10753,10 @@ "authorized_access_point": "Aarwangen" } ], - "md5": "140433275d87a74d9a17371ce5ad3556" + "md5": "a3ef89c61852016a3a46ca278bdde8c4" }, { "authorized_access_point": "Norbury Park", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Herrenhaus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Park" - } - ], "identifiedBy": [ { "source": "GND", @@ -10832,6 +10780,12 @@ "label": [ "Wikipedia - https://en.wikipedia.org/wiki/Norbury_Park" ] + }, + { + "noteType": "general", + "label": [ + "Herrenhaus und Park in der Na\u0308he von Leatherhead" + ] } ], "pid": "1081330236", @@ -10847,7 +10801,7 @@ "variant_access_point": [ "Norbury Park (Leatherhead)" ], - "md5": "5e5649cc36bb9cf8f70ff3f8a0337ee2" + "md5": "1c37585a2aa09f02f8f147db6ece5b51" }, { "authorized_access_point": "Kurtschau", @@ -10897,13 +10851,6 @@ }, { "authorized_access_point": "Pyramid Harbor", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bucht" - } - ], "identifiedBy": [ { "source": "GND", @@ -10921,6 +10868,14 @@ "value": "(DE-588)1079692916" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Bucht in der Chilkat Inlet, Alaska" + ] + } + ], "pid": "1079692916", "type": "bf:Place", "broader": [ @@ -10928,17 +10883,10 @@ "authorized_access_point": "Alaska" } ], - "md5": "42d9f440bf9fb2cb31f8556be6ec60ce" + "md5": "db599fb9a10adf1dd4e0b9018be2c0c9" }, { "authorized_access_point": "Laurentiuskirche (Schmitten, Hochtaunuskreis)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -10982,17 +10930,10 @@ "Evangelische Pfarrkirche Sankt Laurentius (Schmitten, Hochtaunuskreis)", "Ev. Pfarrkirche St. Laurentius (Schmitten, Hochtaunuskreis)" ], - "md5": "3065477d854243d928d298357ec42a49" + "md5": "5b7bd54b85cbfd6e5de691656625bec2" }, { "authorized_access_point": "Alter Friedhof an Oberhofen (Go\u0308ppingen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Friedhof" - } - ], "identifiedBy": [ { "source": "GND", @@ -11025,22 +10966,10 @@ "authorized_access_point": "Go\u0308ppingen" } ], - "md5": "152a694e1df659d63e6fa8f567d400e2" + "md5": "1d82ff5d1897bdf8a2b9aa0424cf4a7f" }, { "authorized_access_point": "Kocher-Jagst-Trail", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11064,6 +10993,12 @@ "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 +11006,7 @@ "variant_access_point": [ "Kocher-Jagst-Wanderweg" ], - "md5": "47a096e06b4b69da162745c13d3375b8" + "md5": "00794aab7f0d299485faad11e693e354" }, { "authorized_access_point": "Weltersbach (Leichlingen (Rheinland))", @@ -11092,6 +11027,14 @@ "value": "(DE-588)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 +11050,7 @@ "variant_access_point": [ "Weltersbach (Leichlingen)" ], - "md5": "e6adc4e648370dd7945dd0fd687d17fe" + "md5": "a23b2fac88631f327ccaeedca06887c0" }, { "authorized_access_point": "Leichlingen-Weltersbach", @@ -11128,6 +11071,14 @@ "value": "(DE-588)1077053185" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Seit 1856 Stadtteil von Leichlingen" + ] + } + ], "pid": "1077053185", "type": "bf:Place", "related": [ @@ -11138,7 +11089,7 @@ "authorized_access_point": "Weltersbach (Leichlingen (Rheinland))" } ], - "md5": "080d6b895704ab5fd8163e474769ea2e" + "md5": "0f32116c1cca6607f7394801ebaf2da9" }, { "authorized_access_point": "Szreniawa-Gebiet", @@ -11159,22 +11110,23 @@ "value": "(DE-588)107699847X" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gebiet am Fluss Szreniawa" + ] + } + ], "pid": "107699847X", "type": "bf:Place", "variant_access_point": [ "Szreniawa (Fluss)" ], - "md5": "4bf5d1b243da5445f040c528acf386df" + "md5": "62774b3323c873e84dc282e452d14290" }, { "authorized_access_point": "Heidenho\u0308hlen (Goldbach, U\u0308berlingen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Ho\u0308hle" - } - ], "identifiedBy": [ { "source": "GND", @@ -11192,6 +11144,14 @@ "value": "(DE-588)1076027032" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ku\u0308nstlich eingehauene Ga\u0308nge und Kammern in einer Felswand" + ] + } + ], "pid": "1076027032", "type": "bf:Place", "broader": [ @@ -11202,7 +11162,7 @@ "variant_access_point": [ "Heidenlo\u0308cher (Goldbach, U\u0308berlingen)" ], - "md5": "c3b14e34fdf118f9f2d278bc0f119e45" + "md5": "0d388f6f8c419c0245fcd82b5a4185fe" }, { "authorized_access_point": "Dauje\u0307nai", @@ -11229,21 +11189,20 @@ "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": "002adfbc6238a60b48e4f28c412a8bbe" }, { "authorized_access_point": "Sankt Michael (Furth, Landkreis Landshut)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -11267,6 +11226,12 @@ "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 +11250,10 @@ "St. Michael (Furth-Schatzhofen)", "Sankt Michael Schatzhofen" ], - "md5": "f79ce1e86cdca7b9b35f6e62b565c00e" + "md5": "d9acc6faa87141d76a8d689fd91e80f6" }, { "authorized_access_point": "Rumbach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -11319,6 +11277,12 @@ "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 +11290,10 @@ "variant_access_point": [ "Ruhmbach" ], - "md5": "1cfcf2cdf791658ceef72f94f0975fdd" + "md5": "27009ab92ec27df86c4141d679d8bece" }, { "authorized_access_point": "Emscher-Weg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11360,6 +11317,12 @@ "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 +11339,10 @@ "Emscherweg", "Emscherradweg" ], - "md5": "acde3f512809410984328c8dd11e41a6" + "md5": "a75c8dcafdeb1e45a3fdf74ae5545eb5" }, { "authorized_access_point": "Ru\u0308bezahl-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11410,6 +11366,12 @@ "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 +11387,10 @@ "variant_access_point": [ "Ru\u0308bezahlradweg" ], - "md5": "ccc814562e5fdc261ea79e12e193ff5d" + "md5": "213ce20dd15349c31b39ea47ac6eebc5" }, { "authorized_access_point": "Lahntalradweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11459,6 +11414,12 @@ "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 +11436,10 @@ "Lahntal-Radweg", "Lahnradwanderweg" ], - "md5": "d91de69202a7d4cc7b63b5aaffcc87eb" + "md5": "af9a62324ab0af8ac2b415d8e18aa01a" }, { "authorized_access_point": "Schloss Weilburg (Baden, Niedero\u0308sterreich)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wasserspeier" - } - ], "identifiedBy": [ { "source": "GND", @@ -11516,17 +11470,10 @@ "authorized_access_point": "Doblhoffpark (Baden, Niedero\u0308sterreich)" } ], - "md5": "5e7f9d592e2ae049a11501486d2996e7" + "md5": "ae866d0478289d3675e64dd5c6c0aa4e" }, { "authorized_access_point": "Schloss Weilburg (Baden, Niedero\u0308sterreich)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gruppendarstellung" - } - ], "identifiedBy": [ { "source": "GND", @@ -11562,17 +11509,10 @@ "variant_access_point": [ "Schloss Weilburg (Baden, Niedero\u0308sterreich)" ], - "md5": "ef6631d1f9f591da272f49cc2a94e8ec" + "md5": "3bf4102d152c7c9a7f204db8e6161cf3" }, { "authorized_access_point": "Vratne\u0301-Tal", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], "identifiedBy": [ { "source": "GND", @@ -11610,17 +11550,10 @@ "Vratne-Tal", "Vra\u0301tna-Tal" ], - "md5": "1d30bdb584cbf6ed97e886ebff09fdec" + "md5": "7520f249b86f781fe556506d5a433717" }, { "authorized_access_point": "Piz Buin", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11638,6 +11571,14 @@ "value": "(DE-588)1073267830" } ], + "note": [ + { + "noteType": "general", + "label": [ + "drittho\u0308chster Gipfel der Silvrettagruppe und ho\u0308chster Berg Vorarlbergs" + ] + } + ], "pid": "1073267830", "type": "bf:Place", "broader": [ @@ -11645,22 +11586,10 @@ "authorized_access_point": "Silvrettagruppe" } ], - "md5": "33aab366687cc09b65472bdca515cca8" + "md5": "8ee3ebd238f45d9de878238a681e0c44" }, { "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 +11607,14 @@ "value": "(DE-588)107283314X" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Spa\u0308tklassizistisches Geba\u0308ude mit Mittel- und Seitenrisaliten" + ] + } + ], "pid": "107283314X", "type": "bf:Place", "broader": [ @@ -11690,17 +11627,10 @@ "Wasser-Heil-Anstalt Albisbrunn (Hausen am Albis)", "Bad Albisbrunn (Hausen am Albis)" ], - "md5": "b1c8768356723e2571a8dbac244abd63" + "md5": "e2d9254a133065d7b9852daa104bb27a" }, { "authorized_access_point": "Obere-Sann-Tal", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], "identifiedBy": [ { "source": "GND", @@ -11729,17 +11659,10 @@ "Oberes Sanntal", "Obere Sann" ], - "md5": "9330b6fb850b7c02ffcc6638f8142c01" + "md5": "6c9d7c7bf1e8e06984423ae7aae660e6" }, { "authorized_access_point": "Eisenbahnlinie Go\u0308rlitz-Wa\u0142brzych", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Eisenbahnlinie" - } - ], "identifiedBy": [ { "source": "GND", @@ -11778,17 +11701,10 @@ "variant_access_point": [ "Bahnstrecke Zgorzelec\u2013Wa\u0142brzych" ], - "md5": "db26afcd59f0123681b75908a822c207" + "md5": "a5958ccf546796fe94bf9176ceb17779" }, { "authorized_access_point": "Wa\u0308ngi (Aeugst am Albis)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Weiler" - } - ], "identifiedBy": [ { "source": "GND", @@ -11817,7 +11733,7 @@ "Wengi (Aeugst am Albis)", "Wa\u0308ngibad (Aeugst am Albis)" ], - "md5": "99e68228304def26622b681777d676c7" + "md5": "4a55f2d2c43ea96c5e059e3d1ccfe1ea" }, { "authorized_access_point": "Heringsdorf (Kreis Ostholstein)", @@ -11838,6 +11754,14 @@ "value": "(DE-588)1069803782" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Kreis Ostholstein, Amt Oldenburg-Land, slawische Gru\u0308ndung" + ] + } + ], "pid": "1069803782", "type": "bf:Place", "broader": [ @@ -11845,17 +11769,10 @@ "authorized_access_point": "Kreis Ostholstein" } ], - "md5": "115810c590ffff18a06641731466d197" + "md5": "1537270bdacc0804c65a4a62c36f5ec5" }, { "authorized_access_point": "Rheinradweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11879,6 +11796,12 @@ "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 +11817,7 @@ "variant_access_point": [ "Rhein-Radweg" ], - "md5": "d00a4185e1c65aa088c24c26027b7434" + "md5": "8829c37af28156ae28fb727155cce129" }, { "authorized_access_point": "Leipzig-Go\u0308bschelwitz", @@ -11932,13 +11855,6 @@ }, { "authorized_access_point": "Loire-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11962,6 +11878,12 @@ "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 +11899,7 @@ "variant_access_point": [ "La Loire a\u0300 Ve\u0301lo" ], - "md5": "7ea864dda6b14d4acfb40d96da7b5dfb" + "md5": "5e0b05b7c7a092d0e10dcf9055354faa" }, { "authorized_access_point": "Leipzig-Hirschfeld", @@ -12069,6 +11991,14 @@ "value": "(DE-588)1067636757" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1993" + ] + } + ], "pid": "1067636757", "type": "bf:Place", "related": [ @@ -12082,17 +12012,10 @@ "variant_access_point": [ "Hartmannsdorf (Leipzig)" ], - "md5": "aeb1d334c1d595d6d49a19767fb7c40a" + "md5": "ef4be758c98465c2c600b96ec655e405" }, { "authorized_access_point": "Heidschnuckenweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -12116,6 +12039,12 @@ "label": [ "Internet - http://www.heidschnuckenweg.de/" ] + }, + { + "noteType": "general", + "label": [ + "223 km lang, 2012 eingeweiht" + ] } ], "pid": "1067274006", @@ -12128,17 +12057,10 @@ "authorized_access_point": "Celle" } ], - "md5": "371c53476a6d31df34f1f68fe2bed0b5" + "md5": "8603ca513138b88ee75ba0bd6dadcedb" }, { "authorized_access_point": "Kocher-Jagst-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -12166,7 +12088,7 @@ ], "pid": "1067272488", "type": "bf:Place", - "md5": "d3c4984d98dc1cb6d122cc2915e3e3c5" + "md5": "c0f150a6b2098b1f623b91a651facd45" }, { "authorized_access_point": "Leipzig-Kleinpo\u0308sna", @@ -12204,13 +12126,6 @@ }, { "authorized_access_point": "Amt S\u030cakyna", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -12234,6 +12149,12 @@ "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 +12165,7 @@ "Amt Shakinay", "Amt Szakino\u0301w" ], - "md5": "e43b02c02ca77e5d23570857c1c3719c" + "md5": "4556618ef4b0cbf6f6458608b5904138" }, { "authorized_access_point": "Canal du Midi-Gebiet", @@ -12274,13 +12195,6 @@ }, { "authorized_access_point": "Anglesey Coastal Path", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -12304,6 +12218,12 @@ "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 +12231,7 @@ "variant_access_point": [ "Anglesey Ku\u0308stenweg" ], - "md5": "54745323dc905fe0f72e67853fdec838" + "md5": "b86c71acc8668f725d12ada022bec078" }, { "authorized_access_point": "Resende", @@ -12332,22 +12252,23 @@ "value": "(DE-588)1062979583" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Bundesstaat Rio de Janeiro, Brasilien" + ] + } + ], "pid": "1062979583", "type": "bf:Place", "variant_access_point": [ "Rezende" ], - "md5": "110c0fe7e935dcef565c6dfcfd188c87" + "md5": "7b0f7f7201f2924dc67bfac5510b2f87" }, { "authorized_access_point": "Helle (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12379,17 +12300,10 @@ "variant_access_point": [ "Hill (Fluss)" ], - "md5": "8cdb9bb0820f439f03346471daa1de56" + "md5": "8ba60631421bbd964208af097d4d15f9" }, { "authorized_access_point": "Wilde Wei\u00dfe", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12407,22 +12321,23 @@ "value": "(DE-588)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": "2dc985649dbf492c36127bdcf32ecea2" }, { "authorized_access_point": "Bia\u0142ka", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12454,17 +12369,10 @@ "Oles\u030cnice (Fluss)", "Elsnitz" ], - "md5": "2198ff46a2443f4d876874d8b41a8920" + "md5": "628f6a2e3b931a39842eb2378619501b" }, { "authorized_access_point": "Hogsmill River", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12492,17 +12400,10 @@ ], "pid": "1062516109", "type": "bf:Place", - "md5": "cf0b0ff5067d49feeee442526aa50088" + "md5": "517a562ed87f69b8c5858a7383400efa" }, { "authorized_access_point": "Rudawa (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12530,7 +12431,7 @@ ], "pid": "1061004198", "type": "bf:Place", - "md5": "e46edbe9398ad66dfc69eac90bf509a0" + "md5": "a86686754533bf3c880493e0fe5e3de4" }, { "authorized_access_point": "Salami\u0304yah", @@ -12560,13 +12461,6 @@ }, { "authorized_access_point": "Kanzelbach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12594,17 +12488,10 @@ ], "pid": "106081482X", "type": "bf:Place", - "md5": "9a7b65a9ea37f59e8737100913007756" + "md5": "1bf23913bea1a86163263a3797034a79" }, { "authorized_access_point": "Grundbach (Verni\u0301r\u030covice, Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12629,17 +12516,10 @@ "authorized_access_point": "Verni\u0301r\u030covice" } ], - "md5": "0b9d75d7ba390cff2e0efdb8b48ee9e8" + "md5": "a022c1ff031eab50db355f832efa8c22" }, { "authorized_access_point": "Gra\u0308nzbach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12659,17 +12539,10 @@ ], "pid": "1060503166", "type": "bf:Place", - "md5": "63d108bf71364e4a7e15c36ffc89ad59" + "md5": "2451ae0f8cec736cca4dc032ecc7414c" }, { "authorized_access_point": "Malschbach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12689,17 +12562,10 @@ ], "pid": "1060502798", "type": "bf:Place", - "md5": "613f678b592fae0a8544d4178309827d" + "md5": "f09a3e0a08879dd9a6d9a9ba9d635e05" }, { "authorized_access_point": "Dobrowabach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12719,17 +12585,10 @@ ], "pid": "1060502682", "type": "bf:Place", - "md5": "12f3ae04456e98c6a903bb986c0980ff" + "md5": "0ce08a1e0d5cb4c901dd6b250a2e5f4a" }, { "authorized_access_point": "Lauterwasserbach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12749,17 +12608,10 @@ ], "pid": "1060502585", "type": "bf:Place", - "md5": "e69c273c202017a1b7201943b442ade3" + "md5": "a1e86c1b66ac4110e416ead1c0226de8" }, { "authorized_access_point": "Go\u0308stritzbach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12779,17 +12631,10 @@ ], "pid": "1060502372", "type": "bf:Place", - "md5": "6440fafc2271ff803e967a1e80690065" + "md5": "469fd64d634bd0ec16e152746256bdae" }, { "authorized_access_point": "Weinbach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12809,17 +12654,10 @@ ], "pid": "106050216X", "type": "bf:Place", - "md5": "834e0a8f43e89e01ed303bae23dbf1ef" + "md5": "9547503e54da86f639f31a979d2dc884" }, { "authorized_access_point": "Gettenbach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12847,17 +12685,10 @@ ], "pid": "1060501902", "type": "bf:Place", - "md5": "b932ee7a5a24821d9b67fd978e00608b" + "md5": "078a82165a0e76056f36b5c2740983a9" }, { "authorized_access_point": "Wesebach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12881,21 +12712,20 @@ "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": "12ef90d4d2ab2193295a5ead68f02447" }, { "authorized_access_point": "Windener Teich", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12915,17 +12745,10 @@ ], "pid": "1060501457", "type": "bf:Place", - "md5": "675687c82627b5efaa1b31065bd5ffd7" + "md5": "4fca9ca95f50bf849417e7d29dd0f912" }, { "authorized_access_point": "Klingendes Fliess", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12956,17 +12779,10 @@ "variant_access_point": [ "Klingendes Flie\u00df" ], - "md5": "0c483c72150f3504a18762224780e4e1" + "md5": "3d083dd3b2c705125e9eaef2e3918a9e" }, { "authorized_access_point": "Konstanzer Ach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12994,17 +12810,10 @@ ], "pid": "1060419319", "type": "bf:Place", - "md5": "59ed00160f68f429169e9ce3a0d05602" + "md5": "f8f8482a2cd2f9608aef5237221b9ccc" }, { "authorized_access_point": "Babelsberger Park (Potsdam)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landschaftsgarten" - } - ], "identifiedBy": [ { "source": "GND", @@ -13043,17 +12852,10 @@ "variant_access_point": [ "Park Babelsberg (Potsdam)" ], - "md5": "9e7957bb53d9693d763e0aa9fdb255e9" + "md5": "7c5dd90cb1c788e1fe758beac05afae9" }, { "authorized_access_point": "O\u0308lbach (Vreden, Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13086,17 +12888,10 @@ "authorized_access_point": "Vreden" } ], - "md5": "61e5a77ae617498168c6a35f34485346" + "md5": "bb1a87831198b4a12048e5f1de5adfa6" }, { "authorized_access_point": "Linteler See", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baggersee" - } - ], "identifiedBy": [ { "source": "GND", @@ -13120,6 +12915,12 @@ "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 +12933,10 @@ "variant_access_point": [ "Lintler See" ], - "md5": "895405dadb7bfaa01c4fd91917b5fb4f" + "md5": "17d35b541365604207d938b05830e297" }, { "authorized_access_point": "Haus Domnick (Nu\u0308rtingen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - } - ], "identifiedBy": [ { "source": "GND", @@ -13167,6 +12961,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 +12976,10 @@ "authorized_access_point": "Nu\u0308rtingen" } ], - "md5": "8891a3869a40b6966b8a32a54b9e86b2" + "md5": "0cd7657e220a2313bba38abec0bc8f70" }, { "authorized_access_point": "Piwonkerbach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13206,17 +12999,10 @@ ], "pid": "1059448831", "type": "bf:Place", - "md5": "8b06809d6d950edd9e42e411e519afa5" + "md5": "35fad652d8fb17511fc8b0c26f359cb6" }, { "authorized_access_point": "Voorstondse Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13244,17 +13030,10 @@ ], "pid": "1059378396", "type": "bf:Place", - "md5": "453eef270097c7e2015ad0cfdb439ce9" + "md5": "05c26d0db8b6b31f0888b9df462e61c3" }, { "authorized_access_point": "Gravinnebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13282,17 +13061,10 @@ ], "pid": "1059376946", "type": "bf:Place", - "md5": "0235c5e16aa39e56da1cec0c94ce99b9" + "md5": "607c17ee5fc8c855c2040a1e9e9e4615" }, { "authorized_access_point": "Coldenhovensebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13320,7 +13092,7 @@ ], "pid": "1059359022", "type": "bf:Place", - "md5": "c689f9d7b1209236011c88cedad63206" + "md5": "6461f25733399529ec0b652b42b8e5c3" }, { "authorized_access_point": "Nelson (Neuseeland)", @@ -13347,13 +13119,6 @@ }, { "authorized_access_point": "Molenbeek (Mook, Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13378,17 +13143,10 @@ "authorized_access_point": "Mook" } ], - "md5": "2793dcca53846b71c03dd476c3bcbabd" + "md5": "e603d531ac0acd0d0e03ee2bb7ec047a" }, { "authorized_access_point": "Mosbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13416,17 +13174,10 @@ ], "pid": "105914249X", "type": "bf:Place", - "md5": "8987a46beeace5e12c94bdbd52e49aae" + "md5": "c6d9e7fad3941139df8e240ff95d68c3" }, { "authorized_access_point": "Zilverbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13446,17 +13197,10 @@ ], "pid": "1058994743", "type": "bf:Place", - "md5": "ed542ad54f7f55ad201911ee23bb9be9" + "md5": "23a995e3fa63ad6ddd279f940df7e1e8" }, { "authorized_access_point": "Esvelderbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13484,17 +13228,10 @@ ], "pid": "1058986333", "type": "bf:Place", - "md5": "e8ab8fe7ce4a33e8123207a69c5952f0" + "md5": "c5124d64367855d3c9ae2bc58706763e" }, { "authorized_access_point": "Papiermolenbeekje", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13514,17 +13251,10 @@ ], "pid": "1058985299", "type": "bf:Place", - "md5": "b9f5f821704cd7451188edaba2b7ab20" + "md5": "e5fd817b09ee09646fc68aff38324da7" }, { "authorized_access_point": "Barneveldsche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13555,17 +13285,10 @@ "variant_access_point": [ "Grote Barneveldsebeek" ], - "md5": "35158e4504e8e09622671c007c925eea" + "md5": "688542f56b6a420c62bd64048fde3809" }, { "authorized_access_point": "Schoonderbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13585,17 +13308,10 @@ ], "pid": "1058973045", "type": "bf:Place", - "md5": "0793f7aa84293128ba6eb1059522083a" + "md5": "f3c8c492cad61cb421978648bedb7e1c" }, { "authorized_access_point": "Hierdensche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13626,17 +13342,10 @@ "variant_access_point": [ "Hierdense beek" ], - "md5": "2c26ad785431640e8744eb88192b9b4f" + "md5": "3785a670778effb635efbb00070df7af" }, { "authorized_access_point": "Leuvenumse Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13664,17 +13373,10 @@ ], "pid": "105892978X", "type": "bf:Place", - "md5": "32d08f818ad50a0794d60da0e40391c9" + "md5": "6a187527281dbf47e47839a415829b42" }, { "authorized_access_point": "Staverdense beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13697,17 +13399,10 @@ "variant_access_point": [ "Staverdensche Beek" ], - "md5": "e1ef867251735b947bc46df6ff6124d8" + "md5": "7e6eb92e7f36ee2e5f046b8d91ac64b1" }, { "authorized_access_point": "Papiermolenbeek (Doornspijk, Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13735,17 +13430,10 @@ "variant_access_point": [ "Papierbeek" ], - "md5": "b2b0592c5e94eb1fcfebe8102adef073" + "md5": "9b988093886b6fd391c778bbe42f00e4" }, { "authorized_access_point": "Molecatensebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13768,17 +13456,10 @@ "variant_access_point": [ "Molecatense Beek" ], - "md5": "1c893002794f3184b63e2303c3703d47" + "md5": "66500e17c9c2efeabecb35c2bec76c02" }, { "authorized_access_point": "Zuidelijke Horsthoekerbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13801,17 +13482,10 @@ "variant_access_point": [ "Zuidelijke Horsthoeker beek" ], - "md5": "8683aa75c5109965592b8cc0e13ced53" + "md5": "46f4b04c6650f9f9dbfb38b17ec3e166" }, { "authorized_access_point": "Noordelijke Horsthoekerbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13834,17 +13508,10 @@ "variant_access_point": [ "Noordelijke Horsthoeker beek" ], - "md5": "8d45ce50d7a115330178b2def9689920" + "md5": "7dd56faeb4e8a8f0b68133df00bc9f28" }, { "authorized_access_point": "Middelste Heerderbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13864,17 +13531,10 @@ ], "pid": "1058890611", "type": "bf:Place", - "md5": "cc1d7af11533d5f3fc8309bfc4e09102" + "md5": "636de965f0d900dc6e1e2b1abf01a4af" }, { "authorized_access_point": "Heerderbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13894,17 +13554,10 @@ ], "pid": "1058880373", "type": "bf:Place", - "md5": "02984c516dab5dd84122647d0464be76" + "md5": "8d0f0817858f31fcfcf77c7415b568ab" }, { "authorized_access_point": "Dorpse beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13928,17 +13581,10 @@ "Dorpse molenbeek", "Dorpermolenbeek" ], - "md5": "7695052cdfe119e5da15c821cf23abb1" + "md5": "9036feccd4aae17a2a3d33e79afedf4d" }, { "authorized_access_point": "Geelmolensche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13969,17 +13615,10 @@ "variant_access_point": [ "Geelmolense beek" ], - "md5": "c2a547f837f421e58a5cea5b6474456d" + "md5": "2b4a3b5b4dcb97193c65c52eb2a8b102" }, { "authorized_access_point": "Nieuwe Beek (Vaassen, Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14004,17 +13643,10 @@ "authorized_access_point": "Vaassen" } ], - "md5": "50c6113473f0fce95d47937835852fc8" + "md5": "b74d748e8e306f4ecf5e21d0fa582c39" }, { "authorized_access_point": "Hartense Molenbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14037,17 +13669,10 @@ "variant_access_point": [ "Hattemse beek" ], - "md5": "46097f173a31a1f7121d86d59c33225e" + "md5": "1d15434e32546edf1de8058c0f8ff39f" }, { "authorized_access_point": "Groevenbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14067,17 +13692,10 @@ ], "pid": "1058664468", "type": "bf:Place", - "md5": "ee20b9d28546eda0491618a0b8f7fe4a" + "md5": "9f6aa2f6a41f7a802814e5404911b138" }, { "authorized_access_point": "Nijmolense Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14109,17 +13727,10 @@ "Nijmolense beek", "Nijmolenschebeek" ], - "md5": "c08a38f2fbac1a9e4556dff40c1df048" + "md5": "b3a7af9b76b0a424a57901305d17a395" }, { "authorized_access_point": "Smallertse Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14150,17 +13761,10 @@ "variant_access_point": [ "Smallertse beek" ], - "md5": "67a582415ef5adc690350b905f13271c" + "md5": "7375ed3aa9b4f2bba8e4a850979faa2d" }, { "authorized_access_point": "Tongerensche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14191,17 +13795,10 @@ "variant_access_point": [ "Tongerensche beek" ], - "md5": "ef09cf2f2b47c6327a7e5a3f16e1a525" + "md5": "70b3da8e0186ccfd01fc648d35052f9b" }, { "authorized_access_point": "Paalbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14229,17 +13826,10 @@ ], "pid": "105863982X", "type": "bf:Place", - "md5": "b802d7043b1dad0f9e5824d444f35c78" + "md5": "6aec4be0b403bd760f062009076f83dc" }, { "authorized_access_point": "Wittebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14259,17 +13849,10 @@ ], "pid": "1058622773", "type": "bf:Place", - "md5": "2287baf933c2298531e3a9934608bf4b" + "md5": "03413282910c8425cb6010872002b27b" }, { "authorized_access_point": "Strobroeksbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14289,17 +13872,10 @@ ], "pid": "1058616684", "type": "bf:Place", - "md5": "13e9ab2f60b3fec62c9495588c889f36" + "md5": "8b8f5ef4e75556ac19a0f19ffaafb181" }, { "authorized_access_point": "Zilvensebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14319,17 +13895,10 @@ ], "pid": "1058616579", "type": "bf:Place", - "md5": "405d5485e16de0788ea31fcfe7399ac1" + "md5": "2a39319f1a0e3a1646f1a368da125747" }, { "authorized_access_point": "Loenensche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14360,17 +13929,10 @@ "variant_access_point": [ "Loenensebeek" ], - "md5": "a543b1e1fa43ba36ccc56f6c1c2d96a0" + "md5": "921f568eae463e03b7c25f0cc8776ec3" }, { "authorized_access_point": "Beekbergsche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14401,7 +13963,7 @@ "variant_access_point": [ "Beekbergsebeek" ], - "md5": "cbbf43c885ba98b30b0d3f1f3c21b915" + "md5": "005801351bdbb6f265c938fc172cb198" }, { "authorized_access_point": "Leipzig-Gottscheina", @@ -14422,6 +13984,14 @@ "value": "(DE-588)1058463993" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1997; seit 1992 zu Seehausen" + ] + } + ], "pid": "1058463993", "type": "bf:Place", "related": [ @@ -14435,7 +14005,7 @@ "variant_access_point": [ "Gottscheina (Leipzig)" ], - "md5": "05bdafd333de06471955f992f831d266" + "md5": "b70380dc5f6abb18406bda3fa94165a7" }, { "authorized_access_point": "Leipzig-Hohenheida", @@ -14462,6 +14032,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Hohenheida" ] + }, + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1997; 1992 zu Seehausen" + ] } ], "pid": "1058463896", @@ -14477,17 +14053,10 @@ "variant_access_point": [ "Hohenheida (Leipzig)" ], - "md5": "4e65375568fa5301755f4baad34a7165" + "md5": "e719a38bd5c23f4d5897a242c5157a72" }, { "authorized_access_point": "Kayersbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14507,17 +14076,10 @@ ], "pid": "1058460862", "type": "bf:Place", - "md5": "02b72f17e8a5cee3d347bfc8215e99e9" + "md5": "d759644073371b76ccadbb0fcf0b07aa" }, { "authorized_access_point": "Winkewijert", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14537,17 +14099,10 @@ ], "pid": "1058460293", "type": "bf:Place", - "md5": "d813c55ff918a76e4a98a1ccad029050" + "md5": "51916146ccd22c58f6b856258d94b4a2" }, { "authorized_access_point": "Ugchelsebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14567,17 +14122,10 @@ ], "pid": "1058395726", "type": "bf:Place", - "md5": "cef58e35ef4054abc8ec791227cae9f1" + "md5": "113465cef40521705828b527a0b1bbdd" }, { "authorized_access_point": "Tranchot-Obelisk (Aachen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Obelisk" - } - ], "identifiedBy": [ { "source": "GND", @@ -14595,6 +14143,14 @@ "value": "(DE-588)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 +14161,7 @@ "variant_access_point": [ "Tranchot-Obelisk (Lousberg)" ], - "md5": "bbe981bb7771140d17ba3c6ce90c7120" + "md5": "b5a1ecffbf081f14044ac6eaa5d7a6f1" }, { "authorized_access_point": "Gru\u0308nberg-Lumda", @@ -14626,6 +14182,14 @@ "value": "(DE-588)1057942928" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Gru\u0308nberg im Landkreis Gie\u00dfen, Hessen" + ] + } + ], "pid": "1057942928", "type": "bf:Place", "related": [ @@ -14640,17 +14204,10 @@ "Gru\u0308nberg (Landkreis Gie\u00dfen-Lumda)", "Lumda (Gru\u0308nberg-Lumda)" ], - "md5": "1dbcfaa2ab66e64560befe16584e1258" + "md5": "10a88562d35cdb101474ccae4a8f2f15" }, { "authorized_access_point": "Sauberg (Erzgebirge, Berg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -14683,17 +14240,10 @@ "authorized_access_point": "Erzgebirge" } ], - "md5": "32d3255c5df0211fee86a36479ab6e53" + "md5": "565eaae9ad2dc5b87fbc8abae8a97209" }, { "authorized_access_point": "Kosovy\u0301 potok", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14717,6 +14267,12 @@ "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Kosov%C3%BD_potok" ] + }, + { + "noteType": "general", + "label": [ + "am Oberlauf auch Wonschabach, Wunschelbach, Altbach" + ] } ], "pid": "1055068716", @@ -14725,7 +14281,7 @@ "Kosi\u0301 potok", "Amselbach" ], - "md5": "7a7ae4ef9e6df9e143b720a137911131" + "md5": "bed3d4d0339aeeeafb8ef2b9306ea7a9" }, { "authorized_access_point": "Uhlsta\u0308dt-Kirchhasel- Gro\u00dfkochberg", @@ -14752,6 +14308,12 @@ "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 +14326,10 @@ "authorized_access_point": "Gro\u00dfkochberg" } ], - "md5": "143dd7e25f3a6bcedcc41482a5b928ef" + "md5": "e14213626e56d5c25471808e2cc501a4" }, { "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 +14347,41 @@ "value": "(DE-588)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": "60e9d896bc943b59af1760a326957bb3" }, { "authorized_access_point": "Giersdorfer Wasser", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14838,17 +14401,10 @@ ], "pid": "1054611041", "type": "bf:Place", - "md5": "d577618063d1bb4aaa4ae2e50fdc868e" + "md5": "412e59a7e8781d4137b49d574098a1cb" }, { "authorized_access_point": "Fo\u0308hrenbach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14866,19 +14422,20 @@ "value": "(DE-588)1054442959" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Nebenfluss der Nei\u00dfe" + ] + } + ], "pid": "1054442959", "type": "bf:Place", - "md5": "8a77da2c743fd93153863de450343d2d" + "md5": "d6df61f9eb1f36e49b5776f88b924a9e" }, { "authorized_access_point": "Krauthausener Teich", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14901,7 +14458,7 @@ "variant_access_point": [ "Krauthausener Mu\u0308hlenteich" ], - "md5": "da71a4e1f705e79dd6b908b9ee19ed2b" + "md5": "ab0440703494829cb6a166f7410f4fcd" }, { "authorized_access_point": "Brunta\u0301l", @@ -14979,13 +14536,6 @@ }, { "authorized_access_point": "Neulandhalle (Friedrichskoog)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Mehrzweckbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -15025,17 +14575,10 @@ "Neulandhalle (Dieksanderkoog)", "Neulandhalle (Adolf-Hitler-Koog)" ], - "md5": "61a13b5041cc1a270e7822d4c1503d64" + "md5": "2cd1dbef882393f91fa871faffc2ade6" }, { "authorized_access_point": "Schlossgarten Oldenburg (Oldenburg (Oldenburg))", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landschaftsgarten" - } - ], "identifiedBy": [ { "source": "GND", @@ -15059,6 +14602,12 @@ "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 +14620,10 @@ "variant_access_point": [ "Schlosspark Oldenburg (Oldenburg (Oldenburg))" ], - "md5": "e3acfd82d232fd0b3988037cc1faacad" + "md5": "a73cdecd2ade9e23b483c089e4cd26d9" }, { "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", @@ -15117,22 +14659,10 @@ "variant_access_point": [ "Geba\u0308ude des ehemaligen Jesuitenkollegs (Dillingen a.d. Donau)" ], - "md5": "1ca6e8fded7e4a74ab81ccd894b4711f" + "md5": "fda3d459ff41e93be3f9804e8228cd83" }, { "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", @@ -15160,22 +14690,10 @@ "variant_access_point": [ "Dielenhaus Fleischhauerstra\u00dfe 79 (Lu\u0308beck)" ], - "md5": "82c87e1a11121e5dbdc9bcb2f8f008d3" + "md5": "b7d938ab3471a72980419d5837ead5c2" }, { "authorized_access_point": "Fuggerha\u0308user", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kabinett" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Studiolo" - } - ], "identifiedBy": [ { "source": "GND", @@ -15209,17 +14727,10 @@ "Fuggerha\u0308user", "Fuggerha\u0308user Augsburg, Badestuben" ], - "md5": "1db1041a4bdfe68e5de5ce75ef20ad61" + "md5": "b3060cccb0539d610b79e0f26706a061" }, { "authorized_access_point": "Museumsbau des Altonaer Museums (Hamburg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Museumsbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -15259,17 +14770,10 @@ "Museumsbau Museum Altona (Hamburg)", "Museumsgeba\u0308ude des Museums Altona (Hamburg-Altona)" ], - "md5": "0db58bfd3ff1712fb8721bd3201c997b" + "md5": "57b230600e7ef0eb9019c23230d8b009" }, { "authorized_access_point": "Thesmophorion (Rhamnus, Attika)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kultsta\u0308tte" - } - ], "identifiedBy": [ { "source": "GND", @@ -15287,6 +14791,14 @@ "value": "(DE-588)1053460856" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Heiligtum der Demeter, Thesmophorien (Fruchtbarkeitsritus)" + ] + } + ], "pid": "1053460856", "type": "bf:Place", "broader": [ @@ -15294,32 +14806,10 @@ "authorized_access_point": "Rhamnus (Attika)" } ], - "md5": "b99f3c32e15e6da8ba5087144b5d68cd" + "md5": "ddcdfeabdb51b3c19637fd61c1e78bba" }, { "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", @@ -15341,7 +14831,8 @@ { "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 +14846,7 @@ "variant_access_point": [ "Alt Seidenhof (Zu\u0308rich)" ], - "md5": "aa31a5f02d0291e09beb57ce923a3960" + "md5": "805cfc6b3e8a4820c65daa5b70f14156" }, { "authorized_access_point": "Juodupe\u0307", @@ -15376,6 +14867,14 @@ "value": "(DE-588)1044268069" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Landkreis Paneve\u0307z\u030cys in Litauen" + ] + } + ], "pid": "1044268069", "type": "bf:Place", "broader": [ @@ -15387,7 +14886,7 @@ "Juodupe", "Pojedupie" ], - "md5": "94ddda81e4db64ddad6e5542a23d2a4f" + "md5": "dbd07929c932593023f840fe4539410a" }, { "authorized_access_point": "Immichenhain", @@ -15414,6 +14913,12 @@ "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 +14931,7 @@ "variant_access_point": [ "Imchenhain" ], - "md5": "cef9d782117ac26a5b3caffee0f66ae3" + "md5": "fb9e47e74ab7e2ba6233af519bfe85cf" }, { "authorized_access_point": "Taima (Saudi-Arabien)", @@ -15447,6 +14952,14 @@ "value": "(DE-588)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,7 +14968,7 @@ "Teima", "Tayma\u0304\u02be" ], - "md5": "9b7ac1b51f2cf4749a8cc05f0f0a92e8" + "md5": "ec551ae9a62beb6c315f7176990eb2cf" }, { "authorized_access_point": "Friedrichslohra und Amtlohra", @@ -15482,13 +14995,6 @@ }, { "authorized_access_point": "Maria Himmelfahrt (Waldbreitbach)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Basilika" - } - ], "identifiedBy": [ { "source": "GND", @@ -15512,6 +15018,12 @@ "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 +15040,10 @@ "Kirche Maria Himmelfahrt (Waldbreitbach)", "Maria\u0308 Himmelfahrt (Waldbreitbach)" ], - "md5": "5a56aafcbf8e0b995bd8bfa5d8347169" + "md5": "18758aebda21271fd02f98356f8e393a" }, { "authorized_access_point": "Evangelische Kirche Nu\u0308mbrecht (Nu\u0308mbrecht)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -15566,7 +15071,7 @@ "variant_access_point": [ "Ev. Kirche Nu\u0308mbrecht (Nu\u0308mbrecht)" ], - "md5": "4e465c09f06ac6c821e50424269fef0f" + "md5": "075280517ac8efdc3af91e2cc7d303a8" }, { "authorized_access_point": "Gelgaudis\u030ckis", @@ -15593,6 +15098,12 @@ "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 +15113,7 @@ "Gie\u0142gudyszki", "Gel\u02b9gudis\u030cki" ], - "md5": "e9572c2a4f24d4cef7a7f1677fc15a25" + "md5": "bc389120229a8c7fa5b2c35262caa7ee" }, { "authorized_access_point": "Leipzig-Sellerhausen", @@ -15721,13 +15232,6 @@ }, { "authorized_access_point": "Amtsbezirk Upyte\u0307", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amtsbezirk" - } - ], "identifiedBy": [ { "source": "GND", @@ -15751,6 +15255,12 @@ "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 +15276,7 @@ "variant_access_point": [ "Upyte\u0307s seniu\u0304nija" ], - "md5": "39b25e757d39b37b479bea5fdb2bb674" + "md5": "03450be99419b9ef06a34cf70680db56" }, { "authorized_access_point": "Gro\u00df Du\u0308ben", @@ -15787,13 +15297,21 @@ "value": "(DE-588)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": "0b0b95b572437911422c3707d82ab441" }, { "authorized_access_point": "Kalvarija", @@ -15814,6 +15332,14 @@ "value": "(DE-588)7864312-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Su\u0308den Litauens, Bezirk Marijampole\u0307" + ] + } + ], "pid": "1021396656", "type": "bf:Place", "variant_access_point": [ @@ -15825,7 +15351,7 @@ "Kalwaria", "Kalwariya" ], - "md5": "b58270fb5a5e4e099a355bf667595793" + "md5": "05a1d6748fcccd6e065ff7ab5cad48b0" }, { "authorized_access_point": "Alksniupiai", @@ -15846,12 +15372,20 @@ "value": "(DE-588)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": "5ded28061103833a38d10c6e831794f0" }, { "authorized_access_point": "Kaltane\u0307nai", @@ -15872,6 +15406,14 @@ "value": "(DE-588)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 +15422,7 @@ "Ko\u0142tyniany", "Koltynyany" ], - "md5": "a818c8285db798c940b085bf885cb658" + "md5": "2b7a0970a7a78377fad22af6c4b90473" }, { "authorized_access_point": "Karkle\u0307nai", @@ -15901,19 +15443,20 @@ "value": "(DE-588)7861835-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt in Litauen, im Bezirk Kelme\u0307" + ] + } + ], "pid": "1021112518", "type": "bf:Place", - "md5": "10632df39552faf1b9535852170e3b1a" + "md5": "7fdf4d137b35c67db895bccf5fec3f8c" }, { "authorized_access_point": "Amt Marcinkonys", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -15931,23 +15474,24 @@ "value": "(DE-588)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": "14f84a9442f855f0969ec561e134980a" }, { "authorized_access_point": "Wa\u0304di\u0304 al-\u02bfAqi\u0304q", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], "identifiedBy": [ { "source": "GND", @@ -15965,13 +15509,21 @@ "value": "(DE-588)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": "f582a0205f7a34fac059a79121146df1" }, { "authorized_access_point": "Kurs\u030ciai (Kelme)", @@ -15992,19 +15544,20 @@ "value": "(DE-588)7860875-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Dorf im Bezirk Kelme in Litauen" + ] + } + ], "pid": "1020911387", "type": "bf:Place", - "md5": "142f50fa220f2209c6ccb198c6830150" + "md5": "f7ef1d9e49fa121ca648a1b786376d40" }, { "authorized_access_point": "Kreis Radvilis\u030ckis", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -16022,13 +15575,21 @@ "value": "(DE-588)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": "865700cc2296def43e097f95abc3faef" }, { "authorized_access_point": "Ke\u031cstaic\u030ciai", @@ -16049,19 +15610,20 @@ "value": "(DE-588)7860862-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Dorf im Bezirk Tels\u030ciai in Litauen" + ] + } + ], "pid": "1020911026", "type": "bf:Place", - "md5": "bd1e906c23c587d8c62475d35a01c55a" + "md5": "bc2b85ed25a9196f1e9a2f3abf193844" }, { "authorized_access_point": "Kreis Jonava", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -16079,23 +15641,24 @@ "value": "(DE-588)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": "0d6d06ba6cb65e96a11dca3880b133f4" }, { "authorized_access_point": "Kreis Vare\u0307na", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -16113,13 +15676,21 @@ "value": "(DE-588)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": "c8db3c368a4990c2dd4c1d632fbd0f7f" }, { "authorized_access_point": "Ignalina", @@ -16140,9 +15711,17 @@ "value": "(DE-588)7860430-8" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im NO Litauens" + ] + } + ], "pid": "1020865318", "type": "bf:Place", - "md5": "60022fdb51b9b3e0e9c80d18750135a3" + "md5": "57191ab308c7014b6e56dd21d7479ea1" }, { "authorized_access_point": "Ignalina", @@ -16163,23 +15742,24 @@ "value": "(DE-588)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": "a1e1c15b9f8e96c52224eb36a8209423" }, { "authorized_access_point": "Schloss Werenwag", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -16215,7 +15795,7 @@ "variant_access_point": [ "Beuron-Schloss Werenwag" ], - "md5": "5b575e68a220d9a559a2fe8086370f6d" + "md5": "949e72f12baaeba29b4fd894b750c8d0" }, { "authorized_access_point": "Henningen (Salzwedel)", @@ -16259,6 +15839,14 @@ "value": "(DE-588)7737805-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "seit 1974 Ortsteil von Do\u0308bern" + ] + } + ], "pid": "1010438603", "type": "bf:Place", "variant_access_point": [ @@ -16266,16 +15854,10 @@ "Dubrawka", "Do\u0308bern-Eichwege" ], - "md5": "7a616dcbbb417028653ccb2cb42be626" + "md5": "ae0e374ea5fb98478778d1e552b8dd88" }, { "authorized_access_point": "Diho\u0304k", - "closeMatch": [ - { - "authorized_access_point": "\u062f\u06be\u06c6\u06a9", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -16293,6 +15875,14 @@ "value": "(DE-588)7736522-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Irak" + ] + } + ], "pid": "1010249460", "type": "bf:Place", "variant_access_point": [ @@ -16306,7 +15896,7 @@ "Dohuk", "\u062f\u0647\u0648\u0643" ], - "md5": "55de9f91ed6b13ef41581a43f57a5d30" + "md5": "bb523505ed9e61ae55a6d640e699e1b7" }, { "authorized_access_point": "Hille- Holzhausen II", @@ -16333,6 +15923,12 @@ "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 +15941,7 @@ "authorized_access_point": "Holzhausen II" } ], - "md5": "14af0bd095f98c9bad0d7def3f0b1016" + "md5": "493f6d60221a8e72a0979a86a71156f5" }, { "authorized_access_point": "Heringsdorf-Siggen", @@ -16403,6 +15999,12 @@ "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 +16020,7 @@ "variant_access_point": [ "Breitenfeld (Leipzig)" ], - "md5": "2ba5c16576d425cb752535b07a3099cd" + "md5": "edb04a87a7f22afaa34d745d25210768" }, { "authorized_access_point": "Leipziger Creis", @@ -16513,6 +16115,14 @@ "value": "(DE-588)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 +16136,7 @@ "variant_access_point": [ "Bo\u0308hlitz-Ehrenberg (Leipzig)" ], - "md5": "656a3d9bc3267e0deba1659c81203b3a" + "md5": "78e0693dd1c6910444876ba1a0ee106b" }, { "authorized_access_point": "Kotzenau", @@ -16553,6 +16163,12 @@ "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 +16178,7 @@ "authorized_access_point": "Chociano\u0301w" } ], - "md5": "82ba8667e908fb3df3e08d5711fb748b" + "md5": "0c110aa67fcf8e474b6c0da6f3556aa2" }, { "authorized_access_point": "Gru\u0308nberg-Queckborn", @@ -16583,6 +16199,14 @@ "value": "(DE-588)16014739-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Gru\u0308nberg im Landkreis Gie\u00dfen, Hessen" + ] + } + ], "pid": "995191506", "type": "bf:Place", "related": [ @@ -16597,7 +16221,7 @@ "Gru\u0308nberg (Landkreis Gie\u00dfen-Queckborn)", "Queckborn (Gru\u0308nberg-Queckborn)" ], - "md5": "2b74334de1abd1fb9f101e69642194d4" + "md5": "655c8ff896c6b365c260de33a9bd91c6" }, { "authorized_access_point": "Leipzig-Zuckelhausen", @@ -16624,6 +16248,12 @@ "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 +16269,7 @@ "variant_access_point": [ "Zuckelhausen (Leipzig)" ], - "md5": "44f916c5ccb5f36de416610cdd977b43" + "md5": "1c451521ab842cbdb646182a092915ae" }, { "authorized_access_point": "Daubitz", @@ -16660,23 +16290,24 @@ "value": "(DE-588)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": "29d50dfe03d03ea9d02af20bca14990d" }, { "authorized_access_point": "Sankt Maria zu den Stufen (Ko\u0308ln)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Basilika" - } - ], "identifiedBy": [ { "source": "GND", @@ -16700,6 +16331,12 @@ "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 +16354,10 @@ "St. Mariengraden (Ko\u0308ln)", "St. Maria ad gradus (Ko\u0308ln) (Ko\u0308ln)" ], - "md5": "d7038f26d816eec6706d9d6921f067d6" + "md5": "ee192807059ae85e18c486c9a782e211" }, { "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 +16375,14 @@ "value": "(DE-588)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 +16390,10 @@ "authorized_access_point": "Heringsdorf (Seebad)" } ], - "md5": "a516f74101379d425c3e289d1fc9c063" + "md5": "6b69d0b89216306774c18750ed3605d6" }, { "authorized_access_point": "Schloss Sommerswalde (Schwante)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -16791,6 +16417,12 @@ "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 +16432,7 @@ "authorized_access_point": "Schwante" } ], - "md5": "3ef4e3eebd0a0c17c53a5458c9a49c4d" + "md5": "b57aeb895c999c2c933ea210128f6694" }, { "authorized_access_point": "Leipzig-Su\u0308dost", @@ -16827,13 +16459,6 @@ }, { "authorized_access_point": "Politischer Bezirk Judenburg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bezirk" - } - ], "identifiedBy": [ { "source": "GND", @@ -16857,7 +16482,7 @@ "Bezirk Judenburg", "Judenburg (Politischer Bezirk)" ], - "md5": "f9c413f48ca1b0aedd91d5e66dcd6839" + "md5": "00ef3fe6bcad05d2e70375eb3c07df19" }, { "authorized_access_point": "Echichens", @@ -16878,9 +16503,17 @@ "value": "(DE-588)7522697-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Bezirk Morges, Kanton Waadt" + ] + } + ], "pid": "979131529", "type": "bf:Place", - "md5": "2e601a7363e5cd6f4cdc9b1df7bf177e" + "md5": "cdf433f3f88d11f1deb784b4d534efc6" }, { "authorized_access_point": "Herzogtum Preu\u00dfen", @@ -17017,6 +16650,12 @@ "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,7 +16679,7 @@ "variant_access_point": [ "Gemeinde Dreikaiserba\u0308der" ], - "md5": "87b226aa58c39ae7657f17e3ffe2a9d8" + "md5": "d7f8a1c410fd7a5ed2425d40f8adba6a" }, { "authorized_access_point": "Amt Haderslev", @@ -17233,6 +16872,12 @@ "label": [ "Homepage - http://www.kirchstetten.at" ] + }, + { + "noteType": "general", + "label": [ + "Gleichnamige Katastralgemeinde. - Postleitzahl: 3062, 3061" + ] } ], "pid": "972651438", @@ -17246,7 +16891,7 @@ "Marktgemeinde Kirchstetten", "Dichtergemeinde Kirchstetten" ], - "md5": "e13ce9beccb1e86cbb58c8f5db6dd832" + "md5": "f72104139ebd36e7b1252f309b5769f9" }, { "authorized_access_point": "Berg (Hainburg an der Donau)", @@ -17283,18 +16928,6 @@ }, { "authorized_access_point": "Melanchthonkirche (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -17333,17 +16966,10 @@ "variant_access_point": [ "Melanchthonkirche (Bochum-Wiemelhausen)" ], - "md5": "08f6593a2cd14ded611afcbd5811ee35" + "md5": "0b09f83e847356713d89a058b05b065d" }, { "authorized_access_point": "Bezirk Bern", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bezirk" - } - ], "identifiedBy": [ { "source": "GND", @@ -17361,6 +16987,14 @@ "value": "(DE-588)4781902-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Bezirk im Kanton Bern" + ] + } + ], "pid": "971359709", "type": "bf:Place", "variant_access_point": [ @@ -17368,7 +17002,7 @@ "Amtsbezirk Bern", "Bern (Bezirk)" ], - "md5": "788094b3dd33d33a9126b236c624f171" + "md5": "c0543211ef3f608c393151a3181f9fef" }, { "authorized_access_point": "Anjouan (Insel)", @@ -17417,6 +17051,14 @@ "value": "(DE-588)4764706-1" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Norden Saudi-Arabiens" + ] + } + ], "pid": "969971028", "type": "bf:Place", "variant_access_point": [ @@ -17424,7 +17066,7 @@ "Ska\u0304ka", "Saka\u0304ka" ], - "md5": "5cca7318833960374151fd49506f67fe" + "md5": "e3c627d8c5fc88b209d8d487f4a89f1c" }, { "authorized_access_point": "Ushayqir", @@ -17445,12 +17087,20 @@ "value": "(DE-588)4758499-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt in Saudi-Arabien" + ] + } + ], "pid": "969491131", "type": "bf:Place", "variant_access_point": [ "Us\u030caiqir" ], - "md5": "013c2ed04e336f224c6844f2fcac29d3" + "md5": "c9dce63e511d55b1de06ac1640151d6b" }, { "authorized_access_point": "Sayha\u0304t", @@ -17471,13 +17121,21 @@ "value": "(DE-588)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": "d81f3f02168002aaef56f9e6b16a8a1a" }, { "authorized_access_point": "O\u0308tigheim", @@ -17505,6 +17163,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 +17176,10 @@ "variant_access_point": [ "Gemeinde O\u0308tigheim" ], - "md5": "507e14607c699f2944cfc2d4006baff2" + "md5": "b6e17a99aaf6a1a137acece4ac0ddd7c" }, { "authorized_access_point": "Goethewanderweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -17546,6 +17203,12 @@ "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 +17224,10 @@ "variant_access_point": [ "Goethe-Wanderweg" ], - "md5": "b4485ccb6e2735211d94937f1cbfdc95" + "md5": "47b60b41c6a805d8a3cc861e49456338" }, { "authorized_access_point": "Nationalpark Eifel", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Nationalpark" - } - ], "identifiedBy": [ { "source": "GND", @@ -17595,6 +17251,12 @@ "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 +17266,7 @@ "authorized_access_point": "Nordrhein-Westfalen" } ], - "md5": "05086ca35923ecc619fcf472e848606d" + "md5": "e0e625a215d246f155ea903d9c1d20ad" }, { "authorized_access_point": "Leipzig-Miltitz", @@ -17625,6 +17287,14 @@ "value": "(DE-588)4725054-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1.1.1999" + ] + } + ], "pid": "967160480", "type": "bf:Place", "related": [ @@ -17638,7 +17308,7 @@ "variant_access_point": [ "Miltitz (Leipzig)" ], - "md5": "1f9f5fb2fe8a0f43e4ed71e742275763" + "md5": "90017c34705fff6f52effde2635cabd8" }, { "authorized_access_point": "Leipzig- Innere Westvorstadt", @@ -17659,6 +17329,14 @@ "value": "(DE-588)4710588-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Wohn-, Ku\u0308nstler- und Kneipenviertel an Westrand des Stadtzentrums angrenzend" + ] + } + ], "pid": "96577578X", "type": "bf:Place", "related": [ @@ -17671,7 +17349,7 @@ "Leipzig-Kolonnadenviertel", "Kolonnadenviertel (Leipzig)" ], - "md5": "5be01ab8c4afd9919019b2764b8fa55e" + "md5": "c51842f2f0ef445e7d6569b15d819fe0" }, { "authorized_access_point": "Leipzig-Abtnaundorf", @@ -17692,6 +17370,14 @@ "value": "(DE-588)4710572-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil im Nordosten Leipzigs seit 1930" + ] + } + ], "pid": "965775429", "type": "bf:Place", "related": [ @@ -17705,7 +17391,7 @@ "variant_access_point": [ "Abtnaundorf (Leipzig)" ], - "md5": "0d81132e7928698b5ac5852971f2a3d6" + "md5": "aadc9e5a432f02e1f9f0c72c339f8852" }, { "authorized_access_point": "Leipzig-Wahren", @@ -17760,6 +17446,14 @@ "value": "(DE-588)4710355-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteile von Leipzig 18.3.1992 administrativ zusammengelegt" + ] + } + ], "pid": "965759059", "type": "bf:Place", "related": [ @@ -17773,7 +17467,7 @@ "variant_access_point": [ "Neustadt-Neuscho\u0308nefeld (Leipzig)" ], - "md5": "0d6704d15962397a055fb49614a00304" + "md5": "59df1a89b8b7b2aee456e9b68a4d855c" }, { "authorized_access_point": "Leipzig-Volkmarsdorf", @@ -17794,6 +17488,14 @@ "value": "(DE-588)4710342-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil seit 1890" + ] + } + ], "pid": "96575877X", "type": "bf:Place", "related": [ @@ -17807,7 +17509,7 @@ "variant_access_point": [ "Volkmarsdorf (Leipzig)" ], - "md5": "9b825ad67bf6db7f4637ef0e00c170a1" + "md5": "f93efce86c5d24e4af84b2428cbe81ec" }, { "authorized_access_point": "Leipzig- A\u0308u\u00dfere Su\u0308dvorstadt", @@ -17828,6 +17530,14 @@ "value": "(DE-588)4708270-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gebiet zwischen Innerer Su\u0308dvorstadt und Connewitz" + ] + } + ], "pid": "96563860X", "type": "bf:Place", "related": [ @@ -17838,7 +17548,7 @@ "variant_access_point": [ "A\u0308u\u00dfere Su\u0308dvorstadt (Leipzig)" ], - "md5": "1ef96084966b91e680fe7828702a0ab4" + "md5": "67ac16a8a20fc2b8a5fd4a9eb5a07c9c" }, { "authorized_access_point": "Les Ponts-de-Martel", @@ -17859,6 +17569,14 @@ "value": "(DE-588)4696241-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Kt. Neuenburg" + ] + } + ], "pid": "964991608", "type": "bf:Place", "variant_access_point": [ @@ -17866,28 +17584,10 @@ "LesPonts-de-Martel", "Ponts-de-Martel" ], - "md5": "aa5855e051d30f17856469f28a682594" + "md5": "7b65f271945248c4f9148525746c9cfc" }, { "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 +17605,32 @@ "value": "(DE-588)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 +17648,7 @@ "Vejle Amt", "Vejle Amtskommune" ], - "md5": "37edbcb66cfd8db91dd3df6731d0bfb5" + "md5": "02a75ddfa14fff5163f86010a94476a5" }, { "authorized_access_point": "Leipzig-Anger-Crottendorf", @@ -18008,6 +17734,14 @@ "value": "(DE-588)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 +17752,10 @@ "variant_access_point": [ "Hofen (Aalen-Hofen)" ], - "md5": "aae203a3b78f259bc3ce22838b2f7970" + "md5": "999b2fbe3cfbe3ea33eae415e3758278" }, { "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", @@ -18062,6 +17779,12 @@ "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 +17800,7 @@ "Evangelische Jakobus-Kirche (Breckerfeld)", "Ev. Kirche (Breckerfeld)" ], - "md5": "f6d453d51f32b1e66905809f80dd4f1b" + "md5": "5f0ca35b11291269ae3f02b0da472a31" }, { "authorized_access_point": "Scheidegg-Scheffau", @@ -18112,13 +17835,6 @@ }, { "authorized_access_point": "Schloss Ko\u0308niz (Ko\u0308niz)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -18143,22 +17859,10 @@ "authorized_access_point": "Ko\u0308niz" } ], - "md5": "467bc6510b8fcaec3b5e6e3536b1a0e9" + "md5": "6c4c1ac9728d76c9b645f19ecd538b2a" }, { "authorized_access_point": "Manasija", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Klosteranlage" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Befestigung" - } - ], "identifiedBy": [ { "source": "GND", @@ -18182,6 +17886,12 @@ "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 +17909,7 @@ "Klosteranlage Manasija", "Klosteranlage Resava" ], - "md5": "9a6e166c840fd5e64d2efb6e6e9479ca" + "md5": "9d39e92a7a1f7779eb201b6752bc5382" }, { "authorized_access_point": "Leipzig-Plau\u00dfig", @@ -18260,6 +17970,12 @@ "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 +17991,7 @@ "variant_access_point": [ "Lindenthal (Leipzig)" ], - "md5": "681ecbfe5d99018e56bcd804b6dfe3bf" + "md5": "dd0be60184c22bcd8b4392f173b29821" }, { "authorized_access_point": "Leipzig-Wiederitzsch", @@ -18336,6 +18052,12 @@ "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 +18067,7 @@ "Seidenberg O.-L", "Zawidow" ], - "md5": "b7b5d7cb146257ea632803c2e279238f" + "md5": "c8659f929f4429b74a648f5eeeb4eced" }, { "authorized_access_point": "Leipzig-Seehausen", @@ -18366,6 +18088,14 @@ "value": "(DE-588)4624158-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil seit 1.7.1997" + ] + } + ], "pid": "960863664", "type": "bf:Place", "related": [ @@ -18379,7 +18109,7 @@ "variant_access_point": [ "Seehausen (Leipzig)" ], - "md5": "b03ee9bf840a24176b6c2855c9b8878c" + "md5": "19afa0bcd5f8911aebd9ff14277abb5a" }, { "authorized_access_point": "Leipzig-Marienbrunn", @@ -18431,6 +18161,14 @@ "value": "(DE-588)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 +18177,7 @@ "Bitterfeld-Leipzig-Halle-Gebiet", "Chemiedreieck" ], - "md5": "182815cd442767d0b893a7483da9e197" + "md5": "17ca9d6a8c22a7815a12ecc00aae34b8" }, { "authorized_access_point": "Leipzig-Burghausen", @@ -18460,6 +18198,14 @@ "value": "(DE-588)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 +18219,7 @@ "variant_access_point": [ "Burghausen (Leipzig)" ], - "md5": "523bf5fc8538a12f15f4660d7de19e47" + "md5": "6dab26620c16d7ad8a30b7b0fea8f043" }, { "authorized_access_point": "Finnentrop-Ostentrop", @@ -18500,6 +18246,12 @@ "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 +18264,10 @@ "authorized_access_point": "Ostentrop" } ], - "md5": "0e8d2b039230e5c7d7562331a10202f6" + "md5": "8d0d85d6649a1d5b05cb7e0604887e9b" }, { "authorized_access_point": "Kaunas (Gouvernement)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gouvernement" - } - ], "identifiedBy": [ { "source": "GND", @@ -18547,7 +18292,7 @@ "Gouvernement Kovno", "Gouvernement Kaunas" ], - "md5": "379f36e73f856df0785bc3c3352d15a9" + "md5": "cc4d63de2425c2b86bb5c2f8162cd5b6" }, { "authorized_access_point": "Leipzig-Plau\u00dfig-Portitz", @@ -18568,6 +18313,14 @@ "value": "(DE-588)4605550-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteile seit 1995" + ] + } + ], "pid": "959788719", "type": "bf:Place", "related": [ @@ -18584,7 +18337,7 @@ "variant_access_point": [ "Plau\u00dfig-Portitz (Leipzig)" ], - "md5": "8e1f15443b2f14cbbc2660f139d6ff05" + "md5": "f646ce938b90395fe91ad6e503252ee5" }, { "authorized_access_point": "Monroe, Wis.", @@ -18619,24 +18372,6 @@ }, { "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 +18389,40 @@ "value": "(DE-588)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": "1caaf50b3c05bb0c1fca9da27aa7ccd9" }, { "authorized_access_point": "Bedum", @@ -18705,13 +18467,6 @@ }, { "authorized_access_point": "Schloss Schwante", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -18735,6 +18490,12 @@ "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 +18505,10 @@ "authorized_access_point": "Schwante" } ], - "md5": "3548878b688326e370789ca34ce0b8d4" + "md5": "ad5baf79a8ea10c80311929c8777eba9" }, { "authorized_access_point": "Anjouan (Insel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Insel" - } - ], "identifiedBy": [ { "source": "GND", @@ -18772,6 +18526,14 @@ "value": "(DE-588)4566491-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Insel der Komoren" + ] + } + ], "pid": "957753551", "type": "bf:Place", "broader": [ @@ -18783,7 +18545,7 @@ "Nwami", "Ndzouani" ], - "md5": "320da56e02e0c900d7295f1980e8bb8b" + "md5": "6f9a69e76023d6aebb4645de234369b5" }, { "authorized_access_point": "Wabar", @@ -18804,12 +18566,20 @@ "value": "(DE-588)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": "2072432d818ee3aa03fb40a8da0383d8" }, { "authorized_access_point": "Leipzig-Mockau", @@ -18830,6 +18600,14 @@ "value": "(DE-588)4561624-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil im Nordosten Leipzigs seit 1915" + ] + } + ], "pid": "957565445", "type": "bf:Place", "related": [ @@ -18843,7 +18621,7 @@ "variant_access_point": [ "Mockau (Leipzig)" ], - "md5": "23f2de3394c0d58856b0e17593bef545" + "md5": "9904afabf53c82e4eee914596c71b899" }, { "authorized_access_point": "Drebkau", @@ -18864,6 +18642,14 @@ "value": "(DE-588)4555925-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Kreis Spree-Nei\u00dfe, Brandenburg" + ] + } + ], "pid": "957211430", "type": "bf:Place", "variant_access_point": [ @@ -18872,7 +18658,7 @@ "Bz\u0301ezamtowa Gmejna Me\u030csto Drjowk", "Drepkau" ], - "md5": "217e404a9b653db388d311ca5b4c1abd" + "md5": "b1d01d5be45fc1e5777af38c3dc61fa1" }, { "authorized_access_point": "Leipzig-Engelsdorf", @@ -18969,6 +18755,14 @@ "value": "(DE-588)5312244-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1.1.1999" + ] + } + ], "pid": "956443613", "type": "bf:Place", "related": [ @@ -18982,7 +18776,7 @@ "variant_access_point": [ "Liebertwolkwitz (Leipzig)" ], - "md5": "5b6312b235898c118b46940bd9d0b07a" + "md5": "56a9cba7ab58d2386f2cc16441ad4d58" }, { "authorized_access_point": "Leipzig-Mockau-Ost", @@ -19041,11 +18835,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": "edf33615c708c13eed22883b0e03916a" }, { "authorized_access_point": "Leipzig-Althen", @@ -19100,6 +18900,14 @@ "value": "(DE-588)4527974-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1890" + ] + } + ], "pid": "955498058", "type": "bf:Place", "related": [ @@ -19113,7 +18921,7 @@ "variant_access_point": [ "Thonberg (Leipzig)" ], - "md5": "b0758a74eaaa88dc211c464b598ffe42" + "md5": "ee3e590872d23047b91ac9472e7acdfb" }, { "authorized_access_point": "Rabenstein an der Pielach", @@ -19140,6 +18948,12 @@ "label": [ "Homepage - http://www.rabenstein.gv.at" ] + }, + { + "noteType": "general", + "label": [ + "Marktgemeinde im Bezirk Sankt Po\u0308lten-Land, Niedero\u0308sterreich" + ] } ], "pid": "955495768", @@ -19148,7 +18962,7 @@ "Rabenstein (Pielach)", "Marktgemeinde Rabenstein an der Pielach" ], - "md5": "ea61d2e9f6cf30f07f5bad3cf209a678" + "md5": "b36e947f483ea18e756d46564211f884" }, { "authorized_access_point": "Gru\u0308nberg-Lehnheim", @@ -19169,6 +18983,14 @@ "value": "(DE-588)3035028-1" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Gru\u0308nberg im Landkreis Gie\u00dfen, Hessen" + ] + } + ], "pid": "955090547", "type": "bf:Place", "related": [ @@ -19183,7 +19005,7 @@ "Gru\u0308nberg (Landkreis Gie\u00dfen-Lehnheim)", "Lehnheim (Gru\u0308nberg-Lehnheim)" ], - "md5": "5e31179f2829c92da20a444b2796a446" + "md5": "af65fe4b68cf33bc3b990211f24039bb" }, { "authorized_access_point": "Hochkirch-Pommritz", @@ -19272,6 +19094,14 @@ "value": "(DE-588)4508222-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Politische Gemeinde im Kanton Neuenburg" + ] + } + ], "pid": "954064593", "type": "bf:Place", "broader": [ @@ -19279,17 +19109,10 @@ "authorized_access_point": "Kanton Neuenburg" } ], - "md5": "a76ef4c4feb750fe9ed1881ae5b5a84f" + "md5": "918e744abd10c5a6792162ed7df20507" }, { "authorized_access_point": "Kirche im Walde (Heringsdorf, Seebad)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Saalkirche" - } - ], "identifiedBy": [ { "source": "GND", @@ -19307,6 +19130,14 @@ "value": "(DE-588)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 +19148,7 @@ "variant_access_point": [ "Evangelische Kirche im Walde (Heringsdorf, Seebad)" ], - "md5": "86b41b6906013dbd5250fbb311ed31b2" + "md5": "b4da73575bab0ca607ff749e8bd7adc6" }, { "authorized_access_point": "Leipzig-Reudnitz", @@ -19355,13 +19186,6 @@ }, { "authorized_access_point": "Amt Fyn", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -19385,6 +19209,12 @@ "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 +19240,7 @@ "Fyns Amtskommune", "Fu\u0308nen (Amt)" ], - "md5": "06e969545e95de9295c93457387d512a" + "md5": "eadb2e63f16da5f88eec61a55625f6e2" }, { "authorized_access_point": "Leipzig-Thekla", @@ -19431,6 +19261,14 @@ "value": "(DE-588)4473338-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1930" + ] + } + ], "pid": "951677268", "type": "bf:Place", "related": [ @@ -19444,7 +19282,7 @@ "variant_access_point": [ "Thekla (Leipzig)" ], - "md5": "670b201de7852d5f504e87ffa9428a7f" + "md5": "9982aad101027739b728dc6377f5b25e" }, { "authorized_access_point": "Saudi-Arabien", @@ -19541,24 +19379,6 @@ }, { "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", @@ -19576,6 +19396,24 @@ "value": "(DE-588)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", "type": "bf:Place", "broader": [ @@ -19587,7 +19425,7 @@ "Oberes Altmu\u0308hltal", "Obere Altmu\u0308hl" ], - "md5": "cb892bbe68dc5e88b54a07d10b769eb4" + "md5": "024b71fdce49fe9b978413814b4a9f77" }, { "authorized_access_point": "Campos do Jorda\u0303o", @@ -19634,6 +19472,14 @@ "value": "(DE-588)4456228-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gebiet um Altes Messegela\u0308nde und Bayrischen Bahnhof" + ] + } + ], "pid": "950556149", "type": "bf:Place", "related": [ @@ -19644,7 +19490,7 @@ "variant_access_point": [ "A\u0308u\u00dfere Su\u0308dostvorstadt (Leipzig)" ], - "md5": "0281915eb7f4008de9a8ddb7f35a8a6c" + "md5": "f86254f24480c14c68faac35c58e9cdc" }, { "authorized_access_point": "Leipzig-Scho\u0308nau", @@ -19665,6 +19511,14 @@ "value": "(DE-588)4452671-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1930" + ] + } + ], "pid": "950356190", "type": "bf:Place", "related": [ @@ -19678,7 +19532,7 @@ "variant_access_point": [ "Scho\u0308nau (Leipzig)" ], - "md5": "0d4090de60180bca3e809ced43002740" + "md5": "e178faef3929d2a136712e2901f08704" }, { "authorized_access_point": "Leipzig-Lausen", @@ -19778,6 +19632,14 @@ "value": "(DE-588)4452486-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1922" + ] + } + ], "pid": "950338338", "type": "bf:Place", "related": [ @@ -19794,7 +19656,7 @@ "variant_access_point": [ "Windorf (Leipzig)" ], - "md5": "0d0e44b2fae4be63117d61a1b9e8de06" + "md5": "96eff51c65a283680924b4edc21fb5c3" }, { "authorized_access_point": "Leipzig-Knautkleeberg", @@ -19815,6 +19677,14 @@ "value": "(DE-588)4452484-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1930" + ] + } + ], "pid": "95033829X", "type": "bf:Place", "related": [ @@ -19828,7 +19698,7 @@ "variant_access_point": [ "Knautkleeberg (Leipzig)" ], - "md5": "95814f3fb22983a50e15e6ef22bfbf9c" + "md5": "ac94e8053772a090ab5466dcdacf6dc1" }, { "authorized_access_point": "Leipzig-Knauthain", @@ -19883,6 +19753,14 @@ "value": "(DE-588)4452479-1" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1910" + ] + } + ], "pid": "950338184", "type": "bf:Place", "related": [ @@ -19896,7 +19774,7 @@ "variant_access_point": [ "Meusdorf (Leipzig)" ], - "md5": "d780ccb24cb5436c2562c5572ba345e1" + "md5": "9492c4b6a8a2988b4c63c074c48881c8" }, { "authorized_access_point": "Leipzig-Scho\u0308nefeld", @@ -19951,6 +19829,14 @@ "value": "(DE-588)4452347-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1905" + ] + } + ], "pid": "950332011", "type": "bf:Place", "related": [ @@ -19964,7 +19850,7 @@ "variant_access_point": [ "Do\u0308sen (Leipzig)" ], - "md5": "a2e37d8709056c648394ead8dd6de915" + "md5": "2c8a5506e4107b19176bc34947f9b223" }, { "authorized_access_point": "Leipzig-Probstheida", @@ -20053,6 +19939,14 @@ "value": "(DE-588)4450192-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig" + ] + } + ], "pid": "95020109X", "type": "bf:Place", "related": [ @@ -20067,7 +19961,7 @@ "Schleu\u00dfig (Leipzig)", "Leipzig-Schleussig" ], - "md5": "27c408f7914064749411cf5a8b62519b" + "md5": "10b839e89aa5ad3a3ae0055b316a122e" }, { "authorized_access_point": "Leipzig-Kleinzschocher", @@ -20107,13 +20001,6 @@ }, { "authorized_access_point": "Verso\u0308hnungskirche (Dachau)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -20131,6 +20018,14 @@ "value": "(DE-588)4450115-8" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Evangelische Kirche im ehemaligen Konzentrationslager, 1967 erbaut" + ] + } + ], "pid": "950199214", "type": "bf:Place", "broader": [ @@ -20138,16 +20033,10 @@ "authorized_access_point": "Dachau" } ], - "md5": "e347504e06b592b0072970df20074930" + "md5": "cb35c1ddc93543ab7406888e457f6c3c" }, { "authorized_access_point": "Pjatigorsk", - "closeMatch": [ - { - "authorized_access_point": "\u041f\u044f\u0442\u0438\u0433\u043e\u0440\u0441\u043a", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -20180,7 +20069,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": "b08ffe59e022540c0c9ea167cec8e159" }, { "authorized_access_point": "Leipzig-Sellerhausen-Stu\u0308nz", @@ -20277,6 +20166,14 @@ "value": "(DE-588)4440677-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Kleinstadt im Lkr. Zwickau" + ] + } + ], "pid": "949641804", "type": "bf:Place", "broader": [ @@ -20290,7 +20187,7 @@ "Hartenstein", "Hartenstein bei Zwickau" ], - "md5": "45c80d942538f6f2a2559e250a75b361" + "md5": "4403edfa760f25747d296e43640d3425" }, { "authorized_access_point": "Rub al-Khali", @@ -20466,6 +20363,14 @@ "value": "(DE-588)4439953-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Landkreis Landshut, Niederbayern" + ] + } + ], "pid": "949607266", "type": "bf:Place", "related": [ @@ -20473,7 +20378,7 @@ "authorized_access_point": "Landkreis Landshut" } ], - "md5": "e3b18eea893479ac3a740c9b26287a9a" + "md5": "2f4a6ea4cc5fb55a20cd7cf78e853d07" }, { "authorized_access_point": "Leipzig-Lu\u0308tzschena-Stahmeln", @@ -20494,6 +20399,14 @@ "value": "(DE-588)4439654-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Doppelort 1.1.1999 nach Leipzig eingemeindet" + ] + } + ], "pid": "949602310", "type": "bf:Place", "related": [ @@ -20507,7 +20420,7 @@ "variant_access_point": [ "Lu\u0308tzschena-Stahmeln (Leipzig)" ], - "md5": "79513f7d1f8921cc4360d9b20e60a1e4" + "md5": "39d87d5f522c29f224ba5c3a2899e39e" }, { "authorized_access_point": "Leipzig-Holzhausen", @@ -20534,6 +20447,12 @@ "label": [ "Homepage - http://www.holzhausen-sachsen.de" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1.1.1999" + ] } ], "pid": "948791659", @@ -20549,7 +20468,7 @@ "variant_access_point": [ "Holzhausen (Leipzig)" ], - "md5": "7393eb65f5baeeefd89aece38e2d482f" + "md5": "8c546e36cdf73690043e12f783ac9c47" }, { "authorized_access_point": "Pollnow", @@ -20570,6 +20489,14 @@ "value": "(DE-588)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 +20507,7 @@ "variant_access_point": [ "Pollnow i. Pom." ], - "md5": "19c8466fa0e8ba343f722efabe43ff05" + "md5": "60a68af1f9c4eb630106909a75621827" }, { "authorized_access_point": "Leipzig-Lo\u0308\u00dfnig", @@ -20607,6 +20534,12 @@ "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 +20556,7 @@ "Leipzig-Lo\u0308ssnig", "Lo\u0308\u00dfnig (Leipzig)" ], - "md5": "8bf71b644a77c5dbb6052103e59ca5e6" + "md5": "117b341a16eed733d418aa23610ca110" }, { "authorized_access_point": "Leipzig-Do\u0308litz", @@ -20678,6 +20611,14 @@ "value": "(DE-588)4415593-1" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1999" + ] + } + ], "pid": "947976248", "type": "bf:Place", "related": [ @@ -20693,7 +20634,7 @@ "Mo\u0308lkau-Zweinaundorf", "Lleipzig-Mo\u0308lkau-Zweinaundorf" ], - "md5": "845543700bb4e480f11927c095a85a34" + "md5": "62d02f0a671ac55fc36b3da7c61b7a08" }, { "authorized_access_point": "Juodkrante\u0307", @@ -20721,6 +20662,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 +20683,7 @@ "authorized_access_point": "Neringa" } ], - "md5": "02da5bb9dae624916416a12199d02afc" + "md5": "cd4d6ff98901de5e821f7808ac97b3b3" }, { "authorized_access_point": "Bansin", @@ -20756,6 +20704,14 @@ "value": "(DE-588)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 +20725,7 @@ "variant_access_point": [ "Seebad Bansin" ], - "md5": "1ec293705cb3b29e2496796a1ba0bf87" + "md5": "a24fe90c923250bce531dc3b2e2a2838" }, { "authorized_access_point": "Yama\u0304mah", @@ -20790,13 +20746,21 @@ "value": "(DE-588)4409005-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Region in Saudi-Arabien" + ] + } + ], "pid": "947454802", "type": "bf:Place", "variant_access_point": [ "Yama\u0304ma", "Jamama" ], - "md5": "b5e04b2a6646c04703630335550cc2f7" + "md5": "33be9e4d672bea46bca1c7ae96081457" }, { "authorized_access_point": "Uh\u0323ud", @@ -20817,21 +20781,23 @@ "value": "(DE-588)4408998-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ort in Saudi-Arabien" + ] + } + ], "pid": "947454659", "type": "bf:Place", "variant_access_point": [ "Oh\u0323od" ], - "md5": "002ce1858f617aa649b8cf8617447ce8" + "md5": "ebc92289bb1d4055ce2c2132007cabc3" }, { "authorized_access_point": "Ischewsk", - "closeMatch": [ - { - "authorized_access_point": "\u0418\u0436\u0435\u0432\u0441\u043a", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -20855,6 +20821,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=242946023" ] + }, + { + "noteType": "general", + "label": [ + "Hauptstadt von Udmurtien" + ] } ], "pid": "947421238", @@ -20873,7 +20845,7 @@ "\u0418\u0436\u043a\u0430\u0440", "\u0418\u0436" ], - "md5": "f8bcc10e06c70fb4b4536edc144ba721" + "md5": "4a17dc8041002c66fdd3a6bc8c4d28a1" }, { "authorized_access_point": "Barbacena (Minas Gerais)", @@ -20939,13 +20911,6 @@ }, { "authorized_access_point": "Kreis Oststernberg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -20979,7 +20944,7 @@ "Kreis Ost-Sternberg", "Landkreis Ost-Sternberg" ], - "md5": "74e49f54d968824c58571ae6c230be75" + "md5": "20262e6ce7796d8b243f11ff5b188e6c" }, { "authorized_access_point": "Barr (Unterelsass)", @@ -21000,6 +20965,14 @@ "value": "(DE-588)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 +20984,10 @@ "Barr (Elsass)", "Barr, Elsa\u00df" ], - "md5": "7a6e8bc54d3063c7cdc264bcbdc08556" + "md5": "5af46fc3a40635046234fe76a5233f2e" }, { "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", @@ -21054,17 +21014,10 @@ "Shimotsukene", "Shimotsukeno" ], - "md5": "ea4b863d0135b3d77914fc2fe333e8e2" + "md5": "b807e36d12750b3b7a12a0488a4db66b" }, { "authorized_access_point": "Conciergerie (Paris)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gefa\u0308ngnisbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -21092,16 +21045,10 @@ "authorized_access_point": "Palais de la Cite\u0301 (Paris)" } ], - "md5": "8f3af56faae9e07fd9c8598aa0197f6f" + "md5": "54982e3cc454ef97ff97a301cda5d0b1" }, { "authorized_access_point": "Mogiljow", - "closeMatch": [ - { - "authorized_access_point": "\u041c\u0430\u0433i\u043b\u0435\u0308\u0443\u0306", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -21126,6 +21073,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 +21101,7 @@ "\u041c\u043e\u0433\u0438\u043b\u0435\u0432", "\u041c\u043e\u0433\u0438\u043b\u0435\u0308\u0432" ], - "md5": "e9782837af02ee32cd39ca4936b3e625" + "md5": "22b9ba407e6d2ebabce1106087bb2134" }, { "authorized_access_point": "Leipzig-Eutritzsch", @@ -21240,13 +21193,6 @@ }, { "authorized_access_point": "Landkreis Leipziger Land", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landkreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -21264,6 +21210,14 @@ "value": "(DE-588)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 +21239,7 @@ "variant_access_point": [ "Leipziger Land (Kreis)" ], - "md5": "41b21b4b301bdee5aafffff9a9bfad31" + "md5": "b940e2747bd71f62a370e4fd0c642c04" }, { "authorized_access_point": "\u0141ago\u0301w (Woiwodschaft Lebus)", @@ -21312,6 +21266,12 @@ "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 +21294,7 @@ "\u0141ago\u0301w", "\u0141ago\u0301w Lubuski" ], - "md5": "9f508f26e803155633cc3ae644e86140" + "md5": "a469d112d989dbc865e47a2aa129d9c5" }, { "authorized_access_point": "Lostallo", @@ -21355,9 +21315,17 @@ "value": "(DE-588)2138776-X" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Kt. Graubu\u0308nden" + ] + } + ], "pid": "941808769", "type": "bf:Place", - "md5": "a9350ee6282a6ab82e63b3925402980b" + "md5": "5333aee7c452ae8d67b86d80d96f3d79" }, { "authorized_access_point": "Zentralarabien", @@ -21400,13 +21368,6 @@ }, { "authorized_access_point": "Wadi al-Batin", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], "identifiedBy": [ { "source": "GND", @@ -21424,9 +21385,17 @@ "value": "(DE-588)4342217-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Tal in Saudiarabien" + ] + } + ], "pid": "941385175", "type": "bf:Place", - "md5": "62ab9ae6fbbdf00fcfd4433cecfd368f" + "md5": "051d29a18a82b930766d2af97654dfa5" }, { "authorized_access_point": "Leipzig-Plagwitz", @@ -21481,6 +21450,14 @@ "value": "(DE-588)4331601-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1.1.1891" + ] + } + ], "pid": "940396009", "type": "bf:Place", "related": [ @@ -21494,17 +21471,10 @@ "variant_access_point": [ "Connewitz (Leipzig)" ], - "md5": "bced35b7f2a1b7903c9c8fb07de8101e" + "md5": "c82bfb3aa17da126a7921346bec72915" }, { "authorized_access_point": "St. Ewaldi Aplerbeck (Dortmund)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -21549,22 +21519,10 @@ "Zweite St.-Ewaldi-Kirche von 1971 (Dortmund)", "Egbertstra\u00dfe 15 (Dortmund)" ], - "md5": "cf6b05df86f26b20c4e1ea11993d784d" + "md5": "d35a9933b8228977941d71472f36d71e" }, { "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 +21540,24 @@ "value": "(DE-588)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": "bb81c649d9024d303b44dacc2c4cbde6" }, { "authorized_access_point": "Donopbrunnen (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Brunnen" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -21636,22 +21590,10 @@ "authorized_access_point": "Detmold" } ], - "md5": "d353d6e4d7321b6ba3c145fd6db52175" + "md5": "1c7506797ce2b03cf9a00345aa1811ac" }, { "authorized_access_point": "Heeper Fichten (Bielefeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Arbeitersiedlung" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wohnsiedlung" - } - ], "identifiedBy": [ { "source": "GND", @@ -21688,22 +21630,10 @@ "variant_access_point": [ "Siedlung Heeper Fichten (Bielefeld)" ], - "md5": "062d7d3f741e76ba2817f7bbec63ff9c" + "md5": "c33e978fb6e92ed95feb9ad54197ba96" }, { "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", @@ -21727,6 +21657,12 @@ "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 +21676,10 @@ "Gastliches Dorf (Delbru\u0308ck)", "Lippsta\u0308dter Stra\u00dfe 88 (Delbru\u0308ck)" ], - "md5": "003adc838738df0737d8a86ab92bd62d" + "md5": "9fe0e3e4b1c73d77781997c374a0370b" }, { "authorized_access_point": "Galgenlaake (Delbru\u0308ck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -21783,17 +21712,10 @@ "authorized_access_point": "Delbru\u0308ck" } ], - "md5": "897f7428a992cb47a14dc6d704e3082c" + "md5": "2fd26c4687dd7f117dd98322e7d2aece" }, { "authorized_access_point": "Krullsche Haus (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - } - ], "identifiedBy": [ { "source": "GND", @@ -21826,17 +21748,10 @@ "variant_access_point": [ "Richthofenstra\u00dfe 16 (Detmold)" ], - "md5": "eb11f8776c4b86c76802720d80d773a6" + "md5": "fafa4be40d52d5bf0b69b4d10a7bf8a8" }, { "authorized_access_point": "Richthofenstra\u00dfe (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -21869,17 +21784,10 @@ "authorized_access_point": "Detmold" } ], - "md5": "2315675f1a2f1dfe1d7486c645bfceb9" + "md5": "913f9ba8ebb7d06bfe39f8013fb09342" }, { "authorized_access_point": "Freiligrathstra\u00dfe (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -21904,22 +21812,10 @@ "authorized_access_point": "Detmold" } ], - "md5": "a6b290431180973b95d990280e4b507c" + "md5": "ff69dbcea63c9a0c4a2b2ac9cc00e54c" }, { "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 +21833,14 @@ "value": "(DE-588)7789063-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gelegen am Fluss Else bei Bu\u0308nde (Kreis Herford)" + ] + } + ], "pid": "199244375", "type": "bf:Place", "broader": [ @@ -21948,17 +21852,10 @@ "Castrum Blankena (Bu\u0308nde)", "Haus Wervingen" ], - "md5": "14bab1af144c30720eebc5d56cc69580" + "md5": "0d6d2067086273ffc4a1be36c22105aa" }, { "authorized_access_point": "Glu\u0308ckaufstra\u00dfe (Castrop-Rauxel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -21991,7 +21888,7 @@ "authorized_access_point": "Castrop-Rauxel" } ], - "md5": "8cc8e8684a5e31997bee41461f7ed319" + "md5": "b1b277772cb57dd1e503d6a56059246a" }, { "authorized_access_point": "Attendorn-Rieflinghausen", @@ -22034,13 +21931,6 @@ }, { "authorized_access_point": "St. Rochus Hospital (Castrop-Rauxel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Krankenhausbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -22074,17 +21964,10 @@ "St. Rochus-Hospital (Castrop-Rauxel)", "Glu\u0308ckaufstra\u00dfe 10 (Castrop-Rauxel)" ], - "md5": "3dfb14383681b0236491b08020e64529" + "md5": "cf8ba829fab81638460f672b7238ea35" }, { "authorized_access_point": "Haus Schanze (Coesfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - } - ], "identifiedBy": [ { "source": "GND", @@ -22112,17 +21995,10 @@ "variant_access_point": [ "Haus Schanze an der Billerbecker Stra\u00dfe (Coesfeld)" ], - "md5": "b3372a8bea0cdacb6643a723a319cbcc" + "md5": "25159a5996504127ff062ea2259c64d9" }, { "authorized_access_point": "Lortzingstra\u00dfe (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -22155,17 +22031,10 @@ "authorized_access_point": "Detmold" } ], - "md5": "e3ea5c6631e8ae9acb88b053b69ebb18" + "md5": "97b9c330eb232f858186f8ebe0ec60fc" }, { "authorized_access_point": "Sankt Jakob (Ko\u0308ln- Altstadt Su\u0308d)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -22190,6 +22059,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 +22082,10 @@ "Pfarrkirche St. Jakob (Ko\u0308ln- Altstadt Su\u0308d)", "St. Jakob (Ko\u0308ln) (Ko\u0308ln- Altstadt Su\u0308d)" ], - "md5": "751902d10200848ee819b7ca9d8f5a72" + "md5": "f789bcc202b38a79c573920d9111ded4" }, { "authorized_access_point": "Merkurbrunnen (Bielefeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Brunnen" - } - ], "identifiedBy": [ { "source": "GND", @@ -22250,17 +22118,10 @@ "authorized_access_point": "Bielefeld" } ], - "md5": "996aa3ce6c0b5bd315baa3bd80d49a7d" + "md5": "99f6c2880683b3d12577d5bd86f6bf8d" }, { "authorized_access_point": "Verso\u0308hnungskirche Ho\u0308ntrop (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -22303,17 +22164,10 @@ "Evangelische Verso\u0308hnungskirche Ho\u0308ntrop (Bochum)", "Preins Feld 8 (Bochum)" ], - "md5": "01dbcab1c8f82689f38bd325fb80b996" + "md5": "998dd6cfd34ea828cdaecb53776a693c" }, { "authorized_access_point": "Quellenhof (Bielefeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bauernhof" - } - ], "identifiedBy": [ { "source": "GND", @@ -22337,6 +22191,12 @@ "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 +22214,10 @@ "Go\u0308llnerhof (Bielefeld)", "Hof Go\u0308llner (Bielefeld)" ], - "md5": "2f16a45d8a626e97f2c8d0d0dbfb5a77" + "md5": "3e84581d54c3e3312f19fe5f2c5665fb" }, { "authorized_access_point": "Deponie Coesfeld-Ho\u0308ven", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Deponie" - } - ], "identifiedBy": [ { "source": "GND", @@ -22408,17 +22261,10 @@ "Zentraldeponie Coesfeld-Ho\u0308ven im Kreis Coesfeld", "Zentraldeponie Coesfeld-Ho\u0308ven im Kreis Coesfeld, NRW" ], - "md5": "0bec207d1262fd4296d58543909fad65" + "md5": "c7e0e40ddf6352957996e9fdf052efff" }, { "authorized_access_point": "Gerricusplatz (Du\u0308sseldorf)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Platz" - } - ], "identifiedBy": [ { "source": "GND", @@ -22454,17 +22300,10 @@ "authorized_access_point": "Du\u0308sseldorf-Gerresheim" } ], - "md5": "e3e3bd5a0c0a28a55e22a8cbd2631473" + "md5": "b53ce191f738b20dd843734077821433" }, { "authorized_access_point": "Synagoge Detmold (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Synagoge" - } - ], "identifiedBy": [ { "source": "GND", @@ -22488,6 +22327,12 @@ "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 +22347,10 @@ "authorized_access_point": "Lortzingstra\u00dfe (Detmold)" } ], - "md5": "d35916d752eba1a9fb7dd5a8268fa9cf" + "md5": "923f869f1b409acb2a79c192cc59ab39" }, { "authorized_access_point": "Freiherr-vom-Stein-Kaserne (Coesfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kaserne" - } - ], "identifiedBy": [ { "source": "GND", @@ -22542,17 +22380,10 @@ "Kaserne Coesfeld (Coesfeld)", "Letter Bruch 9 (Coesfeld)" ], - "md5": "2e9b4b72edec965f2aec8924219c262c" + "md5": "9d108014d3c7353cbf227aaa33e71b86" }, { "authorized_access_point": "Verku\u0308ndigungskirche (Gemen, Borken (Westf.))", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -22576,6 +22407,12 @@ "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 +22425,10 @@ "variant_access_point": [ "Maria\u0308 Verku\u0308ndigung (Gemen, Borken (Westf.))" ], - "md5": "f0616e7bbfab1096b7c9402761c03f6c" + "md5": "178b080da5efe5320effe5f7ca9743fc" }, { "authorized_access_point": "Deininghausen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "rela", - "name": "Waldgebiet" - } - ], "identifiedBy": [ { "source": "GND", @@ -22616,19 +22446,20 @@ "value": "(DE-588)7785281-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Waldgebiet im Castrop-Rauxeler Stadtteil Deininghausen" + ] + } + ], "pid": "199211817", "type": "bf:Place", - "md5": "ad09c6e635fa5329c2a99e5057b89fcc" + "md5": "db4ef7325877a1c145c650c9218ea3dd" }, { "authorized_access_point": "Osterhof (Brilon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bauernhof" - } - ], "identifiedBy": [ { "source": "GND", @@ -22646,6 +22477,14 @@ "value": "(DE-588)7785159-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Bauernhof im Mo\u0308hnetal gelegen" + ] + } + ], "pid": "199210713", "type": "bf:Place", "broader": [ @@ -22656,17 +22495,10 @@ "variant_access_point": [ "Osterhof in der Gemarkung von Brilon (Brilon)" ], - "md5": "efe3357d0deeb1d693fc0441cd2c2dfd" + "md5": "d77b9b5ed4949fe78abec02210700a63" }, { "authorized_access_point": "Werre-Park (Bad Oeynhausen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Einkaufszentrum" - } - ], "identifiedBy": [ { "source": "GND", @@ -22690,6 +22522,12 @@ "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 +22540,10 @@ "variant_access_point": [ "Werre-Park Bad Oeynhausen (Bad Oeynhausen)" ], - "md5": "3e271725c337972c67b37e06b678ad7d" + "md5": "7fa79de38e782e3f115c88ce46e63628" }, { "authorized_access_point": "Evangelische Kreuzkirche (Bestwig)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -22741,6 +22567,12 @@ "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 +22590,10 @@ "Evangelische Kirche (Bestwig)", "Auferstehungskirche (Bestwig)" ], - "md5": "7d2742c6726941c0f4e2736169bb08c4" + "md5": "53bcd99ca58028a769e070e8d49fee15" }, { "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", @@ -22811,22 +22631,10 @@ "authorized_access_point": "Benekestra\u00dfe (Detmold)" } ], - "md5": "4f8862a3a37fac24957ae4db1cd59e5e" + "md5": "d53c044c6f05c73f66b2cfe2b020f2a0" }, { "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", @@ -22850,6 +22658,12 @@ "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 +22678,10 @@ "authorized_access_point": "Denkmalstra\u00dfe (Breckerfeld)" } ], - "md5": "e956ce096d216c42c1ba2540c54dde2c" + "md5": "3dd2b3588779515dfc9493c6c4acf800" }, { "authorized_access_point": "Denkmalstra\u00dfe (Breckerfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -22907,27 +22714,10 @@ "authorized_access_point": "Breckerfeld" } ], - "md5": "5bbfaff2ef4f6809d9f334f864a29680" + "md5": "1bcf8cf4908b2ffaab464e79aef8c2c5" }, { "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", @@ -22951,6 +22741,12 @@ "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 +22765,10 @@ "Derkere Strasse 26 (Brilon)", "Bu\u0308rgerhaus Derkere Stra\u00dfe 26 (Brilon)" ], - "md5": "7bbdf83489ed7224605298e1c62df65a" + "md5": "a4b702418ce93459a44ca7c27f652309" }, { "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 +22786,14 @@ "value": "(DE-588)7782866-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Fachwerkhaus vom Typ \"niederdeutsches Hallenhaus\", 2001 abgerissen" + ] + } + ], "pid": "199189862", "type": "bf:Place", "broader": [ @@ -23017,17 +22809,10 @@ "variant_access_point": [ "Niedere Strasse 32 (Brilon)" ], - "md5": "2dd57e98417795e1a957cb1c3807976a" + "md5": "6506b75ba2365497cdbc8b673dfaf03b" }, { "authorized_access_point": "Derkere Stra\u00dfe (Brilon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -23060,17 +22845,10 @@ "authorized_access_point": "Brilon" } ], - "md5": "21cf8f0445a2ec84fa63a8dce0ef2e63" + "md5": "74f9708da1445ddd22cb8059fafe4295" }, { "authorized_access_point": "Niedere Stra\u00dfe (Brilon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -23103,17 +22881,10 @@ "authorized_access_point": "Brilon" } ], - "md5": "d340c1f979d211f199466ffde3aefe59" + "md5": "c19e779622d44d4920e3fb70b08e08f7" }, { "authorized_access_point": "Steinha\u0308ger Ha\u0308uschen (Steinhagen, Kreis Gu\u0308tersloh)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fachwerkbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -23161,17 +22932,10 @@ "Bahnhofstra\u00dfe 2 (Steinhagen, Kreis Gu\u0308tersloh)", "Steinha\u0308gerha\u0308uschen (Steinhagen, Kreis Gu\u0308tersloh)" ], - "md5": "5b2556a16d4157b460eb41fb9fbd3b76" + "md5": "14fbb1ac857ca606fb455d3ba5b824f3" }, { "authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kanzel" - } - ], "identifiedBy": [ { "source": "GND", @@ -23189,6 +22953,14 @@ "value": "(DE-588)7782000-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "1727 gestiftet in Schwelm, 1740 in Breckerfeld aufgestellt" + ] + } + ], "pid": "199181993", "type": "bf:Place", "broader": [ @@ -23202,22 +22974,10 @@ "variant_access_point": [ "Evangelische Pfarrkirche (Breckerfeld)" ], - "md5": "291be42d0c0c519b90d286b664a36b6f" + "md5": "202acc8d5049aceeeb69c0500ee4c5d4" }, { "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", @@ -23262,27 +23022,10 @@ "Lichtspielhaus Wittekind (Bu\u0308nde)", "Hauptstra\u00dfe 9" ], - "md5": "a912b6baaba120328b905bb0e87de6fa" + "md5": "26693e882cf19e74c9427c28c9db525d" }, { "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", @@ -23306,6 +23049,12 @@ "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 +23067,10 @@ "variant_access_point": [ "Katharinenstra\u00dfe 9 (Dortmund)" ], - "md5": "d463c9a4579cdc6c9d36ec861cea1e44" + "md5": "7830f563effa95dd6aecc2436cb052cb" }, { "authorized_access_point": "Alpincenter Bottrop (Bottrop)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wintersportanlage" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Skihalle" - } - ], "identifiedBy": [ { "source": "GND", @@ -23371,22 +23108,10 @@ "Alpincenter in Bottrop (Bottrop)", "Prosperstra\u00dfe 299-301 (Bottrop)" ], - "md5": "0a8c0d732e91fc4df0f3ab76c49d91c2" + "md5": "d573493451a96cd338a04cb03dbcf811" }, { "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 +23129,14 @@ "value": "(DE-588)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 +23152,10 @@ "Biggeweg 5 (Attendorn)", "Gefa\u0308ngnisanlage der Justizvollzugsanstalt Attendorn (Attendorn)" ], - "md5": "ee35f09de044866a610c7c117b34e6d0" + "md5": "a5c72ae3d48353483e8494f405e2bc97" }, { "authorized_access_point": "Elisabethstra\u00dfe (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -23468,17 +23194,10 @@ "variant_access_point": [ "Elisabethstra\u00dfe (Bochum-Wattenscheid)" ], - "md5": "24c1b324f28f916271944201528a71ac" + "md5": "91a562dbd749ef8bda2ec4e81f018a9d" }, { "authorized_access_point": "Wattenscheider Hellweg (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -23511,22 +23230,10 @@ "authorized_access_point": "Bochum" } ], - "md5": "bfaea4e2c4c67702d838c211ee957abb" + "md5": "37ace70f0e16fe7bca4a1f672d4b652f" }, { "authorized_access_point": "Florianturm (Dortmund)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernsehturm" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Aussichtsturm" - } - ], "identifiedBy": [ { "source": "GND", @@ -23566,27 +23273,10 @@ "Florianturm im Westfalenpark (Dortmund)", "Florianstra\u00dfe 2 (Dortmund)" ], - "md5": "46d0948b90e8ce509d271e2277a4a040" + "md5": "b6401c06a97cba55f698b9ba73482038" }, { "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", @@ -23610,6 +23300,12 @@ "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 +23327,7 @@ "Am Thie 8 (Bochum)", "Wohnhaus (Bochum)" ], - "md5": "36affbbe6f959f60f2c34607a45d5df9" + "md5": "c2373b4c38c5b45de0ed66b5795eaac7" }, { "authorized_access_point": "Barntrup-Uhlental", @@ -23702,13 +23398,6 @@ }, { "authorized_access_point": "Alter Postweg (Bottrop)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -23747,22 +23436,10 @@ "variant_access_point": [ "Alter Postweg (Bottrop-Kirchhellen)" ], - "md5": "e49a03515ecc811eb171504161a297e7" + "md5": "801b8336933ad59403d7b5ca7232e1a3" }, { "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", @@ -23786,6 +23463,12 @@ "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 +23481,10 @@ "variant_access_point": [ "Villa (Bocholt)" ], - "md5": "ae5a090b2e430d142e1b6cee69719f44" + "md5": "40c54d59e9e72aeb579c7e506fddd7f5" }, { "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 +23502,14 @@ "value": "(DE-588)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 +23517,7 @@ "authorized_access_point": "Barntrup" } ], - "md5": "c07e54be36f44bae4a88257b517d8cf2" + "md5": "a267c22cd9cefaa56b7d57fcc7786fc0" }, { "authorized_access_point": "Balve-Haustadt", @@ -23877,22 +23556,10 @@ "variant_access_point": [ "Haustadt (Balve)" ], - "md5": "4c4a88f7f82817fa42b3868eff3ff675" - }, - { - "authorized_access_point": "Totenleuchte (Arnsberg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stele" - } - ], + "md5": "4c4a88f7f82817fa42b3868eff3ff675" + }, + { + "authorized_access_point": "Totenleuchte (Arnsberg)", "identifiedBy": [ { "source": "GND", @@ -23916,6 +23583,12 @@ "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 +23606,10 @@ "Totenleuchte (Arnsberg-Neheim)", "Totenstele (Arnsberg)" ], - "md5": "b7ef2b21d6a21bc5bafcb0f46b1af7d1" + "md5": "ea316f0e7525d87394fdb7254693541a" }, { "authorized_access_point": "Haus Holtwick (Rosendahl)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Torbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -23993,22 +23654,10 @@ "variant_access_point": [ "Haus Holtwick (Rosendahl-Holtwick)" ], - "md5": "1a42f031b48dd02b6f19c4f7a66440cb" + "md5": "63d3de9788553d6fe83bffb4b99ac018" }, { "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", @@ -24032,6 +23681,12 @@ "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 +23703,10 @@ "Ju\u0308discher Friedhof Bochum (Bochum-Wiemelhausen)", "Ju\u0308discher Friedhof Wiemelhausen (Bochum)" ], - "md5": "0ed97a7e87afec8d8a47498cd3cd79bc" + "md5": "52b7720c1d7c9cdeaad9adcb600cfd83" }, { "authorized_access_point": "Haus Schlu\u0308nder (Arnsberg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - } - ], "identifiedBy": [ { "source": "GND", @@ -24091,17 +23739,10 @@ "Haus Schlu\u0308nder im Luerwald (Arnsberg)", "Haus am Bru\u0308ggestu\u0308ck (Arnsberg)" ], - "md5": "8dc28e94a79c29b108869272d8fb2336" + "md5": "67291658b7c537264710c56a2379fc8a" }, { "authorized_access_point": "Benekestra\u00dfe (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -24134,17 +23775,10 @@ "authorized_access_point": "Detmold" } ], - "md5": "b980b29c3e9734a0af78cea509b57b15" + "md5": "6d5007e04849887d786760b7d726a0b8" }, { "authorized_access_point": "Kortumstra\u00dfe (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -24177,17 +23811,10 @@ "authorized_access_point": "Bochum" } ], - "md5": "eae98f26f3f4c2656fa1e05d2ec08f92" + "md5": "89a57e30423d4d72b6955fbb6b2f7cdd" }, { "authorized_access_point": "Altsta\u0308dter Nicolaikirche (Bielefeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Hallenkirche" - } - ], "identifiedBy": [ { "source": "GND", @@ -24211,6 +23838,12 @@ "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 +23860,7 @@ "Ev. Altsta\u0308dter Nicolaikirche Bielefeld (Bielefeld)", "Nikolaikirche zu Bielefeld (Bielefeld)" ], - "md5": "f25f1cac93791b9b4952e4988945e5fc" + "md5": "6b5d44a9bb59ed4c053b38fad02d856a" }, { "authorized_access_point": "Rathaus (Beckum)", @@ -24255,6 +23888,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 +23913,10 @@ "Stadtmuseum (Beckum)", "Markt 1 (Beckum)" ], - "md5": "078aea1f2076f6d6ae852ce2c290363f" + "md5": "0796b3031f3491b3b1344cd9d39e93eb" }, { "authorized_access_point": "IHK-Bezirk Detmold", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "IHK-Bezirk" - } - ], "identifiedBy": [ { "source": "GND", @@ -24302,22 +23934,23 @@ "value": "(DE-588)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": "d2911b1f6ae4a0c26cae4c8b1dd63f85" }, { "authorized_access_point": "Bahnhofstra\u00dfe (Steinhagen, Kreis Gu\u0308tersloh)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -24350,32 +23983,10 @@ "authorized_access_point": "Steinhagen (Kreis Gu\u0308tersloh)" } ], - "md5": "3371ee688a3fc69a93b7194a207a3079" + "md5": "d3e92bb9be38c72e42130a6882ff7452" }, { "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", @@ -24419,7 +24030,7 @@ "Hoesch-Park (Dortmund)", "Brackeler Stra\u00dfe 60 (Dortmund)" ], - "md5": "a63bd5cce8a10e62e52a6a40c979d6af" + "md5": "1e57a02585c1cba39f338aecba259643" }, { "authorized_access_point": "Castrop", @@ -24446,13 +24057,6 @@ }, { "authorized_access_point": "Amt S\u00f8nderborg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -24476,6 +24080,12 @@ "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 +24106,7 @@ "S\u00f8nderborg (Amt)", "Sonderburg (Amt)" ], - "md5": "897401cfb65bf73b365888595e745baf" + "md5": "5916cab795494d96d83541f4442c22b5" }, { "authorized_access_point": "Syosset, NY", @@ -24614,12 +24224,20 @@ "value": "(DE-588)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": "7c4ffd5048be873ee6313a6661282f2d" }, { "authorized_access_point": "Workum", @@ -24706,17 +24324,6 @@ }, { "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 +24341,24 @@ "value": "(DE-588)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 +24380,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": "f4d3c5e783eb0115f07947b47dc0f063" }, { "authorized_access_point": "Prag-Smichow", @@ -24776,6 +24401,14 @@ "value": "(DE-588)4293955-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Prag seit 1.1.1922" + ] + } + ], "pid": "042939550", "type": "bf:Place", "related": [ @@ -24791,7 +24424,7 @@ "Smi\u0301chov (Prag)", "Smichow (Prag)" ], - "md5": "684e03c76e81954f0902a4730fb4afd9" + "md5": "3ead63e9f47d82e0607b3fdc3dfd4e36" }, { "authorized_access_point": "Smichow (Prag)", @@ -24812,6 +24445,14 @@ "value": "(DE-588)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 +24463,7 @@ "variant_access_point": [ "Smi\u0301chov (Prag)" ], - "md5": "6fce89aa8abf0ca3ec8acff43c620e1b" + "md5": "0f875cd08f097247985a39ff3b5b2e0c" }, { "authorized_access_point": "Reichenbach im Vogtland", @@ -24849,6 +24490,12 @@ "label": [ "Homepage - https://www.reichenbach-vogtland.de/" ] + }, + { + "noteType": "general", + "label": [ + "Stadt im Vogtlandkreis, Sachsen" + ] } ], "pid": "042788714", @@ -24862,22 +24509,10 @@ "Rechenbach", "Reichenbach" ], - "md5": "7465c87d3543beffc8186c4dd5d1752d" + "md5": "3838c09cca3662691c57b54932843a07" }, { "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", @@ -24901,6 +24536,12 @@ "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 +24556,10 @@ "Evangelische Pfarrkirche St. Barbara (Ko\u0308ln)", "Evangelische Pfarrkirche Sankt Barbara (Ko\u0308ln)" ], - "md5": "722057c896453e0b7484114d56e2ca5a" + "md5": "3e33bda2bb65706a05578823db7e399b" }, { "authorized_access_point": "Heringsdorf (Seebad)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Seebad" - } - ], "identifiedBy": [ { "source": "GND", @@ -24943,6 +24577,14 @@ "value": "(DE-588)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 +24601,10 @@ "Gemeinde Ostseebad Heringsdorf", "Heringsdorf" ], - "md5": "add47264d74b7d8e874962866d745130" + "md5": "ce2fb68bf1ebe693743ba2e72122db21" }, { "authorized_access_point": "Stiftskirche zum Heiligen Kreuz (Stuttgart)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stufenhallenkirche" - } - ], "identifiedBy": [ { "source": "GND", @@ -24993,6 +24628,12 @@ "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 +24650,10 @@ "Stiftskirche (Stuttgart)", "Evangelische Stiftskirche Heilig Kreuz (Stuttgart)" ], - "md5": "c063b787c58f7aa77a3ac2b83b779fc7" + "md5": "2dcdce38468ff58feb517257debf6e6a" }, { "authorized_access_point": "Emscher Park", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landschaftspark" - } - ], "identifiedBy": [ { "source": "GND", @@ -25043,6 +24677,12 @@ "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Emscher_Landschaftspark" ] + }, + { + "noteType": "general", + "label": [ + "Landschaftspark d. Emscher Region" + ] } ], "pid": "042567874", @@ -25058,7 +24698,7 @@ "Emscher-Landschaftspark", "Emscher Landschaftspark" ], - "md5": "472c3c98cd3041c1bfca13bd54b6584a" + "md5": "d87d6097fe62e1645215cf5d237de659" }, { "authorized_access_point": "Gnotzheim", @@ -25096,13 +24736,6 @@ }, { "authorized_access_point": "Verbandsgemeinde Bernkastel-Kues", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Verbandsgemeinde" - } - ], "identifiedBy": [ { "source": "GND", @@ -25120,12 +24753,20 @@ "value": "(DE-588)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": "c99226a3908ecf22d4507ddcc307d6c3" }, { "authorized_access_point": "Lesparre-Me\u0301doc", @@ -25146,9 +24787,17 @@ "value": "(DE-588)4249044-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Dep. Gironde, Frankreich" + ] + } + ], "pid": "042490448", "type": "bf:Place", - "md5": "4aa9ae0f6c6b25794a20ece6fcedbc94" + "md5": "c6e31cdacc351c91900f4d492d685868" }, { "authorized_access_point": "Heringsdorf-Bansin", @@ -25169,6 +24818,14 @@ "value": "(DE-588)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 +24839,10 @@ "variant_access_point": [ "Bansin (Heringsdorf, Seebad)" ], - "md5": "076eede2d04716f7a312d4e8af62c6c1" + "md5": "af505a542fac763668a1b074db2cb25a" }, { "authorized_access_point": "Hydra (Insel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Insel" - } - ], "identifiedBy": [ { "source": "GND", @@ -25210,6 +24860,14 @@ "value": "(DE-588)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 +24878,10 @@ "Idhra (Insel)", "U\u0301dra" ], - "md5": "8f868d32784a0d979cb287a4504a0f4b" + "md5": "bcc3f080624d8641f07cb5e2eb490a6c" }, { "authorized_access_point": "\u02bfUnayzah", - "closeMatch": [ - { - "authorized_access_point": "\u0639\u0646\u064a\u0632\u0629", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -25247,23 +24899,24 @@ "value": "(DE-588)4238717-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt in Saudi-Arabien" + ] + } + ], "pid": "042387175", "type": "bf:Place", "variant_access_point": [ "\u02bfUnaiza", "\u02bfUnayza" ], - "md5": "928dbb91b1d7e17e2f3ca5c646254d7f" + "md5": "f594ce5c638c777ac593f58c77d317be" }, { "authorized_access_point": "Mount Annie, Nev.", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -25281,23 +24934,20 @@ "value": "(DE-588)4229900-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Berg im US-Bundesstaat Nevada" + ] + } + ], "pid": "042299004", "type": "bf:Place", - "md5": "37c3b0f3bc2a954579a8d8058a5d927a" + "md5": "641be6d669133ef02704eff976e3cf3f" }, { "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 +24965,42 @@ "value": "(DE-588)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": "c6b4bc0f90b3cf0c110ea04ceac827c7" }, { "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", @@ -25371,7 +25034,7 @@ "Amurskaja oblast\u02b9", "Gebiet Amur" ], - "md5": "69e82428a7c4268993d7a4f059f99fc9" + "md5": "74c518695382856f5d40fcf53557e5bb" }, { "authorized_access_point": "Bernkastel-Kues-Andel", @@ -25432,6 +25095,12 @@ "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,7 +25108,7 @@ "variant_access_point": [ "Kotor-Varos\u030c" ], - "md5": "37d88ebf59773172a9c99e7508affb9f" + "md5": "7c001ebe6ec2e19d14d197a96a640a49" }, { "authorized_access_point": "Oberrheinisches Tiefland", @@ -25460,6 +25129,14 @@ "value": "(DE-588)4200545-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r die Region zwischen Basel, Freiburg u. Strassburg" + ] + } + ], "pid": "042005450", "type": "bf:Place", "broader": [ @@ -25470,21 +25147,10 @@ "variant_access_point": [ "Regio, Oberrhein" ], - "md5": "b399999f52a0b4ed6a822b045ec86d8c" + "md5": "5256cabb6bdf411642abc4d8c6af7ca4" }, { "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 +25168,35 @@ "value": "(DE-588)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", + "noteType": "dataSource", + "label": [ + "Homepage - http://www.ltk.dk" + ] + }, + { + "noteType": "general", "label": [ - "Homepage - http://www.ltk.dk" + "Kommune in der Region Hovedstaden, Seeland" ] } ], @@ -25518,17 +25208,10 @@ "Lyngby", "Lyngby-Taarbaek" ], - "md5": "c4f7acb624af3bc19d9c49c2e2804447" + "md5": "e68cf0b370f8420e6207748178468c6c" }, { "authorized_access_point": "Herzogtum Preu\u00dfen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Herzogtum" - } - ], "identifiedBy": [ { "source": "GND", @@ -25569,28 +25252,10 @@ "Prusko (vojvodstvo)", "Prusko (ve\u0301vodstvi\u0301)" ], - "md5": "041da4e9d2344bee08de1d1c1fb29f84" + "md5": "acda397807443eab4d03832e7805430d" }, { "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 +25273,36 @@ "value": "(DE-588)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 +25322,10 @@ "Viborg Amtskommune", "Viborg (Amt)" ], - "md5": "22b2af905708c748a8b0eaca116c3615" + "md5": "690c9076cb37dfbbe0be95bb660a6f67" }, { "authorized_access_point": "Sankt Martin (Zillis)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Saalkirche" - } - ], "identifiedBy": [ { "source": "GND", @@ -25661,6 +25343,14 @@ "value": "(DE-588)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 +25362,7 @@ "St. Martin (Zillis)", "Reformierte Kirche St. Martin (Zillis)" ], - "md5": "6c17a93b6e952f7ce7d3c3c8c80baf40" + "md5": "32575221912bf80c8d276700f589e671" }, { "authorized_access_point": "Ochsenhausen", @@ -25700,6 +25390,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 +25403,10 @@ "variant_access_point": [ "Stadt Ochsenhausen" ], - "md5": "425774f792fd162a2ae7bd3386ea8644" + "md5": "ac1e0733153fa6cd03a1fec21082b8ff" }, { "authorized_access_point": "Obernil-Becken", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Becken" - } - ], "identifiedBy": [ { "source": "GND", @@ -25737,17 +25426,10 @@ ], "pid": "041154282", "type": "bf:Place", - "md5": "e8738909c8b86b75adba99e986d947f2" + "md5": "7cf41f18e3b47162617a103200eea968" }, { "authorized_access_point": "Landkreis Leipzig", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landkreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -25771,6 +25453,12 @@ "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 +25478,7 @@ "Leipzig (Kreis)", "Leipzig (Landkreis)" ], - "md5": "0522daf634596ef86ee1985b0f4ebaae" + "md5": "e5384ad172a9adb540999da0c7ae46e7" }, { "authorized_access_point": "Wustrow Ostseebad", @@ -25817,6 +25505,12 @@ "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Wustrow_(Fischland)" ] + }, + { + "noteType": "general", + "label": [ + "Ort im Landkreis Vorpommern-Ru\u0308gen" + ] } ], "pid": "041087828", @@ -25828,7 +25522,7 @@ "Wustrow (Fischland)", "Wustrow (Ribnitz-Damgarten)" ], - "md5": "7c284e25723039363d298d28292ed3f4" + "md5": "df4598ea37664652cf44e494f9b0bc90" }, { "authorized_access_point": "Wittmund", @@ -25849,9 +25543,17 @@ "value": "(DE-588)4108467-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Kreisstadt des Landkreises Wittmund, NW-Niedersachsen" + ] + } + ], "pid": "041084675", "type": "bf:Place", - "md5": "ef89d2b5de7839d764f6a6a85cb83583" + "md5": "f545670f7055a7b02519991af66bd586" }, { "authorized_access_point": "Tihama", @@ -25909,6 +25611,12 @@ "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 +25634,7 @@ "authorized_access_point": "Ilmenau-Stu\u0308tzerbach" } ], - "md5": "4e3ac2a605af9f087ba95e0800211b5e" + "md5": "cf6e9c9caf29a18da2914cc11d70413d" }, { "authorized_access_point": "Scheidegg", @@ -25953,11 +25661,17 @@ "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": "94316f707b0a7d97965ab2ae2e51aa17" }, { "authorized_access_point": "Niebu\u0308ll", @@ -25978,9 +25692,17 @@ "value": "(DE-588)4101184-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Kreis Nordfriesland" + ] + } + ], "pid": "041011848", "type": "bf:Place", - "md5": "6b75fe6a916167664bd53d18db77b57b" + "md5": "4d7dce66dfc858958dbabfe8e5d6f769" }, { "authorized_access_point": "Leipzig-Gohlis", @@ -26001,6 +25723,14 @@ "value": "(DE-588)4099471-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1.1.1890" + ] + } + ], "pid": "040994716", "type": "bf:Place", "related": [ @@ -26014,17 +25744,10 @@ "variant_access_point": [ "Gohlis (Leipzig)" ], - "md5": "eb30f6ad259467188fa89f550f1b215d" + "md5": "7536c45bbc6dcfcc34747f7e9a004e47" }, { "authorized_access_point": "Amt K\u00f8benhavn", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -26048,6 +25771,12 @@ "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 +25793,7 @@ "K\u00f8benhavn (Amt)", "K\u00f8benhavns Amtskommune" ], - "md5": "4eced719883298f39c109083a9c6f1e2" + "md5": "0c5fd95b0d15034b5884b7bcd45bcad2" }, { "authorized_access_point": "Hummel (Scheidegg, Lindau)", @@ -26111,6 +25840,14 @@ "value": "(DE-588)4095607-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Seit 1969 Ortsteil von Nu\u0308mbrecht" + ] + } + ], "pid": "040956075", "type": "bf:Place", "related": [ @@ -26121,7 +25858,7 @@ "authorized_access_point": "Nu\u0308mbrecht" } ], - "md5": "b83dd7ecdd3bae1d31d9a63d14024910" + "md5": "56350bf91c218722112e7668fb1aa06d" }, { "authorized_access_point": "Hille", @@ -26142,12 +25879,20 @@ "value": "(DE-588)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": "11ce73026883e02a9021c2fe80de28e3" }, { "authorized_access_point": "Dubrau (Calau)", @@ -26214,6 +25959,13 @@ "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 +25975,7 @@ "authorized_access_point": "Bernkastel-Kues" } ], - "md5": "826075d65f4ea729630b44cd5053a4c8" + "md5": "c1587d82a9cddfced8d123cf25d171ea" }, { "authorized_access_point": "Fu\u0308rstenfeld", @@ -26251,6 +26003,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 +26025,7 @@ "Stadtgemeinde Fu\u0308rstenfeld", "Fu\u0308rstenfeld Thermenhauptstadt" ], - "md5": "74fb04c0483981e3ebe7a9b9248c99e4" + "md5": "18f55bf272bfc34a0395e45c2ac3b355" }, { "authorized_access_point": "Forchheim-Burk", @@ -26294,6 +26052,12 @@ "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 +26074,10 @@ "Forchheim (Oberfr.)- Burk", "Burk (Forchheim-Burk)" ], - "md5": "1133369b2536acedf84edb536b860087" + "md5": "77b0b6cf2a63c338eb7d6dff3101affe" }, { "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 +26095,32 @@ "value": "(DE-588)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 +26128,7 @@ "Bandong", "Kota Kembang" ], - "md5": "d3ce4a7000fc53548e09a2da2347180f" + "md5": "cb03c02e0be6e4b5d9e4a86971a290dd" }, { "authorized_access_point": "Innerschweiz", @@ -26370,6 +26149,14 @@ "value": "(DE-588)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 +26168,10 @@ "Zentralschweiz", "Fu\u0308nf Orte" ], - "md5": "14e02759f12471dded2070063d1aba9f" + "md5": "9e2ddb4b9102b9a60a2c23a03c35f3da" }, { "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 +26189,56 @@ "value": "(DE-588)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 +26271,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": "59262b33e7ddc1da78ac48952641b616" }, { "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 +26292,24 @@ "value": "(DE-588)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 +26330,7 @@ "Su\u0308dda\u0308nemark", "S\u00f8nderjylland" ], - "md5": "4928526430cc69ce78284fc42389d088" + "md5": "c7f45c21d85a7a210122cb82e60d8100" }, { "authorized_access_point": "Kues", @@ -26531,6 +26351,15 @@ "value": "(DE-588)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 +26370,7 @@ "variant_access_point": [ "Cues" ], - "md5": "ed3c1a6cbbb2d53a1a9339f35e40e960" + "md5": "1e199dc54e528743902dd22c36206603" }, { "authorized_access_point": "Bernkastel-Kues", @@ -26568,6 +26397,12 @@ "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 +26422,10 @@ "Stadtgemeinde Bernkastel-Kues", "Verbandsgemeinde Bernkastel-Kues" ], - "md5": "35d7edea9b806de759ee05b2f9740b20" + "md5": "8e36186371694335e0e0dfcd5161eedf" }, { "authorized_access_point": "Kreis Zu\u0308llichau-Schwiebus", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -26615,6 +26443,14 @@ "value": "(DE-588)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 +26463,10 @@ "Landkreis Zu\u0308llichau-Schwiebus", "Zu\u0308llichau-Schwiebus (Kreis)" ], - "md5": "b65e184868796e42405e78917da973a6" + "md5": "597d0b47f62767a78ad788c8a79455a0" }, { "authorized_access_point": "Westfa\u0308lische Bucht", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Becken" - } - ], "identifiedBy": [ { "source": "GND", @@ -26663,28 +26492,10 @@ "Mu\u0308nsterla\u0308nder Bucht", "Mu\u0308nsterla\u0308nder Becken" ], - "md5": "920daed676c949a8b31ea3e5f056bb7f" + "md5": "7c94c78ed971dea4d3326798cc95fbc7" }, { "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 +26513,36 @@ "value": "(DE-588)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 +26567,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": "6197a6bbc696e06bd7e401abaa40badc" + }, + { + "authorized_access_point": "Toskana", "identifiedBy": [ { "source": "GND", @@ -26789,6 +26597,52 @@ "value": "(DE-588)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 +26659,7 @@ "Granducato Toscana", "Gro\u00dfherzogtum Toskana" ], - "md5": "ec7092e40793250a514b65a46ceb0224" + "md5": "e5170baccc2022760a3d1cb03c41b3e9" }, { "authorized_access_point": "Tihama", @@ -26826,12 +26680,20 @@ "value": "(DE-588)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": "508ba898eb56a0d44b452191caebd76c" }, { "authorized_access_point": "Teltow", @@ -26852,30 +26714,20 @@ "value": "(DE-588)4059408-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Landkreis Potsdam-Mittelmark" + ] + } + ], "pid": "040594084", "type": "bf:Place", - "md5": "ad9c68305d3fbd18c8f2cdb1ec263f03" + "md5": "6c1f8317220d07b995fe64a37e090221" }, { "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 +26745,32 @@ "value": "(DE-588)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 +26795,10 @@ "Storstr\u00f8m (Amt)", "Storstr\u00f8m Amtskommune" ], - "md5": "20e7c0c1563d224437772052b4f2dbbd" + "md5": "d1b21e1d0e3ec648b0aba83be4b54148" }, { "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 +26816,36 @@ "value": "(DE-588)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 +26860,7 @@ "S. Paulo (Staat)", "Estado de S. Paulo" ], - "md5": "3cd437276a9d22deab41839b529d9de7" + "md5": "06d65b47da67073e70b75037445dd854" }, { "authorized_access_point": "Norden (Landkreis Aurich)", @@ -26997,6 +26881,14 @@ "value": "(DE-588)4042513-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Landkreis Aurich, Ostfriesland, 1255 urkundl. erwa\u0308hnt" + ] + } + ], "pid": "040425134", "type": "bf:Place", "broader": [ @@ -27013,7 +26905,7 @@ "Stadt Norden", "No\u0308rden" ], - "md5": "bf8a6156dd5519ebee932fae0e7048ba" + "md5": "94a38fee74378f6c52c62e306b852c69" }, { "authorized_access_point": "Nagold", @@ -27041,6 +26933,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 +26947,7 @@ "Stadt Nagold", "Gro\u00dfe Kreisstadt Nagold" ], - "md5": "2d1b373cf31436f789af71db1cbf36bc" + "md5": "31028e0c98ea25836b97af1525717a60" }, { "authorized_access_point": "Markkleeberg", @@ -27070,6 +26968,14 @@ "value": "(DE-588)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 +26990,10 @@ "Stadt Markkleeberg", "Cleburg" ], - "md5": "f1a215dd0270cf4e2a71c24287bb34a4" + "md5": "413a2dc50ebd875f25410ee848da5212" }, { "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 +27011,36 @@ "value": "(DE-588)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 +27060,7 @@ "Mannehemium", "Interamnium" ], - "md5": "fd50ca26d07bb452c2ed7ffee32d2147" + "md5": "3bfdf0c9614c12382e4dfa7cc1393309" }, { "authorized_access_point": "Bernkastel-Kues-Machern", @@ -27162,6 +27081,14 @@ "value": "(DE-588)4036811-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Bernkastel-Kues" + ] + } + ], "pid": "040368114", "type": "bf:Place", "related": [ @@ -27172,21 +27099,10 @@ "variant_access_point": [ "Machern (Bernkastel-Kues)" ], - "md5": "592384b7d8076b0256e4ce188d9499df" + "md5": "e4324e94a88df3d67957f0124fbc9b4c" }, { "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 +27120,38 @@ "value": "(DE-588)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": "4d1af86c6f140a467811676d16d450ce" }, { "authorized_access_point": "Laubach (Landkreis Gie\u00dfen)", @@ -27230,6 +27172,14 @@ "value": "(DE-588)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 +27191,10 @@ "Laubach (Oberhessen)", "Laubach in Hessen" ], - "md5": "0f73ade8ccb3524c859efa14d472bc9f" + "md5": "bd167d341e8b6869132371b8df6aa467" }, { "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 +27212,36 @@ "value": "(DE-588)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 +27259,7 @@ "Kylis", "K\u0327i\u0304le" ], - "md5": "01837ca6cbba5d7b58a7305ddabfcd0b" + "md5": "205d6cd6d12ae96090c26b61a003f690" }, { "authorized_access_point": "Karben", @@ -27317,6 +27280,14 @@ "value": "(DE-588)4029637-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Wetteraukreis" + ] + } + ], "pid": "040296377", "type": "bf:Place", "related": [ @@ -27339,7 +27310,7 @@ "authorized_access_point": "Petterweil" } ], - "md5": "e25347140da857fd3b455a1c55309752" + "md5": "140ba84cfb6725324d372efb7adf2724" }, { "authorized_access_point": "Judenburg", @@ -27400,6 +27371,12 @@ "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 +27389,7 @@ "Heidenheim (Hahnenkamm)", "Heidenheim am Hahnenkamm" ], - "md5": "2bed05f7671b3a86579df2adea38ec36" + "md5": "5ee9ceb5419440334af2e073dd5e13a0" }, { "authorized_access_point": "Freilassing", @@ -27450,17 +27427,6 @@ }, { "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 +27444,36 @@ "value": "(DE-588)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 +27488,10 @@ "Gro\u00dfe Kreisstadt Calw", "Kalw" ], - "md5": "95e6df74d5c635dbafa9223ce7b4a6c0" + "md5": "7f207297ee4d1f395e3faa30333c55dc" }, { "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 +27509,24 @@ "value": "(DE-588)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 +27539,10 @@ "Cajamarca (Dep.)", "Departamento de Cajamarca" ], - "md5": "94f7f531df43a2ef774b2f1193b2b697" + "md5": "0d25526afef25e16563c71105efd7875" }, { "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 +27560,24 @@ "value": "(DE-588)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 +27591,10 @@ "variant_access_point": [ "Markt Berchtesgaden" ], - "md5": "4c7a1f3955a7a8d641ee8fe7d6337c7a" + "md5": "a7c959e4218121d715a2da2fe8af7c0a" }, { "authorized_access_point": "Amt A\u030abenra\u030a", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -27651,7 +27641,7 @@ "Abenraa (Amt)", "Apenrade (Amt)" ], - "md5": "2410d80b52827500fad7955433008640" + "md5": "7938bf3ca65606f55ee9ab96a8b7d1c1" }, { "authorized_access_point": "Gru\u0308nberg-Stockhausen", @@ -27672,6 +27662,14 @@ "value": "(DE-588)3014160-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Gru\u0308nberg im Landkreis Gie\u00dfen, Hessen" + ] + } + ], "pid": "030141605", "type": "bf:Place", "related": [ @@ -27686,7 +27684,7 @@ "Gru\u0308nberg (Landkreis Gie\u00dfen-Stockhausen)", "Stockhausen (Gru\u0308nberg-Stockhausen)" ], - "md5": "b631697d081c965e7b39a5613923fcc9" + "md5": "0119a6ae1a1fe6cd513942e62eacad12" }, { "authorized_access_point": "Rodheim vor der Ho\u0308he", @@ -27758,13 +27756,6 @@ }, { "authorized_access_point": "Amt Bornholm", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -27782,6 +27773,14 @@ "value": "(DE-588)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 +27795,7 @@ "Bornholms Amt", "Bornholm (Amt)" ], - "md5": "32f039109709bed48581ee826a786152" + "md5": "46a39c732601a900ca11cce1067fb51d" }, { "authorized_access_point": "Deining (Wolfratshausen)", @@ -27828,12 +27827,6 @@ }, { "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", @@ -27870,7 +27863,7 @@ "Russische Orthodoxe Dio\u0308zese von Berlin und Deutschland", "Russische Orthodoxe Kirche im Ausland" ], - "md5": "8a15b4d8b55e6f8d5ea6a677179459ca" + "md5": "798e9b59d22257f91479d9f15569561a" }, { "authorized_access_point": "Bolkenhain", @@ -27919,9 +27912,17 @@ "value": "(DE-588)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": "90e84803579a63981d67e52fc642f78c" }, { "authorized_access_point": "Aalen-Wasseralfingen", @@ -27942,6 +27943,14 @@ "value": "(DE-588)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 +27961,6 @@ "authorized_access_point": "Wasseralfingen" } ], - "md5": "e2a78a0aaf1313433bdd5d7594fe980e" + "md5": "f83612b9c6b36608796e2ea9cdc4667b" } ] \ No newline at end of file diff --git a/data/plgnd_metadata.csv b/data/plgnd_metadata.csv index 14c9257b..5e28f91f 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-07-30 15:29:20.245466 2024-07-30 15:29:20.24547 ded1a23c-b1ad-4342-8caa-81f09c2d0fd5 {"md5": "0ecfcfaa3dd393f2158f06b906a4f166", "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"}], "variant_access_point": ["Burgwall Katowitz", "Kněží hora", "Hradiště na Kněží hoře", "Katowice", "Katowitz"], "authorized_access_point": "Burgwall Katovice"} 1 +2024-07-30 15:29:20.32448 2024-07-30 15:29:20.324483 02bdf176-d02a-481b-9a1f-e01d1f28abf0 {"md5": "8dd759fa372c28f603f9f44e87e431e8", "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", "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-07-30 15:29:20.385273 2024-07-30 15:29:20.385278 b4916e29-12f3-41e6-83a2-bbbe671d7944 {"md5": "4128f98884ffa34f7a92f56adbe020d0", "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", "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-07-30 15:29:20.435605 2024-07-30 15:29:20.435608 dcb4a5e5-6e09-479d-8a59-c65dbb4ed622 {"md5": "d0d0bcfab6515fe7e7d4d43e96257e59", "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", "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-07-30 15:29:20.479697 2024-07-30 15:29:20.479699 1fa0fe74-ef17-47c7-9187-2a70e9aecdd1 {"md5": "9a5d419500024b788bd5c42ebd5b799b", "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"}], "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-07-30 15:29:20.523176 2024-07-30 15:29:20.523179 59273c50-e5a8-4dad-8b6b-aeb41790bd57 {"md5": "8a7734ee14a4fad28fffe1a8f80706c4", "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)"}], "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-07-30 15:29:20.573731 2024-07-30 15:29:20.57374 fb17cd03-7747-4931-8547-9328f95211a6 {"md5": "df5e41fd13dff03c8f5770ba978f8943", "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"}], "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-07-30 15:29:20.647205 2024-07-30 15:29:20.647213 2e72605d-2c02-4fcb-8317-f5f69085fffa {"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"} 1 +2024-07-30 15:29:20.735648 2024-07-30 15:29:20.735658 fc879e92-f195-4c51-bd1b-84d481e2ee52 {"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"} 1 +2024-07-30 15:29:20.822148 2024-07-30 15:29:20.822155 c96d5f72-75c9-48da-ab8c-d1507cd15158 {"md5": "b461bfc1e7c2d34084d7930e1503877c", "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", "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-07-30 15:29:20.890173 2024-07-30 15:29:20.89018 b93d8c66-da56-49ad-966b-c4f2d873cc65 {"md5": "5f3564b40a6a5ef3255ea7d422645922", "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"}], "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-07-30 15:29:20.952262 2024-07-30 15:29:20.95227 1fc60bd1-f4f5-4f72-8282-f2beff13fed1 {"md5": "9aca5824ca86a0a67070d6d9d1de0e7e", "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"}], "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-07-30 15:29:21.019425 2024-07-30 15:29:21.019433 a521b42d-0c80-4759-acc4-2e5bd3ca4335 {"md5": "5ad8121969261132efbc547d89436855", "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", "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-07-30 15:29:21.104322 2024-07-30 15:29:21.10433 0fc00a4c-d4df-4628-bb1a-86ba4ad01cef {"md5": "149e88793a98785da389a915e15cb2b0", "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"}], "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-07-30 15:29:21.181489 2024-07-30 15:29:21.181497 3ba67feb-11ec-4446-a6d2-f095f567ce47 {"md5": "63dc2ac0ce9ed8bf0966cb0255453418", "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"}], "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-07-30 15:29:21.25044 2024-07-30 15:29:21.250449 adbea276-224a-4013-a44b-302f61cca9ff {"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"} 1 +2024-07-30 15:29:21.319959 2024-07-30 15:29:21.319967 bddd6661-4ab8-402d-83e7-a3513fc6b4ae {"md5": "113b39dcfb50f28523ee29186aa22ee2", "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"}], "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-07-30 15:29:21.404195 2024-07-30 15:29:21.404203 01ef4e1f-d16f-424d-8b08-d259fedca24a {"md5": "5cf14361dd0a611afd3a326699a29dca", "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", "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-07-30 15:29:21.475547 2024-07-30 15:29:21.475549 f50b7429-9b00-4b14-935e-7cffd63d2cd3 {"md5": "de12503e88e93b0b4df12878a49e91a7", "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"}], "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-07-30 15:29:21.547892 2024-07-30 15:29:21.547901 9a56f392-8807-4ab7-83e4-8d857d4e2573 {"md5": "f0cb5f0ee7568d2eb5f41c50ca5f3d8a", "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)"}], "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)"} 1 +2024-07-30 15:29:21.620453 2024-07-30 15:29:21.620461 75261900-2f0a-46bc-92cc-960f7d6065dc {"md5": "1befefa00d00bf37c094418c87d11d66", "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"}], "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-07-30 15:29:21.692148 2024-07-30 15:29:21.692157 61a4e1b7-9618-4d84-9620-d5c8b648f058 {"md5": "1043a431bc4f10f4e5fcf097dca1e5a7", "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"}], "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-07-30 15:29:21.77346 2024-07-30 15:29:21.773468 af9d059a-6ccc-429a-ba38-164ae322d8f7 {"md5": "e3f581ecf339fa953b5b8692f76a1b5d", "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"}], "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-07-30 15:29:21.858078 2024-07-30 15:29:21.858086 4a2c19cd-10b1-400f-a01e-7d726af7e55b {"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"} 1 +2024-07-30 15:29:21.93786 2024-07-30 15:29:21.937867 d0f91734-ba32-4ca8-bebc-eef4b64d1fe6 {"md5": "a1ef780f6ea651d80c3f652d2f9d2c6c", "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"}], "authorized_access_point": "Schloss Weissenegg (Fernitz-Mellach)"} 1 +2024-07-30 15:29:22.019259 2024-07-30 15:29:22.01927 27263f57-86cf-4788-b593-ed036a58afb3 {"md5": "fd78fd0ce2a56d40209e76cb52e3f476", "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"}], "authorized_access_point": "Schloss Grub (Obertraun)"} 1 +2024-07-30 15:29:22.101041 2024-07-30 15:29:22.10105 8afaf5ae-a0f0-49aa-b850-986c3768d96b {"md5": "49ccb1225208f502b77f6aa57bc7565c", "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", "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-07-30 15:29:22.181747 2024-07-30 15:29:22.181757 26cd60e0-21df-45c6-a279-7f499526b9d2 {"md5": "7909bbf721b856045f9ce5dd753721d3", "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"}], "variant_access_point": ["Kaiserplatz (Hamburg)"], "authorized_access_point": "Platz der Republik (Hamburg)"} 1 +2024-07-30 15:29:43.320519 2024-07-30 15:29:43.320529 bf9dd02e-4ac3-495a-ad0a-ef2cc23246b5 {"md5": "2451ae0f8cec736cca4dc032ecc7414c", "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"}], "authorized_access_point": "Gränzbach"} 1 +2024-07-30 15:29:22.245998 2024-07-30 15:29:22.246008 4440e863-e70e-45c6-a3c4-307f28ddef79 {"md5": "1585b6187b7c40fe8f11c21426c91b30", "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"}], "authorized_access_point": "Phoenixhof (Hamburg)"} 1 +2024-07-30 15:29:22.33245 2024-07-30 15:29:22.332459 33ceb5e2-9f9c-4749-8245-2293da674232 {"md5": "a5d8f5b51f6202493e7d6c9269b90d83", "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"}], "variant_access_point": ["NAA"], "authorized_access_point": "Neues Amt Altona (Hamburg-Altona)"} 1 +2024-07-30 15:29:22.400021 2024-07-30 15:29:22.400028 8fde3883-c8a4-429f-bc05-947ad3de6a28 {"md5": "6974efab8ba720fae5d2c3b166468176", "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", "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-07-30 15:29:22.490348 2024-07-30 15:29:22.490355 8ae14a7e-59bb-48b2-9e87-79c61aa8fa13 {"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"} 1 +2024-07-30 15:29:22.553012 2024-07-30 15:29:22.55302 612659b1-4243-43a0-873b-bbb5e6a0a670 {"md5": "bf6e5c4667514ebd3b08844e6ade03ee", "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"}], "variant_access_point": ["Pfarrkirche Heiliger Georg (Hainersdorf)", "Pfarrkirche Hl. Georg (Hainersdorf)"], "authorized_access_point": "Sankt Georg (Hainersdorf)"} 1 +2024-07-30 15:29:22.620822 2024-07-30 15:29:22.620829 5c8a97eb-fc2f-468a-9127-376d28c39b3a {"md5": "55ec925a465dbcf25836624e8fe0cc0c", "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"}], "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-07-30 15:29:22.687118 2024-07-30 15:29:22.687126 7183e43f-2790-4cc2-9090-9bf10ca3973d {"md5": "4945a081325eeb07647eedb6aab1da25", "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"}], "authorized_access_point": "Schloss Birkenstein (Birkfeld)"} 1 +2024-07-30 15:29:22.762374 2024-07-30 15:29:22.762382 a46693e7-2aef-4a3a-84d4-b981490bbefd {"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"} 1 +2024-07-30 15:29:22.829233 2024-07-30 15:29:22.829241 d57925a6-a589-41ef-bfa2-353ac80818e3 {"md5": "c3c1b9de0710bbede820063ef5902c14", "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"}], "authorized_access_point": "Schloss Neudau (Neudau)"} 1 +2024-07-30 15:29:22.906772 2024-07-30 15:29:22.906779 fee8e904-a23e-46d5-8303-450207518464 {"md5": "b35e0dccfed6283e8297c5bc69033f6a", "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"}], "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-07-30 15:29:22.986057 2024-07-30 15:29:22.986064 c91c8a11-e385-426d-8a80-58fd9cfd5767 {"md5": "90c40219384fbaf139d3a0ff16fa6646", "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"}], "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-07-30 15:29:23.057491 2024-07-30 15:29:23.057499 d7b739b2-d933-42a6-b107-1d05fdf0c40d {"md5": "9b096f48a550991be586f26fff0b623c", "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"}], "variant_access_point": ["NSG Gradberg", "Gradberg"], "authorized_access_point": "Naturschutzgebiet Gradberg"} 1 +2024-07-30 15:29:23.132885 2024-07-30 15:29:23.132894 531a6261-3efb-4a22-8ab9-17832566ca67 {"md5": "9867d19c75f8b03d5f9ae7b3eb346fb1", "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"}], "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-07-30 15:29:23.206992 2024-07-30 15:29:23.207 b828069d-e321-4330-bb03-282eaa15381f {"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"} 1 +2024-07-30 15:29:23.276068 2024-07-30 15:29:23.276075 eaa533af-16bd-4ab4-a6cb-b7803f9ad87f {"md5": "cef0a657d2faec5e65cf2414843cf0d2", "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", "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-07-30 15:29:23.343953 2024-07-30 15:29:23.34396 5738a786-16a6-46f2-8151-bdb3c8584592 {"md5": "636095869c8e057dcd65316a181c16d5", "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"}], "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-07-30 15:29:23.410277 2024-07-30 15:29:23.410285 dd40602d-0c28-42e8-8116-3a4442e912e1 {"md5": "38e45f32cf456da32cdea9435e871c56", "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"}], "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-07-30 15:29:23.478182 2024-07-30 15:29:23.478194 39b9d688-c99e-4bb9-beaa-eb1cd8dae716 {"md5": "236bf968cd45859394a40f121e7ca976", "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", "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-07-30 15:29:24.217499 2024-07-30 15:29:24.217508 62596316-a2f4-4bdf-89d5-a9fd551b69bb {"md5": "95b9343cb252be5f9882d1b99085c889", "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"}], "authorized_access_point": "Heiligenhäuschen (Weibern, Landkreis Ahrweiler)"} 1 +2024-07-30 15:29:23.55318 2024-07-30 15:29:23.553185 dd39e334-0ce1-428a-9b02-62b354fdd8bb {"md5": "69cc1ddc27cf69b051d7cd400f8ed574", "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"}], "authorized_access_point": "Theaterbau des Théâtre des Champs-Élysées (Paris)"} 1 +2024-07-30 15:29:23.628492 2024-07-30 15:29:23.628501 3e2314c7-a915-4762-8953-1d6a2be695a5 {"md5": "7f5b529cdf10bdd142a770981da4b44f", "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", "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-07-30 15:29:23.701268 2024-07-30 15:29:23.701277 7129c7b0-5676-461d-b28d-044e1a1a07e7 {"md5": "d258c56241a28ec6700a0964b463da9d", "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"}], "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-07-30 15:29:23.771872 2024-07-30 15:29:23.77188 3001f0cb-b477-4966-941b-803f830542a9 {"md5": "21378658c63ba3b965fc448af624a390", "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", "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-07-30 15:29:23.850946 2024-07-30 15:29:23.850955 84535490-1aee-484b-be15-43f8d8a0eb60 {"md5": "d60ab8fcbd7ad12751133b42f26bb68c", "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"}], "authorized_access_point": "Monumento al marqués de Campo (Valencia)"} 1 +2024-07-30 15:29:23.920123 2024-07-30 15:29:23.920131 168fd2eb-a378-49f8-bc91-0d639b068772 {"md5": "44c6129ecd22ffcd98ad80ae00cf675a", "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)"}], "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-07-30 15:29:23.987212 2024-07-30 15:29:23.98722 f009f756-a144-4f81-8bde-b23d93eb61c9 {"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)"} 1 +2024-07-30 15:29:24.060466 2024-07-30 15:29:24.060475 8a564fd0-05ee-43f3-91a4-766a7416f322 {"md5": "98a3216a2943b1abac2905d2753703c0", "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"}], "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-07-30 15:29:24.136924 2024-07-30 15:29:24.136934 1be318b2-3151-4da8-9802-0cd37b68d281 {"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"} 1 +2024-07-30 15:29:24.285887 2024-07-30 15:29:24.285895 0d3c9012-8df3-4936-b257-95091daeb408 {"md5": "ed95568f27d5c27c5e575e0296721eb8", "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"}], "authorized_access_point": "Mariensäule Weibern (Weibern, Landkreis Ahrweiler)"} 1 +2024-07-30 15:29:24.357037 2024-07-30 15:29:24.357046 c1ba0bb8-a09a-4f64-b6b7-877588cbf996 {"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"} 1 +2024-07-30 15:29:24.432837 2024-07-30 15:29:24.432846 f1504295-8df5-47bf-aeec-96dd6003aec6 {"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)"} 1 +2024-07-30 15:29:24.525141 2024-07-30 15:29:24.525149 b84332e0-c569-44b9-bb3b-d5ced866401f {"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"} 1 +2024-07-30 15:29:24.576648 2024-07-30 15:29:24.576651 1c859ad4-cca3-49c5-bfe2-05f45fd7b4f0 {"md5": "0430e3cb7bc7b95343041270db33040c", "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)"}], "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)"} 1 +2024-07-30 15:29:24.650773 2024-07-30 15:29:24.650782 497120ca-32f8-4cf3-a934-58ccc84f3a6c {"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"} 1 +2024-07-30 15:29:24.729293 2024-07-30 15:29:24.729303 a8721697-22b6-4deb-9481-f7ae97f750a6 {"md5": "dd55df2adca1feb21b30b3ca0d91d708", "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"}], "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-07-30 15:29:24.812911 2024-07-30 15:29:24.81292 fac478c8-7b90-4081-87a6-90ff01dfc76d {"md5": "b8f57203a37cd682a943ca81ecfd6ae5", "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"}], "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-07-30 15:29:24.886943 2024-07-30 15:29:24.886952 2f82350d-1c84-4010-80bd-27ea880ffbf9 {"md5": "a18e84673fc2be72a8e7f440bbb68d0d", "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)"}], "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-07-30 15:29:26.145379 2024-07-30 15:29:26.145388 6c924719-5a46-4758-b05a-413d7b570eab {"md5": "d12ea0be18855a066bc4f4a28be90c25", "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"}], "variant_access_point": ["Paço Real (Lissabon)"], "authorized_access_point": "Paço de Alcáçova (Lissabon)"} 1 +2024-07-30 15:29:24.959044 2024-07-30 15:29:24.959051 d1c3ba3b-8828-4e06-966c-62c4e3d85c40 {"md5": "eae20940da3a034cbf77ee9f5338e3fd", "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"}], "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-07-30 15:29:25.028222 2024-07-30 15:29:25.028229 169745ed-b0d8-430b-a03c-66e1e208f626 {"md5": "af1496a34e3c525b2768f5de58f2053d", "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)"}], "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-07-30 15:29:25.098602 2024-07-30 15:29:25.09861 ce3b54d0-7726-4359-93da-767c70848159 {"md5": "1fa7a33ab2b6e2bac5308fca33d79b01", "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"}], "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-07-30 15:29:25.184488 2024-07-30 15:29:25.184496 91fdd0b8-68d7-46d8-8138-a65c959addfa {"md5": "764fb87226477459863c512645269a93", "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"}], "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-07-30 15:29:25.273829 2024-07-30 15:29:25.273837 27d411df-ff6f-42c6-b615-6c421fe44b96 {"md5": "4c7f3e6dd01b1d50de3ce85a8973e2f2", "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"}], "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-07-30 15:29:25.361336 2024-07-30 15:29:25.361343 14a73806-0e3f-4cc7-902d-26ec89fb2896 {"md5": "a435c64338b906b05b303dc50265b48c", "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"}], "variant_access_point": ["Madonna del Bosco (Ozegna)"], "authorized_access_point": "Santuario della Madonna del Bosco (Ozegna)"} 1 +2024-07-30 15:29:25.446479 2024-07-30 15:29:25.446487 3bc0d777-36be-4348-b0d8-a5823a617962 {"md5": "6d185debe7bc94a43b5589e2c57e4d4f", "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)"}], "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-07-30 15:29:25.519689 2024-07-30 15:29:25.519697 cf9e904c-4a84-4814-babc-e22b09e8c0d3 {"md5": "7be9c2dcd20ab305c3cb7729fb84108d", "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"}], "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-07-30 15:29:25.592652 2024-07-30 15:29:25.592655 eb78b1cd-9577-4be3-a744-9e7c13d5c586 {"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)"} 1 +2024-07-30 15:29:25.673534 2024-07-30 15:29:25.673541 df250f17-ddc5-4da1-a4d1-24f84c1e9af6 {"md5": "8789100de3a77575ce8fdc8d3b01dd23", "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"}], "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-07-30 15:29:25.746417 2024-07-30 15:29:25.746425 fc65be93-76e8-4f57-ab08-5ddfcb178dce {"md5": "413676e0ba3cef72bf4b88c5a50c1a55", "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"}], "variant_access_point": ["Hofmarktschloss Stockau (Reichertshofen)"], "authorized_access_point": "Schloss Stockau (Reichertshofen)"} 1 +2024-07-30 15:29:25.818724 2024-07-30 15:29:25.818733 c6e74039-d746-4d0d-baf1-f9c2231d54ec {"md5": "ed9965dc44e1b113b8f96e99d542d171", "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"}], "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-07-30 15:29:25.898775 2024-07-30 15:29:25.898784 e2176b3e-beae-411c-9345-d905be618daf {"md5": "d6c8db7e76aa35240c7028e5fb5f55a8", "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"}], "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-07-30 15:29:25.974664 2024-07-30 15:29:25.974673 3039c6da-696e-49fd-b906-e54425af764b {"md5": "e1d862b1162221e0402d0426ae2693e1", "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", "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-07-30 15:29:26.071826 2024-07-30 15:29:26.071834 745b6817-478a-4b0d-9722-05e446f31937 {"md5": "33dd569888c6fb72a030e60951721285", "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"}], "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-07-30 15:29:26.208767 2024-07-30 15:29:26.208774 bf714fee-0b70-4c8d-88ee-1e9442ed4a57 {"md5": "881a8ad8cf43c21cc881e044e9e53e43", "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"}], "variant_access_point": ["Vallesina"], "authorized_access_point": "Vallesina"} 1 +2024-07-30 15:29:26.285477 2024-07-30 15:29:26.285485 8763ea6c-2c06-481c-b7a1-6de578377177 {"md5": "316e42f6c7c9cf7c21cd25039cfe7046", "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"}], "variant_access_point": ["Barsbütteler Rathaus (Barsbüttel)"], "authorized_access_point": "Rathaus Barsbüttel (Barsbüttel)"} 1 +2024-07-30 15:29:26.355226 2024-07-30 15:29:26.355234 b4f61b0b-6a1c-4314-9053-ba471cd6a903 {"md5": "70fcf0a82af8dedee2e3e02f7828f5a0", "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"}], "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-07-30 15:29:26.426301 2024-07-30 15:29:26.426309 2c03bb55-9cf7-4437-bfb2-e579930da7c2 {"md5": "96ae9af18082f4e76dc487caf05742ff", "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"}], "variant_access_point": ["Großhansdorfer Rathaus (Großhansdorf)"], "authorized_access_point": "Rathaus Großhansdorf (Großhansdorf)"} 1 +2024-07-30 15:29:26.51126 2024-07-30 15:29:26.511269 b2656218-8490-4b79-a071-859e576dcf4a {"md5": "00d30993494099aa398425f94570bdbe", "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"}], "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-07-30 15:29:26.588542 2024-07-30 15:29:26.588551 2cdb0497-b34c-41c3-9eb1-19ffc583f554 {"md5": "7c6f8d1bc8ed21e5272c35597d119865", "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"}], "variant_access_point": ["Glinder Rathaus (Glinde)"], "authorized_access_point": "Rathaus Glinde (Glinde)"} 1 +2024-07-30 15:29:26.642585 2024-07-30 15:29:26.642592 22e6f12b-4a65-4e95-9467-a1a9fbb698f6 {"md5": "9837b25d4076e062538062ebaa1b1fe9", "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"}], "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-07-30 15:29:26.701473 2024-07-30 15:29:26.70148 602ec70c-9625-4cfc-a485-7a1e8a2ee785 {"md5": "a675607a13360522410c20a52ed230f0", "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"}], "variant_access_point": ["Reinbeker Rathaus (Reinbek)"], "authorized_access_point": "Rathaus Reinbek (Reinbek)"} 1 +2024-07-30 15:29:26.771198 2024-07-30 15:29:26.771206 4b91971e-1e45-46aa-81e2-adc8689411da {"md5": "3c337a55adc70bafe6fb9b6a5473f55b", "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"}], "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-07-30 15:29:26.849928 2024-07-30 15:29:26.849936 237df56d-1415-4ca7-a295-575f2034c5c6 {"md5": "10cf184be021dedb28e127c109e11fb0", "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"}], "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-07-30 15:29:26.922265 2024-07-30 15:29:26.922273 725248fe-4764-46e4-a35f-7110443af499 {"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"} 1 +2024-07-30 15:29:26.993256 2024-07-30 15:29:26.993265 5fabdc83-e7ea-4ea7-b285-5e1a9fa37de5 {"md5": "46758f2f289253bcd1268b0ba67b9f7e", "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"}], "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-07-30 15:29:27.061976 2024-07-30 15:29:27.061985 e372bf55-abe8-4cf7-b50b-aa06204238eb {"md5": "a514a170832f22a8a03e8ab71c9ee315", "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"}], "variant_access_point": ["Mühlenpforte (Bad Driburg)"], "authorized_access_point": "Stadtgarten Bad Driburg (Bad Driburg)"} 1 +2024-07-30 15:29:27.143095 2024-07-30 15:29:27.143103 c99e62d2-a939-4284-9134-668229aa117a {"md5": "bc875241b838c5043aadc9128a7f3b40", "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"}], "variant_access_point": ["Madonna della Neve (Casto)"], "authorized_access_point": "Santuario della Madonna della Neve (Casto)"} 1 +2024-07-30 15:29:27.228226 2024-07-30 15:29:27.228234 78b09cb1-ec32-4b39-9d43-e8d580c3b51f {"md5": "3c075ac7411d5565e6bb1084276e6f70", "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"}], "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-07-30 15:29:27.297521 2024-07-30 15:29:27.297529 2505966d-2b2b-4543-a54a-6dd8abea9c37 {"md5": "63a8e0fdc49ad8c896d6dade233a6751", "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", "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-07-30 15:29:27.369226 2024-07-30 15:29:27.369234 221ad9f3-e246-4489-8b20-ad2b3f2d4640 {"md5": "288d2e80658d530b6da579d7df96bb76", "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"}], "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-07-30 15:29:27.436206 2024-07-30 15:29:27.436214 f8fd669d-893f-4e13-bf79-660f50d2eacf {"md5": "e69f6de91ac482179d3fac322918dd2a", "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"}], "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-07-30 15:29:27.502141 2024-07-30 15:29:27.502181 2046cccd-54f3-44a8-a10c-5b212cc247ce {"md5": "5684ab3c25b5de440da087cc29b8f80c", "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"}], "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-07-30 15:29:27.57528 2024-07-30 15:29:27.575288 6911dd51-76a0-4fc8-87ee-af6e8c6c6326 {"md5": "1c26e3ea84c61da837eb5ff072f759c9", "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"}], "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-07-30 15:29:27.643502 2024-07-30 15:29:27.643504 3c1fffbf-1f2e-4446-8a39-461f3f66637e {"md5": "ffd3a36f3bfaa36eee4465c2becf2701", "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"}], "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-07-30 15:29:27.695983 2024-07-30 15:29:27.695991 1e2f78ca-5af9-417a-b8c6-fce2bfb20e07 {"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"} 1 +2024-07-30 15:29:27.767838 2024-07-30 15:29:27.767847 d8eceb1c-9af6-4a87-834f-fcf1120c983a {"md5": "fc2747780550c9ad507da42faf31a0bd", "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", "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-07-30 15:29:27.8538 2024-07-30 15:29:27.853809 950efaca-a9f5-4b97-be86-629dc2f2cab9 {"md5": "b74fa2ac08d3d9bbd0914931eee50289", "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", "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-07-30 15:29:27.937354 2024-07-30 15:29:27.937364 98dca66e-9c4e-4141-beee-3e4c3af3eb9e {"md5": "7c8f39793d28901332280ae081bd5cdf", "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"}], "variant_access_point": ["Wüstung Holzheim"], "authorized_access_point": "Holzheim (Horevun, Wüstung)"} 1 +2024-07-30 15:29:28.008565 2024-07-30 15:29:28.008575 42c6fe20-15c7-4be6-be71-a39544a30de2 {"md5": "7c44bcf023266ec3ea813aead0e4d42a", "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"}], "variant_access_point": ["Teubentz", "Wüstung Teubnitz", "Wüstung Teubentz", "Teubnitz (Ahornthal)"], "authorized_access_point": "Teubnitz"} 1 +2024-07-30 15:29:28.092878 2024-07-30 15:29:28.092887 11392831-97db-43f4-aae8-111424cf0ac5 {"md5": "57840ae5b1aada6efc5daeacfab84b20", "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"}], "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-07-30 15:29:28.167337 2024-07-30 15:29:28.167345 6b3084f1-f26d-4cfc-b4d6-3f18cc5f5818 {"md5": "a0601539d45a7519c3f54f8117147e9a", "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", "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-07-30 15:29:28.232856 2024-07-30 15:29:28.232863 e57e0342-e16a-45b0-b8d8-f4e1b6b3f7a3 {"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"} 1 +2024-07-30 15:29:28.297274 2024-07-30 15:29:28.297281 5493b8bb-18e4-40d6-9e32-ae3b4d324a1a {"md5": "1d04dfe143d1431527f45e3217246e83", "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", "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-07-30 15:29:28.357308 2024-07-30 15:29:28.357315 ae2932e7-6a08-48f2-8ad3-e268100ca999 {"md5": "fe54893d7c90630c6f78bfb3f8d91152", "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"}], "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-07-30 15:29:28.420776 2024-07-30 15:29:28.420784 e6e3aaab-51da-483a-a051-f8b42c135d7a {"md5": "9f78d332aec391e15ac5af745f145b84", "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"}], "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-07-30 15:29:28.491342 2024-07-30 15:29:28.491351 c2a4380a-cabd-485e-a7fe-def12ef8c5b6 {"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"} 1 +2024-07-30 15:29:28.563285 2024-07-30 15:29:28.563293 66f79abe-62c3-45cd-8a79-8953c1128c2e {"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)"} 1 +2024-07-30 15:29:28.627486 2024-07-30 15:29:28.627494 d6dbce68-190e-456a-9d2a-d33f4a3fe521 {"md5": "8e4ce06ecb5e2ddb0cd40cbd555add2f", "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", "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-07-30 15:29:28.689681 2024-07-30 15:29:28.689688 1cfc8e22-addd-4b88-8f41-c3ebbf1c312f {"md5": "0856d6c65c341b556aeb9defe1c027d2", "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"}], "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-07-30 15:29:28.75811 2024-07-30 15:29:28.758119 d24c7727-3d19-4e7a-9df5-28a063bf4adc {"md5": "30afeb534f28cab78f0812581f941113", "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", "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-07-30 15:29:28.828967 2024-07-30 15:29:28.828975 e4a977dc-1eaf-42f7-8a32-1b42db742d73 {"md5": "252ebe1482d9e3ec3ab4695ba4fc5bc0", "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", "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-07-30 15:29:28.894482 2024-07-30 15:29:28.894491 1ffe6d7b-2500-4a41-b7f4-f060fbbc55fc {"md5": "65c42fdc218acfd9b6520b5a40272ee6", "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", "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-07-30 15:29:28.963299 2024-07-30 15:29:28.963308 f9fe74c2-c297-4313-b29b-b16b3ef40bc2 {"md5": "2e4ac91684a363e3f331464b485c2765", "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", "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-07-30 15:29:29.03957 2024-07-30 15:29:29.03958 f4514705-427a-40b8-ad74-40f2b5919001 {"md5": "a436c65edfe71b56ddb230af830e9740", "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", "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-07-30 15:29:29.115552 2024-07-30 15:29:29.115561 98536dcb-ddc5-45e6-97b3-83640d74f36a {"md5": "61182faf2a67403f04a57bfb5f28b6b0", "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", "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-07-30 15:29:29.187219 2024-07-30 15:29:29.187225 72a1fd4f-15bc-4428-981d-2c7cecceab6c {"md5": "65b039273658ef6af5c44c17856b1bfc", "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", "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-07-30 15:29:29.254811 2024-07-30 15:29:29.254818 812001c6-526b-4dab-8d01-cbbb84934c0b {"md5": "51aaf24875673bb350c26aff06d4634a", "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", "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-07-30 15:29:29.317222 2024-07-30 15:29:29.31723 5c718835-83c0-48bf-a2cf-4c606d3f24e3 {"md5": "5d77e5d4a3b970068b774f8e1cbb3ec2", "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", "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-07-30 15:29:29.380764 2024-07-30 15:29:29.380772 a66cd253-d3f9-4c13-a578-ea3fa76fe006 {"md5": "04c8e301513969ad3c4e117026d6fa47", "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"}], "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-07-30 15:29:32.690439 2024-07-30 15:29:32.690446 3b9dc8dd-da14-4937-b873-d3f3e0c51149 {"md5": "f96db1c59174fe225e0fd1a327aec7f9", "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", "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-07-30 15:29:29.446296 2024-07-30 15:29:29.446305 a1086ad0-023a-4c26-80be-61d94c08e44c {"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"} 1 +2024-07-30 15:29:29.508724 2024-07-30 15:29:29.508731 f4055868-b645-4b14-a59e-660b6eb0120f {"md5": "c446fecda5f2b0b52b82f58ce90ccdac", "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"}], "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-07-30 15:29:29.575773 2024-07-30 15:29:29.575782 a9663b54-4d85-4666-a271-a6249aecce0c {"md5": "79f2027fa3eff7657e8ce3a4d40757c4", "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"}], "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-07-30 15:29:29.646023 2024-07-30 15:29:29.646031 f8bf50e1-0260-4f99-8a78-6c0727cedce3 {"md5": "ca7f859d6fe92ed38d5e078f181db65d", "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", "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-07-30 15:29:29.708813 2024-07-30 15:29:29.708816 92b19d12-0c05-4f20-a6b8-bc5431cb83da {"md5": "f148a46c559e2f1b607d53882d60f57b", "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", "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-07-30 15:29:29.769661 2024-07-30 15:29:29.769671 713c3a93-2bfb-488f-8a96-6894d33286cd {"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"} 1 +2024-07-30 15:29:29.847672 2024-07-30 15:29:29.847681 8751b4da-5463-433c-961b-6debb307e571 {"md5": "031fb17caae924afed5a0bf9acdf3c8a", "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"}], "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-07-30 15:29:29.919857 2024-07-30 15:29:29.919892 ec895e0a-dc55-4674-98a7-62b667a99407 {"md5": "e46d1d06ec203ac2b8be1740542c575c", "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"}], "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-07-30 15:29:30.719644 2024-07-30 15:29:30.719647 31d2d66a-7d22-4b16-bb68-5c2245ac6d18 {"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"} 1 +2024-07-30 15:29:29.993943 2024-07-30 15:29:29.99395 1e3ef79b-e070-4cc1-a987-1aa813a45c1e {"md5": "f7fcd50e83886486b931b5ac98e9ab0b", "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"}], "variant_access_point": ["Hauptmarkt (Sarajevo)"], "authorized_access_point": "Baščaršija (Sarajevo)"} 1 +2024-07-30 15:29:30.063727 2024-07-30 15:29:30.063735 8ffff6cc-6448-4a07-9796-a0ee5feb9432 {"md5": "9469e8577f8a870af6a4a66d897eba28", "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"}], "variant_access_point": ["Nikolauskirche (Borci, Kotor Varoš)"], "authorized_access_point": "Crkva Svetog Nikole (Borci, Kotor Varoš)"} 1 +2024-07-30 15:29:30.140539 2024-07-30 15:29:30.140548 ce1a2bb9-a333-43fe-bb54-04283686d8c2 {"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š)"} 1 +2024-07-30 15:29:30.214075 2024-07-30 15:29:30.214085 d54b02f4-5074-4e43-8eb4-59a2dcbb65d1 {"md5": "ad31d566449821c5d2fb8b37e4a6b71f", "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)"}], "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-07-30 15:29:30.306752 2024-07-30 15:29:30.306765 f866cbcb-7376-4a45-be4c-396b4ea4ec40 {"md5": "ed21b8384d9363383e06eb3046139f33", "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"}], "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-07-30 15:29:30.391866 2024-07-30 15:29:30.391873 3a4f3950-d068-49ea-a95c-2151dd6d2753 {"md5": "b6d1dba3ed000c9680aa9645e99f36c1", "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"}], "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-07-30 15:29:30.467472 2024-07-30 15:29:30.467483 f33ec923-fe33-4e9b-8803-d770ca1390ba {"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"} 1 +2024-07-30 15:29:30.543918 2024-07-30 15:29:30.543928 a179210b-ead9-4bdc-b3ee-57bc2133425e {"md5": "c45aa1df94ff74b0082981d50577ad55", "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"}], "variant_access_point": ["Tvrđava Fetislam"], "authorized_access_point": "Fetislam"} 1 +2024-07-30 15:29:30.616274 2024-07-30 15:29:30.616283 0c98e984-0869-4925-a882-59144a3a7bb7 {"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"} 1 +2024-07-30 15:29:34.019348 2024-07-30 15:29:34.019359 36d2f67b-4414-4819-b2f3-b37fcb858e96 {"md5": "cf58a6602f92c6d9c5d0a9d4214c908c", "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"], "authorized_access_point": "Wagram-Gebiet"} 1 +2024-07-30 15:29:30.798148 2024-07-30 15:29:30.798153 19f3a0ec-6384-4a69-a814-18808a8c3c65 {"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"} 1 +2024-07-30 15:29:30.885433 2024-07-30 15:29:30.885439 ac819f73-25a0-4c0d-91d3-55e576977281 {"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)"} 1 +2024-07-30 15:29:30.947965 2024-07-30 15:29:30.947973 7e0d62aa-ac9e-4c5d-bc9b-73db7e75381c {"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"} 1 +2024-07-30 15:29:31.014432 2024-07-30 15:29:31.01444 70fb4608-a67d-4151-9879-bf5965b9ad95 {"md5": "ca2f3857f351437a865f557134ccf045", "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"}], "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-07-30 15:29:31.089326 2024-07-30 15:29:31.089334 6be193f7-5982-45f6-aeff-0799f28b948e {"md5": "025f42a1cfb8f204dc0ea69385754700", "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"}], "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-07-30 15:29:31.158515 2024-07-30 15:29:31.158522 b969de43-728f-41da-bf37-2e84ad9bf4b0 {"md5": "7b45970e199cc28f40eba0ebb38b5737", "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"}], "authorized_access_point": "Drahtmühle Grönwohld (Grönwohld)"} 1 +2024-07-30 15:29:31.245824 2024-07-30 15:29:31.245832 73d950c8-5e77-4d94-84bd-65c5b0dea61e {"md5": "840f7011be6df0fcbfcb8d5b84b40a9e", "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"}], "variant_access_point": ["Zum Fasanenhof (Jersbek)", "Landgasthaus Zum Fasanenhof (Jersbek)", "Landgasthof Zum Fasanenhof (Jersbek)"], "authorized_access_point": "Fasanenhof (Jersbek)"} 1 +2024-07-30 15:29:31.317454 2024-07-30 15:29:31.317465 f842ed35-2ec2-4a2a-a25f-fea9984c1ad6 {"md5": "dc5171079a2ee62886f95d2b915fdc6b", "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"}], "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-07-30 15:29:31.402999 2024-07-30 15:29:31.403012 549ee691-db44-46da-97e7-713428130751 {"md5": "5c4dbc5976dd42d97e241717f53cc0f7", "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"}], "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-07-30 15:29:31.488354 2024-07-30 15:29:31.488366 68fa59a4-7673-4e31-8c8a-22bc8834c407 {"md5": "1d983cb78bb14306dcaf16e01d6ea558", "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"}], "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-07-30 15:29:31.575711 2024-07-30 15:29:31.575721 976bed10-4a99-40f8-a88f-b7adc874fec9 {"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"} 1 +2024-07-30 15:29:31.642762 2024-07-30 15:29:31.642769 c8bb72ef-662c-4de0-ae2a-24ed251b8931 {"md5": "e20cbeb1d767d2a52851a9121a5aef2b", "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"}], "authorized_access_point": "Oberes Schloss (Mitwitz)"} 1 +2024-07-30 15:29:31.702418 2024-07-30 15:29:31.702426 87c19c96-1569-48b0-8ac8-c15e3fdcc4f6 {"md5": "f334405cd62a82534f2511aa0c7fe1f3", "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"}], "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-07-30 15:29:31.771955 2024-07-30 15:29:31.771959 72397beb-21af-40bd-afda-50d0afb91155 {"md5": "67978dbc6e1e9ae4d50a8908a4938a24", "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"}], "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-07-30 15:29:31.829534 2024-07-30 15:29:31.829542 a8f44903-3ee7-4fe5-bc82-4bc822f5dafb {"md5": "bd8d32e402ce730e52eb001dd25df29e", "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"}], "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-07-30 15:29:31.891485 2024-07-30 15:29:31.891492 3db9b6e5-b385-4366-bea7-30b63347049a {"md5": "3f9b6d084fc50e61e2157be27f2fed25", "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"}], "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-07-30 15:29:31.955013 2024-07-30 15:29:31.955021 2944d97a-5f92-425c-b1a0-01ce01aded68 {"md5": "89b2eecd2241858e71a8f369af3bf64d", "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"}], "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-07-30 15:29:32.024274 2024-07-30 15:29:32.024282 d4894154-2e4a-4ae6-8d35-c0798e25201d {"md5": "5fe86af664920539553de1966e7f5f88", "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"}], "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-07-30 15:29:32.094695 2024-07-30 15:29:32.094704 a2c5efd8-13a5-4379-8edf-5334f7cb10d3 {"md5": "7f7c9a8643dea2c7d2e006a4692ff358", "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"}], "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-07-30 15:29:32.174268 2024-07-30 15:29:32.174275 cf67f966-e595-4878-9244-c9c13ea83f46 {"md5": "03f81a8fe8532964a550223444cdc619", "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"}], "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-07-30 15:29:32.2457 2024-07-30 15:29:32.245709 061e0434-ccd4-44e8-aaf6-1e065a5338b5 {"md5": "8949f9359e3f0ba531341e699ef8d305", "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"}], "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-07-30 15:29:32.322144 2024-07-30 15:29:32.322152 476191d4-ecb1-4909-aa37-37647243696a {"md5": "66123f09b2cd26455411c9f77c136793", "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"}], "variant_access_point": ["Anduln"], "authorized_access_point": "Ėgliškiai-Anduliai"} 1 +2024-07-30 15:29:32.401359 2024-07-30 15:29:32.401367 a4ef78c2-6d34-4a06-852f-7bfd1702e888 {"md5": "2a6d07cd3009ff4c6a570b2ad073593e", "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"}], "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-07-30 15:29:32.47627 2024-07-30 15:29:32.47628 6ba4865d-2ba2-4bef-8d81-e5c1bdb34e1d {"md5": "a17a15374076d584f5a7cfabff750baf", "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"}], "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-07-30 15:29:32.546634 2024-07-30 15:29:32.546666 af6de11d-9792-4a1a-b9ce-fefce1a0962b {"md5": "374f4ee6b6ed3badf9172536828d88cc", "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"}], "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-07-30 15:29:32.624383 2024-07-30 15:29:32.624392 05b8a9f5-f30d-4f6c-8f65-878a6c223755 {"md5": "7d1ee5c293bd24814ffafe5dbdfa2fc7", "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", "Loslau"], "authorized_access_point": "Wodzisław Śląski"} 1 +2024-07-30 15:29:32.759566 2024-07-30 15:29:32.759574 eeebefd3-6f43-4162-9baf-22a415f2522f {"md5": "6106324cc9a1da791a255c9ef6f0692d", "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", "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-07-30 15:29:32.813063 2024-07-30 15:29:32.813065 23fe0991-9fb4-447b-8d74-b6760eea9db6 {"md5": "4b19622a359b339b6fd5c3a3e4bb63b8", "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", "Kolbuszowa", "Ziemia kolbuszowska"], "authorized_access_point": "Kolbuszowa"} 1 +2024-07-30 15:29:32.875033 2024-07-30 15:29:32.875044 e57cca07-3029-4d4c-8691-c67a08d7df83 {"md5": "fa4fdc577385bf5553e62b2d239a7876", "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", "Ostrzeszów", "Ostrzeszower Land", "Schildberger Land", "Schildberg"], "authorized_access_point": "Ziemia Ostrzeszowska"} 1 +2024-07-30 15:29:32.947905 2024-07-30 15:29:32.947914 672f6ee8-cfdd-4e9f-b971-f3b1d0d92345 {"md5": "cad35ae81ab080dd6ef6bc04dfde763c", "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 szprotawska", "Sprottauer Land", "Sprottau"], "authorized_access_point": "Szprotawa"} 1 +2024-07-30 15:29:33.019616 2024-07-30 15:29:33.019625 ec22e7fb-31de-4f34-bf47-64a74e803804 {"md5": "712e2174b51ca269adfd6198696e42cd", "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 węgrowska"], "authorized_access_point": "Węgrów"} 1 +2024-07-30 15:29:33.093676 2024-07-30 15:29:33.093685 51b8093d-184f-42de-811f-469c04b2cbc6 {"md5": "86f259dc77f4e7a9ffb299cc6c200695", "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"}], "authorized_access_point": "Lublin-Synklinale"} 1 +2024-07-30 15:29:33.175764 2024-07-30 15:29:33.175772 fbaff48f-8744-4690-803d-645bae9dedb8 {"md5": "5147f033a05d214b32f0e29cf2c115b5", "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 zwoleńska"], "authorized_access_point": "Zwoleń"} 1 +2024-07-30 15:29:33.247398 2024-07-30 15:29:33.247406 2eab1862-375c-44d4-af0b-6edea8da3648 {"md5": "42ba4fdbbb4428645c8d48fb847c9698", "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"}], "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-07-30 15:29:33.31485 2024-07-30 15:29:33.314858 147c2a71-bd1e-499d-83b5-c2a803552587 {"md5": "47ae3f7c5e5ccfb6a56883f4c76105e4", "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"}], "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-07-30 15:29:33.385466 2024-07-30 15:29:33.385474 e0b090bb-debe-42e5-bb28-bd8f622454db {"md5": "4b8484d0ccfd0788a1b2606dc8d68b53", "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"}], "authorized_access_point": "Ehrenberg (Berg)"} 1 +2024-07-30 15:29:33.454162 2024-07-30 15:29:33.45417 68a367ed-1d8f-450d-b12f-b8f9ab8d7c1c {"md5": "a7d1a4f796f5fb09e87d2f997b43b469", "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"}], "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-07-30 15:29:33.528792 2024-07-30 15:29:33.5288 c9918309-57ae-461e-8aae-5d0f0cf4c4f1 {"md5": "f861a7cc624d1d608e70848f6bd6a8a6", "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"}], "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-07-30 15:29:33.600785 2024-07-30 15:29:33.600792 a08353c4-ecd7-4572-934a-a919a705fd77 {"md5": "1ddb8e2cd6ec7fb28483a35c07487e2f", "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"}], "variant_access_point": ["Turmhügel Woja (Rehau-Woja)", "Burg Woja (Rehau-Woja)"], "authorized_access_point": "Turmhügelburg Woja (Rehau-Woja)"} 1 +2024-07-30 15:29:33.67408 2024-07-30 15:29:33.674089 180ad6ac-c7e4-47ef-84a7-9791e50743da {"md5": "1327965752e283a90f12e6ee99e9a374", "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"}], "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-07-30 15:29:33.752618 2024-07-30 15:29:33.752625 5f740f7f-4655-46df-8dc4-294a88f16113 {"md5": "b2787fdec9a73a946e8483b5724af82d", "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", "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-07-30 15:29:33.818561 2024-07-30 15:29:33.818564 8635b47f-4bf2-46eb-85dc-a11d0ea99083 {"md5": "a4aa1ccdbd280a97acc617828de1ba40", "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"}], "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-07-30 15:29:33.87544 2024-07-30 15:29:33.875449 604eddc0-0565-4458-b6bd-327070eadf3d {"md5": "0f3cb5eb33793e20fcf74382bd9f057e", "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", "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-07-30 15:29:33.943794 2024-07-30 15:29:33.943803 9b0230c9-dc7e-4b83-959b-0f5e3d33c008 {"md5": "df8ec0b489e8dbba757e9080623944fd", "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"}], "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-07-30 15:29:43.432377 2024-07-30 15:29:43.432385 d859be25-2ba2-4ae3-a95c-e52aed4ce6f3 {"md5": "f09a3e0a08879dd9a6d9a9ba9d635e05", "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"}], "authorized_access_point": "Malschbach (Fluss)"} 1 +2024-07-30 15:29:34.0889 2024-07-30 15:29:34.088909 1fa2dc91-f5c7-49ac-bd83-47a7cbef294f {"md5": "a1031d65cce3679899a7bd12036a867a", "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"}], "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-07-30 15:29:34.157108 2024-07-30 15:29:34.157115 fa7bc0ee-043d-4a3c-ae47-0f79bbe28830 {"md5": "e56885817c63666231464c1e5bcab60a", "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", "Jarocin", "Jarocin"], "authorized_access_point": "Ziemia Jarocinska"} 1 +2024-07-30 15:29:34.221454 2024-07-30 15:29:34.221462 8661a556-cafb-41b6-8f3e-a9f51e51e9c8 {"md5": "2ae84dd7d7ad9eebb10af329235f4722", "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"} 1 +2024-07-30 15:29:34.290334 2024-07-30 15:29:34.290341 f0c29762-0053-47a6-9ce5-34f4dccf6c2a {"md5": "dcb644e0e5e2785c9bda571cbe640457", "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"}], "variant_access_point": ["Stadthalle (Chemnitz)"], "authorized_access_point": "Stadthalle Chemnitz (Chemnitz)"} 1 +2024-07-30 15:29:34.357076 2024-07-30 15:29:34.357084 7831502a-6d48-4851-bbca-a3b0aed18ea4 {"md5": "36d82b2969ce3248fe8eab2d9c872392", "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)"], "authorized_access_point": "Kleine-Spree-Gebiet"} 1 +2024-07-30 15:29:34.418394 2024-07-30 15:29:34.418402 c8114ece-d272-48d5-9dd8-b6c233b34f26 {"md5": "ad30c5f9540984e65fef082dee729900", "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", "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-07-30 15:29:34.479754 2024-07-30 15:29:34.479762 5d0bc321-963c-4aab-95f8-64f1cd9386ae {"md5": "7597b2c4f5d1765a4366f3a68e6291a3", "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", "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-07-30 15:29:34.545205 2024-07-30 15:29:34.545213 fc4f1e4c-70b9-43e7-8c80-4fc7328763c2 {"md5": "dc46ff79243be9194cbde2a4dde0e42e", "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 wałecka", "Deutsch Kroner Land", "Deutsch Krone (Land)"], "authorized_access_point": "Wałcz"} 1 +2024-07-30 15:29:34.610834 2024-07-30 15:29:34.610842 b91dbaba-60f3-45c6-9c50-11413ed54a0b {"md5": "4f9e99f519f29df4794d2baabeb7fdb3", "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"}], "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-07-30 15:29:34.680874 2024-07-30 15:29:34.680882 e376fccc-adcd-4838-9cc3-b2e7556e6450 {"md5": "1ed4d8f11f09d1ab0507fc06a397d7ea", "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"}], "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-07-30 15:29:34.747781 2024-07-30 15:29:34.74779 d38d7c75-cb2b-4676-a25b-f36767883518 {"md5": "e0fb3e8cec52537cf9513a911fcba319", "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"}], "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-07-30 15:29:34.821516 2024-07-30 15:29:34.821526 e798e47e-db11-401b-a1cc-bb5aafb2d242 {"md5": "174e7b2938341aff3e8eee8c9a4c43c9", "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"}], "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-07-30 15:29:34.875654 2024-07-30 15:29:34.875658 248dd31c-aa69-421c-9f30-5bab84575753 {"md5": "f151515f8d2379ee4a265c63c9b29d4c", "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"}], "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-07-30 15:29:34.942535 2024-07-30 15:29:34.942543 56495d3e-04c6-40b7-a6dc-1872c093c035 {"md5": "ecda6d99cc813806f73aed6e70fe0550", "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"}], "variant_access_point": ["Belgierkaserne (Graz)", "SS-Kaserne Wetzelsdorf"], "authorized_access_point": "Belgier-Kaserne (Graz)"} 1 +2024-07-30 15:29:35.009261 2024-07-30 15:29:35.009269 84d7586a-471c-4dcc-8f1b-544a4e8c7f2b {"md5": "73cffcef7b5cf0ffbe0763b27e79fa3c", "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"}], "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-07-30 15:29:35.085461 2024-07-30 15:29:35.085471 789dd0ee-7ce3-4b51-88c0-4053143966a9 {"md5": "a2265d9837e0c00f17f2c4503ccb1d98", "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", "Krotoschin", "Krotoschin", "Ziemia Krotoszyńska"], "authorized_access_point": "Krotoszyn"} 1 +2024-07-30 15:29:35.164873 2024-07-30 15:29:35.164898 769d3a44-2bc4-4a5f-8eb7-c9845fa2039a {"md5": "9affbe952ebb96e9521c297bc90eb43e", "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", "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-07-30 15:29:35.245521 2024-07-30 15:29:35.245528 0e0f951f-094e-4985-a3c5-9effbd72daac {"md5": "c6aa6033c72238fef261fe4b376c1601", "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", "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-07-30 15:29:43.49703 2024-07-30 15:29:43.497037 e84dcb89-e6fd-4ab4-a7c0-d3ae15984563 {"md5": "0ce08a1e0d5cb4c901dd6b250a2e5f4a", "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"}], "authorized_access_point": "Dobrowabach"} 1 +2024-07-30 15:29:35.319582 2024-07-30 15:29:35.319594 6be3bd82-40af-4d28-adfa-918eec4bce73 {"md5": "57971643c7f60194e67159b9ebbff904", "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"}], "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-07-30 15:29:35.396183 2024-07-30 15:29:35.396192 aea12d99-57f4-4990-8c9b-87cd585a3f44 {"md5": "436a51acaf7b42b984239df7923cb643", "pid": "1169806708", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kaunas"}], "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"} 1 +2024-07-30 15:29:35.465886 2024-07-30 15:29:35.465894 21602a46-0d23-481d-bbd5-9702f3e3b1c1 {"md5": "57a97f81daddd6dbada898d6d59d2499", "pid": "1169806686", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kaunas"}], "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"} 1 +2024-07-30 15:29:35.539816 2024-07-30 15:29:35.539824 93e2b308-2c9a-493f-bac2-c63095a0dbf8 {"md5": "808a05460249c6776db618e972d57b31", "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"} 1 +2024-07-30 15:29:35.608321 2024-07-30 15:29:35.608331 1282cfce-e0ed-4fa3-924d-bf006f06783a {"md5": "ddc02461a25d8896dfaa2502269e219d", "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"} 1 +2024-07-30 15:29:35.685731 2024-07-30 15:29:35.685741 631607fc-f06b-4ee7-8956-5c502fe040e4 {"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)"} 1 +2024-07-30 15:29:35.760956 2024-07-30 15:29:35.760963 a07ef709-0380-4906-816c-6d59f9cf1a72 {"md5": "ef8e3a0d832a92b2b000f9777e73da0d", "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", "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-07-30 15:29:35.833862 2024-07-30 15:29:35.833871 29f36e79-3e8f-40f9-8f0b-78b63fd2b9a6 {"md5": "def1e37830072370aa2145c6ef80eca7", "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"}], "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-07-30 15:29:35.889562 2024-07-30 15:29:35.889565 4b7c4ffa-6ddd-44f7-ba93-2f716be6088d {"md5": "fc420be70594d6b0ee9c1c401fb5f1f4", "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)"}], "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-07-30 15:29:35.957051 2024-07-30 15:29:35.957059 44b01c0d-23a2-4817-adf3-733828c88945 {"md5": "e7ad0b9f082a8b98de17bcde9fd4a842", "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 lubawska", "Löbauer Land (Westpreußen)", "Löbau (Westpreußen)", "Löbau (Westpreußen)"], "authorized_access_point": "Lubawa"} 1 +2024-07-30 15:29:36.023085 2024-07-30 15:29:36.023094 08796ba5-a923-4bed-8d9a-478968e9d650 {"md5": "b4e60a50bd835aebd7fcd0f53a37095e", "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", "Radzyń Podlaski"], "authorized_access_point": "Radzyń Podlaski"} 1 +2024-07-30 15:29:36.092608 2024-07-30 15:29:36.092619 1e07cfa9-6a5f-4e48-bc18-03dd0c45928f {"md5": "48580749dc871537669883c90c8ed8c8", "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"}], "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-07-30 15:29:36.167755 2024-07-30 15:29:36.167763 d3a8c588-c690-4751-8066-ef2f0634fe9d {"md5": "fbb2767390b7807db665f4f5a2520b65", "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"}], "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-07-30 15:29:36.240863 2024-07-30 15:29:36.240871 f9832521-0b10-4a65-8f4b-8751ce5dcf4f {"md5": "58401eac07f95db3d7da9a684cff6060", "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)"}], "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-07-30 15:29:36.310715 2024-07-30 15:29:36.310722 9388642d-ba61-4c6f-9c13-4e86cb01ee45 {"md5": "b8b0cb01e0d05433aae69868d34d932f", "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"}], "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-07-30 15:29:36.374242 2024-07-30 15:29:36.374248 f5508236-253f-4f45-ac64-6c6810e5d1f0 {"md5": "fd1ccfe2e90d5e039b60fde144617d55", "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", "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-07-30 15:29:36.437568 2024-07-30 15:29:36.437576 854e2333-8187-4c09-9cff-6a91bb60b362 {"md5": "239f8f4c63bba1bc9124bf6bab56cffa", "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"}], "variant_access_point": ["Allgäuer Schlossparkradrunde"], "authorized_access_point": "Schlossparkradrunde im Allgäu"} 1 +2024-07-30 15:29:36.507436 2024-07-30 15:29:36.507444 4db2adb2-2d50-4943-a152-56cd8b59220d {"md5": "8245e53598ec697a23d502a14c02cca1", "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)"}], "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-07-30 15:29:43.568689 2024-07-30 15:29:43.568697 bedb4e5f-0d54-4e53-86a0-fb136d67473e {"md5": "a1e86c1b66ac4110e416ead1c0226de8", "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"}], "authorized_access_point": "Lauterwasserbach"} 1 +2024-07-30 15:29:36.573507 2024-07-30 15:29:36.573514 ac2e34e2-231f-408b-9f02-f29aefe31546 {"md5": "c3c1f56650474fb4836433503a392fd8", "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"}], "authorized_access_point": "Industriestrasse 9 (Luzern)"} 1 +2024-07-30 15:29:36.634334 2024-07-30 15:29:36.634342 21f39f3f-8045-485d-81f8-39b1cc3c33f6 {"md5": "98d995e2fde2f3f4f0b37b64a536bf4f", "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"}], "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-07-30 15:29:36.698025 2024-07-30 15:29:36.698033 188338a5-e393-43ce-bccb-3f174fda9ef8 {"md5": "5236cfafe3127c7c1eabe69fff10ff34", "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"}], "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-07-30 15:29:36.773784 2024-07-30 15:29:36.773792 1c7a6b30-5b90-40a6-a3be-ae7b3578c20f {"md5": "73ff2e1b76ddb13d4ae94a842cdfc47f", "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", "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"} 1 +2024-07-30 15:29:36.841463 2024-07-30 15:29:36.84147 52941b5f-f590-4780-83e6-db1b3c8046d4 {"md5": "0158294508e9829f6c38e1a9a650b2ab", "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", "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-07-30 15:29:36.908082 2024-07-30 15:29:36.908085 671424fc-e8b8-40c6-8912-f02a6f322e66 {"md5": "a54d921460a664afa57d7529bc9e4571", "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))"}], "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-07-30 15:29:36.95725 2024-07-30 15:29:36.957258 9807e2c9-18e0-4fe5-a799-d087ff08c8d9 {"md5": "5a7095678d5c480f5d218dec24c043e2", "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"}], "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-07-30 15:29:37.026467 2024-07-30 15:29:37.026475 c757ab27-0f38-4cff-9b58-fd0c8c2b8ee2 {"md5": "fc01dd08eb3ead5f63f7405014e1b9b5", "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", "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-07-30 15:29:37.09486 2024-07-30 15:29:37.094869 d89d75f6-44a9-4c58-a1ce-b725848eb0d3 {"md5": "2dc40459e74656143f1f68e12694cc98", "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"}], "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-07-30 15:29:37.172082 2024-07-30 15:29:37.172091 c2467c07-4fce-40cc-b573-9f3b187ab9b8 {"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"} 1 +2024-07-30 15:29:37.252222 2024-07-30 15:29:37.252232 72cbc6cc-2c77-413a-aa25-59d1b74d598d {"md5": "13a3c4169707345ec1dbf828b096fcc1", "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"} 1 +2024-07-30 15:29:37.338792 2024-07-30 15:29:37.338799 3729f67a-1010-4b96-904c-853adcde8693 {"md5": "e7fded18bcbc579fa8e01e610bd5e165", "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"}], "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-07-30 15:29:37.426741 2024-07-30 15:29:37.426752 9996f977-7e9e-4e24-a0f2-4d37ef95f23d {"md5": "2df5922665a006cec3bcb08f9e351060", "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", "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-07-30 15:29:37.507899 2024-07-30 15:29:37.507908 d1916fae-d73e-4516-866e-76716a0f4cb7 {"md5": "a0d33d5f807518d46d9a54e70ac76992", "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"}], "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-07-30 15:29:37.59938 2024-07-30 15:29:37.599387 6d62f5c1-d5e2-425e-96ae-a7c92e4fcf66 {"md5": "ea3bd10262e38bd202ccaed972b08f2b", "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"}], "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-07-30 15:29:37.660837 2024-07-30 15:29:37.660845 2acb5ec4-cbb0-4d8f-97da-434cb8ae6429 {"md5": "7ffb3d1cb0c31af2d3c8b0353c2a8838", "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"], "authorized_access_point": "Gampenpass-Gebiet"} 1 +2024-07-30 15:29:37.72182 2024-07-30 15:29:37.721828 9b63cfe6-2676-47f8-a6b6-ac0070a09682 {"md5": "29335a99b04492cb14957f821ec8bf88", "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"} 1 +2024-07-30 15:29:37.793156 2024-07-30 15:29:37.793163 c2c66456-5972-41ae-8174-73232ee7a4c2 {"md5": "912dd55e2900579ba2f0b67182fb5604", "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", "Nordwestliches Birma"], "authorized_access_point": "Myanmar (Nordwest)"} 1 +2024-07-30 15:29:37.864596 2024-07-30 15:29:37.864604 b15998d0-eb66-447d-b53b-6c784f54e542 {"md5": "04bf3725692f944cb47d3bdd8904eb39", "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", "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-07-30 15:29:37.920251 2024-07-30 15:29:37.920256 75a128d9-403e-4f65-bf12-08a7ae381b0d {"md5": "613c375c3dd85785ace0466df1f67c0d", "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"}], "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-07-30 15:29:37.974956 2024-07-30 15:29:37.974964 4ec3c8ba-04ed-4742-8daf-2f5f65f46472 {"md5": "d23f576e437e7d15989f7b6f44a6f785", "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"}], "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-07-30 15:29:38.037886 2024-07-30 15:29:38.037894 9ad9d32d-4d9c-42c5-beee-77680d57432f {"md5": "7ea3f2eb2faf36bdcfad1f3e624624e9", "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", "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-07-30 15:29:38.102788 2024-07-30 15:29:38.102797 05e29ea1-212d-4698-aff2-447b63ff33e9 {"md5": "9dc030be33265443b478d0866988997d", "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"}], "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-07-30 15:29:38.173388 2024-07-30 15:29:38.173396 47d4195b-5318-44cc-a84d-49ec907b47d7 {"md5": "e32682fe04a7276a089c9321dd865df0", "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"}], "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-07-30 15:29:38.238967 2024-07-30 15:29:38.238974 4dab34cc-337c-4a3a-979e-f7db42dfee50 {"md5": "6c7df7a5fef6a2db54145f953cf04f1f", "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", "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-07-30 15:29:38.313533 2024-07-30 15:29:38.31354 63d884de-d52e-43e2-b28a-31f98cb03a5d {"md5": "fda86dde5824dc23eb29d7f9e5946f17", "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"}], "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-07-30 15:29:43.655368 2024-07-30 15:29:43.655377 fd5165da-e3e3-4278-a8fa-1b39ffa9fdc6 {"md5": "469fd64d634bd0ec16e152746256bdae", "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"}], "authorized_access_point": "Göstritzbach"} 1 +2024-07-30 15:29:38.377219 2024-07-30 15:29:38.377226 1e623a0e-b47e-4531-8cc9-9fcec560e7e0 {"md5": "98d04cb764bfc69fb8cc5f6a107fa0f2", "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"}], "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-07-30 15:29:38.468485 2024-07-30 15:29:38.468494 70c4ce1a-e753-4215-9209-84af35749b12 {"md5": "3d8581ae66ea8887c0a3e5f0de4cb5f8", "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"}], "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-07-30 15:29:38.565249 2024-07-30 15:29:38.565258 0905aa69-f0b6-44d7-8c84-e825ea2df746 {"md5": "30a38a774ae347f88683ccbe4a5618db", "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"}], "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-07-30 15:29:38.628148 2024-07-30 15:29:38.628156 190ef4f3-464a-4826-a1ea-7b84c5bebf39 {"md5": "5ec92eb62ec3888d62ad5e44d52d0593", "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"}], "variant_access_point": ["Stuttgarter Fernsehturm (Stuttgart)", "Stuttgarter Fernsehturm (Stuttgart-Degerloch)"], "authorized_access_point": "Fernsehturm Stuttgart (Stuttgart)"} 1 +2024-07-30 15:29:38.708005 2024-07-30 15:29:38.708014 6acde115-51c7-4625-9428-95d613f45033 {"md5": "84f49d5301a6383c09959d5f03d42126", "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"}], "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-07-30 15:29:38.777426 2024-07-30 15:29:38.777435 402906a1-7a2e-4b31-ad54-8977a51caf48 {"md5": "335dce96c07399c2b716de481e8038a0", "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"}], "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-07-30 15:29:38.846477 2024-07-30 15:29:38.846485 8ee972c7-248e-431d-91ee-b2c777602a2f {"md5": "0bdeab4c6d6355c9a1d50b4eef0fed37", "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"}], "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-07-30 15:29:38.914517 2024-07-30 15:29:38.914526 46dfa639-3187-480d-8941-59a7b3fbd507 {"md5": "05c8af2b98cbb4144e3be678874f43f9", "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"}], "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-07-30 15:29:38.97145 2024-07-30 15:29:38.971452 9a2bb1c0-46c6-45eb-a0e8-774399c9bbb4 {"md5": "eca9f673d5129166514cf141edf179bb", "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"}], "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-07-30 15:29:39.027917 2024-07-30 15:29:39.027925 95e08596-3cca-447e-9998-112252296bb1 {"md5": "b1bbe3471fcab4f289e2a32d3b55ddda", "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)"}], "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-07-30 15:29:39.090298 2024-07-30 15:29:39.090305 b3f132f8-dd42-4e6a-b5dd-2e8a6265b754 {"md5": "27bc83f14b2821626efb5b1705b00f77", "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"}], "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-07-30 15:29:39.171338 2024-07-30 15:29:39.171376 8b2b666a-91c2-4c48-8179-c007909abece {"md5": "ebcec031a7718fa85f0d3e0039ab6873", "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"}], "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-07-30 15:29:39.234743 2024-07-30 15:29:39.23475 377b765c-ee76-4375-85f5-963c56a519cf {"md5": "a980aafafb01da4768b6e21613887648", "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"}], "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-07-30 15:29:39.297802 2024-07-30 15:29:39.29781 64a3a4f3-63e0-4c0d-8380-fdbc5bafaccc {"md5": "6c36e6374ade724c9fecdbac3749ad47", "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"}], "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-07-30 15:29:39.370441 2024-07-30 15:29:39.370448 77e7cc8c-1dd5-4077-b0f6-3968a2171937 {"md5": "4471682b30770d041f0341e9e742acd1", "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"}], "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-07-30 15:29:39.430872 2024-07-30 15:29:39.430879 579eef65-99fc-4fcc-9743-ecdd1d3a5d84 {"md5": "ef9305b2fdd4d9a3b82ea7e0dd54109f", "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"}], "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-07-30 15:29:39.493962 2024-07-30 15:29:39.493968 0f728e3e-d6ab-4f5f-8b68-92ba569dc084 {"md5": "00f8183a7fae5ad315d1e75cdaa733c5", "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"}], "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-07-30 15:29:43.718797 2024-07-30 15:29:43.718804 637f7067-5445-4bb2-8d58-fe31b2e894e3 {"md5": "9547503e54da86f639f31a979d2dc884", "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"}], "authorized_access_point": "Weinbach (Fluss)"} 1 +2024-07-30 15:29:39.555104 2024-07-30 15:29:39.555113 51b2c4fb-8c11-4407-95ff-66331f4cd247 {"md5": "9f9e00ba4588c8af57a40666f0844280", "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"}], "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-07-30 15:29:39.624818 2024-07-30 15:29:39.624825 f71d2efb-b816-45de-ba60-67450221037a {"md5": "a3ef89c61852016a3a46ca278bdde8c4", "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"}], "authorized_access_point": "Schloss Aarwangen (Aarwangen)"} 1 +2024-07-30 15:29:39.702455 2024-07-30 15:29:39.702464 62ad2f80-8fc6-442f-80d5-72a08bdd3d9b {"md5": "1c37585a2aa09f02f8f147db6ece5b51", "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"}], "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-07-30 15:29:39.775542 2024-07-30 15:29:39.775551 7f783c5d-1685-4e3c-a1b9-b2884a67841b {"md5": "8ea00305f4c2274a81783a140566ea50", "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"} 1 +2024-07-30 15:29:39.840767 2024-07-30 15:29:39.840774 77a32e8a-13a8-4cca-adc4-c44e44a38c3c {"md5": "9da4785023d0b58f3df62c8e1b1b8fcc", "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"} 1 +2024-07-30 15:29:39.907827 2024-07-30 15:29:39.907836 f986eafd-551d-418f-b8e6-09ddde7bfc89 {"md5": "db599fb9a10adf1dd4e0b9018be2c0c9", "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"}], "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-07-30 15:29:39.974526 2024-07-30 15:29:39.97453 96b664bf-adbe-43a7-93fc-a17ceba820c2 {"md5": "5b7bd54b85cbfd6e5de691656625bec2", "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"}], "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-07-30 15:29:40.034815 2024-07-30 15:29:40.034823 349dff34-bd2a-4320-8f54-b2fd321457e1 {"md5": "1d82ff5d1897bdf8a2b9aa0424cf4a7f", "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"}], "authorized_access_point": "Alter Friedhof an Oberhofen (Göppingen)"} 1 +2024-07-30 15:29:40.100943 2024-07-30 15:29:40.100952 57460a10-98b2-47e3-bccf-1b824961775d {"md5": "00794aab7f0d299485faad11e693e354", "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", "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-07-30 15:29:40.17486 2024-07-30 15:29:40.174868 b7ebda53-9bdd-4eef-a380-e49e77b2ede9 {"md5": "a23b2fac88631f327ccaeedca06887c0", "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)"}], "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-07-30 15:29:40.251699 2024-07-30 15:29:40.251709 57140250-1344-46b9-b028-f6469ddc822b {"md5": "0f32116c1cca6607f7394801ebaf2da9", "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))"}], "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-07-30 15:29:40.324674 2024-07-30 15:29:40.324702 1e78feec-0108-470a-8e35-b098327b693a {"md5": "62774b3323c873e84dc282e452d14290", "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", "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-07-30 15:29:40.431121 2024-07-30 15:29:40.431125 41504997-f3c4-45d5-b0a5-d5f27def1906 {"md5": "0d388f6f8c419c0245fcd82b5a4185fe", "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)"}], "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-07-30 15:29:40.49481 2024-07-30 15:29:40.494818 0799174f-1864-4a82-aa55-bcd8c41bda84 {"md5": "002adfbc6238a60b48e4f28c412a8bbe", "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", "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-07-30 15:29:40.56844 2024-07-30 15:29:40.56845 c1399bda-acd4-4948-a3a6-bf6639e145b7 {"md5": "d9acc6faa87141d76a8d689fd91e80f6", "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)"}], "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-07-30 15:29:40.657158 2024-07-30 15:29:40.657166 ca46fa0e-83a5-4094-aa68-6d61ed4cadd8 {"md5": "27009ab92ec27df86c4141d679d8bece", "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", "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-07-30 15:29:40.733464 2024-07-30 15:29:40.733474 fc492f83-dc52-476e-b2fe-757455583d09 {"md5": "a75c8dcafdeb1e45a3fdf74ae5545eb5", "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"}], "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-07-30 15:29:40.808691 2024-07-30 15:29:40.8087 970611b0-1297-4f0f-b94b-12d1b171e1dc {"md5": "213ce20dd15349c31b39ea47ac6eebc5", "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"}], "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-07-30 15:29:41.583081 2024-07-30 15:29:41.583089 086f8a65-0991-4eef-872d-002d0ada218e {"md5": "1537270bdacc0804c65a4a62c36f5ec5", "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"}], "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-07-30 15:29:40.884206 2024-07-30 15:29:40.884215 5343ac3f-9511-42a6-8a99-c008162f0be6 {"md5": "af9a62324ab0af8ac2b415d8e18aa01a", "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"}], "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-07-30 15:29:40.955355 2024-07-30 15:29:40.955363 004cbd9f-1b3a-45ae-82ec-db0c8935562a {"md5": "ae866d0478289d3675e64dd5c6c0aa4e", "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"}], "authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich)"} 1 +2024-07-30 15:29:41.021221 2024-07-30 15:29:41.021224 5fcce6b7-0daa-4c83-9d8c-361dbf740178 {"md5": "3bf4102d152c7c9a7f204db8e6161cf3", "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"}], "variant_access_point": ["Schloss Weilburg (Baden, Niederösterreich)"], "authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich)"} 1 +2024-07-30 15:29:41.090601 2024-07-30 15:29:41.09061 e7ad560a-74c1-4898-b537-e36605be1193 {"md5": "7520f249b86f781fe556506d5a433717", "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"}], "variant_access_point": ["Vratna-Tal", "Vratne-Tal", "Vrátna-Tal"], "authorized_access_point": "Vratné-Tal"} 1 +2024-07-30 15:29:41.184492 2024-07-30 15:29:41.184501 052c8b88-04b0-4683-939d-386a9424f0c5 {"md5": "8ee3ebd238f45d9de878238a681e0c44", "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"}], "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-07-30 15:29:41.263527 2024-07-30 15:29:41.263534 fa4802bd-cfcb-4623-83f1-b47730b2bfb6 {"md5": "e2d9254a133065d7b9852daa104bb27a", "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"}], "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-07-30 15:29:41.349533 2024-07-30 15:29:41.349545 4258d9b3-8680-4ecd-b099-9aa4a98f86a0 {"md5": "6c9d7c7bf1e8e06984423ae7aae660e6", "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"}], "variant_access_point": ["Oberes Sanntal", "Obere Sann"], "authorized_access_point": "Obere-Sann-Tal"} 1 +2024-07-30 15:29:41.424071 2024-07-30 15:29:41.424083 8f76a495-9146-496a-9878-8128614101ee {"md5": "a5958ccf546796fe94bf9176ceb17779", "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"}], "variant_access_point": ["Bahnstrecke Zgorzelec–Wałbrzych"], "authorized_access_point": "Eisenbahnlinie Görlitz-Wałbrzych"} 1 +2024-07-30 15:29:41.501796 2024-07-30 15:29:41.501806 63923b53-9643-4da1-bcf2-8dee0fa1ca38 {"md5": "4a55f2d2c43ea96c5e059e3d1ccfe1ea", "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"}], "variant_access_point": ["Wengi (Aeugst am Albis)", "Wängibad (Aeugst am Albis)"], "authorized_access_point": "Wängi (Aeugst am Albis)"} 1 +2024-07-30 15:29:47.291911 2024-07-30 15:29:47.29192 b487c9fa-2383-4c4f-a821-a2703f52c18c {"md5": "d759644073371b76ccadbb0fcf0b07aa", "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"}], "authorized_access_point": "Kayersbeek"} 1 +2024-07-30 15:29:41.656164 2024-07-30 15:29:41.656173 799cd9e1-98b0-442f-9254-6d0aad4e0f5b {"md5": "8829c37af28156ae28fb727155cce129", "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"}], "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-07-30 15:29:41.739483 2024-07-30 15:29:41.739491 16aabca9-e91c-4d06-a2d3-3031361a4a07 {"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"} 1 +2024-07-30 15:29:41.814948 2024-07-30 15:29:41.814956 6232ac21-e772-4821-9393-b71ea31dc402 {"md5": "5e0b05b7c7a092d0e10dcf9055354faa", "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"}], "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-07-30 15:29:41.904344 2024-07-30 15:29:41.904353 989b59a8-ca34-463e-990d-d113043895d8 {"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"} 1 +2024-07-30 15:29:41.990306 2024-07-30 15:29:41.990314 d93a6a91-3aea-464d-876e-5e446ae4d12f {"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"} 1 +2024-07-30 15:29:42.061235 2024-07-30 15:29:42.061243 d09db19d-1146-4ae3-85aa-da3d66f2f848 {"md5": "ef4be758c98465c2c600b96ec655e405", "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)"}], "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-07-30 15:29:42.14081 2024-07-30 15:29:42.140817 647c9a3a-1f8c-4db4-893b-93af859a1ae0 {"md5": "8603ca513138b88ee75ba0bd6dadcedb", "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"}], "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-07-30 15:29:42.217616 2024-07-30 15:29:42.217624 43b23751-08a4-483e-b03f-fd01ffa44246 {"md5": "c0f150a6b2098b1f623b91a651facd45", "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"}], "authorized_access_point": "Kocher-Jagst-Radweg"} 1 +2024-07-30 15:29:42.290825 2024-07-30 15:29:42.290834 18fc20fc-078c-4f67-8cf0-92177331319e {"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"} 1 +2024-07-30 15:29:43.217396 2024-07-30 15:29:43.217406 7f4fdf72-fa11-43e7-aa96-207e93146a8d {"md5": "a022c1ff031eab50db355f832efa8c22", "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"}], "authorized_access_point": "Grundbach (Vernířovice, Fluss)"} 1 +2024-07-30 15:29:42.359692 2024-07-30 15:29:42.3597 7e8864d3-6b0d-4da7-9e5a-0f922697dd19 {"md5": "4556618ef4b0cbf6f6458608b5904138", "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", "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-07-30 15:29:42.4338 2024-07-30 15:29:42.433813 c5f4f4cf-f1cc-41f5-8911-f1f7b4515ee8 {"md5": "e6106f041615fd1a0e17f9fc4f81510f", "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"], "authorized_access_point": "Canal du Midi-Gebiet"} 1 +2024-07-30 15:29:42.525092 2024-07-30 15:29:42.5251 69529462-a101-4131-b48e-cbe11633b57c {"md5": "b86c71acc8668f725d12ada022bec078", "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", "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-07-30 15:29:42.607958 2024-07-30 15:29:42.607967 74de3797-372c-49a3-9ad9-eed8453dffdd {"md5": "7b0f7f7201f2924dc67bfac5510b2f87", "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", "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-07-30 15:29:42.691518 2024-07-30 15:29:42.691528 b8e92dd3-e2d3-43d1-bbab-7ce71ee64ded {"md5": "8ba60631421bbd964208af097d4d15f9", "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"}], "variant_access_point": ["Hill (Fluss)"], "authorized_access_point": "Helle (Fluss)"} 1 +2024-07-30 15:29:42.770509 2024-07-30 15:29:42.770518 c48bbc49-c580-45ef-9b53-7e99b7430cde {"md5": "2dc985649dbf492c36127bdcf32ecea2", "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", "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-07-30 15:29:42.850847 2024-07-30 15:29:42.850856 32715e7d-a635-4c36-ac97-d54054f0a2ed {"md5": "628f6a2e3b931a39842eb2378619501b", "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"}], "variant_access_point": ["Olešnice (Fluss)", "Elsnitz"], "authorized_access_point": "Białka"} 1 +2024-07-30 15:29:42.936869 2024-07-30 15:29:42.936878 58391e78-769b-4a53-89ea-459882d4d2ec {"md5": "517a562ed87f69b8c5858a7383400efa", "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"}], "authorized_access_point": "Hogsmill River"} 1 +2024-07-30 15:29:43.00474 2024-07-30 15:29:43.004749 e52a6cc1-e998-47db-af94-f9d7c351435a {"md5": "a86686754533bf3c880493e0fe5e3de4", "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"}], "authorized_access_point": "Rudawa (Fluss)"} 1 +2024-07-30 15:29:43.071321 2024-07-30 15:29:43.071324 947d72d6-0a6b-414d-9925-efe6b302e58f {"md5": "af356d8b96c41965d7b20782d54c23aa", "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"} 1 +2024-07-30 15:29:43.132877 2024-07-30 15:29:43.132882 4b40d11c-595b-49bd-ba4c-564590cf03c0 {"md5": "1bf23913bea1a86163263a3797034a79", "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"}], "authorized_access_point": "Kanzelbach"} 1 +2024-07-30 15:29:43.780794 2024-07-30 15:29:43.780802 78d6e156-d337-4b18-9ef6-899001eed6bb {"md5": "078a82165a0e76056f36b5c2740983a9", "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"}], "authorized_access_point": "Gettenbach (Fluss)"} 1 +2024-07-30 15:29:43.843794 2024-07-30 15:29:43.843801 9a57d448-ba25-471e-a20c-3691d388a042 {"md5": "12ef90d4d2ab2193295a5ead68f02447", "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", "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-07-30 15:29:43.910684 2024-07-30 15:29:43.910691 1c85de9c-1213-4386-9def-88cbfe393d6b {"md5": "4fca9ca95f50bf849417e7d29dd0f912", "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"}], "authorized_access_point": "Windener Teich"} 1 +2024-07-30 15:29:43.981899 2024-07-30 15:29:43.98191 688b2ec8-d61f-4229-a738-d365fff912ed {"md5": "3d083dd3b2c705125e9eaef2e3918a9e", "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"}], "variant_access_point": ["Klingendes Fließ"], "authorized_access_point": "Klingendes Fliess"} 1 +2024-07-30 15:29:44.058901 2024-07-30 15:29:44.058909 06228e70-7f46-4631-bf4c-e7a96fb46afb {"md5": "f8f8482a2cd2f9608aef5237221b9ccc", "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"}], "authorized_access_point": "Konstanzer Ach"} 1 +2024-07-30 15:29:44.11252 2024-07-30 15:29:44.112523 123aff7b-b0dd-4f45-8b31-c5c20151af35 {"md5": "7c5dd90cb1c788e1fe758beac05afae9", "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"}], "variant_access_point": ["Park Babelsberg (Potsdam)"], "authorized_access_point": "Babelsberger Park (Potsdam)"} 1 +2024-07-30 15:29:44.182353 2024-07-30 15:29:44.182361 4bfb82cb-4ece-4bab-9c7e-edcc3dba5d6a {"md5": "bb1a87831198b4a12048e5f1de5adfa6", "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"}], "authorized_access_point": "Ölbach (Vreden, Fluss)"} 1 +2024-07-30 15:29:44.256372 2024-07-30 15:29:44.256379 2c14aa76-6edb-4993-baa8-63d9c42c84ac {"md5": "17d35b541365604207d938b05830e297", "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"}], "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-07-30 15:29:44.329587 2024-07-30 15:29:44.329596 2f569abe-fe9a-45c6-902b-10e4b2e8e28d {"md5": "0cd7657e220a2313bba38abec0bc8f70", "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"}], "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-07-30 15:29:44.399822 2024-07-30 15:29:44.399831 0e1597d7-157e-496e-8767-8ee88cb7573e {"md5": "35fad652d8fb17511fc8b0c26f359cb6", "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"}], "authorized_access_point": "Piwonkerbach"} 1 +2024-07-30 15:29:47.378632 2024-07-30 15:29:47.37864 bbf0bb73-df18-4676-af49-8ef2091ba642 {"md5": "51916146ccd22c58f6b856258d94b4a2", "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"}], "authorized_access_point": "Winkewijert"} 1 +2024-07-30 15:29:44.472594 2024-07-30 15:29:44.472603 c2d39ee1-2824-4d39-8873-1650c6dc89ee {"md5": "05c26d0db8b6b31f0888b9df462e61c3", "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"}], "authorized_access_point": "Voorstondse Beek"} 1 +2024-07-30 15:29:44.549337 2024-07-30 15:29:44.549344 31a13dac-f070-45c8-ab74-edde55867b21 {"md5": "607c17ee5fc8c855c2040a1e9e9e4615", "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"}], "authorized_access_point": "Gravinnebeek"} 1 +2024-07-30 15:29:44.628999 2024-07-30 15:29:44.629007 eae0b76b-9015-4e16-8756-0c0b04e05f9a {"md5": "6461f25733399529ec0b652b42b8e5c3", "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"}], "authorized_access_point": "Coldenhovensebeek"} 1 +2024-07-30 15:29:44.706786 2024-07-30 15:29:44.706794 8c18bafa-c167-4e9b-a2c8-7b9fb97fabb1 {"md5": "96d23c53e9a3d06a6f110c2ecfb38ab3", "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)"} 1 +2024-07-30 15:29:44.783437 2024-07-30 15:29:44.783445 9f9ab980-f774-4c8d-90d0-1cf0e4768fee {"md5": "e603d531ac0acd0d0e03ee2bb7ec047a", "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"}], "authorized_access_point": "Molenbeek (Mook, Fluss)"} 1 +2024-07-30 15:29:44.869731 2024-07-30 15:29:44.869741 a378a360-9d93-40f5-ba91-dc6e3f1dc576 {"md5": "c6d9e7fad3941139df8e240ff95d68c3", "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"}], "authorized_access_point": "Mosbeek"} 1 +2024-07-30 15:29:44.952956 2024-07-30 15:29:44.952965 5f8bd444-0e6e-462b-80e6-1f30a194653b {"md5": "23a995e3fa63ad6ddd279f940df7e1e8", "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"}], "authorized_access_point": "Zilverbeek"} 1 +2024-07-30 15:29:45.023771 2024-07-30 15:29:45.023778 672864a7-9f38-4ad4-879d-8a619abc3e16 {"md5": "c5124d64367855d3c9ae2bc58706763e", "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"}], "authorized_access_point": "Esvelderbeek"} 1 +2024-07-30 15:29:45.097285 2024-07-30 15:29:45.097292 d2a09bcd-6620-4a0e-b774-429cb1613453 {"md5": "e5fd817b09ee09646fc68aff38324da7", "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"}], "authorized_access_point": "Papiermolenbeekje"} 1 +2024-07-30 15:29:45.155647 2024-07-30 15:29:45.155654 7b7fd0ef-b3cb-403c-8464-924489a3d6fc {"md5": "688542f56b6a420c62bd64048fde3809", "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"}], "variant_access_point": ["Grote Barneveldsebeek"], "authorized_access_point": "Barneveldsche Beek"} 1 +2024-07-30 15:29:45.230813 2024-07-30 15:29:45.230822 ac739d05-cfc5-4236-90b1-088d695ede72 {"md5": "f3c8c492cad61cb421978648bedb7e1c", "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"}], "authorized_access_point": "Schoonderbeek"} 1 +2024-07-30 15:29:45.317396 2024-07-30 15:29:45.317407 41e863f4-4e20-49c3-9565-3673db316a93 {"md5": "3785a670778effb635efbb00070df7af", "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"}], "variant_access_point": ["Hierdense beek"], "authorized_access_point": "Hierdensche Beek"} 1 +2024-07-30 15:29:45.405431 2024-07-30 15:29:45.405439 2f6dc8bc-a9d3-4f15-a727-78f78958afd2 {"md5": "6a187527281dbf47e47839a415829b42", "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"}], "authorized_access_point": "Leuvenumse Beek"} 1 +2024-07-30 15:29:45.471188 2024-07-30 15:29:45.471195 f5fbd9ff-219b-4942-a898-0c0e135668d0 {"md5": "7e6eb92e7f36ee2e5f046b8d91ac64b1", "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"}], "variant_access_point": ["Staverdensche Beek"], "authorized_access_point": "Staverdense beek"} 1 +2024-07-30 15:29:45.539627 2024-07-30 15:29:45.539647 6e603cfb-76a8-4729-825b-7d7e1ebef6d4 {"md5": "9b988093886b6fd391c778bbe42f00e4", "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"}], "variant_access_point": ["Papierbeek"], "authorized_access_point": "Papiermolenbeek (Doornspijk, Fluss)"} 1 +2024-07-30 15:29:45.603835 2024-07-30 15:29:45.603842 996ce15a-4e9e-4923-aad8-d8890154623a {"md5": "66500e17c9c2efeabecb35c2bec76c02", "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"}], "variant_access_point": ["Molecatense Beek"], "authorized_access_point": "Molecatensebeek"} 1 +2024-07-30 15:29:45.664007 2024-07-30 15:29:45.664015 2e7155cd-4644-4dc8-b065-007c299de507 {"md5": "46f4b04c6650f9f9dbfb38b17ec3e166", "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"}], "variant_access_point": ["Zuidelijke Horsthoeker beek"], "authorized_access_point": "Zuidelijke Horsthoekerbeek"} 1 +2024-07-30 15:29:45.725374 2024-07-30 15:29:45.725381 124fe0a1-e98c-4552-80be-24c071ef8ce3 {"md5": "7dd56faeb4e8a8f0b68133df00bc9f28", "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"}], "variant_access_point": ["Noordelijke Horsthoeker beek"], "authorized_access_point": "Noordelijke Horsthoekerbeek"} 1 +2024-07-30 15:29:45.79625 2024-07-30 15:29:45.796258 9c8a9b2b-e37d-44fd-b180-6c0b39b01bfb {"md5": "636de965f0d900dc6e1e2b1abf01a4af", "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"}], "authorized_access_point": "Middelste Heerderbeek"} 1 +2024-07-30 15:29:45.865298 2024-07-30 15:29:45.865306 eb9abd6c-ffb8-47af-bdb5-d626480d91df {"md5": "8d0f0817858f31fcfcf77c7415b568ab", "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"}], "authorized_access_point": "Heerderbeek"} 1 +2024-07-30 15:29:45.932055 2024-07-30 15:29:45.932064 54dc0a82-5d06-419b-8c24-04251e01fd01 {"md5": "9036feccd4aae17a2a3d33e79afedf4d", "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"}], "variant_access_point": ["Dorpse molenbeek", "Dorpermolenbeek"], "authorized_access_point": "Dorpse beek"} 1 +2024-07-30 15:29:46.010917 2024-07-30 15:29:46.010961 094c1708-48a0-4552-b3a4-7b038744311e {"md5": "2b4a3b5b4dcb97193c65c52eb2a8b102", "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"}], "variant_access_point": ["Geelmolense beek"], "authorized_access_point": "Geelmolensche Beek"} 1 +2024-07-30 15:29:46.123956 2024-07-30 15:29:46.123965 68831569-3d02-4f0a-8cd4-539b38bffed0 {"md5": "b74d748e8e306f4ecf5e21d0fa582c39", "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"}], "authorized_access_point": "Nieuwe Beek (Vaassen, Fluss)"} 1 +2024-07-30 15:29:46.200194 2024-07-30 15:29:46.200203 88b959bf-20a4-4aa9-b1cb-3f8bb02a1f66 {"md5": "1d15434e32546edf1de8058c0f8ff39f", "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"}], "variant_access_point": ["Hattemse beek"], "authorized_access_point": "Hartense Molenbeek"} 1 +2024-07-30 15:29:46.287685 2024-07-30 15:29:46.287695 ad6b6cea-e4c4-4e56-a136-0de42437c429 {"md5": "9f6aa2f6a41f7a802814e5404911b138", "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"}], "authorized_access_point": "Groevenbeek"} 1 +2024-07-30 15:29:46.38303 2024-07-30 15:29:46.383037 f18c4220-15a3-47ba-8e77-a5041827d4b6 {"md5": "b3a7af9b76b0a424a57901305d17a395", "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"}], "variant_access_point": ["Nijmolense beek", "Nijmolenschebeek"], "authorized_access_point": "Nijmolense Beek"} 1 +2024-07-30 15:29:46.486163 2024-07-30 15:29:46.486173 89ef0970-239d-45b9-a066-8bb5d1810400 {"md5": "7375ed3aa9b4f2bba8e4a850979faa2d", "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"}], "variant_access_point": ["Smallertse beek"], "authorized_access_point": "Smallertse Beek"} 1 +2024-07-30 15:29:46.568957 2024-07-30 15:29:46.568965 3a2b8929-8ba7-4c87-bd6d-c9de536ecae9 {"md5": "70b3da8e0186ccfd01fc648d35052f9b", "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"}], "variant_access_point": ["Tongerensche beek"], "authorized_access_point": "Tongerensche Beek"} 1 +2024-07-30 15:29:46.652441 2024-07-30 15:29:46.65245 03d9fc06-7c8b-48d4-b326-c0745c18cbf6 {"md5": "6aec4be0b403bd760f062009076f83dc", "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"}], "authorized_access_point": "Paalbeek"} 1 +2024-07-30 15:29:46.72939 2024-07-30 15:29:46.729398 e6989448-3a6d-4614-8964-a6825abeaf56 {"md5": "03413282910c8425cb6010872002b27b", "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"}], "authorized_access_point": "Wittebeek"} 1 +2024-07-30 15:29:46.81226 2024-07-30 15:29:46.812268 d966f05c-ea17-4aa2-adf3-6da484d8ee30 {"md5": "8b8f5ef4e75556ac19a0f19ffaafb181", "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"}], "authorized_access_point": "Strobroeksbeek"} 1 +2024-07-30 15:29:46.889318 2024-07-30 15:29:46.889328 893fe26d-cfe8-4007-b6e4-bbe9d40ed8ae {"md5": "2a39319f1a0e3a1646f1a368da125747", "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"}], "authorized_access_point": "Zilvensebeek"} 1 +2024-07-30 15:29:46.970786 2024-07-30 15:29:46.970795 ec5c299f-0ca1-4523-80ef-baef1f29bf7b {"md5": "921f568eae463e03b7c25f0cc8776ec3", "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"}], "variant_access_point": ["Loenensebeek"], "authorized_access_point": "Loenensche Beek"} 1 +2024-07-30 15:29:47.058378 2024-07-30 15:29:47.058386 1f23b83f-b6a8-4927-a11b-1241a65ee608 {"md5": "005801351bdbb6f265c938fc172cb198", "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"}], "variant_access_point": ["Beekbergsebeek"], "authorized_access_point": "Beekbergsche Beek"} 1 +2024-07-30 15:29:47.142698 2024-07-30 15:29:47.142707 d2a08bfe-fdb2-4481-867a-b14bae469805 {"md5": "b70380dc5f6abb18406bda3fa94165a7", "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"}], "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-07-30 15:29:47.217124 2024-07-30 15:29:47.217129 71cb06bb-5601-43cd-9d16-b61aa929c0e5 {"md5": "e719a38bd5c23f4d5897a242c5157a72", "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"}], "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-07-30 15:29:47.457321 2024-07-30 15:29:47.457329 8cdff7db-9a78-4658-9093-d4450e933747 {"md5": "113465cef40521705828b527a0b1bbdd", "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"}], "authorized_access_point": "Ugchelsebeek"} 1 +2024-07-30 15:29:47.542733 2024-07-30 15:29:47.542741 1624288c-b097-48fb-b416-30d57c47d833 {"md5": "b5a1ecffbf081f14044ac6eaa5d7a6f1", "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"}], "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-07-30 15:29:47.626078 2024-07-30 15:29:47.626087 7ffced83-17eb-4301-a1a0-e973095e31e1 {"md5": "10a88562d35cdb101474ccae4a8f2f15", "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"}], "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-07-30 15:29:47.715232 2024-07-30 15:29:47.715242 cfdf30ad-66ce-4a21-b032-348ecfa75587 {"md5": "565eaae9ad2dc5b87fbc8abae8a97209", "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"}], "authorized_access_point": "Sauberg (Erzgebirge, Berg)"} 1 +2024-07-30 15:29:47.80128 2024-07-30 15:29:47.801287 6f8d69bb-6473-4e8d-962b-6e99389186b8 {"md5": "bed3d4d0339aeeeafb8ef2b9306ea7a9", "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", "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-07-30 15:29:47.889253 2024-07-30 15:29:47.889264 0286dfe0-d1c2-4cb7-8ae7-d8d60a85a603 {"md5": "e14213626e56d5c25471808e2cc501a4", "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"}], "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-07-30 15:29:47.97749 2024-07-30 15:29:47.977528 a5dfe1ed-b982-4eb7-8bc1-cefa63596d9d {"md5": "60e9d896bc943b59af1760a326957bb3", "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)"}], "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-07-30 15:29:48.078062 2024-07-30 15:29:48.078075 d7f4fd7f-b73b-4a07-8581-31daa8c5cf46 {"md5": "412e59a7e8781d4137b49d574098a1cb", "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"}], "authorized_access_point": "Giersdorfer Wasser"} 1 +2024-07-30 15:29:48.149622 2024-07-30 15:29:48.14963 9e7dd76b-65f0-4ac2-8a08-de89450c9f86 {"md5": "d6df61f9eb1f36e49b5776f88b924a9e", "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", "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-07-30 15:29:48.217445 2024-07-30 15:29:48.217448 c91cd5d8-8841-4c1e-ae92-8c3dbbac07cb {"md5": "ab0440703494829cb6a166f7410f4fcd", "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"}], "variant_access_point": ["Krauthausener Mühlenteich"], "authorized_access_point": "Krauthausener Teich"} 1 +2024-07-30 15:29:48.290423 2024-07-30 15:29:48.290433 67aaed43-09c9-427c-93b1-de1ecf3be67a {"md5": "caa1a34df225310db8b327a00e0e8700", "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"} 1 +2024-07-30 15:29:48.370417 2024-07-30 15:29:48.370427 ceca4437-0e5b-477c-9f6d-b4244296b698 {"md5": "c04d9d9a84882eab83aed0a0e60ca46a", "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", "Śląsk Karniowski"], "authorized_access_point": "Krnov"} 1 +2024-07-30 15:29:48.447069 2024-07-30 15:29:48.447078 b6c5f1e6-f343-4e5e-b751-f329f1d2606b {"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"} 1 +2024-07-30 15:29:48.53257 2024-07-30 15:29:48.532634 09d4c898-7773-44d3-8b5d-1fd2220a0a2a {"md5": "2cd1dbef882393f91fa871faffc2ade6", "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"}], "variant_access_point": ["Neulandhalle (Dieksanderkoog)", "Neulandhalle (Adolf-Hitler-Koog)"], "authorized_access_point": "Neulandhalle (Friedrichskoog)"} 1 +2024-07-30 15:29:48.621416 2024-07-30 15:29:48.621426 09de1bf9-1ef9-4fcc-94c0-668f38f76ed6 {"md5": "a73cdecd2ade9e23b483c089e4cd26d9", "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)"}], "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-07-30 15:29:48.700739 2024-07-30 15:29:48.700746 0be667c1-d517-4e2c-bda2-197bd0dbf67c {"md5": "fda3d459ff41e93be3f9804e8228cd83", "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"}], "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-07-30 15:29:48.772502 2024-07-30 15:29:48.772512 1feb063e-accb-451d-b49c-27cd714d3baa {"md5": "b7d938ab3471a72980419d5837ead5c2", "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"}], "variant_access_point": ["Dielenhaus Fleischhauerstraße 79 (Lübeck)"], "authorized_access_point": "Fleischhauerstraße 79 (Lübeck)"} 1 +2024-07-30 15:29:48.845143 2024-07-30 15:29:48.84515 c0962a46-83b5-42ec-ab3a-3b2b1ccdcfad {"md5": "b3060cccb0539d610b79e0f26706a061", "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"}], "variant_access_point": ["Fuggerhäuser", "Fuggerhäuser Augsburg, Badestuben"], "authorized_access_point": "Fuggerhäuser"} 1 +2024-07-30 15:29:48.915142 2024-07-30 15:29:48.915149 b77fca61-e6cf-4931-a2fc-2b08ca0a5ea7 {"md5": "57b230600e7ef0eb9019c23230d8b009", "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"}], "variant_access_point": ["Museumsbau Museum Altona (Hamburg)", "Museumsgebäude des Museums Altona (Hamburg-Altona)"], "authorized_access_point": "Museumsbau des Altonaer Museums (Hamburg)"} 1 +2024-07-30 15:29:48.986874 2024-07-30 15:29:48.986883 ee63688d-4817-4c9a-9bd4-ae54f0754ff8 {"md5": "ddcdfeabdb51b3c19637fd61c1e78bba", "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)"}], "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-07-30 15:29:49.065475 2024-07-30 15:29:49.065483 d40a9eb8-ae28-4bb0-a861-fd42c3e99a09 {"md5": "805cfc6b3e8a4820c65daa5b70f14156", "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"}], "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-07-30 15:29:49.159874 2024-07-30 15:29:49.159883 3ed65815-3db6-4027-a69f-ee4c8debc524 {"md5": "dbd07929c932593023f840fe4539410a", "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"}], "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-07-30 15:29:49.244169 2024-07-30 15:29:49.244171 83563f34-390c-4713-a460-ff81ba47ce42 {"md5": "fb9e47e74ab7e2ba6233af519bfe85cf", "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"}], "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-07-30 15:29:49.30281 2024-07-30 15:29:49.302814 a093e0ee-35c3-4948-9533-85cb92cec222 {"md5": "ec551ae9a62beb6c315f7176990eb2cf", "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", "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-07-30 15:29:49.370949 2024-07-30 15:29:49.370958 e64d70de-a2cf-445d-9df5-8a9c5e8a6f73 {"md5": "21a0edcb3851dd1d29b053d30181f3b5", "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"} 1 +2024-07-30 15:29:49.451353 2024-07-30 15:29:49.451362 dcf36ea5-1761-441a-ae41-664f0943d794 {"md5": "18758aebda21271fd02f98356f8e393a", "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"}], "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-07-30 15:29:49.521469 2024-07-30 15:29:49.521478 d9a57f0b-9692-410b-bacd-a9c34058bcc8 {"md5": "075280517ac8efdc3af91e2cc7d303a8", "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"}], "variant_access_point": ["Ev. Kirche Nümbrecht (Nümbrecht)"], "authorized_access_point": "Evangelische Kirche Nümbrecht (Nümbrecht)"} 1 +2024-07-30 15:29:49.595512 2024-07-30 15:29:49.595521 f5924792-8cc2-454b-8e1a-88c5b1625d4c {"md5": "bc389120229a8c7fa5b2c35262caa7ee", "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", "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-07-30 15:29:49.674011 2024-07-30 15:29:49.674021 3379bb30-c704-4be1-8a6c-2019d598675a {"md5": "585673ddcee8890a37f99e8433131dec", "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"}], "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-07-30 15:29:49.752982 2024-07-30 15:29:49.75299 aa49e9b5-db69-4426-bfde-e7e9328b37e4 {"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"} 1 +2024-07-30 15:29:49.829992 2024-07-30 15:29:49.830001 af736259-b7bd-472f-bf4a-19690e442c12 {"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"} 1 +2024-07-30 15:29:49.916425 2024-07-30 15:29:49.916436 98477dce-f7df-4acd-8c78-38025e74b93b {"md5": "03450be99419b9ef06a34cf70680db56", "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ė"}], "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-07-30 15:29:50.010518 2024-07-30 15:29:50.010527 7ce2dd29-dace-4610-8895-c2efb35f0aa7 {"md5": "0b0b95b572437911422c3707d82ab441", "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", "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-07-30 15:29:50.084049 2024-07-30 15:29:50.084061 7b7ddcd2-3c65-4e0b-9efd-5d591e47bd2f {"md5": "05a1d6748fcccd6e065ff7ab5cad48b0", "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", "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-07-30 15:29:50.160774 2024-07-30 15:29:50.160782 7cc525f0-c9f5-4d4d-9c66-1a6ba9540580 {"md5": "5ded28061103833a38d10c6e831794f0", "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", "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"} 1 +2024-07-30 15:29:50.238739 2024-07-30 15:29:50.238747 65f8e2b4-e702-42ba-8ca5-d20ce71a6d22 {"md5": "2b7a0970a7a78377fad22af6c4b90473", "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", "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-07-30 15:29:50.29396 2024-07-30 15:29:50.293968 9b47bbb7-8e91-404f-9243-4a66c7dec350 {"md5": "7fdf4d137b35c67db895bccf5fec3f8c", "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", "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-07-30 15:29:50.367509 2024-07-30 15:29:50.367517 b74fc5c5-affe-4108-b12e-f577dc63c189 {"md5": "14f84a9442f855f0969ec561e134980a", "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", "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-07-30 15:29:50.444803 2024-07-30 15:29:50.444828 32cbfbde-2f42-426b-b2ad-79d42183130f {"md5": "f582a0205f7a34fac059a79121146df1", "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", "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-07-30 15:29:50.524898 2024-07-30 15:29:50.524901 543ece6c-048f-4f2c-9ad3-4f15941728cf {"md5": "f7ef1d9e49fa121ca648a1b786376d40", "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", "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-07-30 15:29:50.594011 2024-07-30 15:29:50.594019 985f1b37-1c2a-4aec-bc01-64ee3bb924d7 {"md5": "865700cc2296def43e097f95abc3faef", "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", "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-07-30 15:29:50.665353 2024-07-30 15:29:50.665361 4ca3a435-ba0f-4a57-9b3b-7bf7e81cfee0 {"md5": "bc2b85ed25a9196f1e9a2f3abf193844", "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", "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-07-30 15:29:50.748752 2024-07-30 15:29:50.748761 1b6259d2-ba8d-491f-894e-cbde378aa9e3 {"md5": "0d6d06ba6cb65e96a11dca3880b133f4", "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", "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-07-30 15:29:50.831637 2024-07-30 15:29:50.831646 e2538aa3-3366-42c5-8e40-1b795a43b8fd {"md5": "c8db3c368a4990c2dd4c1d632fbd0f7f", "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", "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-07-30 15:29:50.909497 2024-07-30 15:29:50.909508 8375318c-7328-4bc2-8b30-0da1e371a8ce {"md5": "57191ab308c7014b6e56dd21d7479ea1", "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", "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-07-30 15:29:50.987799 2024-07-30 15:29:50.987808 b9474394-4c56-4596-8546-aaea665e8be3 {"md5": "a1e1c15b9f8e96c52224eb36a8209423", "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", "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"} 1 +2024-07-30 15:29:51.071381 2024-07-30 15:29:51.071389 0441c1a0-f57a-4f6c-acc6-80fd403d1d8b {"md5": "949e72f12baaeba29b4fd894b750c8d0", "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"}], "variant_access_point": ["Beuron-Schloss Werenwag"], "authorized_access_point": "Schloss Werenwag"} 1 +2024-07-30 15:29:51.173098 2024-07-30 15:29:51.173109 a4e0c139-8b8d-4d23-8a40-ead6f59cd732 {"md5": "0bf08346bf1809360dae7dc2f38b737d", "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)"} 1 +2024-07-30 15:29:51.241994 2024-07-30 15:29:51.242002 5daccd68-089d-42db-8795-aa878b0c2bc6 {"md5": "ae0e374ea5fb98478778d1e552b8dd88", "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", "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-07-30 15:29:51.318528 2024-07-30 15:29:51.318537 f78c5604-56c6-47d2-a07c-29bfcedbdbfc {"md5": "bb523505ed9e61ae55a6d640e699e1b7", "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", "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-07-30 15:29:51.387378 2024-07-30 15:29:51.387387 42cbb983-3529-49e5-92f1-9fd13a0dc65d {"md5": "493f6d60221a8e72a0979a86a71156f5", "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"}], "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-07-30 15:29:51.461664 2024-07-30 15:29:51.461671 d905cae3-0479-427f-8a23-8419308e7f15 {"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"} 1 +2024-07-30 15:29:51.527625 2024-07-30 15:29:51.527633 1864ce82-79f6-4b40-a8b3-ef027d7e18fe {"md5": "edb04a87a7f22afaa34d745d25210768", "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"}], "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-07-30 15:29:51.594002 2024-07-30 15:29:51.59401 78e5c3a5-56ea-4f7f-939b-1e80f9f353dc {"md5": "caaee3771c9b6f1cd545f92c9835bac3", "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"}], "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-07-30 15:29:51.661942 2024-07-30 15:29:51.66195 5fe04233-c397-459a-9373-520acba9e7b5 {"md5": "38d5592dba0297a2181c6bebe33d1482", "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)"}], "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-07-30 15:29:51.731847 2024-07-30 15:29:51.731856 e7e2e501-9203-42d3-bd42-8ac0a5127200 {"md5": "78e0693dd1c6910444876ba1a0ee106b", "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"}], "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-07-30 15:29:51.798961 2024-07-30 15:29:51.798969 26a711c9-e8a2-463f-8759-2291656f7050 {"md5": "0c110aa67fcf8e474b6c0da6f3556aa2", "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"}], "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-07-30 15:29:51.873525 2024-07-30 15:29:51.873533 c0418f5c-b42a-485c-8e3b-9158edc87e42 {"md5": "655c8ff896c6b365c260de33a9bd91c6", "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"}], "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-07-30 15:29:51.939391 2024-07-30 15:29:51.939398 860382d4-898f-4574-94a7-44b500fb4289 {"md5": "1c451521ab842cbdb646182a092915ae", "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"}], "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-07-30 15:29:52.011068 2024-07-30 15:29:52.011076 49e516d6-aa6d-4f02-b27a-8d1d22a5d827 {"md5": "29d50dfe03d03ea9d02af20bca14990d", "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", "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-07-30 15:29:52.081997 2024-07-30 15:29:52.082009 1eb330d8-458f-4e2f-a318-ba525f7f259d {"md5": "ee192807059ae85e18c486c9a782e211", "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"}], "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-07-30 15:29:52.16269 2024-07-30 15:29:52.1627 375229a7-0c1f-429d-97a0-e3234f21d7b5 {"md5": "6b69d0b89216306774c18750ed3605d6", "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)"}], "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-07-30 15:29:52.236966 2024-07-30 15:29:52.236975 00e8ac13-1ea5-474e-ab38-721ac177341c {"md5": "b57aeb895c999c2c933ea210128f6694", "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"}], "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-07-30 15:29:52.304224 2024-07-30 15:29:52.304227 6900fc1e-4a7e-48de-bc27-17b9df514955 {"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"} 1 +2024-07-30 15:29:52.354629 2024-07-30 15:29:52.354637 5966f34a-64f7-4e0b-9a1a-663887cd126e {"md5": "00ef3fe6bcad05d2e70375eb3c07df19", "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"}], "variant_access_point": ["Bezirk Judenburg", "Judenburg (Politischer Bezirk)"], "authorized_access_point": "Politischer Bezirk Judenburg"} 1 +2024-07-30 15:29:52.424553 2024-07-30 15:29:52.424562 c4750654-c361-400b-89e1-3d62d27e50bb {"md5": "cdf433f3f88d11f1deb784b4d534efc6", "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", "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-07-30 15:29:52.494674 2024-07-30 15:29:52.494683 6c6c07be-a542-46d3-aad9-4154ce470598 {"md5": "a1e1787aa029c4c3e597b3a9461cc5c0", "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)"], "authorized_access_point": "Herzogtum Preußen"} 1 +2024-07-30 15:29:52.568627 2024-07-30 15:29:52.568637 fe63baf9-8108-4687-9e58-80676fa66189 {"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"} 1 +2024-07-30 15:29:52.642867 2024-07-30 15:29:52.642877 e5f4ed90-17e4-42a1-8c5d-b58686ba0ab7 {"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)"} 1 +2024-07-30 15:29:52.722067 2024-07-30 15:29:52.722077 cb15a983-0364-4ace-bf41-06cdf6887b45 {"md5": "d7f8a1c410fd7a5ed2425d40f8adba6a", "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)"}], "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-07-30 15:29:52.797021 2024-07-30 15:29:52.79703 654b29d6-02d2-4133-b2d3-f4c992a1ffc0 {"md5": "4ea14699ef823b518c8589b14987d9e9", "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", "Hadersleben (Amt)"], "authorized_access_point": "Amt Haderslev"} 1 +2024-07-30 15:29:52.866923 2024-07-30 15:29:52.866932 53b4af25-6183-48f4-a722-a220216be067 {"md5": "eeb77cf05e336e34186718d8c1122c75", "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", "Hadersleben (Amt)"], "authorized_access_point": "Amt Haderslev"} 1 +2024-07-30 15:29:52.941721 2024-07-30 15:29:52.941728 40b93b09-91a8-45a5-9538-af00873bd3f2 {"md5": "6f386d6d9329612e1718566644dbaf2c", "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"} 1 +2024-07-30 15:29:53.015726 2024-07-30 15:29:53.015735 3148655f-0181-4364-8a52-d1b40728eabf {"md5": "7bf43d4e23da945dc1e138ca1c867e45", "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"} 1 +2024-07-30 15:29:53.087894 2024-07-30 15:29:53.087902 d2d5d192-8893-4659-a353-bf0ec67deaa0 {"md5": "7342145255b4e5c5ebde079a52560b68", "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"} 1 +2024-07-30 15:29:53.161115 2024-07-30 15:29:53.161122 125e0a1a-7dfc-4884-9ebf-64c943f861fe {"md5": "0af6dab7252c65b264bb1c67c5d9a177", "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"} 1 +2024-07-30 15:29:53.226233 2024-07-30 15:29:53.226242 a5a8c4a7-15e6-47f2-b092-d1ec9594c9b3 {"md5": "f72104139ebd36e7b1252f309b5769f9", "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"}], "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-07-30 15:29:53.296173 2024-07-30 15:29:53.296181 03246baf-976b-4e1a-8c91-aa2b6f90b83f {"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)"} 1 +2024-07-30 15:29:53.37785 2024-07-30 15:29:53.377857 b322a08e-8562-4c68-89fb-851347c79ac1 {"md5": "0b09f83e847356713d89a058b05b065d", "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"}], "variant_access_point": ["Melanchthonkirche (Bochum-Wiemelhausen)"], "authorized_access_point": "Melanchthonkirche (Bochum)"} 1 +2024-07-30 15:29:53.450096 2024-07-30 15:29:53.450105 6d8241f0-5cb1-4642-89c7-efe6a6b0a557 {"md5": "c0543211ef3f608c393151a3181f9fef", "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", "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-07-30 15:29:53.522941 2024-07-30 15:29:53.52295 9737a336-98bd-4d9c-89a3-35738d2c76a7 {"md5": "4441d1df45d5056aba9fa1593ea5523f", "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)"} 1 +2024-07-30 15:29:53.594039 2024-07-30 15:29:53.594051 78100560-39db-49da-8156-2fd02ddb3624 {"md5": "e3c627d8c5fc88b209d8d487f4a89f1c", "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", "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-07-30 15:29:53.664538 2024-07-30 15:29:53.664546 b6826666-4796-4756-8d9d-563dc586264f {"md5": "c9dce63e511d55b1de06ac1640151d6b", "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", "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-07-30 15:29:53.735505 2024-07-30 15:29:53.735514 8769a8f2-2cb7-4991-bf5e-0ca20954f14f {"md5": "d81f3f02168002aaef56f9e6b16a8a1a", "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", "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-07-30 15:29:53.807671 2024-07-30 15:29:53.80768 d9538343-c4f8-497e-8861-88682d58619b {"md5": "b6e17a99aaf6a1a137acece4ac0ddd7c", "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", "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-07-30 15:29:53.883318 2024-07-30 15:29:53.883328 a7f74132-89a7-4627-95b4-d7bca1fca949 {"md5": "47b60b41c6a805d8a3cc861e49456338", "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"}], "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-07-30 15:29:53.955072 2024-07-30 15:29:53.955085 e1a2d0f7-9c79-437f-b891-a1083b8075f7 {"md5": "e0e625a215d246f155ea903d9c1d20ad", "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"}], "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-07-30 15:29:54.02508 2024-07-30 15:29:54.025088 435d2f0e-742a-4a31-8490-3d5fb0bc8887 {"md5": "90017c34705fff6f52effde2635cabd8", "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)"}], "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-07-30 15:29:54.092575 2024-07-30 15:29:54.092582 1912a991-ed7b-4b0d-a6d2-f5a97bb7c40d {"md5": "c51842f2f0ef445e7d6569b15d819fe0", "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"}], "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-07-30 15:29:54.166489 2024-07-30 15:29:54.166499 776ff47d-5374-4eee-a6f8-053c86695af5 {"md5": "aadc9e5a432f02e1f9f0c72c339f8852", "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"}], "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-07-30 15:29:54.229727 2024-07-30 15:29:54.229734 4438e762-6eea-4896-a1a0-5d832d431e7b {"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"} 1 +2024-07-30 15:29:54.293884 2024-07-30 15:29:54.293892 eda48aee-9002-4e31-bb66-56141522e995 {"md5": "59df1a89b8b7b2aee456e9b68a4d855c", "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"}], "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-07-30 15:29:54.359478 2024-07-30 15:29:54.359486 f5cd9c90-a039-4063-a5d7-2bb49d7c3661 {"md5": "f93efce86c5d24e4af84b2428cbe81ec", "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"}], "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-07-30 15:29:54.411323 2024-07-30 15:29:54.411332 210d7298-6595-44a2-a4b9-9e8ef8d82b24 {"md5": "67ac16a8a20fc2b8a5fd4a9eb5a07c9c", "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"}], "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-07-30 15:29:54.477481 2024-07-30 15:29:54.477489 319889ff-cc9a-4d02-88eb-baaf067d419f {"md5": "7b65f271945248c4f9148525746c9cfc", "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", "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-07-30 15:29:54.547983 2024-07-30 15:29:54.54799 fdd8dedb-b96f-4266-938e-16055fd93fc3 {"md5": "02a75ddfa14fff5163f86010a94476a5", "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)"}], "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-07-30 15:29:54.628272 2024-07-30 15:29:54.62828 90d5c335-52b9-42d3-b025-d18bc7a8f219 {"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"} 1 +2024-07-30 15:29:54.698133 2024-07-30 15:29:54.698141 34330692-69f4-4008-9c8a-243ced959a48 {"md5": "3d7fdee92f95edfa7797c6c5f381653f", "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"} 1 +2024-07-30 15:29:54.769516 2024-07-30 15:29:54.769525 d6637267-e4d5-4816-91db-e86c315f9d97 {"md5": "999b2fbe3cfbe3ea33eae415e3758278", "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"}], "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-07-30 15:29:55.485604 2024-07-30 15:29:55.485615 9a5e5d2c-12e5-4a42-b423-40f4a4d74fcd {"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"} 1 +2024-07-30 15:29:54.859646 2024-07-30 15:29:54.859655 7e75a6fe-d042-4c27-8416-27ef17fb1ff6 {"md5": "5f0ca35b11291269ae3f02b0da472a31", "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"}], "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-07-30 15:29:54.941392 2024-07-30 15:29:54.941399 79c97114-6b56-47b2-8f7b-9eaf31f0cca8 {"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"} 1 +2024-07-30 15:29:55.010052 2024-07-30 15:29:55.01006 dba1aebe-205f-41d8-a563-4f70c239a21a {"md5": "6c4c1ac9728d76c9b645f19ecd538b2a", "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"}], "authorized_access_point": "Schloss Köniz (Köniz)"} 1 +2024-07-30 15:29:55.083058 2024-07-30 15:29:55.083068 c28e9d0f-f801-40b8-bf36-7a2b4e3fdff6 {"md5": "9d39e92a7a1f7779eb201b6752bc5382", "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"}], "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-07-30 15:29:55.154334 2024-07-30 15:29:55.154342 63acfcb7-2b36-4116-8c00-4a04646f0687 {"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"} 1 +2024-07-30 15:29:55.220174 2024-07-30 15:29:55.220182 e8290faf-78cd-45f3-bcaa-fabc9fd6b051 {"md5": "dd0be60184c22bcd8b4392f173b29821", "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)"}], "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-07-30 15:29:55.288769 2024-07-30 15:29:55.288775 11c7f6ba-4eb8-404d-900b-38bd33b3345c {"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"} 1 +2024-07-30 15:29:55.367463 2024-07-30 15:29:55.367471 46cae232-0cd0-455e-afbf-a755c14cf391 {"md5": "c8659f929f4429b74a648f5eeeb4eced", "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", "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-07-30 15:29:55.420984 2024-07-30 15:29:55.420989 bdb72ae0-ee61-4f0c-b58b-2e1ab90c70c2 {"md5": "19afa0bcd5f8911aebd9ff14277abb5a", "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)"}], "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-07-30 15:29:55.556323 2024-07-30 15:29:55.556331 6b904c74-ad91-4467-bcaa-a76d904be500 {"md5": "17ca9d6a8c22a7815a12ecc00aae34b8", "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", "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"} 1 +2024-07-30 15:29:55.633757 2024-07-30 15:29:55.633769 8b43242c-d790-4db9-9b58-9b63d587d909 {"md5": "6dab26620c16d7ad8a30b7b0fea8f043", "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"}], "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-07-30 15:29:55.718244 2024-07-30 15:29:55.718252 1973dfda-8c16-4838-9c17-966ef8900562 {"md5": "8d0d85d6649a1d5b05cb7e0604887e9b", "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"}], "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-07-30 15:29:55.800566 2024-07-30 15:29:55.800575 dc5df9d4-eb5b-485a-8433-32bcd904101f {"md5": "cc4d63de2425c2b86bb5c2f8162cd5b6", "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"}], "variant_access_point": ["Gouvernement Kowno", "Gouvernement Kovno", "Gouvernement Kaunas"], "authorized_access_point": "Kaunas (Gouvernement)"} 1 +2024-07-30 15:29:55.907274 2024-07-30 15:29:55.907282 a4bec9a6-c3ef-46df-846e-b48c187fbddd {"md5": "f646ce938b90395fe91ad6e503252ee5", "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"}], "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-07-30 15:29:55.975822 2024-07-30 15:29:55.97583 4ae67f90-aac5-4787-b88e-25b5b7df6823 {"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."} 1 +2024-07-30 15:29:56.050089 2024-07-30 15:29:56.050099 a9e6986d-84d9-4f86-b1a0-a591fd77caa0 {"md5": "1caaf50b3c05bb0c1fca9da27aa7ccd9", "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)"}], "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-07-30 15:29:56.13373 2024-07-30 15:29:56.133739 86e3c3e6-38ff-441c-b76a-7d9168c2f617 {"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"} 1 +2024-07-30 15:29:56.202556 2024-07-30 15:29:56.202563 ad9d45c6-5607-4cee-bdc5-8f74463f21da {"md5": "ad5baf79a8ea10c80311929c8777eba9", "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"}], "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-07-30 15:29:56.265877 2024-07-30 15:29:56.265885 c9935438-1e2c-4d4b-adfb-e24a21be70b4 {"md5": "6f9a69e76023d6aebb4645de234369b5", "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)"}], "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-07-30 15:29:56.329524 2024-07-30 15:29:56.329533 2281d454-3793-4920-9711-2f5f533645cf {"md5": "2072432d818ee3aa03fb40a8da0383d8", "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", "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-07-30 15:29:56.390516 2024-07-30 15:29:56.390524 36e804a0-7321-4fda-a369-32b8fefa2401 {"md5": "9904afabf53c82e4eee914596c71b899", "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"}], "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-07-30 15:29:56.440845 2024-07-30 15:29:56.440848 581965a4-12b4-4e1a-aa07-27148dac6567 {"md5": "b1d01d5be45fc1e5777af38c3dc61fa1", "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", "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-07-30 15:29:56.508082 2024-07-30 15:29:56.50809 b38dc005-18a9-4f4d-a328-f25682ab8534 {"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"} 1 +2024-07-30 15:29:56.588992 2024-07-30 15:29:56.589002 2bc200c7-8c7a-4645-ba08-1b5addf75a17 {"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"} 1 +2024-07-30 15:29:56.661379 2024-07-30 15:29:56.661386 58a3057a-fafb-4e7c-840d-d9b57e25c39f {"md5": "56a9cba7ab58d2386f2cc16441ad4d58", "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"}], "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-07-30 15:29:56.729079 2024-07-30 15:29:56.729087 5333e732-5022-4007-a758-402f42f3b50e {"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"} 1 +2024-07-30 15:29:56.803043 2024-07-30 15:29:56.803051 cb72a22b-9829-4d79-93da-3bddec5a6ced {"md5": "edf33615c708c13eed22883b0e03916a", "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", "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-07-30 15:29:56.886042 2024-07-30 15:29:56.886051 53c287fc-add6-4d70-9e66-2adeb9af9db8 {"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"} 1 +2024-07-30 15:29:56.969482 2024-07-30 15:29:56.969491 e6bbd603-0ace-43bf-bf4d-1b30ac0a8fee {"md5": "ee3e590872d23047b91ac9472e7acdfb", "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)"}], "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-07-30 15:29:57.040573 2024-07-30 15:29:57.040582 4745f389-71f7-493c-a01c-4f73f466d7f1 {"md5": "b36e947f483ea18e756d46564211f884", "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", "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-07-30 15:29:57.120834 2024-07-30 15:29:57.120843 27cfc0a0-08aa-4cb0-b689-6c462a2f579b {"md5": "af65fe4b68cf33bc3b990211f24039bb", "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"}], "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-07-30 15:29:57.190612 2024-07-30 15:29:57.190619 d5c0deaf-36c4-44da-89c3-a4068d7e8bae {"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"} 1 +2024-07-30 15:29:57.314702 2024-07-30 15:29:57.314705 596f7050-cba6-476b-9d87-2dcf24f57538 {"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"} 1 +2024-07-30 15:29:57.361175 2024-07-30 15:29:57.361179 ac637402-d9d6-4496-aa04-93f12de84259 {"md5": "918e744abd10c5a6792162ed7df20507", "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"}], "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-07-30 15:29:57.406432 2024-07-30 15:29:57.406435 0622a8d5-7bd6-44b0-a3c1-d2a3b6bfb3c0 {"md5": "b4da73575bab0ca607ff749e8bd7adc6", "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)"}], "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-07-30 15:29:57.449804 2024-07-30 15:29:57.449806 c6f7491e-55c3-4b6a-9328-4849e978ea15 {"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"} 1 +2024-07-30 15:29:57.490979 2024-07-30 15:29:57.490984 3dc94531-a592-4030-9adf-cb6b440a29ea {"md5": "eadb2e63f16da5f88eec61a55625f6e2", "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"}], "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-07-30 15:30:06.576027 2024-07-30 15:30:06.576036 12ccc58f-80e5-42cf-a5c1-023f0d6c1a63 {"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"} 1 +2024-07-30 15:29:57.550995 2024-07-30 15:29:57.551003 191e9eeb-0d16-4215-8301-5f6ba5369d67 {"md5": "9982aad101027739b728dc6377f5b25e", "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"}], "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-07-30 15:29:57.613196 2024-07-30 15:29:57.613205 1fe72230-762d-45bf-bf77-8fbd82a7d263 {"md5": "a320fc4473059ecd7f3d961e7f46f4c1", "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"} 1 +2024-07-30 15:29:57.688071 2024-07-30 15:29:57.688079 23bf5efe-0a65-44dc-a030-39ccfd7185bf {"md5": "5130569ae129b569a1793ba0a8dd6c52", "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"} 1 +2024-07-30 15:29:57.752995 2024-07-30 15:29:57.753004 2cce40e0-5a59-4fc0-ad59-79736638c576 {"md5": "22f65ce2a8920e64fb31004f774e77c8", "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"} 1 +2024-07-30 15:29:57.832011 2024-07-30 15:29:57.83202 ee7861ec-0c75-4dad-a797-05752ce946c1 {"md5": "024b71fdce49fe9b978413814b4a9f77", "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"}], "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-07-30 15:29:57.900564 2024-07-30 15:29:57.900572 ea782108-5d53-4f32-b8ee-b837708be925 {"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"} 1 +2024-07-30 15:29:57.976435 2024-07-30 15:29:57.976443 9843d665-57dc-4bc9-bd86-df2787a683f6 {"md5": "f86254f24480c14c68faac35c58e9cdc", "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"}], "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-07-30 15:29:58.046965 2024-07-30 15:29:58.046972 350df04a-2118-445c-b2ff-195b96f57b6f {"md5": "e178faef3929d2a136712e2901f08704", "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)"}], "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-07-30 15:29:58.118488 2024-07-30 15:29:58.118499 2357fef5-d0e8-4546-8d8e-d2c88c58ecc2 {"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"} 1 +2024-07-30 15:29:58.194254 2024-07-30 15:29:58.194261 1c312d9f-9674-45a2-8513-1853ce603042 {"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"} 1 +2024-07-30 15:29:58.267255 2024-07-30 15:29:58.267264 4bc8f5f2-e40f-4ce8-81d5-7d6fc4d33f85 {"md5": "96eff51c65a283680924b4edc21fb5c3", "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"}], "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-07-30 15:29:58.334285 2024-07-30 15:29:58.334294 992f916b-f11e-46ee-ac9d-8790b1c3a1b6 {"md5": "ac94e8053772a090ab5466dcdacf6dc1", "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"}], "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-07-30 15:29:58.407035 2024-07-30 15:29:58.407043 e2229725-860c-4819-81c5-257f44ff1cce {"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"} 1 +2024-07-30 15:29:58.467468 2024-07-30 15:29:58.467471 a3e94d04-285f-4a73-ab43-1af9b947268c {"md5": "9492c4b6a8a2988b4c63c074c48881c8", "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)"}], "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-07-30 15:29:58.525155 2024-07-30 15:29:58.525164 a7fc191a-b64f-4b2e-ad1e-1b801b11dcb6 {"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"} 1 +2024-07-30 15:29:58.592543 2024-07-30 15:29:58.592552 63133334-b4ca-4401-9f4c-5301e474aba2 {"md5": "2c8a5506e4107b19176bc34947f9b223", "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"}], "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-07-30 15:29:58.662381 2024-07-30 15:29:58.662389 28dfec66-0801-498f-86b1-e52ec80e7850 {"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"} 1 +2024-07-30 15:29:58.734456 2024-07-30 15:29:58.734484 49ff0258-7994-4766-8f07-fb7bd3c585fb {"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"} 1 +2024-07-30 15:29:58.803585 2024-07-30 15:29:58.803594 c29d2cf5-e8cf-4a2e-94bb-c1506c726fb3 {"md5": "10b839e89aa5ad3a3ae0055b316a122e", "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"}], "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-07-30 15:29:58.881633 2024-07-30 15:29:58.881644 f9d89bb8-df38-4fff-aebe-4316e7fe2bcb {"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"} 1 +2024-07-30 15:29:58.956348 2024-07-30 15:29:58.956358 5ba3ecc6-7db6-4fef-acfe-df81d047f074 {"md5": "cb35c1ddc93543ab7406888e457f6c3c", "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"}], "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-07-30 15:29:59.03942 2024-07-30 15:29:59.03943 94643f29-a11a-4bd7-805a-066b6a7b1234 {"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"} 1 +2024-07-30 15:29:59.117881 2024-07-30 15:29:59.11789 b13a7bc2-8e54-4273-9e38-1127dff2b14b {"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"} 1 +2024-07-30 15:29:59.192639 2024-07-30 15:29:59.192648 27dc54fe-40e8-4823-a484-989abaea4854 {"md5": "de19a199fab063da67d5328f59aa5d80", "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"}], "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-07-30 15:29:59.267517 2024-07-30 15:29:59.267525 a02e0bd4-246b-4a09-88d3-e8b56a6b047a {"md5": "4403edfa760f25747d296e43640d3425", "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"}], "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-07-30 15:29:59.345363 2024-07-30 15:29:59.34537 00daa7e9-6199-421c-a980-013c9c36aa3b {"md5": "61891b34db4cd277dc04fd33d32b857c", "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"} 1 +2024-07-30 15:29:59.411799 2024-07-30 15:29:59.411808 9f5131fa-9190-4312-90be-721294f4b90b {"md5": "1834a8f378dd2b58731e06600cdf2a89", "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"} 1 +2024-07-30 15:29:59.480709 2024-07-30 15:29:59.480712 a064f9d1-134d-4114-88fe-8b1a0afe7087 {"md5": "30bbb24ed63965dff64ef5b5a355d93b", "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"} 1 +2024-07-30 15:29:59.540503 2024-07-30 15:29:59.54051 dd913643-6cb8-4ff3-aaa4-20602d7caa4e {"md5": "9b92f1d6e76cec1f9745df9fb70f2453", "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"} 1 +2024-07-30 15:29:59.608631 2024-07-30 15:29:59.608639 c3c3608a-d7ca-40b9-adbf-6780d80a302c {"md5": "acf5a8e4cf11ed18a09dd86052ff7d48", "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"} 1 +2024-07-30 15:29:59.683332 2024-07-30 15:29:59.683342 2f713f62-11cc-4af5-8cdd-36ad0439c8bf {"md5": "2f4a6ea4cc5fb55a20cd7cf78e853d07", "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"}], "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-07-30 15:29:59.75149 2024-07-30 15:29:59.751498 8181eb9c-d4bb-49b9-bb43-35bdfd199fee {"md5": "39d87d5f522c29f224ba5c3a2899e39e", "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"}], "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-07-30 15:29:59.82812 2024-07-30 15:29:59.828133 683cadd2-87be-41f4-8683-1e193ff04f9b {"md5": "8c546e36cdf73690043e12f783ac9c47", "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)"}], "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-07-30 15:29:59.912029 2024-07-30 15:29:59.912037 75461279-231b-459e-addf-7689cd0ddc29 {"md5": "60a68af1f9c4eb630106909a75621827", "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"}], "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-07-30 15:29:59.979988 2024-07-30 15:29:59.979996 66aa1908-e8cb-4630-86d2-da82e1c3e7f9 {"md5": "117b341a16eed733d418aa23610ca110", "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)"}], "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-07-30 15:30:00.056458 2024-07-30 15:30:00.056463 76583c4a-ecf5-45e2-aafe-45361e6ba2cf {"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"} 1 +2024-07-30 15:30:00.130786 2024-07-30 15:30:00.130798 6cb3286c-d0e1-485b-ae94-aa696fc936ca {"md5": "62d02f0a671ac55fc36b3da7c61b7a08", "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"}], "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-07-30 15:30:00.213394 2024-07-30 15:30:00.213407 2fa5eaec-2b87-4431-b8c6-da074058f99f {"md5": "cd4d6ff98901de5e821f7808ac97b3b3", "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"}], "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-07-30 15:30:00.300447 2024-07-30 15:30:00.300458 6be6efb8-16fe-4464-936c-5726fc7ffccc {"md5": "a24fe90c923250bce531dc3b2e2a2838", "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"}], "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-07-30 15:30:00.383477 2024-07-30 15:30:00.383485 6a6cfe00-353e-4f4d-9aa3-d54caa3e6a2a {"md5": "33be9e4d672bea46bca1c7ae96081457", "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", "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-07-30 15:30:00.471318 2024-07-30 15:30:00.471326 40b1d2ba-c587-49e7-a9c3-504b71d5ade7 {"md5": "ebc92289bb1d4055ce2c2132007cabc3", "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", "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-07-30 15:30:00.529495 2024-07-30 15:30:00.529499 1c950b47-7ed2-44a8-b3de-f834be78e76b {"md5": "4a17dc8041002c66fdd3a6bc8c4d28a1", "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"}], "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-07-30 15:30:00.600991 2024-07-30 15:30:00.600999 19ceec8a-494d-4e08-bb98-bb4739b71267 {"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)"} 1 +2024-07-30 15:30:00.676163 2024-07-30 15:30:00.67617 ac9fbbea-e9d1-4be5-a54e-da9c3570714a {"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"} 1 +2024-07-30 15:30:00.7536 2024-07-30 15:30:00.753608 c0bf8c29-eace-46a8-b5de-665c5ae29fb8 {"md5": "20262e6ce7796d8b243f11ff5b188e6c", "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"}], "variant_access_point": ["Oststernberg (Kreis)", "Ost-Sternberg", "Kreis Ost-Sternberg", "Landkreis Ost-Sternberg"], "authorized_access_point": "Kreis Oststernberg"} 1 +2024-07-30 15:30:00.831801 2024-07-30 15:30:00.83181 a0d80250-6d38-426a-8742-0700d4dbf749 {"md5": "5af46fc3a40635046234fe76a5233f2e", "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"}], "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-07-30 15:30:00.900177 2024-07-30 15:30:00.900186 ceb1f12b-abcd-42e1-82ca-da1182d9d38c {"md5": "b807e36d12750b3b7a12a0488a4db66b", "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"}], "variant_access_point": ["Tochigi-ken", "Shimotsuke", "Yashū", "Shimotsukene", "Shimotsukeno"], "authorized_access_point": "Präfektur Tochigi"} 1 +2024-07-30 15:30:00.973328 2024-07-30 15:30:00.973337 7c84c45e-c019-438e-bbed-b9d067565918 {"md5": "54982e3cc454ef97ff97a301cda5d0b1", "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"}], "authorized_access_point": "Conciergerie (Paris)"} 1 +2024-07-30 15:30:01.045501 2024-07-30 15:30:01.04551 80ceaaf0-a74d-4799-ad3a-093094016eb3 {"md5": "22b9ba407e6d2ebabce1106087bb2134", "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", "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-07-30 15:30:01.124863 2024-07-30 15:30:01.124871 49e8fb4e-cb1c-4281-99d5-24074a0a1b4c {"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"} 1 +2024-07-30 15:30:01.194947 2024-07-30 15:30:01.194954 8ba67569-e68b-4224-956c-372452a0a3c3 {"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"} 1 +2024-07-30 15:30:01.258126 2024-07-30 15:30:01.258133 a667cdf2-9149-4d82-8983-3eb035c616bf {"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'"} 1 +2024-07-30 15:30:01.326128 2024-07-30 15:30:01.326136 4c062682-4c8b-426c-90a4-0aa4720a36f0 {"md5": "b940e2747bd71f62a370e4fd0c642c04", "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"}], "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-07-30 15:30:01.402978 2024-07-30 15:30:01.402987 4b738371-e799-4dec-870e-774fa7954eb9 {"md5": "a469d112d989dbc865e47a2aa129d9c5", "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)"}], "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-07-30 15:30:01.492833 2024-07-30 15:30:01.492841 3c549d78-4991-4bb1-961a-053544431e3e {"md5": "5333aee7c452ae8d67b86d80d96f3d79", "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", "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-07-30 15:30:01.577207 2024-07-30 15:30:01.577215 c28e2b2a-7a38-4632-9848-e04ace1061d8 {"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"} 1 +2024-07-30 15:30:01.648494 2024-07-30 15:30:01.648503 ce342fed-fd04-4502-af8b-3da6988b2c1c {"md5": "051d29a18a82b930766d2af97654dfa5", "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", "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-07-30 15:30:01.717205 2024-07-30 15:30:01.717213 0d3767d0-ee7e-4064-9c05-0300544a8b86 {"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"} 1 +2024-07-30 15:30:01.784098 2024-07-30 15:30:01.784106 f5efed91-f7b2-4b2e-af7c-3c724398aa8e {"md5": "c82bfb3aa17da126a7921346bec72915", "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"}], "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-07-30 15:30:01.852652 2024-07-30 15:30:01.852661 0dc5a12b-5864-4f11-aa69-c428d57a66c2 {"md5": "d35a9933b8228977941d71472f36d71e", "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"}], "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-07-30 15:30:01.927976 2024-07-30 15:30:01.927985 c49c7f70-b1ca-418c-8780-f750c8ea303e {"md5": "bb81c649d9024d303b44dacc2c4cbde6", "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", "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-07-30 15:30:02.002221 2024-07-30 15:30:02.00223 9c5f6048-5881-424e-a76f-c95886ea2586 {"md5": "1c7506797ce2b03cf9a00345aa1811ac", "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"}], "authorized_access_point": "Donopbrunnen (Detmold)"} 1 +2024-07-30 15:30:02.084224 2024-07-30 15:30:02.084232 c581f2e9-7f84-4ca4-b2c0-b8f23319d50b {"md5": "c33e978fb6e92ed95feb9ad54197ba96", "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"}], "variant_access_point": ["Siedlung Heeper Fichten (Bielefeld)"], "authorized_access_point": "Heeper Fichten (Bielefeld)"} 1 +2024-07-30 15:30:02.151276 2024-07-30 15:30:02.151282 c5a4a9c0-aee0-4956-a74b-e96cc78b1b9f {"md5": "9fe0e3e4b1c73d77781997c374a0370b", "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"}], "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-07-30 15:30:02.237335 2024-07-30 15:30:02.237347 f716c43b-0c1a-41ad-bbec-a18fcf72dc57 {"md5": "2fd26c4687dd7f117dd98322e7d2aece", "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"}], "authorized_access_point": "Galgenlaake (Delbrück)"} 1 +2024-07-30 15:30:02.325918 2024-07-30 15:30:02.325928 6989b571-82b4-4cc4-a121-b1959e99f782 {"md5": "fafa4be40d52d5bf0b69b4d10a7bf8a8", "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"}], "variant_access_point": ["Richthofenstraße 16 (Detmold)"], "authorized_access_point": "Krullsche Haus (Detmold)"} 1 +2024-07-30 15:30:02.38994 2024-07-30 15:30:02.389948 cd1311a6-a761-434c-8808-cc82fdc3495e {"md5": "913f9ba8ebb7d06bfe39f8013fb09342", "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"}], "authorized_access_point": "Richthofenstraße (Detmold)"} 1 +2024-07-30 15:30:02.451681 2024-07-30 15:30:02.451689 430a3a4c-a83e-4df7-a03c-587896bf066a {"md5": "ff69dbcea63c9a0c4a2b2ac9cc00e54c", "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"}], "authorized_access_point": "Freiligrathstraße (Detmold)"} 1 +2024-07-30 15:30:02.51256 2024-07-30 15:30:02.512567 075512d3-4963-42ab-ba45-d8f5bcd38d0b {"md5": "0d6d2067086273ffc4a1be36c22105aa", "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"}], "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-07-30 15:30:02.569805 2024-07-30 15:30:02.569807 3f8ef7d3-c145-4fc8-805c-1aca8af41af7 {"md5": "b1b277772cb57dd1e503d6a56059246a", "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"}], "authorized_access_point": "Glückaufstraße (Castrop-Rauxel)"} 1 +2024-07-30 15:30:02.617253 2024-07-30 15:30:02.617258 46d58061-8feb-45be-9ef5-a482024f0533 {"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"} 1 +2024-07-30 15:30:02.682476 2024-07-30 15:30:02.682486 5d0ba88e-1e27-4b72-9057-82449a0a239c {"md5": "cf8ba829fab81638460f672b7238ea35", "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"}], "variant_access_point": ["St. Rochus-Hospital (Castrop-Rauxel)", "Glückaufstraße 10 (Castrop-Rauxel)"], "authorized_access_point": "St. Rochus Hospital (Castrop-Rauxel)"} 1 +2024-07-30 15:30:02.753829 2024-07-30 15:30:02.753838 3f59e99a-38fe-4cd6-b16c-2c921a9dc19e {"md5": "25159a5996504127ff062ea2259c64d9", "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"}], "variant_access_point": ["Haus Schanze an der Billerbecker Straße (Coesfeld)"], "authorized_access_point": "Haus Schanze (Coesfeld)"} 1 +2024-07-30 15:30:02.82522 2024-07-30 15:30:02.825228 34b141a0-d4b1-4467-9896-d789a62647cd {"md5": "97b9c330eb232f858186f8ebe0ec60fc", "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"}], "authorized_access_point": "Lortzingstraße (Detmold)"} 1 +2024-07-30 15:30:02.897389 2024-07-30 15:30:02.897398 00a2d4ec-8191-4bd8-9c27-6c84fddb2f24 {"md5": "f789bcc202b38a79c573920d9111ded4", "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"}], "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-07-30 15:30:02.968712 2024-07-30 15:30:02.968721 eea846a1-dc5f-42f8-b2c8-5ab04a9d909b {"md5": "99f6c2880683b3d12577d5bd86f6bf8d", "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"}], "authorized_access_point": "Merkurbrunnen (Bielefeld)"} 1 +2024-07-30 15:30:03.038122 2024-07-30 15:30:03.038132 37bc351a-d020-4793-aa1f-ac815c3d22da {"md5": "998dd6cfd34ea828cdaecb53776a693c", "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"}], "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-07-30 15:30:03.118343 2024-07-30 15:30:03.118352 6967ac18-75f4-4d87-855d-dec3d585ab80 {"md5": "3e84581d54c3e3312f19fe5f2c5665fb", "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"}], "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-07-30 15:30:03.198995 2024-07-30 15:30:03.199003 45553803-e59d-4ad0-908d-e9c49a82d5b1 {"md5": "c7e0e40ddf6352957996e9fdf052efff", "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"}], "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-07-30 15:30:03.268268 2024-07-30 15:30:03.268277 02aad30f-61e7-4d45-906e-260f8085df21 {"md5": "b53ce191f738b20dd843734077821433", "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"}], "authorized_access_point": "Gerricusplatz (Düsseldorf)"} 1 +2024-07-30 15:30:03.344747 2024-07-30 15:30:03.344755 4783961f-e9d1-4262-b440-ddfcc5a76999 {"md5": "923f869f1b409acb2a79c192cc59ab39", "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)"}], "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-07-30 15:30:03.419143 2024-07-30 15:30:03.419153 ca6daf47-516e-4bf0-a53c-495b1cd6c111 {"md5": "9d108014d3c7353cbf227aaa33e71b86", "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"}], "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-07-30 15:30:03.49391 2024-07-30 15:30:03.493923 d7cd2264-183d-4adb-8ef8-9eae22a6a9fc {"md5": "178b080da5efe5320effe5f7ca9743fc", "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.))"}], "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-07-30 15:30:03.572148 2024-07-30 15:30:03.572157 90957add-61d1-428b-aa17-95da85c10873 {"md5": "db4ef7325877a1c145c650c9218ea3dd", "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", "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"} 1 +2024-07-30 15:30:03.623999 2024-07-30 15:30:03.624002 94d4a62c-919c-4b12-a8f0-b44070224218 {"md5": "d77b9b5ed4949fe78abec02210700a63", "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"}], "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-07-30 15:30:03.694075 2024-07-30 15:30:03.694083 c0ce31da-334d-44a5-8b11-be2052860310 {"md5": "7fa79de38e782e3f115c88ce46e63628", "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"}], "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-07-30 15:30:03.765778 2024-07-30 15:30:03.765787 367be03b-31d6-4cec-9d80-6ad7c81b31f5 {"md5": "53bcd99ca58028a769e070e8d49fee15", "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"}], "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-07-30 15:30:03.837661 2024-07-30 15:30:03.837671 cf62bda9-ed1c-40be-877f-eac0ee75e439 {"md5": "d53c044c6f05c73f66b2cfe2b020f2a0", "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"}], "authorized_access_point": "Benekestraße 10 (Detmold)"} 1 +2024-07-30 15:30:03.908187 2024-07-30 15:30:03.908195 6cf5d357-b11d-4154-9d1d-d38398184a81 {"md5": "3dd2b3588779515dfc9493c6c4acf800", "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)"}], "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-07-30 15:30:03.980512 2024-07-30 15:30:03.98052 cadb0b6e-6106-459b-a6d7-88d2f668378d {"md5": "1bcf8cf4908b2ffaab464e79aef8c2c5", "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"}], "authorized_access_point": "Denkmalstraße (Breckerfeld)"} 1 +2024-07-30 15:30:04.051203 2024-07-30 15:30:04.051213 76c4c704-7dcf-46c1-b184-5b3ab56e3083 {"md5": "a4b702418ce93459a44ca7c27f652309", "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)"}], "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-07-30 15:30:04.126516 2024-07-30 15:30:04.126524 b9e135cf-a2fd-413d-ac4d-82df8b08ffb9 {"md5": "6506b75ba2365497cdbc8b673dfaf03b", "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)"}], "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-07-30 15:30:04.198957 2024-07-30 15:30:04.198965 fcae3e80-b1ed-4ae7-9a77-7a48e8d9a5e2 {"md5": "74f9708da1445ddd22cb8059fafe4295", "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"}], "authorized_access_point": "Derkere Straße (Brilon)"} 1 +2024-07-30 15:30:04.270197 2024-07-30 15:30:04.270205 4a60840c-7b18-4e66-a7d5-52bb44911ad7 {"md5": "c19e779622d44d4920e3fb70b08e08f7", "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"}], "authorized_access_point": "Niedere Straße (Brilon)"} 1 +2024-07-30 15:30:04.339565 2024-07-30 15:30:04.339573 c1f52e42-1e02-415a-97fd-b9f4edadd398 {"md5": "14fbb1ac857ca606fb455d3ba5b824f3", "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"}], "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-07-30 15:30:04.418063 2024-07-30 15:30:04.418074 b9f72cdb-1d03-401b-9026-bd765c5da101 {"md5": "202acc8d5049aceeeb69c0500ee4c5d4", "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)"}], "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)"} 1 +2024-07-30 15:30:04.489753 2024-07-30 15:30:04.489762 58b0e04d-ad26-42f8-a2fd-a1426207b57c {"md5": "26693e882cf19e74c9427c28c9db525d", "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"}], "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-07-30 15:30:04.568972 2024-07-30 15:30:04.568981 26d0d706-dee2-49d2-9fc7-729058921712 {"md5": "7830f563effa95dd6aecc2436cb052cb", "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"}], "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-07-30 15:30:04.636111 2024-07-30 15:30:04.636115 d780bf82-b4fb-418d-a83a-7b266ddd0dba {"md5": "d573493451a96cd338a04cb03dbcf811", "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"}], "variant_access_point": ["Veltins Alpincenter (Bottrop)", "Alpincenter in Bottrop (Bottrop)", "Prosperstraße 299-301 (Bottrop)"], "authorized_access_point": "Alpincenter Bottrop (Bottrop)"} 1 +2024-07-30 15:30:04.701955 2024-07-30 15:30:04.701963 67eddd7a-e362-4977-8e90-68d20f4efc16 {"md5": "a5c72ae3d48353483e8494f405e2bc97", "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", "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-07-30 15:30:06.650213 2024-07-30 15:30:06.650223 42b6aadc-a933-4834-8d34-fb4406a35d2b {"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"} 1 +2024-07-30 15:30:04.769963 2024-07-30 15:30:04.769972 170500aa-f3c3-438f-95c3-7468b0b8ac60 {"md5": "91a562dbd749ef8bda2ec4e81f018a9d", "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"}], "variant_access_point": ["Elisabethstraße (Bochum-Wattenscheid)"], "authorized_access_point": "Elisabethstraße (Bochum)"} 1 +2024-07-30 15:30:04.846073 2024-07-30 15:30:04.846081 dc14341a-1baa-4128-8899-9dc298889302 {"md5": "37ace70f0e16fe7bca4a1f672d4b652f", "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"}], "authorized_access_point": "Wattenscheider Hellweg (Bochum)"} 1 +2024-07-30 15:30:04.951082 2024-07-30 15:30:04.95109 d15ef51c-2d98-443f-8780-905cb9aafdca {"md5": "b6401c06a97cba55f698b9ba73482038", "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"}], "variant_access_point": ["Florian (Dortmund)", "Dortmunder Florian (Dortmund)", "Florianturm im Westfalenpark (Dortmund)", "Florianstraße 2 (Dortmund)"], "authorized_access_point": "Florianturm (Dortmund)"} 1 +2024-07-30 15:30:05.071885 2024-07-30 15:30:05.071893 1cbbc3ca-c326-409a-ab8d-364474c6f624 {"md5": "c2373b4c38c5b45de0ed66b5795eaac7", "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"}], "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-07-30 15:30:05.150334 2024-07-30 15:30:05.150342 d6f5d5b8-d7d3-4c75-8f31-33a1c166dec6 {"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"} 1 +2024-07-30 15:30:05.221207 2024-07-30 15:30:05.221215 5cec0a3f-a6ba-408f-aee4-5db15eb91bf3 {"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)"} 1 +2024-07-30 15:30:05.286644 2024-07-30 15:30:05.286651 de48c365-61cf-4f34-8d2a-ebff236a40cd {"md5": "801b8336933ad59403d7b5ca7232e1a3", "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"}], "variant_access_point": ["Alter Postweg (Bottrop-Kirchhellen)"], "authorized_access_point": "Alter Postweg (Bottrop)"} 1 +2024-07-30 15:30:05.360929 2024-07-30 15:30:05.360937 dffd25ce-a304-496d-99e2-efd383e551d6 {"md5": "40c54d59e9e72aeb579c7e506fddd7f5", "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"}], "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-07-30 15:30:07.797372 2024-07-30 15:30:07.797617 4a63e4da-d3d5-44ad-9898-0d9b61f1f9ab {"md5": "f594ce5c638c777ac593f58c77d317be", "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", "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-07-30 15:30:05.427416 2024-07-30 15:30:05.427428 239a3999-2a0f-4f54-b6d1-1d98f74bb8bb {"md5": "a267c22cd9cefaa56b7d57fcc7786fc0", "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"}], "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-07-30 15:30:05.499913 2024-07-30 15:30:05.499922 4f8b9a7e-abd8-4682-9f9a-0767a496dd4f {"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"} 1 +2024-07-30 15:30:05.571309 2024-07-30 15:30:05.571316 0b64b44b-492f-4885-a408-87dbf9b5f23f {"md5": "ea316f0e7525d87394fdb7254693541a", "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"}], "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-07-30 15:30:05.642914 2024-07-30 15:30:05.642919 f34596ad-a72e-4a7b-aca6-08dd361423fe {"md5": "63d3de9788553d6fe83bffb4b99ac018", "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"}], "variant_access_point": ["Haus Holtwick (Rosendahl-Holtwick)"], "authorized_access_point": "Haus Holtwick (Rosendahl)"} 1 +2024-07-30 15:30:05.70097 2024-07-30 15:30:05.700974 621d231d-e64c-4d1b-8271-3aba8fee0d3e {"md5": "52b7720c1d7c9cdeaad9adcb600cfd83", "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"}], "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-07-30 15:30:05.769618 2024-07-30 15:30:05.769627 a84ff057-14bc-451e-8c5f-bb785555a68b {"md5": "67291658b7c537264710c56a2379fc8a", "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"}], "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-07-30 15:30:05.850981 2024-07-30 15:30:05.850991 8e37a052-4472-4fc8-8ab2-d4496c879805 {"md5": "6d5007e04849887d786760b7d726a0b8", "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"}], "authorized_access_point": "Benekestraße (Detmold)"} 1 +2024-07-30 15:30:05.925841 2024-07-30 15:30:05.92585 eccac026-ec16-4aae-aae3-635ad6bb0bc5 {"md5": "89a57e30423d4d72b6955fbb6b2f7cdd", "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"}], "authorized_access_point": "Kortumstraße (Bochum)"} 1 +2024-07-30 15:30:07.865539 2024-07-30 15:30:07.865548 91db749f-df67-4cdb-8c33-e2d457db52cb {"md5": "641be6d669133ef02704eff976e3cf3f", "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", "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-07-30 15:30:06.004276 2024-07-30 15:30:06.004285 01537a93-761b-433b-b5f9-ca2b7d52ee11 {"md5": "6b5d44a9bb59ed4c053b38fad02d856a", "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"}], "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-07-30 15:30:06.075475 2024-07-30 15:30:06.075483 b9382ab3-b824-4c53-ae1f-885e151d8957 {"md5": "0796b3031f3491b3b1344cd9d39e93eb", "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"}], "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-07-30 15:30:06.145339 2024-07-30 15:30:06.145346 fb7f4cdc-e0c7-4f4b-a552-166e1800ee17 {"md5": "d2911b1f6ae4a0c26cae4c8b1dd63f85", "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", "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-07-30 15:30:06.214957 2024-07-30 15:30:06.214966 80eca9ac-9dfc-40f9-912c-d8853db47c70 {"md5": "d3e92bb9be38c72e42130a6882ff7452", "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"}], "authorized_access_point": "Bahnhofstraße (Steinhagen, Kreis Gütersloh)"} 1 +2024-07-30 15:30:06.285637 2024-07-30 15:30:06.285647 db9de7a6-d15a-4bf2-bb83-1af3389a40b2 {"md5": "1e57a02585c1cba39f338aecba259643", "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"}], "variant_access_point": ["Hoesch-Park (Dortmund)", "Brackeler Straße 60 (Dortmund)"], "authorized_access_point": "Hoeschpark (Dortmund)"} 1 +2024-07-30 15:30:06.352948 2024-07-30 15:30:06.352956 b5e1d005-fddb-43f8-9327-5869c6d0f44c {"md5": "a1b52e46e11de931875d34c0f7bcd275", "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"} 1 +2024-07-30 15:30:06.422408 2024-07-30 15:30:06.422417 00cfce87-e6ce-4e1e-94d4-6a2f27fd7d41 {"md5": "5916cab795494d96d83541f4442c22b5", "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"}], "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-07-30 15:30:06.501095 2024-07-30 15:30:06.501104 ba74e643-7b17-477e-8afc-a3e5abc2e453 {"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"} 1 +2024-07-30 15:30:06.695882 2024-07-30 15:30:06.695885 e1660712-7c14-437d-8707-e76897f7fcfe {"md5": "7c4ffd5048be873ee6313a6661282f2d", "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", "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-07-30 15:30:06.753213 2024-07-30 15:30:06.753221 1098a8f1-b735-4a8e-b847-91c1618cbea0 {"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"} 1 +2024-07-30 15:30:06.823153 2024-07-30 15:30:06.823161 28cc3335-2186-4888-bed4-5b508735cf0d {"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"} 1 +2024-07-30 15:30:06.892067 2024-07-30 15:30:06.892075 2ce898e6-5bac-47fd-bb16-5bb0ff07748b {"md5": "f4d3c5e783eb0115f07947b47dc0f063", "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"}], "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-07-30 15:30:06.962607 2024-07-30 15:30:06.962615 8e18b727-5f4f-43d9-af89-9b50987a3647 {"md5": "3ead63e9f47d82e0607b3fdc3dfd4e36", "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)"}], "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-07-30 15:30:07.038085 2024-07-30 15:30:07.038093 8436d822-2794-4e09-9e80-6389d2ea87ef {"md5": "0f875cd08f097247985a39ff3b5b2e0c", "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"}], "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-07-30 15:30:07.109631 2024-07-30 15:30:07.10964 1923f4ed-dde5-464b-8c5c-cdf752fbc1bf {"md5": "3838c09cca3662691c57b54932843a07", "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", "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-07-30 15:30:07.177333 2024-07-30 15:30:07.17734 decfa660-45ff-40e0-9cef-dcd15787d8f2 {"md5": "3e33bda2bb65706a05578823db7e399b", "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"}], "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-07-30 15:30:09.247248 2024-07-30 15:30:09.247256 6aac298e-f8af-4ec0-be50-35242cfd9a5b {"md5": "4d7dce66dfc858958dbabfe8e5d6f769", "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", "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-07-30 15:30:07.247182 2024-07-30 15:30:07.247191 8a95ce5a-4d13-4c05-bf05-073a9ad1d6bf {"md5": "ce2fb68bf1ebe693743ba2e72122db21", "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"}], "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-07-30 15:30:07.328661 2024-07-30 15:30:07.32867 ad9d793f-947e-4894-9498-73eee9cbb912 {"md5": "2dcdce38468ff58feb517257debf6e6a", "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"}], "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-07-30 15:30:07.395415 2024-07-30 15:30:07.395421 38916c0d-9ede-4d7a-949b-a84b904f7d6a {"md5": "d87d6097fe62e1645215cf5d237de659", "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"}], "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-07-30 15:30:07.465897 2024-07-30 15:30:07.465906 a76cd757-a94c-470f-8dc1-093c0b4da0d6 {"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"} 1 +2024-07-30 15:30:07.539712 2024-07-30 15:30:07.53972 0835bfc2-9589-44a0-a482-e029cf7a3218 {"md5": "c99226a3908ecf22d4507ddcc307d6c3", "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", "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-07-30 15:30:07.617322 2024-07-30 15:30:07.617331 9ff528bf-4762-4248-a294-7b8d8c05d523 {"md5": "c6e31cdacc351c91900f4d492d685868", "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", "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-07-30 15:30:07.692228 2024-07-30 15:30:07.692236 a3dde334-e0b9-46e5-9306-c7d6a7d6ec06 {"md5": "af505a542fac763668a1b074db2cb25a", "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"}], "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-07-30 15:30:07.742303 2024-07-30 15:30:07.742312 3d39d817-2e7e-41d1-9b78-cd066b8dad91 {"md5": "bcc3f080624d8641f07cb5e2eb490a6c", "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", "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-07-30 15:30:07.941887 2024-07-30 15:30:07.941896 3e211d2e-4830-49ff-b088-978324ca4fcd {"md5": "c6b4bc0f90b3cf0c110ea04ceac827c7", "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.)"}], "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-07-30 15:30:08.019595 2024-07-30 15:30:08.019606 27682b25-2b11-4bad-8b22-8ba4e3568002 {"md5": "74c518695382856f5d40fcf53557e5bb", "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"}], "variant_access_point": ["Amur (Oblast)", "Amur-Gebiet (Oblast)", "Amurskaja oblastʹ", "Gebiet Amur"], "authorized_access_point": "Oblast Amur"} 1 +2024-07-30 15:30:08.094777 2024-07-30 15:30:08.094788 ce5fa64e-6cd0-4633-97b6-9ce60ce901fe {"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"} 1 +2024-07-30 15:30:08.16564 2024-07-30 15:30:08.165649 b1fa9cbd-8a9d-4287-a1a8-cf4d254c0dff {"md5": "7c001ebe6ec2e19d14d197a96a640a49", "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", "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-07-30 15:30:08.232114 2024-07-30 15:30:08.232122 644cba93-a4f0-4870-a793-aca2aa98c7b1 {"md5": "5256cabb6bdf411642abc4d8c6af7ca4", "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"}], "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"} 1 +2024-07-30 15:30:08.301942 2024-07-30 15:30:08.301949 5476c6cd-b4d2-46e2-b75e-0e76c6e5faa5 {"md5": "e68cf0b370f8420e6207748178468c6c", "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"}], "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-07-30 15:30:08.406412 2024-07-30 15:30:08.40642 172304ea-e895-407f-8885-c57b6b084829 {"md5": "acda397807443eab4d03832e7805430d", "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)"}], "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-07-30 15:30:08.478187 2024-07-30 15:30:08.478194 2ac428c3-1a05-4cc7-9d47-75d4318de8e9 {"md5": "690c9076cb37dfbbe0be95bb660a6f67", "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)"}], "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-07-30 15:30:08.581226 2024-07-30 15:30:08.581236 65995e3d-43e3-4691-a9b2-a05230ae01c7 {"md5": "32575221912bf80c8d276700f589e671", "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"}], "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-07-30 15:30:08.6769 2024-07-30 15:30:08.676909 9d321d60-e585-46e7-a3df-c6461fd1c847 {"md5": "ac1e0733153fa6cd03a1fec21082b8ff", "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", "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-07-30 15:30:08.745287 2024-07-30 15:30:08.745289 dc7688dd-b9bb-4f1b-9ec6-a2eb8d356ad1 {"md5": "7cf41f18e3b47162617a103200eea968", "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"}], "authorized_access_point": "Obernil-Becken"} 1 +2024-07-30 15:30:08.812428 2024-07-30 15:30:08.812437 5f814d3c-16d1-4fce-a46d-a767cdcfc892 {"md5": "e5384ad172a9adb540999da0c7ae46e7", "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"}], "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-07-30 15:30:08.890153 2024-07-30 15:30:08.89016 f1db3a56-a104-4234-be32-ad2c8c32b310 {"md5": "df4598ea37664652cf44e494f9b0bc90", "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", "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-07-30 15:30:08.969275 2024-07-30 15:30:08.969285 5f12feeb-ccad-4352-b3a0-46ac70cbc808 {"md5": "f545670f7055a7b02519991af66bd586", "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", "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-07-30 15:30:09.040224 2024-07-30 15:30:09.040235 42000b09-341c-4c2f-97ca-e3b7cb2c1e21 {"md5": "55f0346f9472a7f58d0e976248a53a6d", "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"} 1 +2024-07-30 15:30:09.116412 2024-07-30 15:30:09.116421 e181397a-04d2-4f72-8012-b5f9fddcb41c {"md5": "cf6e9c9caf29a18da2914cc11d70413d", "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)"}], "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-07-30 15:30:09.183115 2024-07-30 15:30:09.183123 c7d9dbb6-d9b3-4550-95ca-be0f6fd0323b {"md5": "94316f707b0a7d97965ab2ae2e51aa17", "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", "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-07-30 15:30:09.317668 2024-07-30 15:30:09.317675 1f613fe5-ca12-4fe9-8f45-ffd87186bb7f {"md5": "7536c45bbc6dcfcc34747f7e9a004e47", "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)"}], "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-07-30 15:30:09.400685 2024-07-30 15:30:09.400695 0d0a753c-61af-4e9d-b534-3b4fcbb5f0b9 {"md5": "0c5fd95b0d15034b5884b7bcd45bcad2", "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"}], "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-07-30 15:30:09.480168 2024-07-30 15:30:09.480178 eb21059d-40f7-40f5-b904-75af4335f4f3 {"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)"} 1 +2024-07-30 15:30:09.55487 2024-07-30 15:30:09.554879 143a703b-8e49-42cd-97aa-68d73e1b4d4a {"md5": "56350bf91c218722112e7668fb1aa06d", "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"}], "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-07-30 15:30:09.63051 2024-07-30 15:30:09.630518 367e7c4d-9efc-4fb9-8cd4-6d5435131fc6 {"md5": "11ce73026883e02a9021c2fe80de28e3", "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", "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-07-30 15:30:09.699145 2024-07-30 15:30:09.699154 8a65ce41-403b-4527-ac36-d3b5b5451cfb {"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)"} 1 +2024-07-30 15:30:09.772701 2024-07-30 15:30:09.772704 7e938ab9-3fb0-49ed-a036-abc53354da7a {"md5": "c1587d82a9cddfced8d123cf25d171ea", "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"}], "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-07-30 15:30:09.846272 2024-07-30 15:30:09.846281 506c890a-36a5-4256-953a-cf5939bfbcf6 {"md5": "18f55bf272bfc34a0395e45c2ac3b355", "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"}], "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-07-30 15:30:10.42837 2024-07-30 15:30:10.428378 bb29d316-6b82-4a7e-b99e-5f13d6ac7acd {"md5": "597d0b47f62767a78ad788c8a79455a0", "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"}], "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-07-30 15:30:09.916563 2024-07-30 15:30:09.916571 1c5db0b1-c9e2-4c19-b80f-d4deec2a9468 {"md5": "77b0b6cf2a63c338eb7d6dff3101affe", "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)"}], "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-07-30 15:30:09.987853 2024-07-30 15:30:09.987864 970ab1a9-e0ed-40eb-8353-e00afa23e538 {"md5": "cb03c02e0be6e4b5d9e4a86971a290dd", "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"}], "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-07-30 15:30:10.05972 2024-07-30 15:30:10.059727 73dd359e-45de-4382-a456-afbb0c9e0780 {"md5": "9e2ddb4b9102b9a60a2c23a03c35f3da", "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"}], "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-07-30 15:30:10.128348 2024-07-30 15:30:10.128356 67970f49-11d8-457f-a0dd-093583d69dd3 {"md5": "59262b33e7ddc1da78ac48952641b616", "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"}], "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-07-30 15:30:10.228388 2024-07-30 15:30:10.228395 5fe52511-8087-43d3-aa34-6a8a10722f87 {"md5": "c7f45c21d85a7a210122cb82e60d8100", "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"}], "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-07-30 15:30:10.297101 2024-07-30 15:30:10.29711 1c5fd2fa-2c1b-40ce-b234-ef7404098d88 {"md5": "1e199dc54e528743902dd22c36206603", "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"}], "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-07-30 15:30:10.364089 2024-07-30 15:30:10.364096 2866433a-cd46-4bb3-af81-a10c880f1ea4 {"md5": "8e36186371694335e0e0dfcd5161eedf", "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"}], "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-07-30 15:30:10.502512 2024-07-30 15:30:10.50252 83f2c3e6-f47f-43d0-afab-7dde58c9818b {"md5": "7c94c78ed971dea4d3326798cc95fbc7", "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"}], "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-07-30 15:30:10.583087 2024-07-30 15:30:10.583097 2af58cb3-93ff-4bf5-8644-e221f70bcc36 {"md5": "6197a6bbc696e06bd7e401abaa40badc", "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"}], "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-07-30 15:30:10.667235 2024-07-30 15:30:10.667243 55f41698-be77-41cc-a0c7-3a267b0c4608 {"md5": "e5170baccc2022760a3d1cb03c41b3e9", "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"}], "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-07-30 15:30:10.7349 2024-07-30 15:30:10.734907 9799177e-92da-4227-a58b-8852074ba30e {"md5": "508ba898eb56a0d44b452191caebd76c", "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", "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-07-30 15:30:10.799103 2024-07-30 15:30:10.799106 f21d0243-d68c-4938-af83-367f5b566656 {"md5": "6c1f8317220d07b995fe64a37e090221", "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", "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-07-30 15:30:10.858341 2024-07-30 15:30:10.85835 53002733-36c0-43a9-8d08-9f47da8dd51e {"md5": "d1b21e1d0e3ec648b0aba83be4b54148", "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)"}], "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-07-30 15:30:10.925206 2024-07-30 15:30:10.925215 9313a498-f929-4430-9d15-6e740514ff00 {"md5": "06d65b47da67073e70b75037445dd854", "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)"}], "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-07-30 15:30:10.992951 2024-07-30 15:30:10.992959 df830fb3-5eb2-49aa-bf3a-c5420622c156 {"md5": "94a38fee74378f6c52c62e306b852c69", "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"}], "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-07-30 15:30:11.062426 2024-07-30 15:30:11.062435 549b5efe-5a0e-45c7-97ad-422b2707e1fa {"md5": "31028e0c98ea25836b97af1525717a60", "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", "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-07-30 15:30:11.141836 2024-07-30 15:30:11.141844 8ce2e2d0-54b2-4839-90fd-73166c51b2fb {"md5": "413a2dc50ebd875f25410ee848da5212", "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"}], "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-07-30 15:30:11.225927 2024-07-30 15:30:11.225938 887129b6-e358-4fa0-9ff3-be164871bad4 {"md5": "3bfdf0c9614c12382e4dfa7cc1393309", "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"}], "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-07-30 15:30:11.303235 2024-07-30 15:30:11.303244 2f7cd1d8-c567-4062-9c75-84e5516abdf5 {"md5": "e4324e94a88df3d67957f0124fbc9b4c", "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"}], "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-07-30 15:30:11.364591 2024-07-30 15:30:11.364599 657841cb-7190-41cc-a92a-640f577c25e8 {"md5": "4d1af86c6f140a467811676d16d450ce", "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"}], "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-07-30 15:30:11.435057 2024-07-30 15:30:11.435066 ba75f42d-9255-4514-8f01-e8a41aa3c10c {"md5": "bd167d341e8b6869132371b8df6aa467", "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"}], "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-07-30 15:30:11.495824 2024-07-30 15:30:11.495831 5a42305a-60c3-47b5-bf73-f06fd6a594ec {"md5": "205d6cd6d12ae96090c26b61a003f690", "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"}], "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-07-30 15:30:11.562458 2024-07-30 15:30:11.562466 d15b2816-8b30-4efd-9326-1ad8e77a5d1b {"md5": "140ba84cfb6725324d372efb7adf2724", "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"}], "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-07-30 15:30:11.629569 2024-07-30 15:30:11.629576 5fdf152d-6903-4433-a93f-7c3eace066ee {"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"} 1 +2024-07-30 15:30:11.705172 2024-07-30 15:30:11.705181 dc1d57ed-0c04-41d8-8da2-f8e1c02dbda3 {"md5": "5ee9ceb5419440334af2e073dd5e13a0", "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", "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-07-30 15:30:11.775046 2024-07-30 15:30:11.775053 b64b27c7-dad0-4cee-be41-b309e0599afc {"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"} 1 +2024-07-30 15:30:11.855841 2024-07-30 15:30:11.855849 b3000a47-179e-4290-91b6-6caa1234842b {"md5": "7f207297ee4d1f395e3faa30333c55dc", "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"}], "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-07-30 15:30:11.925244 2024-07-30 15:30:11.925252 0c53fe55-2de9-49aa-9de9-0835a37ca17a {"md5": "0d25526afef25e16563c71105efd7875", "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.)"}], "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-07-30 15:30:11.999046 2024-07-30 15:30:11.999055 9a7439c4-49cb-4936-a40a-4e0b72b862ff {"md5": "a7c959e4218121d715a2da2fe8af7c0a", "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"}], "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-07-30 15:30:12.072242 2024-07-30 15:30:12.07225 82167364-9f76-4fa8-a5a9-c5e6b1d1ed0b {"md5": "7938bf3ca65606f55ee9ab96a8b7d1c1", "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"}], "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-07-30 15:30:12.148203 2024-07-30 15:30:12.148213 7516f1db-a526-49c3-be54-a8d79bb16689 {"md5": "0119a6ae1a1fe6cd513942e62eacad12", "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)"}], "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-07-30 15:30:12.222133 2024-07-30 15:30:12.222142 129e476f-94e5-4994-a5e9-3fe78f061d9d {"md5": "f0a45a3dbd510d3700e5b98fcd07e8aa", "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"}], "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-07-30 15:30:12.301388 2024-07-30 15:30:12.301396 f7b1d4d9-0776-4b28-bcb6-3d8c1086f3e6 {"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"} 1 +2024-07-30 15:30:12.375295 2024-07-30 15:30:12.375303 44df8450-97f8-4e45-96a3-59171dc2a173 {"md5": "46a39c732601a900ca11cce1067fb51d", "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"}], "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-07-30 15:30:12.452969 2024-07-30 15:30:12.452978 3adc9e36-e75c-4cff-adfb-fbb6aee0fce7 {"md5": "11fb7005564dd0b01a75e47807f64786", "pid": "004280768", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"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)"} 1 +2024-07-30 15:30:12.529281 2024-07-30 15:30:12.529289 f7115ea3-24b0-4035-8556-93317bd59d4e {"md5": "798e9b59d22257f91479d9f15569561a", "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", "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-07-30 15:30:12.602774 2024-07-30 15:30:12.602782 92208799-eb29-4922-aeb2-c8f5c2083ece {"md5": "79f8e9c4bb6f7efb9a93e313b3c534c9", "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"}], "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-07-30 15:30:12.673402 2024-07-30 15:30:12.673406 4964c90a-1196-4574-a371-5aa74ed107e1 {"md5": "90e84803579a63981d67e52fc642f78c", "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", "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-07-30 15:30:12.743451 2024-07-30 15:30:12.74346 9c44f2dc-ed65-4ab3-bef8-4f9fd2dd01cd {"md5": "f83612b9c6b36608796e2ea9cdc4667b", "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"}], "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..e08511ef 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-07-30 15:29:20.237819 2024-07-30 15:29:20.237825 plgnd 1335257845 R rec ded1a23c-b1ad-4342-8caa-81f09c2d0fd5 +2024-07-30 15:29:20.3215 2024-07-30 15:29:20.321505 plgnd 1335257101 R rec 02bdf176-d02a-481b-9a1f-e01d1f28abf0 +2024-07-30 15:29:20.383057 2024-07-30 15:29:20.383063 plgnd 133525675X R rec b4916e29-12f3-41e6-83a2-bbbe671d7944 +2024-07-30 15:29:20.433517 2024-07-30 15:29:20.433522 plgnd 133525207X R rec dcb4a5e5-6e09-479d-8a59-c65dbb4ed622 +2024-07-30 15:29:20.477744 2024-07-30 15:29:20.477749 plgnd 1335249966 R rec 1fa0fe74-ef17-47c7-9187-2a70e9aecdd1 +2024-07-30 15:29:20.521172 2024-07-30 15:29:20.521177 plgnd 1335243240 R rec 59273c50-e5a8-4dad-8b6b-aeb41790bd57 +2024-07-30 15:29:20.568223 2024-07-30 15:29:20.568234 plgnd 133523909X R rec fb17cd03-7747-4931-8547-9328f95211a6 +2024-07-30 15:29:20.640515 2024-07-30 15:29:20.640531 plgnd 1335217711 R rec 2e72605d-2c02-4fcb-8317-f5f69085fffa +2024-07-30 15:29:20.727528 2024-07-30 15:29:20.727542 plgnd 1335201653 R rec fc879e92-f195-4c51-bd1b-84d481e2ee52 +2024-07-30 15:29:20.81712 2024-07-30 15:29:20.81713 plgnd 1335141790 R rec c96d5f72-75c9-48da-ab8c-d1507cd15158 +2024-07-30 15:29:20.886126 2024-07-30 15:29:20.886136 plgnd 1335107711 R rec b93d8c66-da56-49ad-966b-c4f2d873cc65 +2024-07-30 15:29:20.94764 2024-07-30 15:29:20.94765 plgnd 1335104917 R rec 1fc60bd1-f4f5-4f72-8282-f2beff13fed1 +2024-07-30 15:29:21.014251 2024-07-30 15:29:21.014262 plgnd 1335098399 R rec a521b42d-0c80-4759-acc4-2e5bd3ca4335 +2024-07-30 15:29:21.098959 2024-07-30 15:29:21.098969 plgnd 1335092390 R rec 0fc00a4c-d4df-4628-bb1a-86ba4ad01cef +2024-07-30 15:29:21.17645 2024-07-30 15:29:21.176458 plgnd 1335092196 R rec 3ba67feb-11ec-4446-a6d2-f095f567ce47 +2024-07-30 15:29:21.244858 2024-07-30 15:29:21.244868 plgnd 1335086005 R rec adbea276-224a-4013-a44b-302f61cca9ff +2024-07-30 15:29:21.314352 2024-07-30 15:29:21.314361 plgnd 1335058036 R rec bddd6661-4ab8-402d-83e7-a3513fc6b4ae +2024-07-30 15:29:21.397587 2024-07-30 15:29:21.397598 plgnd 1334938016 R rec 01ef4e1f-d16f-424d-8b08-d259fedca24a +2024-07-30 15:29:21.473466 2024-07-30 15:29:21.473471 plgnd 1334917981 R rec f50b7429-9b00-4b14-935e-7cffd63d2cd3 +2024-07-30 15:29:21.542185 2024-07-30 15:29:21.542196 plgnd 1334916292 R rec 9a56f392-8807-4ab7-83e4-8d857d4e2573 +2024-07-30 15:29:21.611624 2024-07-30 15:29:21.611635 plgnd 1334913498 R rec 75261900-2f0a-46bc-92cc-960f7d6065dc +2024-07-30 15:29:21.685541 2024-07-30 15:29:21.685553 plgnd 1334907684 R rec 61a4e1b7-9618-4d84-9620-d5c8b648f058 +2024-07-30 15:29:21.768256 2024-07-30 15:29:21.768266 plgnd 1334907048 R rec af9d059a-6ccc-429a-ba38-164ae322d8f7 +2024-07-30 15:29:21.853515 2024-07-30 15:29:21.853526 plgnd 1334904251 R rec 4a2c19cd-10b1-400f-a01e-7d726af7e55b +2024-07-30 15:29:21.932664 2024-07-30 15:29:21.932675 plgnd 133490281X R rec d0f91734-ba32-4ca8-bebc-eef4b64d1fe6 +2024-07-30 15:29:22.013198 2024-07-30 15:29:22.01321 plgnd 1334900256 R rec 27263f57-86cf-4788-b593-ed036a58afb3 +2024-07-30 15:29:22.095457 2024-07-30 15:29:22.095469 plgnd 133489874X R rec 8afaf5ae-a0f0-49aa-b850-986c3768d96b +2024-07-30 15:29:22.174831 2024-07-30 15:29:22.174842 plgnd 1334896755 R rec 26cd60e0-21df-45c6-a279-7f499526b9d2 +2024-07-30 15:29:22.239766 2024-07-30 15:29:22.239776 plgnd 1334893594 R rec 4440e863-e70e-45c6-a3c4-307f28ddef79 +2024-07-30 15:29:22.327251 2024-07-30 15:29:22.327262 plgnd 133489129X R rec 33ceb5e2-9f9c-4749-8245-2293da674232 +2024-07-30 15:29:22.395009 2024-07-30 15:29:22.395019 plgnd 1334878234 R rec 8fde3883-c8a4-429f-bc05-947ad3de6a28 +2024-07-30 15:29:22.485842 2024-07-30 15:29:22.485853 plgnd 1334875707 R rec 8ae14a7e-59bb-48b2-9e87-79c61aa8fa13 +2024-07-30 15:29:22.548557 2024-07-30 15:29:22.548567 plgnd 1334874387 R rec 612659b1-4243-43a0-873b-bbb5e6a0a670 +2024-07-30 15:29:22.615705 2024-07-30 15:29:22.615716 plgnd 1334867097 R rec 5c8a97eb-fc2f-468a-9127-376d28c39b3a +2024-07-30 15:29:22.682328 2024-07-30 15:29:22.68243 plgnd 1334866473 R rec 7183e43f-2790-4cc2-9090-9bf10ca3973d +2024-07-30 15:29:22.755983 2024-07-30 15:29:22.755994 plgnd 1334866082 R rec a46693e7-2aef-4a3a-84d4-b981490bbefd +2024-07-30 15:29:22.8245 2024-07-30 15:29:22.824512 plgnd 1334865981 R rec d57925a6-a589-41ef-bfa2-353ac80818e3 +2024-07-30 15:29:22.901262 2024-07-30 15:29:22.901272 plgnd 1334804621 R rec fee8e904-a23e-46d5-8303-450207518464 +2024-07-30 15:29:22.977877 2024-07-30 15:29:22.977892 plgnd 1334804141 R rec c91c8a11-e385-426d-8a80-58fd9cfd5767 +2024-07-30 15:29:23.051743 2024-07-30 15:29:23.051753 plgnd 1334801304 R rec d7b739b2-d933-42a6-b107-1d05fdf0c40d +2024-07-30 15:29:23.127046 2024-07-30 15:29:23.127056 plgnd 1334789134 R rec 531a6261-3efb-4a22-8ab9-17832566ca67 +2024-07-30 15:29:23.202656 2024-07-30 15:29:23.202667 plgnd 1334785422 R rec b828069d-e321-4330-bb03-282eaa15381f +2024-07-30 15:29:23.271657 2024-07-30 15:29:23.271666 plgnd 1334784493 R rec eaa533af-16bd-4ab4-a6cb-b7803f9ad87f +2024-07-30 15:29:23.339282 2024-07-30 15:29:23.339292 plgnd 1334779015 R rec 5738a786-16a6-46f2-8151-bdb3c8584592 +2024-07-30 15:29:23.405336 2024-07-30 15:29:23.405347 plgnd 1334766363 R rec dd40602d-0c28-42e8-8116-3a4442e912e1 +2024-07-30 15:29:23.472875 2024-07-30 15:29:23.472886 plgnd 1334756465 R rec 39b9d688-c99e-4bb9-beaa-eb1cd8dae716 +2024-07-30 15:29:23.549809 2024-07-30 15:29:23.549819 plgnd 1334736340 R rec dd39e334-0ce1-428a-9b02-62b354fdd8bb +2024-07-30 15:29:23.62222 2024-07-30 15:29:23.622232 plgnd 1334729824 R rec 3e2314c7-a915-4762-8953-1d6a2be695a5 +2024-07-30 15:29:23.696063 2024-07-30 15:29:23.696075 plgnd 1334725756 R rec 7129c7b0-5676-461d-b28d-044e1a1a07e7 +2024-07-30 15:29:23.765893 2024-07-30 15:29:23.765905 plgnd 1334725691 R rec 3001f0cb-b477-4966-941b-803f830542a9 +2024-07-30 15:29:23.843872 2024-07-30 15:29:23.843883 plgnd 1334671486 R rec 84535490-1aee-484b-be15-43f8d8a0eb60 +2024-07-30 15:29:23.915061 2024-07-30 15:29:23.915072 plgnd 1334670560 R rec 168fd2eb-a378-49f8-bc91-0d639b068772 +2024-07-30 15:29:23.982345 2024-07-30 15:29:23.982357 plgnd 1334670390 R rec f009f756-a144-4f81-8bde-b23d93eb61c9 +2024-07-30 15:29:24.055097 2024-07-30 15:29:24.055141 plgnd 1334670323 R rec 8a564fd0-05ee-43f3-91a4-766a7416f322 +2024-07-30 15:29:24.131186 2024-07-30 15:29:24.131196 plgnd 1334670048 R rec 1be318b2-3151-4da8-9802-0cd37b68d281 +2024-07-30 15:29:24.210763 2024-07-30 15:29:24.210773 plgnd 1334666474 R rec 62596316-a2f4-4bdf-89d5-a9fd551b69bb +2024-07-30 15:29:24.281326 2024-07-30 15:29:24.281336 plgnd 1334665036 R rec 0d3c9012-8df3-4936-b257-95091daeb408 +2024-07-30 15:29:24.350609 2024-07-30 15:29:24.35062 plgnd 1334665028 R rec c1ba0bb8-a09a-4f64-b6b7-877588cbf996 +2024-07-30 15:29:24.427068 2024-07-30 15:29:24.427083 plgnd 1334664242 R rec f1504295-8df5-47bf-aeec-96dd6003aec6 +2024-07-30 15:29:24.519577 2024-07-30 15:29:24.519588 plgnd 1334661073 R rec b84332e0-c569-44b9-bb3b-d5ced866401f +2024-07-30 15:29:24.574691 2024-07-30 15:29:24.574696 plgnd 1334658196 R rec 1c859ad4-cca3-49c5-bfe2-05f45fd7b4f0 +2024-07-30 15:29:24.640636 2024-07-30 15:29:24.640646 plgnd 1334657726 R rec 497120ca-32f8-4cf3-a934-58ccc84f3a6c +2024-07-30 15:29:24.72339 2024-07-30 15:29:24.723401 plgnd 133465641X R rec a8721697-22b6-4deb-9481-f7ae97f750a6 +2024-07-30 15:29:24.807044 2024-07-30 15:29:24.807054 plgnd 1334632707 R rec fac478c8-7b90-4081-87a6-90ff01dfc76d +2024-07-30 15:29:24.88084 2024-07-30 15:29:24.880851 plgnd 133463209X R rec 2f82350d-1c84-4010-80bd-27ea880ffbf9 +2024-07-30 15:29:24.953973 2024-07-30 15:29:24.953984 plgnd 133456325X R rec d1c3ba3b-8828-4e06-966c-62c4e3d85c40 +2024-07-30 15:29:25.023145 2024-07-30 15:29:25.023156 plgnd 1334560994 R rec 169745ed-b0d8-430b-a03c-66e1e208f626 +2024-07-30 15:29:25.093308 2024-07-30 15:29:25.093319 plgnd 1334559805 R rec ce3b54d0-7726-4359-93da-767c70848159 +2024-07-30 15:29:25.175221 2024-07-30 15:29:25.175232 plgnd 1334558590 R rec 91fdd0b8-68d7-46d8-8138-a65c959addfa +2024-07-30 15:29:25.265148 2024-07-30 15:29:25.265163 plgnd 1334556687 R rec 27d411df-ff6f-42c6-b615-6c421fe44b96 +2024-07-30 15:29:25.354998 2024-07-30 15:29:25.355008 plgnd 1334554471 R rec 14a73806-0e3f-4cc7-902d-26ec89fb2896 +2024-07-30 15:29:25.441893 2024-07-30 15:29:25.441901 plgnd 1334554218 R rec 3bc0d777-36be-4348-b0d8-a5823a617962 +2024-07-30 15:29:25.51498 2024-07-30 15:29:25.51499 plgnd 1334552940 R rec cf9e904c-4a84-4814-babc-e22b09e8c0d3 +2024-07-30 15:29:25.590656 2024-07-30 15:29:25.590661 plgnd 1334552908 R rec eb78b1cd-9577-4be3-a744-9e7c13d5c586 +2024-07-30 15:29:25.6659 2024-07-30 15:29:25.665911 plgnd 1334552606 R rec df250f17-ddc5-4da1-a4d1-24f84c1e9af6 +2024-07-30 15:29:25.740784 2024-07-30 15:29:25.740797 plgnd 1334538085 R rec fc65be93-76e8-4f57-ab08-5ddfcb178dce +2024-07-30 15:29:25.812472 2024-07-30 15:29:25.812482 plgnd 133453666X R rec c6e74039-d746-4d0d-baf1-f9c2231d54ec +2024-07-30 15:29:25.893378 2024-07-30 15:29:25.893394 plgnd 1334531153 R rec e2176b3e-beae-411c-9345-d905be618daf +2024-07-30 15:29:25.969366 2024-07-30 15:29:25.969376 plgnd 1334516766 R rec 3039c6da-696e-49fd-b906-e54425af764b +2024-07-30 15:29:26.066372 2024-07-30 15:29:26.066384 plgnd 1334502854 R rec 745b6817-478a-4b0d-9722-05e446f31937 +2024-07-30 15:29:26.140625 2024-07-30 15:29:26.140634 plgnd 1334486573 R rec 6c924719-5a46-4758-b05a-413d7b570eab +2024-07-30 15:29:26.204738 2024-07-30 15:29:26.204748 plgnd 1334485763 R rec bf714fee-0b70-4c8d-88ee-1e9442ed4a57 +2024-07-30 15:29:26.276627 2024-07-30 15:29:26.276637 plgnd 1334319561 R rec 8763ea6c-2c06-481c-b7a1-6de578377177 +2024-07-30 15:29:26.35034 2024-07-30 15:29:26.350351 plgnd 1334318492 R rec b4f61b0b-6a1c-4314-9053-ba471cd6a903 +2024-07-30 15:29:26.420762 2024-07-30 15:29:26.420773 plgnd 1334318069 R rec 2c03bb55-9cf7-4437-bfb2-e579930da7c2 +2024-07-30 15:29:26.506003 2024-07-30 15:29:26.506014 plgnd 1334313776 R rec b2656218-8490-4b79-a071-859e576dcf4a +2024-07-30 15:29:26.577577 2024-07-30 15:29:26.577588 plgnd 1334312974 R rec 2cdb0497-b34c-41c3-9eb1-19ffc583f554 +2024-07-30 15:29:26.638447 2024-07-30 15:29:26.638457 plgnd 1334310661 R rec 22e6f12b-4a65-4e95-9467-a1a9fbb698f6 +2024-07-30 15:29:26.697296 2024-07-30 15:29:26.697306 plgnd 1334302111 R rec 602ec70c-9625-4cfc-a485-7a1e8a2ee785 +2024-07-30 15:29:26.765493 2024-07-30 15:29:26.765507 plgnd 1334300054 R rec 4b91971e-1e45-46aa-81e2-adc8689411da +2024-07-30 15:29:26.843277 2024-07-30 15:29:26.843289 plgnd 133422725X R rec 237df56d-1415-4ca7-a295-575f2034c5c6 +2024-07-30 15:29:26.917307 2024-07-30 15:29:26.917319 plgnd 1334221979 R rec 725248fe-4764-46e4-a35f-7110443af499 +2024-07-30 15:29:26.988116 2024-07-30 15:29:26.988126 plgnd 1334198845 R rec 5fabdc83-e7ea-4ea7-b285-5e1a9fa37de5 +2024-07-30 15:29:27.05721 2024-07-30 15:29:27.057221 plgnd 1334117918 R rec e372bf55-abe8-4cf7-b50b-aa06204238eb +2024-07-30 15:29:27.138019 2024-07-30 15:29:27.13803 plgnd 1334101221 R rec c99e62d2-a939-4284-9134-668229aa117a +2024-07-30 15:29:27.222296 2024-07-30 15:29:27.222305 plgnd 1334086826 R rec 78b09cb1-ec32-4b39-9d43-e8d580c3b51f +2024-07-30 15:29:27.291877 2024-07-30 15:29:27.291893 plgnd 1334027250 R rec 2505966d-2b2b-4543-a54a-6dd8abea9c37 +2024-07-30 15:29:27.363962 2024-07-30 15:29:27.363971 plgnd 1334024804 R rec 221ad9f3-e246-4489-8b20-ad2b3f2d4640 +2024-07-30 15:29:27.430795 2024-07-30 15:29:27.430807 plgnd 1334011753 R rec f8fd669d-893f-4e13-bf79-660f50d2eacf +2024-07-30 15:29:27.497901 2024-07-30 15:29:27.497912 plgnd 1334011079 R rec 2046cccd-54f3-44a8-a10c-5b212cc247ce +2024-07-30 15:29:27.570238 2024-07-30 15:29:27.570249 plgnd 1334001529 R rec 6911dd51-76a0-4fc8-87ee-af6e8c6c6326 +2024-07-30 15:29:27.641457 2024-07-30 15:29:27.641462 plgnd 1333989954 R rec 3c1fffbf-1f2e-4446-8a39-461f3f66637e +2024-07-30 15:29:27.690541 2024-07-30 15:29:27.690551 plgnd 1333660758 R rec 1e2f78ca-5af9-417a-b8c6-fce2bfb20e07 +2024-07-30 15:29:27.761949 2024-07-30 15:29:27.761961 plgnd 1333582501 R rec d8eceb1c-9af6-4a87-834f-fcf1120c983a +2024-07-30 15:29:27.847948 2024-07-30 15:29:27.84796 plgnd 1333570511 R rec 950efaca-a9f5-4b97-be86-629dc2f2cab9 +2024-07-30 15:29:27.92679 2024-07-30 15:29:27.926802 plgnd 133355513X R rec 98dca66e-9c4e-4141-beee-3e4c3af3eb9e +2024-07-30 15:29:28.003468 2024-07-30 15:29:28.00348 plgnd 1333333668 R rec 42c6fe20-15c7-4be6-be71-a39544a30de2 +2024-07-30 15:29:28.087565 2024-07-30 15:29:28.087577 plgnd 1333321090 R rec 11392831-97db-43f4-aae8-111424cf0ac5 +2024-07-30 15:29:28.160039 2024-07-30 15:29:28.16005 plgnd 1333315902 R rec 6b3084f1-f26d-4cfc-b4d6-3f18cc5f5818 +2024-07-30 15:29:28.228824 2024-07-30 15:29:28.228834 plgnd 1333263465 R rec e57e0342-e16a-45b0-b8d8-f4e1b6b3f7a3 +2024-07-30 15:29:28.293061 2024-07-30 15:29:28.293071 plgnd 1333255853 R rec 5493b8bb-18e4-40d6-9e32-ae3b4d324a1a +2024-07-30 15:29:28.35297 2024-07-30 15:29:28.35298 plgnd 1333228880 R rec ae2932e7-6a08-48f2-8ad3-e268100ca999 +2024-07-30 15:29:28.416287 2024-07-30 15:29:28.416299 plgnd 1333113943 R rec e6e3aaab-51da-483a-a051-f8b42c135d7a +2024-07-30 15:29:28.486958 2024-07-30 15:29:28.486969 plgnd 1332874568 R rec c2a4380a-cabd-485e-a7fe-def12ef8c5b6 +2024-07-30 15:29:28.558425 2024-07-30 15:29:28.558436 plgnd 1332858198 R rec 66f79abe-62c3-45cd-8a79-8953c1128c2e +2024-07-30 15:29:28.622621 2024-07-30 15:29:28.622632 plgnd 1332769349 R rec d6dbce68-190e-456a-9d2a-d33f4a3fe521 +2024-07-30 15:29:28.685222 2024-07-30 15:29:28.685232 plgnd 1332757375 R rec 1cfc8e22-addd-4b88-8f41-c3ebbf1c312f +2024-07-30 15:29:28.752033 2024-07-30 15:29:28.752046 plgnd 1332755666 R rec d24c7727-3d19-4e7a-9df5-28a063bf4adc +2024-07-30 15:29:28.823972 2024-07-30 15:29:28.823983 plgnd 1332749054 R rec e4a977dc-1eaf-42f7-8a32-1b42db742d73 +2024-07-30 15:29:28.88957 2024-07-30 15:29:28.889581 plgnd 1332747108 R rec 1ffe6d7b-2500-4a41-b7f4-f060fbbc55fc +2024-07-30 15:29:28.957585 2024-07-30 15:29:28.957596 plgnd 1332742351 R rec f9fe74c2-c297-4313-b29b-b16b3ef40bc2 +2024-07-30 15:29:29.030644 2024-07-30 15:29:29.030659 plgnd 1332735002 R rec f4514705-427a-40b8-ad74-40f2b5919001 +2024-07-30 15:29:29.108662 2024-07-30 15:29:29.108672 plgnd 1332734863 R rec 98536dcb-ddc5-45e6-97b3-83640d74f36a +2024-07-30 15:29:29.183226 2024-07-30 15:29:29.183237 plgnd 133273457X R rec 72a1fd4f-15bc-4428-981d-2c7cecceab6c +2024-07-30 15:29:29.250491 2024-07-30 15:29:29.250502 plgnd 1332733751 R rec 812001c6-526b-4dab-8d01-cbbb84934c0b +2024-07-30 15:29:29.312478 2024-07-30 15:29:29.312487 plgnd 1332732577 R rec 5c718835-83c0-48bf-a2cf-4c606d3f24e3 +2024-07-30 15:29:29.375021 2024-07-30 15:29:29.375031 plgnd 1332731430 R rec a66cd253-d3f9-4c13-a578-ea3fa76fe006 +2024-07-30 15:29:29.440953 2024-07-30 15:29:29.440964 plgnd 1332670482 R rec a1086ad0-023a-4c26-80be-61d94c08e44c +2024-07-30 15:29:29.504066 2024-07-30 15:29:29.504076 plgnd 1332669689 R rec f4055868-b645-4b14-a59e-660b6eb0120f +2024-07-30 15:29:29.570495 2024-07-30 15:29:29.570508 plgnd 1332451578 R rec a9663b54-4d85-4666-a271-a6249aecce0c +2024-07-30 15:29:29.641094 2024-07-30 15:29:29.641105 plgnd 1332353436 R rec f8bf50e1-0260-4f99-8a78-6c0727cedce3 +2024-07-30 15:29:29.70681 2024-07-30 15:29:29.706815 plgnd 1332057209 R rec 92b19d12-0c05-4f20-a6b8-bc5431cb83da +2024-07-30 15:29:29.763126 2024-07-30 15:29:29.763137 plgnd 1332055729 R rec 713c3a93-2bfb-488f-8a96-6894d33286cd +2024-07-30 15:29:29.841656 2024-07-30 15:29:29.841668 plgnd 1332031374 R rec 8751b4da-5463-433c-961b-6debb307e571 +2024-07-30 15:29:29.913355 2024-07-30 15:29:29.913367 plgnd 1331729661 R rec ec895e0a-dc55-4674-98a7-62b667a99407 +2024-07-30 15:29:29.98914 2024-07-30 15:29:29.989151 plgnd 1331609186 R rec 1e3ef79b-e070-4cc1-a987-1aa813a45c1e +2024-07-30 15:29:30.058885 2024-07-30 15:29:30.058896 plgnd 1331604346 R rec 8ffff6cc-6448-4a07-9796-a0ee5feb9432 +2024-07-30 15:29:30.128129 2024-07-30 15:29:30.128142 plgnd 1331602718 R rec ce1a2bb9-a333-43fe-bb54-04283686d8c2 +2024-07-30 15:29:30.208658 2024-07-30 15:29:30.208668 plgnd 1331601630 R rec d54b02f4-5074-4e43-8eb4-59a2dcbb65d1 +2024-07-30 15:29:30.297461 2024-07-30 15:29:30.297473 plgnd 1331514282 R rec f866cbcb-7376-4a45-be4c-396b4ea4ec40 +2024-07-30 15:29:30.386981 2024-07-30 15:29:30.386992 plgnd 1331513952 R rec 3a4f3950-d068-49ea-a95c-2151dd6d2753 +2024-07-30 15:29:30.462123 2024-07-30 15:29:30.462133 plgnd 1331379539 R rec f33ec923-fe33-4e9b-8803-d770ca1390ba +2024-07-30 15:29:30.53845 2024-07-30 15:29:30.538459 plgnd 1331109191 R rec a179210b-ead9-4bdc-b3ee-57bc2133425e +2024-07-30 15:29:30.610249 2024-07-30 15:29:30.610264 plgnd 1331089271 R rec 0c98e984-0869-4925-a882-59144a3a7bb7 +2024-07-30 15:29:30.717486 2024-07-30 15:29:30.717491 plgnd 1330982746 R rec 31d2d66a-7d22-4b16-bb68-5c2245ac6d18 +2024-07-30 15:29:30.792125 2024-07-30 15:29:30.792134 plgnd 1330866738 R rec 19f3a0ec-6384-4a69-a814-18808a8c3c65 +2024-07-30 15:29:30.878035 2024-07-30 15:29:30.878046 plgnd 1330847199 R rec ac819f73-25a0-4c0d-91d3-55e576977281 +2024-07-30 15:29:30.942551 2024-07-30 15:29:30.942562 plgnd 1330436237 R rec 7e0d62aa-ac9e-4c5d-bc9b-73db7e75381c +2024-07-30 15:29:31.008771 2024-07-30 15:29:31.008781 plgnd 1330428420 R rec 70fb4608-a67d-4151-9879-bf5965b9ad95 +2024-07-30 15:29:31.083946 2024-07-30 15:29:31.083957 plgnd 1330324463 R rec 6be193f7-5982-45f6-aeff-0799f28b948e +2024-07-30 15:29:31.15412 2024-07-30 15:29:31.15413 plgnd 1330302877 R rec b969de43-728f-41da-bf37-2e84ad9bf4b0 +2024-07-30 15:29:31.235965 2024-07-30 15:29:31.235978 plgnd 1330290887 R rec 73d950c8-5e77-4d94-84bd-65c5b0dea61e +2024-07-30 15:29:31.311008 2024-07-30 15:29:31.311018 plgnd 1330177274 R rec f842ed35-2ec2-4a2a-a25f-fea9984c1ad6 +2024-07-30 15:29:31.395222 2024-07-30 15:29:31.395231 plgnd 1329890205 R rec 549ee691-db44-46da-97e7-713428130751 +2024-07-30 15:29:31.479675 2024-07-30 15:29:31.479691 plgnd 1329430875 R rec 68fa59a4-7673-4e31-8c8a-22bc8834c407 +2024-07-30 15:29:31.568239 2024-07-30 15:29:31.568254 plgnd 1316359042 R rec 976bed10-4a99-40f8-a88f-b7adc874fec9 +2024-07-30 15:29:31.638589 2024-07-30 15:29:31.638599 plgnd 1314596373 R rec c8bb72ef-662c-4de0-ae2a-24ed251b8931 +2024-07-30 15:29:31.698202 2024-07-30 15:29:31.698212 plgnd 1302571524 R rec 87c19c96-1569-48b0-8ac8-c15e3fdcc4f6 +2024-07-30 15:29:31.768964 2024-07-30 15:29:31.768974 plgnd 1300397128 R rec 72397beb-21af-40bd-afda-50d0afb91155 +2024-07-30 15:29:31.824859 2024-07-30 15:29:31.824868 plgnd 1299383890 R rec a8f44903-3ee7-4fe5-bc82-4bc822f5dafb +2024-07-30 15:29:31.887443 2024-07-30 15:29:31.887454 plgnd 129673143X R rec 3db9b6e5-b385-4366-bea7-30b63347049a +2024-07-30 15:29:31.950113 2024-07-30 15:29:31.950124 plgnd 1295131781 R rec 2944d97a-5f92-425c-b1a0-01ce01aded68 +2024-07-30 15:29:32.019465 2024-07-30 15:29:32.019476 plgnd 1287837611 R rec d4894154-2e4a-4ae6-8d35-c0798e25201d +2024-07-30 15:29:32.08909 2024-07-30 15:29:32.089101 plgnd 1286132703 R rec a2c5efd8-13a5-4379-8edf-5334f7cb10d3 +2024-07-30 15:29:32.169498 2024-07-30 15:29:32.169508 plgnd 1284341119 R rec cf67f966-e595-4878-9244-c9c13ea83f46 +2024-07-30 15:29:32.238974 2024-07-30 15:29:32.23899 plgnd 1282328816 R rec 061e0434-ccd4-44e8-aaf6-1e065a5338b5 +2024-07-30 15:29:32.316477 2024-07-30 15:29:32.316485 plgnd 1275159915 R rec 476191d4-ecb1-4909-aa37-37647243696a +2024-07-30 15:29:32.395493 2024-07-30 15:29:32.395504 plgnd 1271173751 R rec a4ef78c2-6d34-4a06-852f-7bfd1702e888 +2024-07-30 15:29:32.469498 2024-07-30 15:29:32.469509 plgnd 1267606541 R rec 6ba4865d-2ba2-4bef-8d81-e5c1bdb34e1d +2024-07-30 15:29:32.541202 2024-07-30 15:29:32.541211 plgnd 1262419808 R rec af6de11d-9792-4a1a-b9ce-fefce1a0962b +2024-07-30 15:29:32.619718 2024-07-30 15:29:32.619735 plgnd 1240912943 R rec 05b8a9f5-f30d-4f6c-8f65-878a6c223755 +2024-07-30 15:29:32.686311 2024-07-30 15:29:32.686321 plgnd 1239866968 R rec 3b9dc8dd-da14-4937-b873-d3f3e0c51149 +2024-07-30 15:29:32.754195 2024-07-30 15:29:32.754205 plgnd 1239463502 R rec eeebefd3-6f43-4162-9baf-22a415f2522f +2024-07-30 15:29:32.811098 2024-07-30 15:29:32.811103 plgnd 1237860342 R rec 23fe0991-9fb4-447b-8d74-b6760eea9db6 +2024-07-30 15:29:32.869665 2024-07-30 15:29:32.869676 plgnd 1237828171 R rec e57cca07-3029-4d4c-8691-c67a08d7df83 +2024-07-30 15:29:32.942093 2024-07-30 15:29:32.942104 plgnd 1237774101 R rec 672f6ee8-cfdd-4e9f-b971-f3b1d0d92345 +2024-07-30 15:29:33.012584 2024-07-30 15:29:33.012593 plgnd 1237279453 R rec ec22e7fb-31de-4f34-bf47-64a74e803804 +2024-07-30 15:29:33.088381 2024-07-30 15:29:33.088392 plgnd 1236792211 R rec 51b8093d-184f-42de-811f-469c04b2cbc6 +2024-07-30 15:29:33.171008 2024-07-30 15:29:33.171018 plgnd 123657754X R rec fbaff48f-8744-4690-803d-645bae9dedb8 +2024-07-30 15:29:33.241901 2024-07-30 15:29:33.241911 plgnd 1235360709 R rec 2eab1862-375c-44d4-af0b-6edea8da3648 +2024-07-30 15:29:33.310068 2024-07-30 15:29:33.310077 plgnd 1233310046 R rec 147c2a71-bd1e-499d-83b5-c2a803552587 +2024-07-30 15:29:33.380776 2024-07-30 15:29:33.380787 plgnd 1232243698 R rec e0b090bb-debe-42e5-bb28-bd8f622454db +2024-07-30 15:29:33.448809 2024-07-30 15:29:33.44882 plgnd 1225876354 R rec 68a367ed-1d8f-450d-b12f-b8f9ab8d7c1c +2024-07-30 15:29:33.52119 2024-07-30 15:29:33.521207 plgnd 1224278054 R rec c9918309-57ae-461e-8aae-5d0f0cf4c4f1 +2024-07-30 15:29:33.59515 2024-07-30 15:29:33.59516 plgnd 122413754X R rec a08353c4-ecd7-4572-934a-a919a705fd77 +2024-07-30 15:29:33.668176 2024-07-30 15:29:33.668187 plgnd 122219953X R rec 180ad6ac-c7e4-47ef-84a7-9791e50743da +2024-07-30 15:29:33.747729 2024-07-30 15:29:33.74774 plgnd 1222199440 R rec 5f740f7f-4655-46df-8dc4-294a88f16113 +2024-07-30 15:29:33.816283 2024-07-30 15:29:33.816288 plgnd 1219234621 R rec 8635b47f-4bf2-46eb-85dc-a11d0ea99083 +2024-07-30 15:29:33.87011 2024-07-30 15:29:33.870121 plgnd 1215862520 R rec 604eddc0-0565-4458-b6bd-327070eadf3d +2024-07-30 15:29:33.938144 2024-07-30 15:29:33.938154 plgnd 1208649175 R rec 9b0230c9-dc7e-4b83-959b-0f5e3d33c008 +2024-07-30 15:29:34.013582 2024-07-30 15:29:34.013594 plgnd 1206005505 R rec 36d2f67b-4414-4819-b2f3-b37fcb858e96 +2024-07-30 15:29:34.083389 2024-07-30 15:29:34.0834 plgnd 1203261837 R rec 1fa2dc91-f5c7-49ac-bd83-47a7cbef294f +2024-07-30 15:29:34.152904 2024-07-30 15:29:34.152913 plgnd 1197938001 R rec fa7bc0ee-043d-4a3c-ae47-0f79bbe28830 +2024-07-30 15:29:34.217065 2024-07-30 15:29:34.217075 plgnd 1192399013 R rec 8661a556-cafb-41b6-8f3e-a9f51e51e9c8 +2024-07-30 15:29:34.285239 2024-07-30 15:29:34.28525 plgnd 1191133729 R rec f0c29762-0053-47a6-9ce5-34f4dccf6c2a +2024-07-30 15:29:34.352952 2024-07-30 15:29:34.352962 plgnd 1190333392 R rec 7831502a-6d48-4851-bbca-a3b0aed18ea4 +2024-07-30 15:29:34.412811 2024-07-30 15:29:34.412821 plgnd 1190333082 R rec c8114ece-d272-48d5-9dd8-b6c233b34f26 +2024-07-30 15:29:34.475346 2024-07-30 15:29:34.475356 plgnd 1190328259 R rec 5d0bc321-963c-4aab-95f8-64f1cd9386ae +2024-07-30 15:29:34.54085 2024-07-30 15:29:34.54086 plgnd 1189443015 R rec fc4f1e4c-70b9-43e7-8c80-4fc7328763c2 +2024-07-30 15:29:34.605895 2024-07-30 15:29:34.605906 plgnd 1188738658 R rec b91dbaba-60f3-45c6-9c50-11413ed54a0b +2024-07-30 15:29:34.67453 2024-07-30 15:29:34.674542 plgnd 1184832803 R rec e376fccc-adcd-4838-9cc3-b2e7556e6450 +2024-07-30 15:29:34.74141 2024-07-30 15:29:34.741419 plgnd 1184428727 R rec d38d7c75-cb2b-4676-a25b-f36767883518 +2024-07-30 15:29:34.814046 2024-07-30 15:29:34.814057 plgnd 1182916759 R rec e798e47e-db11-401b-a1cc-bb5aafb2d242 +2024-07-30 15:29:34.872146 2024-07-30 15:29:34.872157 plgnd 1182704948 R rec 248dd31c-aa69-421c-9f30-5bab84575753 +2024-07-30 15:29:34.938191 2024-07-30 15:29:34.938202 plgnd 1180664485 R rec 56495d3e-04c6-40b7-a6dc-1872c093c035 +2024-07-30 15:29:35.003806 2024-07-30 15:29:35.003817 plgnd 1180620623 R rec 84d7586a-471c-4dcc-8f1b-544a4e8c7f2b +2024-07-30 15:29:35.07577 2024-07-30 15:29:35.075781 plgnd 1179502884 R rec 789dd0ee-7ce3-4b51-88c0-4053143966a9 +2024-07-30 15:29:35.158365 2024-07-30 15:29:35.158376 plgnd 1177183811 R rec 769d3a44-2bc4-4a5f-8eb7-c9845fa2039a +2024-07-30 15:29:35.238814 2024-07-30 15:29:35.238829 plgnd 1177087480 R rec 0e0f951f-094e-4985-a3c5-9effbd72daac +2024-07-30 15:29:35.314347 2024-07-30 15:29:35.314357 plgnd 1171383401 R rec 6be3bd82-40af-4d28-adfa-918eec4bce73 +2024-07-30 15:29:35.39047 2024-07-30 15:29:35.39048 plgnd 1169806708 R rec aea12d99-57f4-4990-8c9b-87cd585a3f44 +2024-07-30 15:29:35.461057 2024-07-30 15:29:35.461073 plgnd 1169806686 R rec 21602a46-0d23-481d-bbd5-9702f3e3b1c1 +2024-07-30 15:29:35.5352 2024-07-30 15:29:35.535211 plgnd 1169805167 R rec 93e2b308-2c9a-493f-bac2-c63095a0dbf8 +2024-07-30 15:29:35.60354 2024-07-30 15:29:35.603554 plgnd 1169805140 R rec 1282cfce-e0ed-4fa3-924d-bf006f06783a +2024-07-30 15:29:35.679462 2024-07-30 15:29:35.679473 plgnd 1167694643 R rec 631607fc-f06b-4ee7-8956-5c502fe040e4 +2024-07-30 15:29:35.756369 2024-07-30 15:29:35.756381 plgnd 1167335767 R rec a07ef709-0380-4906-816c-6d59f9cf1a72 +2024-07-30 15:29:35.827676 2024-07-30 15:29:35.827692 plgnd 1166988325 R rec 29f36e79-3e8f-40f9-8f0b-78b63fd2b9a6 +2024-07-30 15:29:35.887586 2024-07-30 15:29:35.887591 plgnd 1166988007 R rec 4b7c4ffa-6ddd-44f7-ba93-2f716be6088d +2024-07-30 15:29:35.951817 2024-07-30 15:29:35.951829 plgnd 1166098877 R rec 44b01c0d-23a2-4817-adf3-733828c88945 +2024-07-30 15:29:36.017929 2024-07-30 15:29:36.01794 plgnd 1165597586 R rec 08796ba5-a923-4bed-8d9a-478968e9d650 +2024-07-30 15:29:36.087242 2024-07-30 15:29:36.087253 plgnd 1164527657 R rec 1e07cfa9-6a5f-4e48-bc18-03dd0c45928f +2024-07-30 15:29:36.162516 2024-07-30 15:29:36.162527 plgnd 116355815X R rec d3a8c588-c690-4751-8066-ef2f0634fe9d +2024-07-30 15:29:36.235858 2024-07-30 15:29:36.235873 plgnd 1163558095 R rec f9832521-0b10-4a65-8f4b-8751ce5dcf4f +2024-07-30 15:29:36.306366 2024-07-30 15:29:36.306375 plgnd 1163419907 R rec 9388642d-ba61-4c6f-9c13-4e86cb01ee45 +2024-07-30 15:29:36.370016 2024-07-30 15:29:36.370026 plgnd 1161830820 R rec f5508236-253f-4f45-ac64-6c6810e5d1f0 +2024-07-30 15:29:36.432902 2024-07-30 15:29:36.432913 plgnd 1161625046 R rec 854e2333-8187-4c09-9cff-6a91bb60b362 +2024-07-30 15:29:36.502929 2024-07-30 15:29:36.502937 plgnd 1156658128 R rec 4db2adb2-2d50-4943-a152-56cd8b59220d +2024-07-30 15:29:36.569206 2024-07-30 15:29:36.569216 plgnd 1156051029 R rec ac2e34e2-231f-408b-9f02-f29aefe31546 +2024-07-30 15:29:36.630206 2024-07-30 15:29:36.630216 plgnd 1148115242 R rec 21f39f3f-8045-485d-81f8-39b1cc3c33f6 +2024-07-30 15:29:36.693587 2024-07-30 15:29:36.693597 plgnd 1147654123 R rec 188338a5-e393-43ce-bccb-3f174fda9ef8 +2024-07-30 15:29:36.766683 2024-07-30 15:29:36.766694 plgnd 1143714245 R rec 1c7a6b30-5b90-40a6-a3be-ae7b3578c20f +2024-07-30 15:29:36.836702 2024-07-30 15:29:36.836713 plgnd 1143154991 R rec 52941b5f-f590-4780-83e6-db1b3c8046d4 +2024-07-30 15:29:36.905939 2024-07-30 15:29:36.905944 plgnd 1142135993 R rec 671424fc-e8b8-40c6-8912-f02a6f322e66 +2024-07-30 15:29:36.951736 2024-07-30 15:29:36.951747 plgnd 1139463888 R rec 9807e2c9-18e0-4fe5-a799-d087ff08c8d9 +2024-07-30 15:29:37.022013 2024-07-30 15:29:37.022024 plgnd 113914071X R rec c757ab27-0f38-4cff-9b58-fd0c8c2b8ee2 +2024-07-30 15:29:37.089165 2024-07-30 15:29:37.089176 plgnd 113698612X R rec d89d75f6-44a9-4c58-a1ce-b725848eb0d3 +2024-07-30 15:29:37.164907 2024-07-30 15:29:37.164915 plgnd 1136731237 R rec c2467c07-4fce-40cc-b573-9f3b187ab9b8 +2024-07-30 15:29:37.244763 2024-07-30 15:29:37.244778 plgnd 1136092293 R rec 72cbc6cc-2c77-413a-aa25-59d1b74d598d +2024-07-30 15:29:37.332157 2024-07-30 15:29:37.332172 plgnd 1135805342 R rec 3729f67a-1010-4b96-904c-853adcde8693 +2024-07-30 15:29:37.417213 2024-07-30 15:29:37.417229 plgnd 1135798842 R rec 9996f977-7e9e-4e24-a0f2-4d37ef95f23d +2024-07-30 15:29:37.500702 2024-07-30 15:29:37.500718 plgnd 1133293247 R rec d1916fae-d73e-4516-866e-76716a0f4cb7 +2024-07-30 15:29:37.59363 2024-07-30 15:29:37.593644 plgnd 1132227771 R rec 6d62f5c1-d5e2-425e-96ae-a7c92e4fcf66 +2024-07-30 15:29:37.656425 2024-07-30 15:29:37.656435 plgnd 1124279156 R rec 2acb5ec4-cbb0-4d8f-97da-434cb8ae6429 +2024-07-30 15:29:37.717438 2024-07-30 15:29:37.717446 plgnd 1122747160 R rec 9b63cfe6-2676-47f8-a6b6-ac0070a09682 +2024-07-30 15:29:37.789077 2024-07-30 15:29:37.789087 plgnd 1122668171 R rec c2c66456-5972-41ae-8174-73232ee7a4c2 +2024-07-30 15:29:37.859212 2024-07-30 15:29:37.85922 plgnd 112132925X R rec b15998d0-eb66-447d-b53b-6c784f54e542 +2024-07-30 15:29:37.917948 2024-07-30 15:29:37.917954 plgnd 1107605113 R rec 75a128d9-403e-4f65-bf12-08a7ae381b0d +2024-07-30 15:29:37.970223 2024-07-30 15:29:37.970233 plgnd 1105589110 R rec 4ec3c8ba-04ed-4742-8daf-2f5f65f46472 +2024-07-30 15:29:38.033613 2024-07-30 15:29:38.033624 plgnd 1101612258 R rec 9ad9d32d-4d9c-42c5-beee-77680d57432f +2024-07-30 15:29:38.097096 2024-07-30 15:29:38.097106 plgnd 1100323325 R rec 05e29ea1-212d-4698-aff2-447b63ff33e9 +2024-07-30 15:29:38.168695 2024-07-30 15:29:38.168705 plgnd 1100201831 R rec 47d4195b-5318-44cc-a84d-49ec907b47d7 +2024-07-30 15:29:38.234355 2024-07-30 15:29:38.234365 plgnd 1099133092 R rec 4dab34cc-337c-4a3a-979e-f7db42dfee50 +2024-07-30 15:29:38.307567 2024-07-30 15:29:38.307574 plgnd 1099132061 R rec 63d884de-d52e-43e2-b28a-31f98cb03a5d +2024-07-30 15:29:38.372186 2024-07-30 15:29:38.372197 plgnd 1097213617 R rec 1e623a0e-b47e-4531-8cc9-9fcec560e7e0 +2024-07-30 15:29:38.463067 2024-07-30 15:29:38.463077 plgnd 1095576461 R rec 70c4ce1a-e753-4215-9209-84af35749b12 +2024-07-30 15:29:38.560018 2024-07-30 15:29:38.560029 plgnd 1085229823 R rec 0905aa69-f0b6-44d7-8c84-e825ea2df746 +2024-07-30 15:29:38.623414 2024-07-30 15:29:38.623424 plgnd 1082797251 R rec 190ef4f3-464a-4826-a1ea-7b84c5bebf39 +2024-07-30 15:29:38.69998 2024-07-30 15:29:38.699991 plgnd 1082520101 R rec 6acde115-51c7-4625-9428-95d613f45033 +2024-07-30 15:29:38.772197 2024-07-30 15:29:38.772208 plgnd 1082153850 R rec 402906a1-7a2e-4b31-ad54-8977a51caf48 +2024-07-30 15:29:38.840808 2024-07-30 15:29:38.840819 plgnd 1082012033 R rec 8ee972c7-248e-431d-91ee-b2c777602a2f +2024-07-30 15:29:38.90941 2024-07-30 15:29:38.90942 plgnd 1082001430 R rec 46dfa639-3187-480d-8941-59a7b3fbd507 +2024-07-30 15:29:38.969429 2024-07-30 15:29:38.969434 plgnd 1081845031 R rec 9a2bb1c0-46c6-45eb-a0e8-774399c9bbb4 +2024-07-30 15:29:39.022733 2024-07-30 15:29:39.022744 plgnd 1081844973 R rec 95e08596-3cca-447e-9998-112252296bb1 +2024-07-30 15:29:39.086061 2024-07-30 15:29:39.086071 plgnd 1081842474 R rec b3f132f8-dd42-4e6a-b5dd-2e8a6265b754 +2024-07-30 15:29:39.166452 2024-07-30 15:29:39.166469 plgnd 1081839082 R rec 8b2b666a-91c2-4c48-8179-c007909abece +2024-07-30 15:29:39.230426 2024-07-30 15:29:39.230436 plgnd 1081838779 R rec 377b765c-ee76-4375-85f5-963c56a519cf +2024-07-30 15:29:39.293047 2024-07-30 15:29:39.293057 plgnd 1081838655 R rec 64a3a4f3-63e0-4c0d-8380-fdbc5bafaccc +2024-07-30 15:29:39.365455 2024-07-30 15:29:39.365467 plgnd 1081838507 R rec 77e7cc8c-1dd5-4077-b0f6-3968a2171937 +2024-07-30 15:29:39.426592 2024-07-30 15:29:39.426602 plgnd 1081838396 R rec 579eef65-99fc-4fcc-9743-ecdd1d3a5d84 +2024-07-30 15:29:39.489692 2024-07-30 15:29:39.489735 plgnd 1081838310 R rec 0f728e3e-d6ab-4f5f-8b68-92ba569dc084 +2024-07-30 15:29:39.54999 2024-07-30 15:29:39.55 plgnd 1081838167 R rec 51b2c4fb-8c11-4407-95ff-66331f4cd247 +2024-07-30 15:29:39.620349 2024-07-30 15:29:39.62036 plgnd 1081838051 R rec f71d2efb-b816-45de-ba60-67450221037a +2024-07-30 15:29:39.697307 2024-07-30 15:29:39.697319 plgnd 1081330236 R rec 62ad2f80-8fc6-442f-80d5-72a08bdd3d9b +2024-07-30 15:29:39.770536 2024-07-30 15:29:39.770547 plgnd 1081212918 R rec 7f783c5d-1685-4e3c-a1b9-b2884a67841b +2024-07-30 15:29:39.836302 2024-07-30 15:29:39.836313 plgnd 1081097930 R rec 77a32e8a-13a8-4cca-adc4-c44e44a38c3c +2024-07-30 15:29:39.902956 2024-07-30 15:29:39.902967 plgnd 1079692916 R rec f986eafd-551d-418f-b8e6-09ddde7bfc89 +2024-07-30 15:29:39.97204 2024-07-30 15:29:39.972045 plgnd 1079568352 R rec 96b664bf-adbe-43a7-93fc-a17ceba820c2 +2024-07-30 15:29:40.02896 2024-07-30 15:29:40.028972 plgnd 1078131902 R rec 349dff34-bd2a-4320-8f54-b2fd321457e1 +2024-07-30 15:29:40.095288 2024-07-30 15:29:40.0953 plgnd 1077893450 R rec 57460a10-98b2-47e3-bccf-1b824961775d +2024-07-30 15:29:40.169724 2024-07-30 15:29:40.169735 plgnd 1077053320 R rec b7ebda53-9bdd-4eef-a380-e49e77b2ede9 +2024-07-30 15:29:40.245129 2024-07-30 15:29:40.245139 plgnd 1077053185 R rec 57140250-1344-46b9-b028-f6469ddc822b +2024-07-30 15:29:40.319179 2024-07-30 15:29:40.319189 plgnd 107699847X R rec 1e78feec-0108-470a-8e35-b098327b693a +2024-07-30 15:29:40.428452 2024-07-30 15:29:40.428457 plgnd 1076027032 R rec 41504997-f3c4-45d5-b0a5-d5f27def1906 +2024-07-30 15:29:40.490084 2024-07-30 15:29:40.490094 plgnd 1075827361 R rec 0799174f-1864-4a82-aa55-bcd8c41bda84 +2024-07-30 15:29:40.562692 2024-07-30 15:29:40.562701 plgnd 1075220467 R rec c1399bda-acd4-4948-a3a6-bf6639e145b7 +2024-07-30 15:29:40.652111 2024-07-30 15:29:40.652122 plgnd 1074377397 R rec ca46fa0e-83a5-4094-aa68-6d61ed4cadd8 +2024-07-30 15:29:40.727497 2024-07-30 15:29:40.727508 plgnd 1074316908 R rec fc492f83-dc52-476e-b2fe-757455583d09 +2024-07-30 15:29:40.80306 2024-07-30 15:29:40.803069 plgnd 107399077X R rec 970611b0-1297-4f0f-b94b-12d1b171e1dc +2024-07-30 15:29:40.878043 2024-07-30 15:29:40.878053 plgnd 1073950220 R rec 5343ac3f-9511-42a6-8a99-c008162f0be6 +2024-07-30 15:29:40.950496 2024-07-30 15:29:40.950508 plgnd 107373157X R rec 004cbd9f-1b3a-45ae-82ec-db0c8935562a +2024-07-30 15:29:41.019258 2024-07-30 15:29:41.019263 plgnd 1073724549 R rec 5fcce6b7-0daa-4c83-9d8c-361dbf740178 +2024-07-30 15:29:41.085129 2024-07-30 15:29:41.085154 plgnd 107362062X R rec e7ad560a-74c1-4898-b537-e36605be1193 +2024-07-30 15:29:41.179074 2024-07-30 15:29:41.179083 plgnd 1073267830 R rec 052c8b88-04b0-4683-939d-386a9424f0c5 +2024-07-30 15:29:41.258325 2024-07-30 15:29:41.258337 plgnd 107283314X R rec fa4802bd-cfcb-4623-83f1-b47730b2bfb6 +2024-07-30 15:29:41.340898 2024-07-30 15:29:41.340909 plgnd 1071872435 R rec 4258d9b3-8680-4ecd-b099-9aa4a98f86a0 +2024-07-30 15:29:41.41908 2024-07-30 15:29:41.419089 plgnd 1071862391 R rec 8f76a495-9146-496a-9878-8128614101ee +2024-07-30 15:29:41.495338 2024-07-30 15:29:41.495349 plgnd 1070113026 R rec 63923b53-9643-4da1-bcf2-8dee0fa1ca38 +2024-07-30 15:29:41.577484 2024-07-30 15:29:41.577499 plgnd 1069803782 R rec 086f8a65-0991-4eef-872d-002d0ada218e +2024-07-30 15:29:41.650637 2024-07-30 15:29:41.650647 plgnd 1068118490 R rec 799cd9e1-98b0-442f-9254-6d0aad4e0f5b +2024-07-30 15:29:41.733911 2024-07-30 15:29:41.733922 plgnd 1067883703 R rec 16aabca9-e91c-4d06-a2d3-3031361a4a07 +2024-07-30 15:29:41.810142 2024-07-30 15:29:41.81015 plgnd 1067878831 R rec 6232ac21-e772-4821-9393-b71ea31dc402 +2024-07-30 15:29:41.899414 2024-07-30 15:29:41.899461 plgnd 1067860142 R rec 989b59a8-ca34-463e-990d-d113043895d8 +2024-07-30 15:29:41.985766 2024-07-30 15:29:41.985777 plgnd 1067637184 R rec d93a6a91-3aea-464d-876e-5e446ae4d12f +2024-07-30 15:29:42.056801 2024-07-30 15:29:42.056812 plgnd 1067636757 R rec d09db19d-1146-4ae3-85aa-da3d66f2f848 +2024-07-30 15:29:42.136059 2024-07-30 15:29:42.13607 plgnd 1067274006 R rec 647c9a3a-1f8c-4db4-893b-93af859a1ae0 +2024-07-30 15:29:42.210032 2024-07-30 15:29:42.210043 plgnd 1067272488 R rec 43b23751-08a4-483e-b03f-fd01ffa44246 +2024-07-30 15:29:42.286596 2024-07-30 15:29:42.286606 plgnd 1064960243 R rec 18fc20fc-078c-4f67-8cf0-92177331319e +2024-07-30 15:29:42.355105 2024-07-30 15:29:42.355113 plgnd 1064714455 R rec 7e8864d3-6b0d-4da7-9e5a-0f922697dd19 +2024-07-30 15:29:42.425597 2024-07-30 15:29:42.425608 plgnd 1064601502 R rec c5f4f4cf-f1cc-41f5-8911-f1f7b4515ee8 +2024-07-30 15:29:42.520224 2024-07-30 15:29:42.520236 plgnd 1064049419 R rec 69529462-a101-4131-b48e-cbe11633b57c +2024-07-30 15:29:42.602668 2024-07-30 15:29:42.602684 plgnd 1062979583 R rec 74de3797-372c-49a3-9ad9-eed8453dffdd +2024-07-30 15:29:42.686141 2024-07-30 15:29:42.686151 plgnd 1062970004 R rec b8e92dd3-e2d3-43d1-bbab-7ce71ee64ded +2024-07-30 15:29:42.764998 2024-07-30 15:29:42.765009 plgnd 1062891848 R rec c48bbc49-c580-45ef-9b53-7e99b7430cde +2024-07-30 15:29:42.844993 2024-07-30 15:29:42.845004 plgnd 1062531191 R rec 32715e7d-a635-4c36-ac97-d54054f0a2ed +2024-07-30 15:29:42.93025 2024-07-30 15:29:42.930261 plgnd 1062516109 R rec 58391e78-769b-4a53-89ea-459882d4d2ec +2024-07-30 15:29:42.999689 2024-07-30 15:29:42.9997 plgnd 1061004198 R rec e52a6cc1-e998-47db-af94-f9d7c351435a +2024-07-30 15:29:43.069299 2024-07-30 15:29:43.069304 plgnd 1060849127 R rec 947d72d6-0a6b-414d-9925-efe6b302e58f +2024-07-30 15:29:43.126795 2024-07-30 15:29:43.126806 plgnd 106081482X R rec 4b40d11c-595b-49bd-ba4c-564590cf03c0 +2024-07-30 15:29:43.211215 2024-07-30 15:29:43.211227 plgnd 1060503611 R rec 7f4fdf72-fa11-43e7-aa96-207e93146a8d +2024-07-30 15:29:43.314453 2024-07-30 15:29:43.314465 plgnd 1060503166 R rec bf9dd02e-4ac3-495a-ad0a-ef2cc23246b5 +2024-07-30 15:29:43.42766 2024-07-30 15:29:43.42767 plgnd 1060502798 R rec d859be25-2ba2-4ae3-a95c-e52aed4ce6f3 +2024-07-30 15:29:43.492287 2024-07-30 15:29:43.492298 plgnd 1060502682 R rec e84dcb89-e6fd-4ab4-a7c0-d3ae15984563 +2024-07-30 15:29:43.56407 2024-07-30 15:29:43.564082 plgnd 1060502585 R rec bedb4e5f-0d54-4e53-86a0-fb136d67473e +2024-07-30 15:29:43.648975 2024-07-30 15:29:43.64899 plgnd 1060502372 R rec fd5165da-e3e3-4278-a8fa-1b39ffa9fdc6 +2024-07-30 15:29:43.714743 2024-07-30 15:29:43.714753 plgnd 106050216X R rec 637f7067-5445-4bb2-8d58-fe31b2e894e3 +2024-07-30 15:29:43.776352 2024-07-30 15:29:43.776362 plgnd 1060501902 R rec 78d6e156-d337-4b18-9ef6-899001eed6bb +2024-07-30 15:29:43.839361 2024-07-30 15:29:43.839369 plgnd 1060501759 R rec 9a57d448-ba25-471e-a20c-3691d388a042 +2024-07-30 15:29:43.906528 2024-07-30 15:29:43.906538 plgnd 1060501457 R rec 1c85de9c-1213-4386-9def-88cbfe393d6b +2024-07-30 15:29:43.976982 2024-07-30 15:29:43.976992 plgnd 106050104X R rec 688b2ec8-d61f-4229-a738-d365fff912ed +2024-07-30 15:29:44.053694 2024-07-30 15:29:44.053705 plgnd 1060419319 R rec 06228e70-7f46-4631-bf4c-e7a96fb46afb +2024-07-30 15:29:44.110462 2024-07-30 15:29:44.110467 plgnd 1060401134 R rec 123aff7b-b0dd-4f45-8b31-c5c20151af35 +2024-07-30 15:29:44.176867 2024-07-30 15:29:44.176877 plgnd 1060238128 R rec 4bfb82cb-4ece-4bab-9c7e-edcc3dba5d6a +2024-07-30 15:29:44.25205 2024-07-30 15:29:44.25206 plgnd 1060132206 R rec 2c14aa76-6edb-4993-baa8-63d9c42c84ac +2024-07-30 15:29:44.324231 2024-07-30 15:29:44.324241 plgnd 1060087367 R rec 2f569abe-fe9a-45c6-902b-10e4b2e8e28d +2024-07-30 15:29:44.395 2024-07-30 15:29:44.395011 plgnd 1059448831 R rec 0e1597d7-157e-496e-8767-8ee88cb7573e +2024-07-30 15:29:44.46743 2024-07-30 15:29:44.467439 plgnd 1059378396 R rec c2d39ee1-2824-4d39-8873-1650c6dc89ee +2024-07-30 15:29:44.540875 2024-07-30 15:29:44.540889 plgnd 1059376946 R rec 31a13dac-f070-45c8-ab74-edde55867b21 +2024-07-30 15:29:44.623266 2024-07-30 15:29:44.623276 plgnd 1059359022 R rec eae0b76b-9015-4e16-8756-0c0b04e05f9a +2024-07-30 15:29:44.70105 2024-07-30 15:29:44.701059 plgnd 1059357755 R rec 8c18bafa-c167-4e9b-a2c8-7b9fb97fabb1 +2024-07-30 15:29:44.777711 2024-07-30 15:29:44.777726 plgnd 1059250454 R rec 9f9ab980-f774-4c8d-90d0-1cf0e4768fee +2024-07-30 15:29:44.863743 2024-07-30 15:29:44.863754 plgnd 105914249X R rec a378a360-9d93-40f5-ba91-dc6e3f1dc576 +2024-07-30 15:29:44.948101 2024-07-30 15:29:44.948113 plgnd 1058994743 R rec 5f8bd444-0e6e-462b-80e6-1f30a194653b +2024-07-30 15:29:45.019564 2024-07-30 15:29:45.019574 plgnd 1058986333 R rec 672864a7-9f38-4ad4-879d-8a619abc3e16 +2024-07-30 15:29:45.092719 2024-07-30 15:29:45.092729 plgnd 1058985299 R rec d2a09bcd-6620-4a0e-b774-429cb1613453 +2024-07-30 15:29:45.1514 2024-07-30 15:29:45.151411 plgnd 1058984144 R rec 7b7fd0ef-b3cb-403c-8464-924489a3d6fc +2024-07-30 15:29:45.224312 2024-07-30 15:29:45.224327 plgnd 1058973045 R rec ac739d05-cfc5-4236-90b1-088d695ede72 +2024-07-30 15:29:45.311249 2024-07-30 15:29:45.31126 plgnd 1058939068 R rec 41e863f4-4e20-49c3-9565-3673db316a93 +2024-07-30 15:29:45.399421 2024-07-30 15:29:45.399436 plgnd 105892978X R rec 2f6dc8bc-a9d3-4f15-a727-78f78958afd2 +2024-07-30 15:29:45.46662 2024-07-30 15:29:45.466631 plgnd 1058928732 R rec f5fbd9ff-219b-4942-a898-0c0e135668d0 +2024-07-30 15:29:45.534338 2024-07-30 15:29:45.534365 plgnd 1058919954 R rec 6e603cfb-76a8-4729-825b-7d7e1ebef6d4 +2024-07-30 15:29:45.599532 2024-07-30 15:29:45.599542 plgnd 1058918176 R rec 996ce15a-4e9e-4923-aad8-d8890154623a +2024-07-30 15:29:45.659489 2024-07-30 15:29:45.6595 plgnd 1058899597 R rec 2e7155cd-4644-4dc8-b065-007c299de507 +2024-07-30 15:29:45.721222 2024-07-30 15:29:45.721233 plgnd 1058896318 R rec 124fe0a1-e98c-4552-80be-24c071ef8ce3 +2024-07-30 15:29:45.791352 2024-07-30 15:29:45.791364 plgnd 1058890611 R rec 9c8a9b2b-e37d-44fd-b180-6c0b39b01bfb +2024-07-30 15:29:45.860668 2024-07-30 15:29:45.860679 plgnd 1058880373 R rec eb9abd6c-ffb8-47af-bdb5-d626480d91df +2024-07-30 15:29:45.925845 2024-07-30 15:29:45.925856 plgnd 1058876872 R rec 54dc0a82-5d06-419b-8c24-04251e01fd01 +2024-07-30 15:29:46.003495 2024-07-30 15:29:46.003558 plgnd 1058840819 R rec 094c1708-48a0-4552-b3a4-7b038744311e +2024-07-30 15:29:46.117978 2024-07-30 15:29:46.117991 plgnd 1058838512 R rec 68831569-3d02-4f0a-8cd4-539b38bffed0 +2024-07-30 15:29:46.19509 2024-07-30 15:29:46.195102 plgnd 1058667343 R rec 88b959bf-20a4-4aa9-b1cb-3f8bb02a1f66 +2024-07-30 15:29:46.279901 2024-07-30 15:29:46.279916 plgnd 1058664468 R rec ad6b6cea-e4c4-4e56-a136-0de42437c429 +2024-07-30 15:29:46.378078 2024-07-30 15:29:46.378089 plgnd 1058661396 R rec f18c4220-15a3-47ba-8e77-a5041827d4b6 +2024-07-30 15:29:46.48002 2024-07-30 15:29:46.48003 plgnd 1058651994 R rec 89ef0970-239d-45b9-a066-8bb5d1810400 +2024-07-30 15:29:46.56344 2024-07-30 15:29:46.563451 plgnd 1058639919 R rec 3a2b8929-8ba7-4c87-bd6d-c9de536ecae9 +2024-07-30 15:29:46.643001 2024-07-30 15:29:46.6431 plgnd 105863982X R rec 03d9fc06-7c8b-48d4-b326-c0745c18cbf6 +2024-07-30 15:29:46.722686 2024-07-30 15:29:46.722698 plgnd 1058622773 R rec e6989448-3a6d-4614-8964-a6825abeaf56 +2024-07-30 15:29:46.805956 2024-07-30 15:29:46.805966 plgnd 1058616684 R rec d966f05c-ea17-4aa2-adf3-6da484d8ee30 +2024-07-30 15:29:46.882723 2024-07-30 15:29:46.882746 plgnd 1058616579 R rec 893fe26d-cfe8-4007-b6e4-bbe9d40ed8ae +2024-07-30 15:29:46.963258 2024-07-30 15:29:46.96327 plgnd 1058583018 R rec ec5c299f-0ca1-4523-80ef-baef1f29bf7b +2024-07-30 15:29:47.052595 2024-07-30 15:29:47.052606 plgnd 1058579045 R rec 1f23b83f-b6a8-4927-a11b-1241a65ee608 +2024-07-30 15:29:47.136978 2024-07-30 15:29:47.13699 plgnd 1058463993 R rec d2a08bfe-fdb2-4481-867a-b14bae469805 +2024-07-30 15:29:47.211613 2024-07-30 15:29:47.211624 plgnd 1058463896 R rec 71cb06bb-5601-43cd-9d16-b61aa929c0e5 +2024-07-30 15:29:47.284338 2024-07-30 15:29:47.284352 plgnd 1058460862 R rec b487c9fa-2383-4c4f-a821-a2703f52c18c +2024-07-30 15:29:47.373101 2024-07-30 15:29:47.373112 plgnd 1058460293 R rec bbf0bb73-df18-4676-af49-8ef2091ba642 +2024-07-30 15:29:47.450979 2024-07-30 15:29:47.45099 plgnd 1058395726 R rec 8cdff7db-9a78-4658-9093-d4450e933747 +2024-07-30 15:29:47.537834 2024-07-30 15:29:47.537845 plgnd 1058041142 R rec 1624288c-b097-48fb-b416-30d57c47d833 +2024-07-30 15:29:47.619971 2024-07-30 15:29:47.619982 plgnd 1057942928 R rec 7ffced83-17eb-4301-a1a0-e973095e31e1 +2024-07-30 15:29:47.706154 2024-07-30 15:29:47.706164 plgnd 1056973714 R rec cfdf30ad-66ce-4a21-b032-348ecfa75587 +2024-07-30 15:29:47.794755 2024-07-30 15:29:47.794767 plgnd 1055068716 R rec 6f8d69bb-6473-4e8d-962b-6e99389186b8 +2024-07-30 15:29:47.878596 2024-07-30 15:29:47.878608 plgnd 1054961824 R rec 0286dfe0-d1c2-4cb7-8ae7-d8d60a85a603 +2024-07-30 15:29:47.969848 2024-07-30 15:29:47.969858 plgnd 1054631026 R rec a5dfe1ed-b982-4eb7-8bc1-cefa63596d9d +2024-07-30 15:29:48.070556 2024-07-30 15:29:48.070568 plgnd 1054611041 R rec d7f4fd7f-b73b-4a07-8581-31daa8c5cf46 +2024-07-30 15:29:48.144844 2024-07-30 15:29:48.144858 plgnd 1054442959 R rec 9e7dd76b-65f0-4ac2-8a08-de89450c9f86 +2024-07-30 15:29:48.215448 2024-07-30 15:29:48.215453 plgnd 1054382255 R rec c91cd5d8-8841-4c1e-ae92-8c3dbbac07cb +2024-07-30 15:29:48.275432 2024-07-30 15:29:48.275443 plgnd 1054036489 R rec 67aaed43-09c9-427c-93b1-de1ecf3be67a +2024-07-30 15:29:48.36219 2024-07-30 15:29:48.362201 plgnd 1054036322 R rec ceca4437-0e5b-477c-9f6d-b4244296b698 +2024-07-30 15:29:48.441528 2024-07-30 15:29:48.44154 plgnd 105382467X R rec b6c5f1e6-f343-4e5e-b751-f329f1d2606b +2024-07-30 15:29:48.527254 2024-07-30 15:29:48.52727 plgnd 1053733119 R rec 09d4c898-7773-44d3-8b5d-1fd2220a0a2a +2024-07-30 15:29:48.615137 2024-07-30 15:29:48.615148 plgnd 1053694857 R rec 09de1bf9-1ef9-4fcc-94c0-668f38f76ed6 +2024-07-30 15:29:48.695003 2024-07-30 15:29:48.695014 plgnd 105366916X R rec 0be667c1-d517-4e2c-bda2-197bd0dbf67c +2024-07-30 15:29:48.765584 2024-07-30 15:29:48.765595 plgnd 1053585039 R rec 1feb063e-accb-451d-b49c-27cd714d3baa +2024-07-30 15:29:48.840897 2024-07-30 15:29:48.840907 plgnd 1053578571 R rec c0962a46-83b5-42ec-ab3a-3b2b1ccdcfad +2024-07-30 15:29:48.909501 2024-07-30 15:29:48.909543 plgnd 1053495382 R rec b77fca61-e6cf-4931-a2fc-2b08ca0a5ea7 +2024-07-30 15:29:48.981517 2024-07-30 15:29:48.981529 plgnd 1053460856 R rec ee63688d-4817-4c9a-9bd4-ae54f0754ff8 +2024-07-30 15:29:49.058636 2024-07-30 15:29:49.058647 plgnd 1051746663 R rec d40a9eb8-ae28-4bb0-a861-fd42c3e99a09 +2024-07-30 15:29:49.153356 2024-07-30 15:29:49.153367 plgnd 1044268069 R rec 3ed65815-3db6-4027-a69f-ee4c8debc524 +2024-07-30 15:29:49.242081 2024-07-30 15:29:49.242086 plgnd 1038831628 R rec 83563f34-390c-4713-a460-ff81ba47ce42 +2024-07-30 15:29:49.300267 2024-07-30 15:29:49.300279 plgnd 1036912949 R rec a093e0ee-35c3-4948-9533-85cb92cec222 +2024-07-30 15:29:49.364135 2024-07-30 15:29:49.364148 plgnd 1036573141 R rec e64d70de-a2cf-445d-9df5-8a9c5e8a6f73 +2024-07-30 15:29:49.443463 2024-07-30 15:29:49.443474 plgnd 1035487640 R rec dcf36ea5-1761-441a-ae41-664f0943d794 +2024-07-30 15:29:49.515845 2024-07-30 15:29:49.515856 plgnd 1032436034 R rec d9a57f0b-9692-410b-bacd-a9c34058bcc8 +2024-07-30 15:29:49.589642 2024-07-30 15:29:49.589653 plgnd 1031571922 R rec f5924792-8cc2-454b-8e1a-88c5b1625d4c +2024-07-30 15:29:49.666725 2024-07-30 15:29:49.666737 plgnd 1029389896 R rec 3379bb30-c704-4be1-8a6c-2019d598675a +2024-07-30 15:29:49.747732 2024-07-30 15:29:49.747742 plgnd 1029389233 R rec aa49e9b5-db69-4426-bfde-e7e9328b37e4 +2024-07-30 15:29:49.823163 2024-07-30 15:29:49.823172 plgnd 1029388334 R rec af736259-b7bd-472f-bf4a-19690e442c12 +2024-07-30 15:29:49.907207 2024-07-30 15:29:49.907219 plgnd 1028231660 R rec 98477dce-f7df-4acd-8c78-38025e74b93b +2024-07-30 15:29:50.004673 2024-07-30 15:29:50.004684 plgnd 1024812693 R rec 7ce2dd29-dace-4610-8895-c2efb35f0aa7 +2024-07-30 15:29:50.075988 2024-07-30 15:29:50.075997 plgnd 1021396656 R rec 7b7ddcd2-3c65-4e0b-9efd-5d591e47bd2f +2024-07-30 15:29:50.156429 2024-07-30 15:29:50.156439 plgnd 1021113018 R rec 7cc525f0-c9f5-4d4d-9c66-1a6ba9540580 +2024-07-30 15:29:50.234173 2024-07-30 15:29:50.234183 plgnd 1021112577 R rec 65f8e2b4-e702-42ba-8ca5-d20ce71a6d22 +2024-07-30 15:29:50.288701 2024-07-30 15:29:50.288712 plgnd 1021112518 R rec 9b47bbb7-8e91-404f-9243-4a66c7dec350 +2024-07-30 15:29:50.362387 2024-07-30 15:29:50.362397 plgnd 1021112216 R rec b74fc5c5-affe-4108-b12e-f577dc63c189 +2024-07-30 15:29:50.439297 2024-07-30 15:29:50.439308 plgnd 1021056154 R rec 32cbfbde-2f42-426b-b2ad-79d42183130f +2024-07-30 15:29:50.522593 2024-07-30 15:29:50.522598 plgnd 1020911387 R rec 543ece6c-048f-4f2c-9ad3-4f15941728cf +2024-07-30 15:29:50.588897 2024-07-30 15:29:50.588907 plgnd 1020911344 R rec 985f1b37-1c2a-4aec-bc01-64ee3bb924d7 +2024-07-30 15:29:50.659407 2024-07-30 15:29:50.659417 plgnd 1020911026 R rec 4ca3a435-ba0f-4a57-9b3b-7bf7e81cfee0 +2024-07-30 15:29:50.741671 2024-07-30 15:29:50.741682 plgnd 1020897325 R rec 1b6259d2-ba8d-491f-894e-cbde378aa9e3 +2024-07-30 15:29:50.825562 2024-07-30 15:29:50.825573 plgnd 1020897236 R rec e2538aa3-3366-42c5-8e40-1b795a43b8fd +2024-07-30 15:29:50.902391 2024-07-30 15:29:50.902407 plgnd 1020865318 R rec 8375318c-7328-4bc2-8b30-0da1e371a8ce +2024-07-30 15:29:50.982844 2024-07-30 15:29:50.982854 plgnd 1020865237 R rec b9474394-4c56-4596-8546-aaea665e8be3 +2024-07-30 15:29:51.066091 2024-07-30 15:29:51.066103 plgnd 1016112106 R rec 0441c1a0-f57a-4f6c-acc6-80fd403d1d8b +2024-07-30 15:29:51.161805 2024-07-30 15:29:51.161818 plgnd 1011060752 R rec a4e0c139-8b8d-4d23-8a40-ead6f59cd732 +2024-07-30 15:29:51.237136 2024-07-30 15:29:51.237147 plgnd 1010438603 R rec 5daccd68-089d-42db-8795-aa878b0c2bc6 +2024-07-30 15:29:51.310319 2024-07-30 15:29:51.310329 plgnd 1010249460 R rec f78c5604-56c6-47d2-a07c-29bfcedbdbfc +2024-07-30 15:29:51.381148 2024-07-30 15:29:51.381158 plgnd 1009847430 R rec 42cbb983-3529-49e5-92f1-9fd13a0dc65d +2024-07-30 15:29:51.457 2024-07-30 15:29:51.457011 plgnd 1009707922 R rec d905cae3-0479-427f-8a23-8419308e7f15 +2024-07-30 15:29:51.522775 2024-07-30 15:29:51.522786 plgnd 1008073997 R rec 1864ce82-79f6-4b40-a8b3-ef027d7e18fe +2024-07-30 15:29:51.589373 2024-07-30 15:29:51.589388 plgnd 1002427517 R rec 78e5c3a5-56ea-4f7f-939b-1e80f9f353dc +2024-07-30 15:29:51.656395 2024-07-30 15:29:51.656406 plgnd 1001762630 R rec 5fe04233-c397-459a-9373-520acba9e7b5 +2024-07-30 15:29:51.726457 2024-07-30 15:29:51.726467 plgnd 996588051 R rec e7e2e501-9203-42d3-bd42-8ac0a5127200 +2024-07-30 15:29:51.793712 2024-07-30 15:29:51.793723 plgnd 996155910 R rec 26a711c9-e8a2-463f-8759-2291656f7050 +2024-07-30 15:29:51.868779 2024-07-30 15:29:51.86879 plgnd 995191506 R rec c0418f5c-b42a-485c-8e3b-9158edc87e42 +2024-07-30 15:29:51.934438 2024-07-30 15:29:51.934449 plgnd 994536666 R rec 860382d4-898f-4574-94a7-44b500fb4289 +2024-07-30 15:29:52.005883 2024-07-30 15:29:52.005894 plgnd 992346371 R rec 49e516d6-aa6d-4f02-b27a-8d1d22a5d827 +2024-07-30 15:29:52.076523 2024-07-30 15:29:52.076534 plgnd 989505952 R rec 1eb330d8-458f-4e2f-a318-ba525f7f259d +2024-07-30 15:29:52.156221 2024-07-30 15:29:52.156234 plgnd 98831326X R rec 375229a7-0c1f-429d-97a0-e3234f21d7b5 +2024-07-30 15:29:52.231879 2024-07-30 15:29:52.23189 plgnd 985253576 R rec 00e8ac13-1ea5-474e-ab38-721ac177341c +2024-07-30 15:29:52.302221 2024-07-30 15:29:52.302227 plgnd 984645942 R rec 6900fc1e-4a7e-48de-bc27-17b9df514955 +2024-07-30 15:29:52.350235 2024-07-30 15:29:52.350243 plgnd 980891248 R rec 5966f34a-64f7-4e0b-9a1a-663887cd126e +2024-07-30 15:29:52.419001 2024-07-30 15:29:52.419013 plgnd 979131529 R rec c4750654-c361-400b-89e1-3d62d27e50bb +2024-07-30 15:29:52.489454 2024-07-30 15:29:52.489464 plgnd 978966228 R rec 6c6c07be-a542-46d3-aad9-4154ce470598 +2024-07-30 15:29:52.56266 2024-07-30 15:29:52.562671 plgnd 978923855 R rec fe63baf9-8108-4687-9e58-80676fa66189 +2024-07-30 15:29:52.637832 2024-07-30 15:29:52.637842 plgnd 975958925 R rec e5f4ed90-17e4-42a1-8c5d-b58686ba0ab7 +2024-07-30 15:29:52.7155 2024-07-30 15:29:52.71551 plgnd 975328573 R rec cb15a983-0364-4ace-bf41-06cdf6887b45 +2024-07-30 15:29:52.790406 2024-07-30 15:29:52.790418 plgnd 974245747 R rec 654b29d6-02d2-4133-b2d3-f4c992a1ffc0 +2024-07-30 15:29:52.861198 2024-07-30 15:29:52.861213 plgnd 97424225X R rec 53b4af25-6183-48f4-a722-a220216be067 +2024-07-30 15:29:52.937365 2024-07-30 15:29:52.937375 plgnd 973071648 R rec 40b93b09-91a8-45a5-9538-af00873bd3f2 +2024-07-30 15:29:53.009868 2024-07-30 15:29:53.009877 plgnd 973066261 R rec 3148655f-0181-4364-8a52-d1b40728eabf +2024-07-30 15:29:53.081849 2024-07-30 15:29:53.08186 plgnd 973066245 R rec d2d5d192-8893-4659-a353-bf0ec67deaa0 +2024-07-30 15:29:53.157107 2024-07-30 15:29:53.157117 plgnd 973040149 R rec 125e0a1a-7dfc-4884-9ebf-64c943f861fe +2024-07-30 15:29:53.220956 2024-07-30 15:29:53.220966 plgnd 972651438 R rec a5a8c4a7-15e6-47f2-b092-d1ec9594c9b3 +2024-07-30 15:29:53.29171 2024-07-30 15:29:53.291721 plgnd 972586601 R rec 03246baf-976b-4e1a-8c91-aa2b6f90b83f +2024-07-30 15:29:53.372505 2024-07-30 15:29:53.372514 plgnd 972515704 R rec b322a08e-8562-4c68-89fb-851347c79ac1 +2024-07-30 15:29:53.44423 2024-07-30 15:29:53.444242 plgnd 971359709 R rec 6d8241f0-5cb1-4642-89c7-efe6a6b0a557 +2024-07-30 15:29:53.517908 2024-07-30 15:29:53.517918 plgnd 970139470 R rec 9737a336-98bd-4d9c-89a3-35738d2c76a7 +2024-07-30 15:29:53.588258 2024-07-30 15:29:53.58827 plgnd 969971028 R rec 78100560-39db-49da-8156-2fd02ddb3624 +2024-07-30 15:29:53.658394 2024-07-30 15:29:53.658403 plgnd 969491131 R rec b6826666-4796-4756-8d9d-563dc586264f +2024-07-30 15:29:53.729443 2024-07-30 15:29:53.729454 plgnd 967753546 R rec 8769a8f2-2cb7-4991-bf5e-0ca20954f14f +2024-07-30 15:29:53.80216 2024-07-30 15:29:53.802169 plgnd 967681952 R rec d9538343-c4f8-497e-8861-88682d58619b +2024-07-30 15:29:53.874884 2024-07-30 15:29:53.874895 plgnd 967581176 R rec a7f74132-89a7-4627-95b4-d7bca1fca949 +2024-07-30 15:29:53.948407 2024-07-30 15:29:53.948419 plgnd 967180953 R rec e1a2d0f7-9c79-437f-b891-a1083b8075f7 +2024-07-30 15:29:54.020772 2024-07-30 15:29:54.020782 plgnd 967160480 R rec 435d2f0e-742a-4a31-8490-3d5fb0bc8887 +2024-07-30 15:29:54.087632 2024-07-30 15:29:54.087656 plgnd 96577578X R rec 1912a991-ed7b-4b0d-a6d2-f5a97bb7c40d +2024-07-30 15:29:54.161472 2024-07-30 15:29:54.161482 plgnd 965775429 R rec 776ff47d-5374-4eee-a6f8-053c86695af5 +2024-07-30 15:29:54.224955 2024-07-30 15:29:54.224963 plgnd 965774910 R rec 4438e762-6eea-4896-a1a0-5d832d431e7b +2024-07-30 15:29:54.289465 2024-07-30 15:29:54.289474 plgnd 965759059 R rec eda48aee-9002-4e31-bb66-56141522e995 +2024-07-30 15:29:54.356949 2024-07-30 15:29:54.356955 plgnd 96575877X R rec f5cd9c90-a039-4063-a5d7-2bb49d7c3661 +2024-07-30 15:29:54.406134 2024-07-30 15:29:54.406145 plgnd 96563860X R rec 210d7298-6595-44a2-a4b9-9e8ef8d82b24 +2024-07-30 15:29:54.4723 2024-07-30 15:29:54.472312 plgnd 964991608 R rec 319889ff-cc9a-4d02-88eb-baaf067d419f +2024-07-30 15:29:54.542757 2024-07-30 15:29:54.542768 plgnd 964462427 R rec fdd8dedb-b96f-4266-938e-16055fd93fc3 +2024-07-30 15:29:54.623346 2024-07-30 15:29:54.623357 plgnd 96411822X R rec 90d5c335-52b9-42d3-b025-d18bc7a8f219 +2024-07-30 15:29:54.691613 2024-07-30 15:29:54.69165 plgnd 963982559 R rec 34330692-69f4-4008-9c8a-243ced959a48 +2024-07-30 15:29:54.763744 2024-07-30 15:29:54.763756 plgnd 963957635 R rec d6637267-e4d5-4816-91db-e86c315f9d97 +2024-07-30 15:29:54.853898 2024-07-30 15:29:54.853907 plgnd 963614673 R rec 7e75a6fe-d042-4c27-8416-27ef17fb1ff6 +2024-07-30 15:29:54.936682 2024-07-30 15:29:54.936694 plgnd 963462539 R rec 79c97114-6b56-47b2-8f7b-9eaf31f0cca8 +2024-07-30 15:29:55.004971 2024-07-30 15:29:55.004982 plgnd 963082132 R rec dba1aebe-205f-41d8-a563-4f70c239a21a +2024-07-30 15:29:55.076472 2024-07-30 15:29:55.076487 plgnd 962048879 R rec c28e9d0f-f801-40b8-bf36-7a2b4e3fdff6 +2024-07-30 15:29:55.149184 2024-07-30 15:29:55.149195 plgnd 961594519 R rec 63acfcb7-2b36-4116-8c00-4a04646f0687 +2024-07-30 15:29:55.214053 2024-07-30 15:29:55.214063 plgnd 961594497 R rec e8290faf-78cd-45f3-bcaa-fabc9fd6b051 +2024-07-30 15:29:55.284601 2024-07-30 15:29:55.284612 plgnd 961594454 R rec 11c7f6ba-4eb8-404d-900b-38bd33b3345c +2024-07-30 15:29:55.357434 2024-07-30 15:29:55.357449 plgnd 961395923 R rec 46cae232-0cd0-455e-afbf-a755c14cf391 +2024-07-30 15:29:55.418395 2024-07-30 15:29:55.418407 plgnd 960863664 R rec bdb72ae0-ee61-4f0c-b58b-2e1ab90c70c2 +2024-07-30 15:29:55.478438 2024-07-30 15:29:55.478448 plgnd 960833919 R rec 9a5e5d2c-12e5-4a42-b423-40f4a4d74fcd +2024-07-30 15:29:55.550584 2024-07-30 15:29:55.550595 plgnd 960396268 R rec 6b904c74-ad91-4467-bcaa-a76d904be500 +2024-07-30 15:29:55.625733 2024-07-30 15:29:55.625851 plgnd 960085726 R rec 8b43242c-d790-4db9-9b58-9b63d587d909 +2024-07-30 15:29:55.71278 2024-07-30 15:29:55.712791 plgnd 959934464 R rec 1973dfda-8c16-4838-9c17-966ef8900562 +2024-07-30 15:29:55.792388 2024-07-30 15:29:55.7924 plgnd 959918612 R rec dc5df9d4-eb5b-485a-8433-32bcd904101f +2024-07-30 15:29:55.895086 2024-07-30 15:29:55.89798 plgnd 959788719 R rec a4bec9a6-c3ef-46df-846e-b48c187fbddd +2024-07-30 15:29:55.970989 2024-07-30 15:29:55.970999 plgnd 959747575 R rec 4ae67f90-aac5-4787-b88e-25b5b7df6823 +2024-07-30 15:29:56.043611 2024-07-30 15:29:56.04362 plgnd 959369872 R rec a9e6986d-84d9-4f86-b1a0-a591fd77caa0 +2024-07-30 15:29:56.127841 2024-07-30 15:29:56.127852 plgnd 958777055 R rec 86e3c3e6-38ff-441c-b76a-7d9168c2f617 +2024-07-30 15:29:56.19797 2024-07-30 15:29:56.197981 plgnd 958014639 R rec ad9d45c6-5607-4cee-bdc5-8f74463f21da +2024-07-30 15:29:56.260836 2024-07-30 15:29:56.260847 plgnd 957753551 R rec c9935438-1e2c-4d4b-adfb-e24a21be70b4 +2024-07-30 15:29:56.324434 2024-07-30 15:29:56.324445 plgnd 957586973 R rec 2281d454-3793-4920-9711-2f5f533645cf +2024-07-30 15:29:56.385895 2024-07-30 15:29:56.385904 plgnd 957565445 R rec 36e804a0-7321-4fda-a369-32b8fefa2401 +2024-07-30 15:29:56.438599 2024-07-30 15:29:56.438604 plgnd 957211430 R rec 581965a4-12b4-4e1a-aa07-27148dac6567 +2024-07-30 15:29:56.503459 2024-07-30 15:29:56.50347 plgnd 956443877 R rec b38dc005-18a9-4f4d-a328-f25682ab8534 +2024-07-30 15:29:56.583739 2024-07-30 15:29:56.583752 plgnd 956443842 R rec 2bc200c7-8c7a-4645-ba08-1b5addf75a17 +2024-07-30 15:29:56.65677 2024-07-30 15:29:56.656781 plgnd 956443613 R rec 58a3057a-fafb-4e7c-840d-d9b57e25c39f +2024-07-30 15:29:56.724105 2024-07-30 15:29:56.724115 plgnd 955960134 R rec 5333e732-5022-4007-a758-402f42f3b50e +2024-07-30 15:29:56.797536 2024-07-30 15:29:56.797548 plgnd 955820049 R rec cb72a22b-9829-4d79-93da-3bddec5a6ced +2024-07-30 15:29:56.880493 2024-07-30 15:29:56.880505 plgnd 955573246 R rec 53c287fc-add6-4d70-9e66-2adeb9af9db8 +2024-07-30 15:29:56.963897 2024-07-30 15:29:56.963908 plgnd 955498058 R rec e6bbd603-0ace-43bf-bf4d-1b30ac0a8fee +2024-07-30 15:29:57.03521 2024-07-30 15:29:57.035222 plgnd 955495768 R rec 4745f389-71f7-493c-a01c-4f73f466d7f1 +2024-07-30 15:29:57.114204 2024-07-30 15:29:57.114216 plgnd 955090547 R rec 27cfc0a0-08aa-4cb0-b689-6c462a2f579b +2024-07-30 15:29:57.186537 2024-07-30 15:29:57.186547 plgnd 954472683 R rec d5c0deaf-36c4-44da-89c3-a4068d7e8bae +2024-07-30 15:29:57.312377 2024-07-30 15:29:57.312382 plgnd 954071832 R rec 596f7050-cba6-476b-9d87-2dcf24f57538 +2024-07-30 15:29:57.358941 2024-07-30 15:29:57.358947 plgnd 954064593 R rec ac637402-d9d6-4496-aa04-93f12de84259 +2024-07-30 15:29:57.404486 2024-07-30 15:29:57.404491 plgnd 953168697 R rec 0622a8d5-7bd6-44b0-a3c1-d2a3b6bfb3c0 +2024-07-30 15:29:57.447834 2024-07-30 15:29:57.447839 plgnd 953105024 R rec c6f7491e-55c3-4b6a-9328-4849e978ea15 +2024-07-30 15:29:57.488449 2024-07-30 15:29:57.488455 plgnd 952110512 R rec 3dc94531-a592-4030-9adf-cb6b440a29ea +2024-07-30 15:29:57.54564 2024-07-30 15:29:57.545651 plgnd 951677268 R rec 191e9eeb-0d16-4215-8301-5f6ba5369d67 +2024-07-30 15:29:57.608273 2024-07-30 15:29:57.608283 plgnd 951510282 R rec 1fe72230-762d-45bf-bf77-8fbd82a7d263 +2024-07-30 15:29:57.6824 2024-07-30 15:29:57.682412 plgnd 951510274 R rec 23bf5efe-0a65-44dc-a030-39ccfd7185bf +2024-07-30 15:29:57.748036 2024-07-30 15:29:57.748048 plgnd 951510258 R rec 2cce40e0-5a59-4fc0-ad59-79736638c576 +2024-07-30 15:29:57.826289 2024-07-30 15:29:57.826302 plgnd 95135793X R rec ee7861ec-0c75-4dad-a797-05752ce946c1 +2024-07-30 15:29:57.894991 2024-07-30 15:29:57.895002 plgnd 950649155 R rec ea782108-5d53-4f32-b8ee-b837708be925 +2024-07-30 15:29:57.969681 2024-07-30 15:29:57.969691 plgnd 950556149 R rec 9843d665-57dc-4bc9-bd86-df2787a683f6 +2024-07-30 15:29:58.042488 2024-07-30 15:29:58.042499 plgnd 950356190 R rec 350df04a-2118-445c-b2ff-195b96f57b6f +2024-07-30 15:29:58.111899 2024-07-30 15:29:58.11191 plgnd 950339490 R rec 2357fef5-d0e8-4546-8d8e-d2c88c58ecc2 +2024-07-30 15:29:58.188724 2024-07-30 15:29:58.188735 plgnd 950339407 R rec 1c312d9f-9674-45a2-8513-1853ce603042 +2024-07-30 15:29:58.261103 2024-07-30 15:29:58.261114 plgnd 950338338 R rec 4bc8f5f2-e40f-4ce8-81d5-7d6fc4d33f85 +2024-07-30 15:29:58.328311 2024-07-30 15:29:58.328321 plgnd 95033829X R rec 992f916b-f11e-46ee-ac9d-8790b1c3a1b6 +2024-07-30 15:29:58.402298 2024-07-30 15:29:58.402309 plgnd 950338230 R rec e2229725-860c-4819-81c5-257f44ff1cce +2024-07-30 15:29:58.465479 2024-07-30 15:29:58.465484 plgnd 950338184 R rec a3e94d04-285f-4a73-ab43-1af9b947268c +2024-07-30 15:29:58.52 2024-07-30 15:29:58.520011 plgnd 950332429 R rec a7fc191a-b64f-4b2e-ad1e-1b801b11dcb6 +2024-07-30 15:29:58.586878 2024-07-30 15:29:58.586888 plgnd 950332011 R rec 63133334-b4ca-4401-9f4c-5301e474aba2 +2024-07-30 15:29:58.657753 2024-07-30 15:29:58.657765 plgnd 950331821 R rec 28dfec66-0801-498f-86b1-e52ec80e7850 +2024-07-30 15:29:58.724443 2024-07-30 15:29:58.724453 plgnd 950315354 R rec 49ff0258-7994-4766-8f07-fb7bd3c585fb +2024-07-30 15:29:58.797091 2024-07-30 15:29:58.797102 plgnd 95020109X R rec c29d2cf5-e8cf-4a2e-94bb-c1506c726fb3 +2024-07-30 15:29:58.875034 2024-07-30 15:29:58.875047 plgnd 950199850 R rec f9d89bb8-df38-4fff-aebe-4316e7fe2bcb +2024-07-30 15:29:58.950366 2024-07-30 15:29:58.950377 plgnd 950199214 R rec 5ba3ecc6-7db6-4fef-acfe-df81d047f074 +2024-07-30 15:29:59.033985 2024-07-30 15:29:59.033998 plgnd 950168637 R rec 94643f29-a11a-4bd7-805a-066b6a7b1234 +2024-07-30 15:29:59.111533 2024-07-30 15:29:59.111544 plgnd 949740861 R rec b13a7bc2-8e54-4273-9e38-1127dff2b14b +2024-07-30 15:29:59.187798 2024-07-30 15:29:59.18781 plgnd 949647314 R rec 27dc54fe-40e8-4823-a484-989abaea4854 +2024-07-30 15:29:59.262424 2024-07-30 15:29:59.262435 plgnd 949641804 R rec a02e0bd4-246b-4a09-88d3-e8b56a6b047a +2024-07-30 15:29:59.340736 2024-07-30 15:29:59.340746 plgnd 94963218X R rec 00daa7e9-6199-421c-a980-013c9c36aa3b +2024-07-30 15:29:59.406825 2024-07-30 15:29:59.406835 plgnd 949632163 R rec 9f5131fa-9190-4312-90be-721294f4b90b +2024-07-30 15:29:59.478553 2024-07-30 15:29:59.478558 plgnd 949632147 R rec a064f9d1-134d-4114-88fe-8b1a0afe7087 +2024-07-30 15:29:59.535986 2024-07-30 15:29:59.535998 plgnd 949632120 R rec dd913643-6cb8-4ff3-aaa4-20602d7caa4e +2024-07-30 15:29:59.603979 2024-07-30 15:29:59.60399 plgnd 949632104 R rec c3c3608a-d7ca-40b9-adbf-6780d80a302c +2024-07-30 15:29:59.676542 2024-07-30 15:29:59.676558 plgnd 949607266 R rec 2f713f62-11cc-4af5-8cdd-36ad0439c8bf +2024-07-30 15:29:59.746602 2024-07-30 15:29:59.746613 plgnd 949602310 R rec 8181eb9c-d4bb-49b9-bb43-35bdfd199fee +2024-07-30 15:29:59.821524 2024-07-30 15:29:59.821535 plgnd 948791659 R rec 683cadd2-87be-41f4-8683-1e193ff04f9b +2024-07-30 15:29:59.907379 2024-07-30 15:29:59.90739 plgnd 948417226 R rec 75461279-231b-459e-addf-7689cd0ddc29 +2024-07-30 15:29:59.973458 2024-07-30 15:29:59.97347 plgnd 948322292 R rec 66aa1908-e8cb-4630-86d2-da82e1c3e7f9 +2024-07-30 15:30:00.054354 2024-07-30 15:30:00.054359 plgnd 948321156 R rec 76583c4a-ecf5-45e2-aafe-45361e6ba2cf +2024-07-30 15:30:00.123277 2024-07-30 15:30:00.123287 plgnd 947976248 R rec 6cb3286c-d0e1-485b-ae94-aa696fc936ca +2024-07-30 15:30:00.204325 2024-07-30 15:30:00.204339 plgnd 947862730 R rec 2fa5eaec-2b87-4431-b8c6-da074058f99f +2024-07-30 15:30:00.292162 2024-07-30 15:30:00.292175 plgnd 947589341 R rec 6be6efb8-16fe-4464-936c-5726fc7ffccc +2024-07-30 15:30:00.376354 2024-07-30 15:30:00.37637 plgnd 947454802 R rec 6a6cfe00-353e-4f4d-9aa3-d54caa3e6a2a +2024-07-30 15:30:00.465559 2024-07-30 15:30:00.465572 plgnd 947454659 R rec 40b1d2ba-c587-49e7-a9c3-504b71d5ade7 +2024-07-30 15:30:00.527238 2024-07-30 15:30:00.527244 plgnd 947421238 R rec 1c950b47-7ed2-44a8-b3de-f834be78e76b +2024-07-30 15:30:00.596474 2024-07-30 15:30:00.596484 plgnd 947026088 R rec 19ceec8a-494d-4e08-bb98-bb4739b71267 +2024-07-30 15:30:00.671756 2024-07-30 15:30:00.671767 plgnd 946723729 R rec ac9fbbea-e9d1-4be5-a54e-da9c3570714a +2024-07-30 15:30:00.748638 2024-07-30 15:30:00.748649 plgnd 946606161 R rec c0bf8c29-eace-46a8-b5de-665c5ae29fb8 +2024-07-30 15:30:00.826627 2024-07-30 15:30:00.826638 plgnd 945980132 R rec a0d80250-6d38-426a-8742-0700d4dbf749 +2024-07-30 15:30:00.894895 2024-07-30 15:30:00.894906 plgnd 945917201 R rec ceb1f12b-abcd-42e1-82ca-da1182d9d38c +2024-07-30 15:30:00.968107 2024-07-30 15:30:00.968121 plgnd 945871678 R rec 7c84c45e-c019-438e-bbed-b9d067565918 +2024-07-30 15:30:01.038716 2024-07-30 15:30:01.038756 plgnd 945385382 R rec 80ceaaf0-a74d-4799-ad3a-093094016eb3 +2024-07-30 15:30:01.118576 2024-07-30 15:30:01.118587 plgnd 944766021 R rec 49e8fb4e-cb1c-4281-99d5-24074a0a1b4c +2024-07-30 15:30:01.190896 2024-07-30 15:30:01.190906 plgnd 944289290 R rec 8ba67569-e68b-4224-956c-372452a0a3c3 +2024-07-30 15:30:01.254081 2024-07-30 15:30:01.254091 plgnd 94400718X R rec a667cdf2-9149-4d82-8983-3eb035c616bf +2024-07-30 15:30:01.321018 2024-07-30 15:30:01.321029 plgnd 943882346 R rec 4c062682-4c8b-426c-90a4-0aa4720a36f0 +2024-07-30 15:30:01.397481 2024-07-30 15:30:01.397493 plgnd 941847934 R rec 4b738371-e799-4dec-870e-774fa7954eb9 +2024-07-30 15:30:01.487152 2024-07-30 15:30:01.487163 plgnd 941808769 R rec 3c549d78-4991-4bb1-961a-053544431e3e +2024-07-30 15:30:01.572283 2024-07-30 15:30:01.572292 plgnd 941757471 R rec c28e2b2a-7a38-4632-9848-e04ace1061d8 +2024-07-30 15:30:01.643311 2024-07-30 15:30:01.643322 plgnd 941385175 R rec ce342fed-fd04-4502-af8b-3da6988b2c1c +2024-07-30 15:30:01.712201 2024-07-30 15:30:01.712212 plgnd 940396068 R rec 0d3767d0-ee7e-4064-9c05-0300544a8b86 +2024-07-30 15:30:01.779265 2024-07-30 15:30:01.779276 plgnd 940396009 R rec f5efed91-f7b2-4b2e-af7c-3c724398aa8e +2024-07-30 15:30:01.847087 2024-07-30 15:30:01.847099 plgnd 199305404 R rec 0dc5a12b-5864-4f11-aa69-c428d57a66c2 +2024-07-30 15:30:01.922656 2024-07-30 15:30:01.922668 plgnd 199252149 R rec c49c7f70-b1ca-418c-8780-f750c8ea303e +2024-07-30 15:30:01.996564 2024-07-30 15:30:01.996575 plgnd 199248974 R rec 9c5f6048-5881-424e-a76f-c95886ea2586 +2024-07-30 15:30:02.07904 2024-07-30 15:30:02.079049 plgnd 199246815 R rec c581f2e9-7f84-4ca4-b2c0-b8f23319d50b +2024-07-30 15:30:02.14705 2024-07-30 15:30:02.147061 plgnd 199246793 R rec c5a4a9c0-aee0-4956-a74b-e96cc78b1b9f +2024-07-30 15:30:02.229666 2024-07-30 15:30:02.229681 plgnd 199246211 R rec f716c43b-0c1a-41ad-bbec-a18fcf72dc57 +2024-07-30 15:30:02.323145 2024-07-30 15:30:02.323149 plgnd 199244766 R rec 6989b571-82b4-4cc4-a121-b1959e99f782 +2024-07-30 15:30:02.385471 2024-07-30 15:30:02.385479 plgnd 19924474X R rec cd1311a6-a761-434c-8808-cc82fdc3495e +2024-07-30 15:30:02.445948 2024-07-30 15:30:02.445956 plgnd 199244731 R rec 430a3a4c-a83e-4df7-a03c-587896bf066a +2024-07-30 15:30:02.507621 2024-07-30 15:30:02.507632 plgnd 199244375 R rec 075512d3-4963-42ab-ba45-d8f5bcd38d0b +2024-07-30 15:30:02.567494 2024-07-30 15:30:02.5675 plgnd 199241562 R rec 3f8ef7d3-c145-4fc8-805c-1aca8af41af7 +2024-07-30 15:30:02.611667 2024-07-30 15:30:02.611678 plgnd 199240590 R rec 46d58061-8feb-45be-9ef5-a482024f0533 +2024-07-30 15:30:02.676151 2024-07-30 15:30:02.676162 plgnd 199240515 R rec 5d0ba88e-1e27-4b72-9057-82449a0a239c +2024-07-30 15:30:02.748744 2024-07-30 15:30:02.748778 plgnd 199239436 R rec 3f59e99a-38fe-4cd6-b16c-2c921a9dc19e +2024-07-30 15:30:02.819928 2024-07-30 15:30:02.81994 plgnd 19923860X R rec 34b141a0-d4b1-4467-9896-d789a62647cd +2024-07-30 15:30:02.891825 2024-07-30 15:30:02.891837 plgnd 199231516 R rec 00a2d4ec-8191-4bd8-9c27-6c84fddb2f24 +2024-07-30 15:30:02.962206 2024-07-30 15:30:02.962216 plgnd 199230811 R rec eea846a1-dc5f-42f8-b2c8-5ab04a9d909b +2024-07-30 15:30:03.032545 2024-07-30 15:30:03.032556 plgnd 199230285 R rec 37bc351a-d020-4793-aa1f-ac815c3d22da +2024-07-30 15:30:03.112228 2024-07-30 15:30:03.112239 plgnd 199224196 R rec 6967ac18-75f4-4d87-855d-dec3d585ab80 +2024-07-30 15:30:03.193739 2024-07-30 15:30:03.19375 plgnd 199218315 R rec 45553803-e59d-4ad0-908d-e9c49a82d5b1 +2024-07-30 15:30:03.260424 2024-07-30 15:30:03.260434 plgnd 199215901 R rec 02aad30f-61e7-4d45-906e-260f8085df21 +2024-07-30 15:30:03.339327 2024-07-30 15:30:03.339336 plgnd 199214700 R rec 4783961f-e9d1-4262-b440-ddfcc5a76999 +2024-07-30 15:30:03.408113 2024-07-30 15:30:03.408125 plgnd 19921462X R rec ca6daf47-516e-4bf0-a53c-495b1cd6c111 +2024-07-30 15:30:03.487742 2024-07-30 15:30:03.487752 plgnd 199212007 R rec d7cd2264-183d-4adb-8ef8-9eae22a6a9fc +2024-07-30 15:30:03.564738 2024-07-30 15:30:03.56475 plgnd 199211817 R rec 90957add-61d1-428b-aa17-95da85c10873 +2024-07-30 15:30:03.621993 2024-07-30 15:30:03.621998 plgnd 199210713 R rec 94d4a62c-919c-4b12-a8f0-b44070224218 +2024-07-30 15:30:03.688426 2024-07-30 15:30:03.688437 plgnd 199209464 R rec c0ce31da-334d-44a5-8b11-be2052860310 +2024-07-30 15:30:03.758168 2024-07-30 15:30:03.758184 plgnd 199200955 R rec 367be03b-31d6-4cec-9d80-6ad7c81b31f5 +2024-07-30 15:30:03.832143 2024-07-30 15:30:03.832155 plgnd 199198578 R rec cf62bda9-ed1c-40be-877f-eac0ee75e439 +2024-07-30 15:30:03.902843 2024-07-30 15:30:03.902852 plgnd 199195978 R rec 6cf5d357-b11d-4154-9d1d-d38398184a81 +2024-07-30 15:30:03.974881 2024-07-30 15:30:03.974891 plgnd 19919596X R rec cadb0b6e-6106-459b-a6d7-88d2f668378d +2024-07-30 15:30:04.044964 2024-07-30 15:30:04.044973 plgnd 199189870 R rec 76c4c704-7dcf-46c1-b184-5b3ab56e3083 +2024-07-30 15:30:04.121472 2024-07-30 15:30:04.121483 plgnd 199189862 R rec b9e135cf-a2fd-413d-ac4d-82df8b08ffb9 +2024-07-30 15:30:04.194127 2024-07-30 15:30:04.194137 plgnd 199189854 R rec fcae3e80-b1ed-4ae7-9a77-7a48e8d9a5e2 +2024-07-30 15:30:04.265359 2024-07-30 15:30:04.265369 plgnd 199189846 R rec 4a60840c-7b18-4e66-a7d5-52bb44911ad7 +2024-07-30 15:30:04.334535 2024-07-30 15:30:04.334546 plgnd 199187282 R rec c1f52e42-1e02-415a-97fd-b9f4edadd398 +2024-07-30 15:30:04.409241 2024-07-30 15:30:04.409256 plgnd 199181993 R rec b9f72cdb-1d03-401b-9026-bd765c5da101 +2024-07-30 15:30:04.484433 2024-07-30 15:30:04.484442 plgnd 199173672 R rec 58b0e04d-ad26-42f8-a2fd-a1426207b57c +2024-07-30 15:30:04.560811 2024-07-30 15:30:04.560822 plgnd 19917332X R rec 26d0d706-dee2-49d2-9fc7-729058921712 +2024-07-30 15:30:04.633878 2024-07-30 15:30:04.633884 plgnd 199168512 R rec d780bf82-b4fb-418d-a83a-7b266ddd0dba +2024-07-30 15:30:04.693666 2024-07-30 15:30:04.693677 plgnd 199164347 R rec 67eddd7a-e362-4977-8e90-68d20f4efc16 +2024-07-30 15:30:04.764584 2024-07-30 15:30:04.764593 plgnd 19916035X R rec 170500aa-f3c3-438f-95c3-7468b0b8ac60 +2024-07-30 15:30:04.841449 2024-07-30 15:30:04.84146 plgnd 199159998 R rec dc14341a-1baa-4128-8899-9dc298889302 +2024-07-30 15:30:04.946146 2024-07-30 15:30:04.946156 plgnd 199159882 R rec d15ef51c-2d98-443f-8780-905cb9aafdca +2024-07-30 15:30:05.066582 2024-07-30 15:30:05.066593 plgnd 199159777 R rec 1cbbc3ca-c326-409a-ab8d-364474c6f624 +2024-07-30 15:30:05.144261 2024-07-30 15:30:05.144271 plgnd 199157642 R rec d6f5d5b8-d7d3-4c75-8f31-33a1c166dec6 +2024-07-30 15:30:05.216077 2024-07-30 15:30:05.2163 plgnd 199147760 R rec 5cec0a3f-a6ba-408f-aee4-5db15eb91bf3 +2024-07-30 15:30:05.282125 2024-07-30 15:30:05.282142 plgnd 199138834 R rec de48c365-61cf-4f34-8d2a-ebff236a40cd +2024-07-30 15:30:05.355943 2024-07-30 15:30:05.355953 plgnd 199136637 R rec dffd25ce-a304-496d-99e2-efd383e551d6 +2024-07-30 15:30:05.422561 2024-07-30 15:30:05.422571 plgnd 199118167 R rec 239a3999-2a0f-4f54-b6d1-1d98f74bb8bb +2024-07-30 15:30:05.493245 2024-07-30 15:30:05.49326 plgnd 199089973 R rec 4f8b9a7e-abd8-4682-9f9a-0767a496dd4f +2024-07-30 15:30:05.566384 2024-07-30 15:30:05.566395 plgnd 199077177 R rec 0b64b44b-492f-4885-a408-87dbf9b5f23f +2024-07-30 15:30:05.640359 2024-07-30 15:30:05.640365 plgnd 199023786 R rec f34596ad-a72e-4a7b-aca6-08dd361423fe +2024-07-30 15:30:05.695586 2024-07-30 15:30:05.695597 plgnd 199023360 R rec 621d231d-e64c-4d1b-8271-3aba8fee0d3e +2024-07-30 15:30:05.763267 2024-07-30 15:30:05.763277 plgnd 199022534 R rec a84ff057-14bc-451e-8c5f-bb785555a68b +2024-07-30 15:30:05.84355 2024-07-30 15:30:05.84356 plgnd 199013594 R rec 8e37a052-4472-4fc8-8ab2-d4496c879805 +2024-07-30 15:30:05.920561 2024-07-30 15:30:05.920572 plgnd 199013276 R rec eccac026-ec16-4aae-aae3-635ad6bb0bc5 +2024-07-30 15:30:05.998789 2024-07-30 15:30:05.998873 plgnd 199011249 R rec 01537a93-761b-433b-b5f9-ca2b7d52ee11 +2024-07-30 15:30:06.069626 2024-07-30 15:30:06.069637 plgnd 199003645 R rec b9382ab3-b824-4c53-ae1f-885e151d8957 +2024-07-30 15:30:06.140567 2024-07-30 15:30:06.140578 plgnd 199002894 R rec fb7f4cdc-e0c7-4f4b-a552-166e1800ee17 +2024-07-30 15:30:06.209441 2024-07-30 15:30:06.209452 plgnd 199001111 R rec 80eca9ac-9dfc-40f9-912c-d8853db47c70 +2024-07-30 15:30:06.279761 2024-07-30 15:30:06.279771 plgnd 199000328 R rec db9de7a6-d15a-4bf2-bb83-1af3389a40b2 +2024-07-30 15:30:06.348483 2024-07-30 15:30:06.348494 plgnd 199000239 R rec b5e1d005-fddb-43f8-9327-5869c6d0f44c +2024-07-30 15:30:06.415211 2024-07-30 15:30:06.415263 plgnd 050551604 R rec 00cfce87-e6ce-4e1e-94d4-6a2f27fd7d41 +2024-07-30 15:30:06.495191 2024-07-30 15:30:06.495265 plgnd 050133039 R rec ba74e643-7b17-477e-8afc-a3e5abc2e453 +2024-07-30 15:30:06.570874 2024-07-30 15:30:06.570883 plgnd 050039350 R rec 12ccc58f-80e5-42cf-a5c1-023f0d6c1a63 +2024-07-30 15:30:06.644372 2024-07-30 15:30:06.644383 plgnd 043244793 R rec 42b6aadc-a933-4834-8d34-fb4406a35d2b +2024-07-30 15:30:06.693964 2024-07-30 15:30:06.693969 plgnd 043225608 R rec e1660712-7c14-437d-8707-e76897f7fcfe +2024-07-30 15:30:06.748153 2024-07-30 15:30:06.748163 plgnd 043151019 R rec 1098a8f1-b735-4a8e-b847-91c1618cbea0 +2024-07-30 15:30:06.818106 2024-07-30 15:30:06.818116 plgnd 043138764 R rec 28cc3335-2186-4888-bed4-5b508735cf0d +2024-07-30 15:30:06.886958 2024-07-30 15:30:06.886969 plgnd 042976200 R rec 2ce898e6-5bac-47fd-bb16-5bb0ff07748b +2024-07-30 15:30:06.957377 2024-07-30 15:30:06.957388 plgnd 042939550 R rec 8e18b727-5f4f-43d9-af89-9b50987a3647 +2024-07-30 15:30:07.032978 2024-07-30 15:30:07.03299 plgnd 042939526 R rec 8436d822-2794-4e09-9e80-6389d2ea87ef +2024-07-30 15:30:07.102907 2024-07-30 15:30:07.10292 plgnd 042788714 R rec 1923f4ed-dde5-464b-8c5c-cdf752fbc1bf +2024-07-30 15:30:07.173192 2024-07-30 15:30:07.173202 plgnd 042778352 R rec decfa660-45ff-40e0-9cef-dcd15787d8f2 +2024-07-30 15:30:07.240634 2024-07-30 15:30:07.240646 plgnd 042627494 R rec 8a95ce5a-4d13-4c05-bf05-073a9ad1d6bf +2024-07-30 15:30:07.323268 2024-07-30 15:30:07.323278 plgnd 042602564 R rec ad9d793f-947e-4894-9498-73eee9cbb912 +2024-07-30 15:30:07.391283 2024-07-30 15:30:07.391293 plgnd 042567874 R rec 38916c0d-9ede-4d7a-949b-a84b904f7d6a +2024-07-30 15:30:07.459813 2024-07-30 15:30:07.459826 plgnd 042553628 R rec a76cd757-a94c-470f-8dc1-093c0b4da0d6 +2024-07-30 15:30:07.534598 2024-07-30 15:30:07.534609 plgnd 042492777 R rec 0835bfc2-9589-44a0-a482-e029cf7a3218 +2024-07-30 15:30:07.611339 2024-07-30 15:30:07.611355 plgnd 042490448 R rec 9ff528bf-4762-4248-a294-7b8d8c05d523 +2024-07-30 15:30:07.687376 2024-07-30 15:30:07.687387 plgnd 042477247 R rec a3dde334-e0b9-46e5-9306-c7d6a7d6ec06 +2024-07-30 15:30:07.736437 2024-07-30 15:30:07.736447 plgnd 042400228 R rec 3d39d817-2e7e-41d1-9b78-cd066b8dad91 +2024-07-30 15:30:07.79203 2024-07-30 15:30:07.79204 plgnd 042387175 R rec 4a63e4da-d3d5-44ad-9898-0d9b61f1f9ab +2024-07-30 15:30:07.86035 2024-07-30 15:30:07.860362 plgnd 042299004 R rec 91db749f-df67-4cdb-8c33-e2d457db52cb +2024-07-30 15:30:07.936688 2024-07-30 15:30:07.936698 plgnd 042260213 R rec 3e211d2e-4830-49ff-b088-978324ca4fcd +2024-07-30 15:30:08.013533 2024-07-30 15:30:08.013544 plgnd 042244943 R rec 27682b25-2b11-4bad-8b22-8ba4e3568002 +2024-07-30 15:30:08.089102 2024-07-30 15:30:08.089114 plgnd 042236037 R rec ce5fa64e-6cd0-4633-97b6-9ce60ce901fe +2024-07-30 15:30:08.160654 2024-07-30 15:30:08.160664 plgnd 042209927 R rec b1fa9cbd-8a9d-4287-a1a8-cf4d254c0dff +2024-07-30 15:30:08.226388 2024-07-30 15:30:08.226399 plgnd 042005450 R rec 644cba93-a4f0-4870-a793-aca2aa98c7b1 +2024-07-30 15:30:08.297345 2024-07-30 15:30:08.297355 plgnd 041401174 R rec 5476c6cd-b4d2-46e2-b75e-0e76c6e5faa5 +2024-07-30 15:30:08.401716 2024-07-30 15:30:08.401725 plgnd 041370538 R rec 172304ea-e895-407f-8885-c57b6b084829 +2024-07-30 15:30:08.47299 2024-07-30 15:30:08.473002 plgnd 041194152 R rec 2ac428c3-1a05-4cc7-9d47-75d4318de8e9 +2024-07-30 15:30:08.575248 2024-07-30 15:30:08.575258 plgnd 041192443 R rec 65995e3d-43e3-4691-a9b2-a05230ae01c7 +2024-07-30 15:30:08.671635 2024-07-30 15:30:08.671644 plgnd 041167163 R rec 9d321d60-e585-46e7-a3df-c6461fd1c847 +2024-07-30 15:30:08.743171 2024-07-30 15:30:08.743176 plgnd 041154282 R rec dc7688dd-b9bb-4f1b-9ec6-a2eb8d356ad1 +2024-07-30 15:30:08.806911 2024-07-30 15:30:08.806921 plgnd 041112504 R rec 5f814d3c-16d1-4fce-a46d-a767cdcfc892 +2024-07-30 15:30:08.884973 2024-07-30 15:30:08.884984 plgnd 041087828 R rec f1db3a56-a104-4234-be32-ad2c8c32b310 +2024-07-30 15:30:08.962633 2024-07-30 15:30:08.962644 plgnd 041084675 R rec 5f12feeb-ccad-4352-b3a0-46ac70cbc808 +2024-07-30 15:30:09.035193 2024-07-30 15:30:09.035204 plgnd 041063368 R rec 42000b09-341c-4c2f-97ca-e3b7cb2c1e21 +2024-07-30 15:30:09.108746 2024-07-30 15:30:09.108757 plgnd 04106125X R rec e181397a-04d2-4f72-8012-b5f9fddcb41c +2024-07-30 15:30:09.177409 2024-07-30 15:30:09.177419 plgnd 041058445 R rec c7d9dbb6-d9b3-4550-95ca-be0f6fd0323b +2024-07-30 15:30:09.242846 2024-07-30 15:30:09.242856 plgnd 041011848 R rec 6aac298e-f8af-4ec0-be50-35242cfd9a5b +2024-07-30 15:30:09.313145 2024-07-30 15:30:09.313156 plgnd 040994716 R rec 1f613fe5-ca12-4fe9-8f45-ffd87186bb7f +2024-07-30 15:30:09.394075 2024-07-30 15:30:09.394086 plgnd 040967689 R rec 0d0a753c-61af-4e9d-b534-3b4fcbb5f0b9 +2024-07-30 15:30:09.475121 2024-07-30 15:30:09.475131 plgnd 040957977 R rec eb21059d-40f7-40f5-b904-75af4335f4f3 +2024-07-30 15:30:09.549566 2024-07-30 15:30:09.549577 plgnd 040956075 R rec 143a703b-8e49-42cd-97aa-68d73e1b4d4a +2024-07-30 15:30:09.625624 2024-07-30 15:30:09.625635 plgnd 040952789 R rec 367e7c4d-9efc-4fb9-8cd4-6d5435131fc6 +2024-07-30 15:30:09.693381 2024-07-30 15:30:09.693391 plgnd 040912833 R rec 8a65ce41-403b-4527-ac36-d3b5b5451cfb +2024-07-30 15:30:09.770515 2024-07-30 15:30:09.77052 plgnd 040873862 R rec 7e938ab9-3fb0-49ed-a036-abc53354da7a +2024-07-30 15:30:09.840615 2024-07-30 15:30:09.840632 plgnd 040865622 R rec 506c890a-36a5-4256-953a-cf5939bfbcf6 +2024-07-30 15:30:09.910509 2024-07-30 15:30:09.910524 plgnd 040805905 R rec 1c5db0b1-c9e2-4c19-b80f-d4deec2a9468 +2024-07-30 15:30:09.980941 2024-07-30 15:30:09.980953 plgnd 040802558 R rec 970ab1a9-e0ed-40eb-8353-e00afa23e538 +2024-07-30 15:30:10.055438 2024-07-30 15:30:10.055448 plgnd 040794903 R rec 73dd359e-45de-4382-a456-afbb0c9e0780 +2024-07-30 15:30:10.122523 2024-07-30 15:30:10.12254 plgnd 040768996 R rec 67970f49-11d8-457f-a0dd-093583d69dd3 +2024-07-30 15:30:10.223472 2024-07-30 15:30:10.223482 plgnd 040754766 R rec 5fe52511-8087-43d3-aa34-6a8a10722f87 +2024-07-30 15:30:10.292046 2024-07-30 15:30:10.292055 plgnd 040738582 R rec 1c5fd2fa-2c1b-40ce-b234-ef7404098d88 +2024-07-30 15:30:10.359233 2024-07-30 15:30:10.359242 plgnd 040693309 R rec 2866433a-cd46-4bb3-af81-a10c880f1ea4 +2024-07-30 15:30:10.423785 2024-07-30 15:30:10.423794 plgnd 040680223 R rec bb29d316-6b82-4a7e-b99e-5f13d6ac7acd +2024-07-30 15:30:10.497666 2024-07-30 15:30:10.497677 plgnd 040657752 R rec 83f2c3e6-f47f-43d0-afab-7dde58c9818b +2024-07-30 15:30:10.57621 2024-07-30 15:30:10.576223 plgnd 04062501X R rec 2af58cb3-93ff-4bf5-8644-e221f70bcc36 +2024-07-30 15:30:10.661717 2024-07-30 15:30:10.661728 plgnd 040604853 R rec 55f41698-be77-41cc-a0c7-3a267b0c4608 +2024-07-30 15:30:10.729785 2024-07-30 15:30:10.729795 plgnd 04060151X R rec 9799177e-92da-4227-a58b-8852074ba30e +2024-07-30 15:30:10.797104 2024-07-30 15:30:10.79711 plgnd 040594084 R rec f21d0243-d68c-4938-af83-367f5b566656 +2024-07-30 15:30:10.853135 2024-07-30 15:30:10.853251 plgnd 04057749X R rec 53002733-36c0-43a9-8d08-9f47da8dd51e +2024-07-30 15:30:10.919623 2024-07-30 15:30:10.919633 plgnd 040516687 R rec 9313a498-f929-4430-9d15-6e740514ff00 +2024-07-30 15:30:10.987704 2024-07-30 15:30:10.987715 plgnd 040425134 R rec df830fb3-5eb2-49aa-bf3a-c5420622c156 +2024-07-30 15:30:11.056984 2024-07-30 15:30:11.056994 plgnd 04041146X R rec 549b5efe-5a0e-45c7-97ad-422b2707e1fa +2024-07-30 15:30:11.137071 2024-07-30 15:30:11.13708 plgnd 040376044 R rec 8ce2e2d0-54b2-4839-90fd-73166c51b2fb +2024-07-30 15:30:11.217853 2024-07-30 15:30:11.217867 plgnd 04037372X R rec 887129b6-e358-4fa0-9ff3-be164871bad4 +2024-07-30 15:30:11.298408 2024-07-30 15:30:11.298419 plgnd 040368114 R rec 2f7cd1d8-c567-4062-9c75-84e5516abdf5 +2024-07-30 15:30:11.359856 2024-07-30 15:30:11.359866 plgnd 040357422 R rec 657841cb-7190-41cc-a92a-640f577c25e8 +2024-07-30 15:30:11.42622 2024-07-30 15:30:11.426229 plgnd 040346919 R rec ba75f42d-9255-4514-8f01-e8a41aa3c10c +2024-07-30 15:30:11.490927 2024-07-30 15:30:11.490937 plgnd 040304817 R rec 5a42305a-60c3-47b5-bf73-f06fd6a594ec +2024-07-30 15:30:11.557021 2024-07-30 15:30:11.557032 plgnd 040296377 R rec d15b2816-8b30-4efd-9326-1ad8e77a5d1b +2024-07-30 15:30:11.624497 2024-07-30 15:30:11.624507 plgnd 040288099 R rec 5fdf152d-6903-4433-a93f-7c3eace066ee +2024-07-30 15:30:11.698949 2024-07-30 15:30:11.69896 plgnd 04024010X R rec dc1d57ed-0c04-41d8-8da2-f8e1c02dbda3 +2024-07-30 15:30:11.770271 2024-07-30 15:30:11.770283 plgnd 040183408 R rec b64b27c7-dad0-4cee-be41-b309e0599afc +2024-07-30 15:30:11.85063 2024-07-30 15:30:11.850642 plgnd 040093417 R rec b3000a47-179e-4290-91b6-6caa1234842b +2024-07-30 15:30:11.920132 2024-07-30 15:30:11.920142 plgnd 04009300X R rec 0c53fe55-2de9-49aa-9de9-0835a37ca17a +2024-07-30 15:30:11.993309 2024-07-30 15:30:11.99332 plgnd 040055744 R rec 9a7439c4-49cb-4936-a40a-4e0b72b862ff +2024-07-30 15:30:12.067235 2024-07-30 15:30:12.067246 plgnd 040024024 R rec 82167364-9f76-4fa8-a5a9-c5e6b1d1ed0b +2024-07-30 15:30:12.141757 2024-07-30 15:30:12.141768 plgnd 030141605 R rec 7516f1db-a526-49c3-be54-a8d79bb16689 +2024-07-30 15:30:12.216807 2024-07-30 15:30:12.216817 plgnd 030125898 R rec 129e476f-94e5-4994-a5e9-3fe78f061d9d +2024-07-30 15:30:12.294534 2024-07-30 15:30:12.294546 plgnd 030089050 R rec f7b1d4d9-0776-4b28-bcb6-3d8c1086f3e6 +2024-07-30 15:30:12.369888 2024-07-30 15:30:12.369902 plgnd 007749023 R rec 44df8450-97f8-4e45-96a3-59171dc2a173 +2024-07-30 15:30:12.447051 2024-07-30 15:30:12.447062 plgnd 004280768 R rec 3adc9e36-e75c-4cff-adfb-fbb6aee0fce7 +2024-07-30 15:30:12.521958 2024-07-30 15:30:12.521973 plgnd 004205731 R rec f7115ea3-24b0-4035-8556-93317bd59d4e +2024-07-30 15:30:12.597356 2024-07-30 15:30:12.597367 plgnd 002631628 R rec 92208799-eb29-4922-aeb2-c8f5c2083ece +2024-07-30 15:30:12.66923 2024-07-30 15:30:12.669241 plgnd 001101536 R rec 4964c90a-1196-4574-a371-5aa74ed107e1 +2024-07-30 15:30:12.738334 2024-07-30 15:30:12.738343 plgnd 000347078 R rec 9c44f2dc-ed65-4ab3-bef8-4f9fd2dd01cd 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..647aa2fb 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] @@ -359,63 +359,78 @@ files = [ [[package]] name = "cffi" -version = "1.16.0" +version = "1.17.0" 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.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f9338cc05451f1942d0d8203ec2c346c830f8e86469903d5126c1f0a13a2bcbb"}, + {file = "cffi-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0ce71725cacc9ebf839630772b07eeec220cbb5f03be1399e0457a1464f8e1a"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c815270206f983309915a6844fe994b2fa47e5d05c4c4cef267c3b30e34dbe42"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6bdcd415ba87846fd317bee0774e412e8792832e7805938987e4ede1d13046d"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8a98748ed1a1df4ee1d6f927e151ed6c1a09d5ec21684de879c7ea6aa96f58f2"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0a048d4f6630113e54bb4b77e315e1ba32a5a31512c31a273807d0027a7e69ab"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24aa705a5f5bd3a8bcfa4d123f03413de5d86e497435693b638cbffb7d5d8a1b"}, + {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:856bf0924d24e7f93b8aee12a3a1095c34085600aa805693fb7f5d1962393206"}, + {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4304d4416ff032ed50ad6bb87416d802e67139e31c0bde4628f36a47a3164bfa"}, + {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:331ad15c39c9fe9186ceaf87203a9ecf5ae0ba2538c9e898e3a6967e8ad3db6f"}, + {file = "cffi-1.17.0-cp310-cp310-win32.whl", hash = "sha256:669b29a9eca6146465cc574659058ed949748f0809a2582d1f1a324eb91054dc"}, + {file = "cffi-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:48b389b1fd5144603d61d752afd7167dfd205973a43151ae5045b35793232aa2"}, + {file = "cffi-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5d97162c196ce54af6700949ddf9409e9833ef1003b4741c2b39ef46f1d9720"}, + {file = "cffi-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5ba5c243f4004c750836f81606a9fcb7841f8874ad8f3bf204ff5e56332b72b9"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb9333f58fc3a2296fb1d54576138d4cf5d496a2cc118422bd77835e6ae0b9cb"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:435a22d00ec7d7ea533db494da8581b05977f9c37338c80bc86314bec2619424"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1df34588123fcc88c872f5acb6f74ae59e9d182a2707097f9e28275ec26a12d"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df8bb0010fdd0a743b7542589223a2816bdde4d94bb5ad67884348fa2c1c67e8"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b5b9712783415695663bd463990e2f00c6750562e6ad1d28e072a611c5f2a6"}, + {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ffef8fd58a36fb5f1196919638f73dd3ae0db1a878982b27a9a5a176ede4ba91"}, + {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e67d26532bfd8b7f7c05d5a766d6f437b362c1bf203a3a5ce3593a645e870b8"}, + {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45f7cd36186db767d803b1473b3c659d57a23b5fa491ad83c6d40f2af58e4dbb"}, + {file = "cffi-1.17.0-cp311-cp311-win32.whl", hash = "sha256:a9015f5b8af1bb6837a3fcb0cdf3b874fe3385ff6274e8b7925d81ccaec3c5c9"}, + {file = "cffi-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:b50aaac7d05c2c26dfd50c3321199f019ba76bb650e346a6ef3616306eed67b0"}, + {file = "cffi-1.17.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aec510255ce690d240f7cb23d7114f6b351c733a74c279a84def763660a2c3bc"}, + {file = "cffi-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2770bb0d5e3cc0e31e7318db06efcbcdb7b31bcb1a70086d3177692a02256f59"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db9a30ec064129d605d0f1aedc93e00894b9334ec74ba9c6bdd08147434b33eb"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a47eef975d2b8b721775a0fa286f50eab535b9d56c70a6e62842134cf7841195"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f3e0992f23bbb0be00a921eae5363329253c3b86287db27092461c887b791e5e"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6107e445faf057c118d5050560695e46d272e5301feffda3c41849641222a828"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb862356ee9391dc5a0b3cbc00f416b48c1b9a52d252d898e5b7696a5f9fe150"}, + {file = "cffi-1.17.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c1c13185b90bbd3f8b5963cd8ce7ad4ff441924c31e23c975cb150e27c2bf67a"}, + {file = "cffi-1.17.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:17c6d6d3260c7f2d94f657e6872591fe8733872a86ed1345bda872cfc8c74885"}, + {file = "cffi-1.17.0-cp312-cp312-win32.whl", hash = "sha256:c3b8bd3133cd50f6b637bb4322822c94c5ce4bf0d724ed5ae70afce62187c492"}, + {file = "cffi-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:dca802c8db0720ce1c49cce1149ff7b06e91ba15fa84b1d59144fef1a1bc7ac2"}, + {file = "cffi-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6ce01337d23884b21c03869d2f68c5523d43174d4fc405490eb0091057943118"}, + {file = "cffi-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cab2eba3830bf4f6d91e2d6718e0e1c14a2f5ad1af68a89d24ace0c6b17cced7"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14b9cbc8f7ac98a739558eb86fabc283d4d564dafed50216e7f7ee62d0d25377"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b00e7bcd71caa0282cbe3c90966f738e2db91e64092a877c3ff7f19a1628fdcb"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41f4915e09218744d8bae14759f983e466ab69b178de38066f7579892ff2a555"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4760a68cab57bfaa628938e9c2971137e05ce48e762a9cb53b76c9b569f1204"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:011aff3524d578a9412c8b3cfaa50f2c0bd78e03eb7af7aa5e0df59b158efb2f"}, + {file = "cffi-1.17.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:a003ac9edc22d99ae1286b0875c460351f4e101f8c9d9d2576e78d7e048f64e0"}, + {file = "cffi-1.17.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ef9528915df81b8f4c7612b19b8628214c65c9b7f74db2e34a646a0a2a0da2d4"}, + {file = "cffi-1.17.0-cp313-cp313-win32.whl", hash = "sha256:70d2aa9fb00cf52034feac4b913181a6e10356019b18ef89bc7c12a283bf5f5a"}, + {file = "cffi-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:b7b6ea9e36d32582cda3465f54c4b454f62f23cb083ebc7a94e2ca6ef011c3a7"}, + {file = "cffi-1.17.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:964823b2fc77b55355999ade496c54dde161c621cb1f6eac61dc30ed1b63cd4c"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:516a405f174fd3b88829eabfe4bb296ac602d6a0f68e0d64d5ac9456194a5b7e"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dec6b307ce928e8e112a6bb9921a1cb00a0e14979bf28b98e084a4b8a742bd9b"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e4094c7b464cf0a858e75cd14b03509e84789abf7b79f8537e6a72152109c76e"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2404f3de742f47cb62d023f0ba7c5a916c9c653d5b368cc966382ae4e57da401"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3aa9d43b02a0c681f0bfbc12d476d47b2b2b6a3f9287f11ee42989a268a1833c"}, + {file = "cffi-1.17.0-cp38-cp38-win32.whl", hash = "sha256:0bb15e7acf8ab35ca8b24b90af52c8b391690ef5c4aec3d31f38f0d37d2cc499"}, + {file = "cffi-1.17.0-cp38-cp38-win_amd64.whl", hash = "sha256:93a7350f6706b31f457c1457d3a3259ff9071a66f312ae64dc024f049055f72c"}, + {file = "cffi-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1a2ddbac59dc3716bc79f27906c010406155031a1c801410f1bafff17ea304d2"}, + {file = "cffi-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6327b572f5770293fc062a7ec04160e89741e8552bf1c358d1a23eba68166759"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbc183e7bef690c9abe5ea67b7b60fdbca81aa8da43468287dae7b5c046107d4"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bdc0f1f610d067c70aa3737ed06e2726fd9d6f7bfee4a351f4c40b6831f4e82"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6d872186c1617d143969defeadac5a904e6e374183e07977eedef9c07c8953bf"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0d46ee4764b88b91f16661a8befc6bfb24806d885e27436fdc292ed7e6f6d058"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f76a90c345796c01d85e6332e81cab6d70de83b829cf1d9762d0a3da59c7932"}, + {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0e60821d312f99d3e1569202518dddf10ae547e799d75aef3bca3a2d9e8ee693"}, + {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:eb09b82377233b902d4c3fbeeb7ad731cdab579c6c6fda1f763cd779139e47c3"}, + {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:24658baf6224d8f280e827f0a50c46ad819ec8ba380a42448e24459daf809cf4"}, + {file = "cffi-1.17.0-cp39-cp39-win32.whl", hash = "sha256:0fdacad9e0d9fc23e519efd5ea24a70348305e8d7d85ecbb1a5fa66dc834e7fb"}, + {file = "cffi-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:7cbc78dc018596315d4e7841c8c3a7ae31cc4d638c9b627f87d52e8abaaf2d29"}, + {file = "cffi-1.17.0.tar.gz", hash = "sha256:f3157624b7558b914cb039fd1af735e5e8049a87c817cc215109ad1c8779df76"}, ] [package.dependencies] @@ -1330,13 +1345,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] @@ -1572,13 +1587,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 +1606,21 @@ test = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "p [[package]] name = "importlib-resources" -version = "6.4.0" +version = "6.4.3" 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.3-py3-none-any.whl", hash = "sha256:2d6dfe3b9e055f72495c2085890837fc8c758984e209115c8792bddcb762cd93"}, + {file = "importlib_resources-6.4.3.tar.gz", hash = "sha256:4a202b9b9d38563b46da59221d77bb73862ab5d79d461307bcb826d725448b98"}, ] [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)"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +test = ["jaraco.test (>=5.4)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)", "zipp (>=3.17)"] [[package]] name = "infinity" @@ -1896,13 +1911,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 +2205,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 +2221,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 +2247,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 +2270,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 +2508,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 +2570,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 +2720,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 +2812,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 +2826,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]] @@ -3398,13 +3411,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 +3475,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 +3489,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 +3758,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 +3934,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 +4146,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 +4196,19 @@ tornado = ["tornado (>=5)"] [[package]] name = "setuptools" -version = "71.1.0" +version = "73.0.1" 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-73.0.1-py3-none-any.whl", hash = "sha256:b208925fcb9f7af924ed2dc04708ea89791e24bde0d3020b27df0e116088b34e"}, + {file = "setuptools-73.0.1.tar.gz", hash = "sha256:d59a3e788ab7e012ab2c4baed1b376da6366883ee20d7a5fc426816e3d7b1193"}, ] [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"] +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)"] +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)"] +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 (>=0.44.0)"] [[package]] name = "sickle" @@ -4197,109 +4227,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 +4426,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 +4488,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.53" 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.53-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:b61ac5457d91b5629a3dea2b258deb4cdd35ac8f6fa2031d2b9b2fff5b3396da"}, + {file = "SQLAlchemy-1.4.53-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:1a96aa8d425047551676b0e178ddb0683421e78eda879ab55775128b2e612cae"}, + {file = "SQLAlchemy-1.4.53-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e10ac36f0b994235c13388b39598bf27219ec8bdea5be99bdac612b01cbe525"}, + {file = "SQLAlchemy-1.4.53-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:437592b341a3229dd0443c9c803b0bf0a466f8f539014fef6cdb9c06b7edb7f9"}, + {file = "SQLAlchemy-1.4.53-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:784272ceb5eb71421fea9568749bcbe8bd019261a0e2e710a7efa76057af2499"}, + {file = "SQLAlchemy-1.4.53-cp310-cp310-win32.whl", hash = "sha256:122d7b5722df1a24402c6748bbb04687ef981493bb559d0cc0beffe722e0e6ed"}, + {file = "SQLAlchemy-1.4.53-cp310-cp310-win_amd64.whl", hash = "sha256:4604d42b2abccba266d3f5bbe883684b5df93e74054024c70d3fbb5eea45e530"}, + {file = "SQLAlchemy-1.4.53-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fb8e15dfa47f5de11ab073e12aadd6b502cfb7ac4bafd18bd18cfd1c7d13dbbc"}, + {file = "SQLAlchemy-1.4.53-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc8be4df55e8fde3006d9cb1f6b3df2ba26db613855dc4df2c0fcd5ec15cb3b7"}, + {file = "SQLAlchemy-1.4.53-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86b11640251f9a9789fd96cd6e5d176b1c230230c70ad40299bcbcc568451b4c"}, + {file = "SQLAlchemy-1.4.53-cp311-cp311-win32.whl", hash = "sha256:cd534c716f86bdf95b7b984a34ee278c91d1b1d7d183e7e5ff878600b1696046"}, + {file = "SQLAlchemy-1.4.53-cp311-cp311-win_amd64.whl", hash = "sha256:6dd06572872ca13ef5a90306a3e5af787498ddaa17fb00109b1243642646cd69"}, + {file = "SQLAlchemy-1.4.53-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:2774c24c405136c3ef472e2352bdca7330659d481fbf2283f996c0ef9eb90f22"}, + {file = "SQLAlchemy-1.4.53-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68a614765197b3d13a730d631a78c3bb9b3b72ba58ed7ab295d58d517464e315"}, + {file = "SQLAlchemy-1.4.53-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d13d4dfbc6e52363886b47cf02cf68c5d2a37c468626694dc210d7e97d4ad330"}, + {file = "SQLAlchemy-1.4.53-cp312-cp312-win32.whl", hash = "sha256:197065b91456574d70b6459bfa62bc0b52a4960a29ef923c375ec427274a3e05"}, + {file = "SQLAlchemy-1.4.53-cp312-cp312-win_amd64.whl", hash = "sha256:421306c4b936b0271a3ce2dc074928d5ece4a36f9c482daa5770f44ecfc3a883"}, + {file = "SQLAlchemy-1.4.53-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:13fc34b35d8ddb3fbe3f8fcfdf6c2546e676187f0fb20f5774da362ddaf8fa2d"}, + {file = "SQLAlchemy-1.4.53-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:626be971ff89541cfd3e70b54be00b57a7f8557204decb6223ce0428fec058f3"}, + {file = "SQLAlchemy-1.4.53-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:991e42fdfec561ebc6a4fae7161a86d129d6069fa14210b96b8dd752afa7059c"}, + {file = "SQLAlchemy-1.4.53-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:95123f3a1e0e8020848fd32ba751db889a01a44e4e4fef7e58c87ddd0b2fca59"}, + {file = "SQLAlchemy-1.4.53-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c58e011e9e6373b3a091d83f20601fb335a3b4bace80bfcb914ac168aad3b70d"}, + {file = "SQLAlchemy-1.4.53-cp37-cp37m-macosx_11_0_x86_64.whl", hash = "sha256:670c7769bf5dcae9aff331247b5d82fe635c63731088a46ce68ba2ba519ef36e"}, + {file = "SQLAlchemy-1.4.53-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:07ba54f09033d387ae9df8d62cbe211ed7304e0bfbece1f8c55e21db9fae5c11"}, + {file = "SQLAlchemy-1.4.53-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a38834b4c183c33daf58544281395aad2e985f0b47cca1e88ea5ada88344e63"}, + {file = "SQLAlchemy-1.4.53-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:616492f5315128a847f293a7c552f3561ac7e996d2aa5dc46bef4fb0d3781f1d"}, + {file = "SQLAlchemy-1.4.53-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0cf8c0af9563892c6632f7343bc393dfce6eeef8e4d10c5fadba9c0390520bd"}, + {file = "SQLAlchemy-1.4.53-cp37-cp37m-win32.whl", hash = "sha256:c05fe05941424c2f3747a8952381b7725e24cba2ca00141380e54789d5b616b6"}, + {file = "SQLAlchemy-1.4.53-cp37-cp37m-win_amd64.whl", hash = "sha256:93e90aa3e3b2f8e8cbae4d5509f8e0cf82972378d323c740a8df1c1e9f484172"}, + {file = "SQLAlchemy-1.4.53-cp38-cp38-macosx_12_0_x86_64.whl", hash = "sha256:9d7368df54d3ed45a18955f6cec38ebe075290594ac0d5c87a8ddaff7e10de27"}, + {file = "SQLAlchemy-1.4.53-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:89d8ac4158ef68eea8bb0f6dd0583127d9aa8720606964ba8eee20b254f9c83a"}, + {file = "SQLAlchemy-1.4.53-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:16bb9fa4d00b4581b14d9f0e2224dc7745b854aa4687738279af0f48f7056c98"}, + {file = "SQLAlchemy-1.4.53-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4fe5168d0249c23f537950b6d75935ff2709365a113e29938a979aec36668ecf"}, + {file = "SQLAlchemy-1.4.53-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b8608d162d3bd29d807aab32c3fb6e2f8e225a43d1c54c917fed38513785380"}, + {file = "SQLAlchemy-1.4.53-cp38-cp38-win32.whl", hash = "sha256:a9d4d132198844bd6828047135ce7b887687c92925049a2468a605fc775c7a1a"}, + {file = "SQLAlchemy-1.4.53-cp38-cp38-win_amd64.whl", hash = "sha256:c15d1f1fcf1f9bec0499ae1d9132b950fcc7730f2d26d10484c8808b4e077816"}, + {file = "SQLAlchemy-1.4.53-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:edf094a20a386ff2ec73de65ef18014b250259cb860edc61741e240ca22d6981"}, + {file = "SQLAlchemy-1.4.53-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:83a9c3514ff19d9d30d8a8d378b24cd1dfa5528d20891481cb5f196117db6a48"}, + {file = "SQLAlchemy-1.4.53-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eaaeedbceb4dfd688fff2faf25a9a87a391f548811494f7bff7fa701b639abc3"}, + {file = "SQLAlchemy-1.4.53-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d021699b9007deb7aa715629078830c99a5fec2753d9bdd5ff33290d363ef755"}, + {file = "SQLAlchemy-1.4.53-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0465b8a68f8f4de754c1966c45b187ac784ad97bc9747736f913130f0e1adea0"}, + {file = "SQLAlchemy-1.4.53-cp39-cp39-win32.whl", hash = "sha256:5f67b9e9dcac3241781e96575468d55a42332157dee04bdbf781df573dff5f85"}, + {file = "SQLAlchemy-1.4.53-cp39-cp39-win_amd64.whl", hash = "sha256:a8c2f2a0b2c4e3b86eb58c9b6bb98548205eea2fba9dae4edfd29dc6aebbe95a"}, + {file = "SQLAlchemy-1.4.53.tar.gz", hash = "sha256:5e6ab710c4c064755fd92d1a417bef360228a19bdf0eee32b03aa0f5f8e9fe0d"}, ] [package.dependencies] @@ -4539,17 +4579,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 +4715,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.20240821" 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.20240821.tar.gz", hash = "sha256:9649d1dcb6fef1046fb18bebe9ea2aa0028b160918518c34589a46045f6ebd98"}, + {file = "types_python_dateutil-2.9.0.20240821-py3-none-any.whl", hash = "sha256:f5889fcb4e63ed4aaa379b44f93c32593d50b9a94c9a60a0c854d8cc3511cd57"}, ] [[package]] @@ -5053,13 +5093,13 @@ timezone = ["python-dateutil"] [[package]] name = "zipp" -version = "3.19.2" +version = "3.20.0" 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.0-py3-none-any.whl", hash = "sha256:58da6168be89f0be59beb194da1250516fdaa062ccebd30127ac65d30045e10d"}, + {file = "zipp-3.20.0.tar.gz", hash = "sha256:0145e43d89664cfe1a2e533adc75adafed82fe2da404b4bbb6b026c0157bdb31"}, ] [package.extras] @@ -5069,4 +5109,4 @@ test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", [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..6c6941ba 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,190 @@ def deleted(self): return self.get("deleted") -class ReroIndexer(RecordIndexer): +class ConceptPlaceRecord(EntityRecord): + """Mef concept place class.""" + + def get_association_info(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: + query = association_search().filter( + "term", _association_identifier=association_identifier + ) + if query.count() > 1: + current_app.logger.error( + f"MULTIPLE ASSOCIATIONS FOUND FOR: {self.name} {self.pid} | identifier: {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, + ) + print("-------> create", mef_record.pid, Action.CREATE) + 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 + ) + 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 = {} + print("************", self.name, self.pid) + 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, + ) + } + print("-------> add ref", self.name) + 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 + print("-------> pop ref", association_name) + 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 + print("-------> pop ass ref", association_name, mef_associated_record.pid, new_mef_record.pid) + + mef_record = new_mef_record.replace( + data=new_mef_record, dbcommit=dbcommit, reindex=reindex + ) + actions[mef_record.pid] = Action.UPDATE + print("=======>", actions, self.name, mef_record.get(self.name), association_name, mef_record.get(association_name)) + + 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..27e2c45a 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. 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..52de69b0 --- /dev/null +++ b/rero_mef/concepts/gnd/api.py @@ -0,0 +1,115 @@ +# -*- 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 in current_app.config.get("RERO_MEF_PLACES_GND_MATCHES", []): + for match in self.get(match_type, []): + 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_info( + 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..f47ecaf4 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 len(pids) == 1: + return pids[0] + + @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_info( + 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..47c27d2d 100644 --- a/rero_mef/config.py +++ b/rero_mef/config.py @@ -38,6 +38,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 +141,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 +200,8 @@ "agrero": AgentReroTransformation, "corero": ConceptReroTransformation, "cidref": ConceptIdrefTransformation, + "cognd": ConceptGndTransformation, + "pidref": PlaceIdrefTransformation, "pidref": PlaceIdrefTransformation, "plgnd": PlaceGndTransformation, } @@ -230,6 +227,7 @@ "?version=1.1&operation=searchRetrieve&query=idn%3D{id}" "&recordSchema=MARC21-xml" ) +RERO_MEF_PLACES_GND_MATCHES = ["exactMatch", "closeMatch"] SEARCH_CLIENT_CONFIG = dict( timeout=60, @@ -249,21 +247,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 +268,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 +291,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 +312,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 +333,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 +354,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 +375,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 +396,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 +441,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 +462,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 +483,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 +499,7 @@ RERO_AGENTS = ["aidref", "aggnd", "agrero"] -RERO_CONCEPTS = ["cidref", "corero"] +RERO_CONCEPTS = ["cidref", "corero", "cognd"] RERO_PLACES = ["pidref", "plgnd"] @@ -546,6 +511,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 +597,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 +607,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 +619,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 +651,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 +677,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 +687,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 +699,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 +709,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..53761e69 100644 --- a/rero_mef/jsonschemas/common/concept-v0.0.1.json +++ b/rero_mef/jsonschemas/common/concept-v0.0.1.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-04/schema#", - "title": "Schema for IdRef concept", + "title": "Schema for concepts", "type": "object", "required": [ "$schema", @@ -35,33 +35,7 @@ "minLength": 1 }, "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" }, "bnf_type": { "title": "Genre or Form", @@ -209,6 +183,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 +220,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..ab4cace9 100644 --- a/rero_mef/jsonschemas/common/place-v0.0.1.json +++ b/rero_mef/jsonschemas/common/place-v0.0.1.json @@ -34,33 +34,7 @@ "minLength": 1 }, "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": 1 - } - } - } + "$ref": "https://mef.rero.ch/schemas/common/identified_by-v0.0.1.json#/identifiedBy" }, "bnf_type": { "title": "Genre or Form", @@ -208,6 +182,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 +219,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..191655e7 --- /dev/null +++ b/rero_mef/marctojson/do_gnd_concepts.py @@ -0,0 +1,305 @@ +# -*- 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, + } + ) + 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": " , "} + 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": " , "} + 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..70102391 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) @@ -238,65 +239,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": " , "} + 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 +310,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..42e0a54a 100644 --- a/rero_mef/marctojson/do_idref_concepts.py +++ b/rero_mef/marctojson/do_idref_concepts.py @@ -114,21 +114,30 @@ 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: + self.json_dict.setdefault("identifiedBy", []).append( + { + "source": "BNF", + "type": "bf:Nbn", + "value": subfield_z, + } + ) def trans_idref_deleted(self): """Transformation deleted leader 5 == d.""" @@ -225,11 +234,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..22144633 100644 --- a/rero_mef/marctojson/do_idref_places.py +++ b/rero_mef/marctojson/do_idref_places.py @@ -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..785779f7 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_info( + 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..181638c4 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_info( + 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..5debc1f2 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 @@ -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,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..4b7e6664 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,305 @@ 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", + }, + ], + }, + { + "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", + }, + ], + }, + ], + "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..12f92452 --- /dev/null +++ b/tests/unit/concepts/test_concepts_gnd_transformation.py @@ -0,0 +1,264 @@ +# -*- 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", + }, + ] + } + + +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..03712606 100644 --- a/tests/unit/concepts/test_concept_idref_transformation.py +++ b/tests/unit/concepts/test_concepts_idref_transformation.py @@ -305,20 +305,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 +448,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": "BNF", "type": "bf:Nbn", "value": "FRBNF11862089"}, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124265140", + }, ], "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..793f177c 100644 --- a/tests/unit/places/test_places_gnd_transformation.py +++ b/tests/unit/places/test_places_gnd_transformation.py @@ -107,7 +107,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 +130,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 +148,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..a90a54a0 100644 --- a/tests/unit/places/test_places_idref_transformation.py +++ b/tests/unit/places/test_places_idref_transformation.py @@ -188,20 +188,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"}, {