From c0654a56bedad08bf2325668fd67f40918ab07f1 Mon Sep 17 00:00:00 2001 From: Peter Weber Date: Thu, 5 Aug 2021 19:51:06 +0200 Subject: [PATCH] concepts: add MEF * Adds MEF concepts class. * Splits serialiazers. * Adds coveralls to github actions. * Adds tests to increase test coverage. Co-Authored-by: Peter Weber --- .coveragerc | 10 + .../workflows/continuous-integration-test.yml | 29 +- README.rst | 17 +- poetry.lock | 482 +- pytest.ini | 3 +- rero_mef/agents/api.py | 58 +- rero_mef/agents/cli.py | 24 +- .../agents/gnd/jsonresolvers/gnd_resolver.py | 2 +- rero_mef/agents/gnd/views.py | 11 +- .../idref/jsonresolvers/idref_resolver.py | 2 +- rero_mef/agents/idref/views.py | 11 +- rero_mef/agents/mef/api.py | 328 +- .../mef/jsonschemas/mef/mef-v0.0.1.json | 8 +- rero_mef/agents/mef/listner.py | 38 - rero_mef/{ => agents/mef}/serializers.py | 48 +- rero_mef/agents/mef/views.py | 7 +- .../rero/jsonresolvers/rero_resolver.py | 2 +- rero_mef/agents/rero/views.py | 7 +- rero_mef/agents/serializers.py | 74 + rero_mef/agents/tasks.py | 26 +- rero_mef/agents/utils.py | 27 +- rero_mef/agents/viaf/api.py | 38 +- .../agents/viaf/jsonresolvers/__init__.py | 18 + .../viaf/jsonresolvers/viaf_resolver.py | 32 + rero_mef/agents/viaf/serializers.py | 88 + rero_mef/agents/viaf/views.py | 7 +- rero_mef/api.py | 62 +- rero_mef/api_mef.py | 266 + rero_mef/cli.py | 96 +- rero_mef/concepts/api.py | 105 +- rero_mef/concepts/cli.py | 108 + rero_mef/concepts/mef/__init__.py | 18 + rero_mef/concepts/mef/api.py | 103 + rero_mef/concepts/mef/fetchers.py | 28 + .../concepts/mef/jsonresolvers/__init__.py | 18 + .../mef/jsonresolvers/mef_resolver.py | 32 + rero_mef/concepts/mef/jsonschemas/__init__.py | 20 + .../concepts_mef/mef-concept-v0.0.1.json | 31 + rero_mef/concepts/mef/mappings/__init__.py | 18 + rero_mef/concepts/mef/mappings/v7/__init__.py | 18 + .../v7/concepts_mef/mef-concept-v0.0.1.json | 154 + rero_mef/concepts/mef/minters.py | 36 + rero_mef/concepts/mef/models.py | 43 + rero_mef/concepts/mef/providers.py | 56 + rero_mef/concepts/mef/serializers.py | 90 + rero_mef/concepts/rero/api.py | 14 - rero_mef/concepts/serializers.py | 62 + rero_mef/concepts/tasks.py | 53 + rero_mef/config.py | 89 +- rero_mef/ext.py | 5 - rero_mef/marctojson/do_gnd_agent.py | 4 +- rero_mef/marctojson/do_rero_agent.py | 22 +- rero_mef/marctojson/do_rero_concepts.py | 4 +- rero_mef/marctojson/logger.py | 2 +- rero_mef/monitoring.py | 10 +- rero_mef/permissions.py | 1 + rero_mef/utils.py | 45 +- scripts/setup | 23 +- setup.py | 31 +- tests/agents/conftest.py | 161 - tests/agents/helpers.py | 64 - tests/api/test_monitoring_rest.py | 114 + tests/api/test_view_agents_gnd.py | 67 + tests/api/test_view_agents_idref.py | 67 + tests/api/test_view_agents_mef.py | 76 + tests/api/test_view_agents_rero.py | 67 + tests/api/test_view_agents_viaf.py | 64 + tests/conftest.py | 170 + tests/data/aggnd.json | 6700 +++++++++++ tests/data/aggnd_metadata.csv | 497 + tests/data/aggnd_pidstore.csv | 497 + tests/data/agrero.json | 1920 +++ tests/data/agrero_metadata.csv | 195 + tests/data/agrero_pidstore.csv | 195 + tests/data/aidref.json | 3991 ++++++ tests/data/aidref_metadata.csv | 265 + tests/data/aidref_pidstore.csv | 265 + tests/data/mef_id.csv | 0 tests/data/mef_metadata.csv | 0 tests/data/mef_pidstore.csv | 0 tests/data/viaf.txt | 10000 ++++++++++++++++ tests/test_version.py | 1 - tests/ui/conftest.py | 1 - tests/{ => unit}/agents/agents_helpers.py | 14 +- .../agents/examples/xml_minimal_record.xml | 0 .../agents/test_agent_gnd_transformation.py} | 182 +- .../test_agent_idref_transformation.py} | 82 +- .../agents/test_agent_rero_transformation.py} | 83 +- tests/{ => unit}/agents/test_agents_api.py | 58 +- .../agents/test_agents_api_no_viaf.py | 14 +- .../agents/test_agents_api_updates.py | 71 +- tests/unit/agents/test_agents_mef_api.py | 78 + .../agents/test_gnd_contributions_person.py | 0 .../agents/test_idref_contributions_person.py | 0 tests/{ => unit}/agents/test_ref_resolver.py | 11 +- .../agents/test_rero_contributions_person.py | 0 tests/{ => unit}/agents/test_signals.py | 6 +- tests/{ => unit}/concepts/concepts_helpers.py | 4 +- .../concepts/examples/xml_minimal_record.xml | 0 .../test_concept_rero_transformation.py} | 0 tests/{concepts => unit}/conftest.py | 15 +- tests/unit/test_agents_cli.py | 95 + tests/unit/test_api.py | 64 + tests/unit/test_cli.py | 35 + tests/unit/test_concepts_task.py | 45 + tests/{api => unit}/test_marctojson_helper.py | 2 +- tests/unit/test_monitoring.py | 89 + tests/utils.py | 39 + 108 files changed, 28294 insertions(+), 1134 deletions(-) create mode 100644 .coveragerc delete mode 100644 rero_mef/agents/mef/listner.py rename rero_mef/{ => agents/mef}/serializers.py (65%) create mode 100644 rero_mef/agents/serializers.py create mode 100644 rero_mef/agents/viaf/jsonresolvers/__init__.py create mode 100644 rero_mef/agents/viaf/jsonresolvers/viaf_resolver.py create mode 100644 rero_mef/agents/viaf/serializers.py create mode 100644 rero_mef/api_mef.py create mode 100644 rero_mef/concepts/cli.py create mode 100644 rero_mef/concepts/mef/__init__.py create mode 100644 rero_mef/concepts/mef/api.py create mode 100644 rero_mef/concepts/mef/fetchers.py create mode 100644 rero_mef/concepts/mef/jsonresolvers/__init__.py create mode 100644 rero_mef/concepts/mef/jsonresolvers/mef_resolver.py create mode 100644 rero_mef/concepts/mef/jsonschemas/__init__.py create mode 100644 rero_mef/concepts/mef/jsonschemas/concepts_mef/mef-concept-v0.0.1.json create mode 100644 rero_mef/concepts/mef/mappings/__init__.py create mode 100644 rero_mef/concepts/mef/mappings/v7/__init__.py create mode 100644 rero_mef/concepts/mef/mappings/v7/concepts_mef/mef-concept-v0.0.1.json create mode 100644 rero_mef/concepts/mef/minters.py create mode 100644 rero_mef/concepts/mef/models.py create mode 100644 rero_mef/concepts/mef/providers.py create mode 100644 rero_mef/concepts/mef/serializers.py create mode 100644 rero_mef/concepts/serializers.py create mode 100644 rero_mef/concepts/tasks.py delete mode 100644 tests/agents/conftest.py delete mode 100644 tests/agents/helpers.py create mode 100644 tests/api/test_monitoring_rest.py create mode 100644 tests/api/test_view_agents_gnd.py create mode 100644 tests/api/test_view_agents_idref.py create mode 100644 tests/api/test_view_agents_mef.py create mode 100644 tests/api/test_view_agents_rero.py create mode 100644 tests/api/test_view_agents_viaf.py create mode 100644 tests/data/aggnd.json create mode 100644 tests/data/aggnd_metadata.csv create mode 100644 tests/data/aggnd_pidstore.csv create mode 100644 tests/data/agrero.json create mode 100644 tests/data/agrero_metadata.csv create mode 100644 tests/data/agrero_pidstore.csv create mode 100644 tests/data/aidref.json create mode 100644 tests/data/aidref_metadata.csv create mode 100644 tests/data/aidref_pidstore.csv create mode 100644 tests/data/mef_id.csv create mode 100644 tests/data/mef_metadata.csv create mode 100644 tests/data/mef_pidstore.csv create mode 100644 tests/data/viaf.txt rename tests/{ => unit}/agents/agents_helpers.py (80%) rename tests/{ => unit}/agents/examples/xml_minimal_record.xml (100%) rename tests/{agents/test_gnd_agent.py => unit/agents/test_agent_gnd_transformation.py} (68%) rename tests/{agents/test_idref_agent.py => unit/agents/test_agent_idref_transformation.py} (86%) rename tests/{agents/test_rero_agent.py => unit/agents/test_agent_rero_transformation.py} (68%) rename tests/{ => unit}/agents/test_agents_api.py (66%) rename tests/{ => unit}/agents/test_agents_api_no_viaf.py (85%) rename tests/{ => unit}/agents/test_agents_api_updates.py (62%) create mode 100644 tests/unit/agents/test_agents_mef_api.py rename tests/{ => unit}/agents/test_gnd_contributions_person.py (100%) rename tests/{ => unit}/agents/test_idref_contributions_person.py (100%) rename tests/{ => unit}/agents/test_ref_resolver.py (90%) rename tests/{ => unit}/agents/test_rero_contributions_person.py (100%) rename tests/{ => unit}/agents/test_signals.py (90%) rename tests/{ => unit}/concepts/concepts_helpers.py (92%) rename tests/{ => unit}/concepts/examples/xml_minimal_record.xml (100%) rename tests/{concepts/test_rero_concepts.py => unit/concepts/test_concept_rero_transformation.py} (100%) rename tests/{concepts => unit}/conftest.py (75%) create mode 100644 tests/unit/test_agents_cli.py create mode 100644 tests/unit/test_api.py create mode 100644 tests/unit/test_cli.py create mode 100644 tests/unit/test_concepts_task.py rename tests/{api => unit}/test_marctojson_helper.py (99%) create mode 100644 tests/unit/test_monitoring.py create mode 100644 tests/utils.py diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 00000000..36b83d22 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,10 @@ +[run] +relative_files = True +omit = + rero_mef/cli.py + rero_mef/agents/cli.py + rero_mef/concepts/cli.py + rero_mef/marctojson/logger.py + rero_mef/marctojson/helper.py + rero_mef/marctojson/records.py + rero_mef/marctojson/do_skeleton.py diff --git a/.github/workflows/continuous-integration-test.yml b/.github/workflows/continuous-integration-test.yml index 994ba2db..0174d012 100644 --- a/.github/workflows/continuous-integration-test.yml +++ b/.github/workflows/continuous-integration-test.yml @@ -9,7 +9,7 @@ jobs: dependencies: ['development', 'deploy'] steps: - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.5.0 + uses: styfle/cancel-workflow-action@0.9.1 with: access_token: ${{ github.token }} @@ -52,31 +52,20 @@ jobs: if: ${{ matrix.dependencies == 'development' }} run: | poetry run bootstrap --ci + pip install --upgrade coveralls - name: Bootstrap deploy if: ${{ matrix.dependencies == 'deploy' }} run: | poetry run bootstrap --ci --deploy E2E=yes - - name: Update coveralls - run: | - poetry run pip install --upgrade coveralls - - name: Run Test run: poetry run run-tests - # - name: Upload Coverage ${{ matrix.tests }} - # if: ${{ matrix.dependencies == 'locked' }} - # env: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # COVERALLS_FLAG_NAME: test - # COVERALLS_PARALLEL: true - # run: poetry run coveralls - # - # - name: Finished Coverage ${{ matrix.tests }} - # if: ${{ matrix.dependencies == 'locked' }} - # env: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # COVERALLS_PARALLEL_FINISHED: true - # run: | - # poetry run coveralls --finish + - name: Coveralls + if: ${{ matrix.dependencies == 'development' }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + COVERALLS_SERVICE_NAME: github + run: | + coveralls \ No newline at end of file diff --git a/README.rst b/README.rst index da2f4842..f1eb6ed0 100644 --- a/README.rst +++ b/README.rst @@ -18,14 +18,21 @@ RERO MEF ========== -.. image:: https://img.shields.io/travis/rero/rero-mef.svg - :target: https://travis-ci.org/rero/rero-mef +.. image:: https://github.com/rero/rero-mef/workflows/build/badge.svg + :alt: Github actions status + :target: https://github.com/rero/rero-mef/actions?query=workflow%3Abuild .. image:: https://img.shields.io/coveralls/rero/rero-mef.svg - :target: https://coveralls.io/r/rero/rero-mef + :alt: Coveralls + :target: https://coveralls.io/rero/rero-mef -.. image:: https://img.shields.io/github/license/rero/rero-mef.svg - :target: https://github.com/rero/rero-mef/blob/master/LICENSE +.. image:: https://img.shields.io/github/tag/rero/rero-mef.svg + :alt: Release Number + :target: https://github.com/rero/rero-mef/releases/latest + +.. image:: https://img.shields.io/badge/License-AGPL%20v3-blue.svg + :alt: License + :target: http://www.gnu.org/licenses/agpl-3.0.html MEF (Multilingual Entity File) server with records for persons, works, etc. for reuse in integrated library systems (ILS). diff --git a/poetry.lock b/poetry.lock index 0c9f471d..e27e6b73 100644 --- a/poetry.lock +++ b/poetry.lock @@ -63,6 +63,14 @@ python-dateutil = ">=2.7.0" python = "<3.8" version = "*" +[[package]] +category = "main" +description = "Async generators and context managers for Python 3.5+" +name = "async-generator" +optional = false +python-versions = ">=3.5" +version = "1.10" + [[package]] category = "main" description = "Atomic file writes." @@ -260,7 +268,7 @@ description = "Python package for providing Mozilla's CA Bundle." name = "certifi" optional = false python-versions = "*" -version = "2021.5.30" +version = "2021.10.8" [[package]] category = "main" @@ -268,7 +276,7 @@ description = "Foreign Function Interface for Python calling C code." name = "cffi" optional = false python-versions = "*" -version = "1.14.6" +version = "1.15.0" [package.dependencies] pycparser = "*" @@ -280,7 +288,7 @@ marker = "python_version >= \"3\"" name = "charset-normalizer" optional = false python-versions = ">=3.5.0" -version = "2.0.6" +version = "2.0.7" [package.extras] unicode_backport = ["unicodedata2"] @@ -397,6 +405,15 @@ sdist = ["setuptools_rust (>=0.11.4)"] ssh = ["bcrypt (>=3.1.5)"] test = ["pytest (>=6.2.0)", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,<3.79.2 || >3.79.2)"] +[[package]] +category = "main" +description = "A backport of the dataclasses module for Python 3.6" +marker = "python_version < \"3.7\"" +name = "dataclasses" +optional = false +python-versions = ">=3.6, <3.7" +version = "0.8" + [[package]] category = "main" description = "Decorators for Humans" @@ -643,14 +660,19 @@ tests = ["check-manifest (>=0.25)", "coverage (>=4.0)", "isort (>=4.3.4)", "pydo [[package]] category = "main" -description = "Flask-Collect -- Collect static files in Flask application" -name = "flask-collect" +description = "Flask-Collect-Invenio -- Collect static files in Flask application" +name = "flask-collect-invenio" optional = false python-versions = "*" -version = "1.2.2" +version = "1.4.0" [package.dependencies] -flask = ">=0.10.1" +Flask = ">=0.10.1" + +[package.extras] +all = ["Sphinx (>=3)", "black (>=21.9b0)", "check-manifest (>=0.42)", "coverage (>=5.3,<6)", "pytest (>=6,<7)", "pytest-cov (>=2.10.1)", "pytest-flask (>=1.0.0)", "pytest-isort (>=1.2.0)", "pytest-pycodestyle (>=2.2.0)", "pytest-pydocstyle (>=2.2.0)"] +docs = ["Sphinx (>=3)"] +tests = ["black (>=21.9b0)", "check-manifest (>=0.42)", "coverage (>=5.3,<6)", "pytest (>=6,<7)", "pytest-cov (>=2.10.1)", "pytest-flask (>=1.0.0)", "pytest-isort (>=1.2.0)", "pytest-pycodestyle (>=2.2.0)", "pytest-pydocstyle (>=2.2.0)"] [[package]] category = "main" @@ -874,13 +896,21 @@ optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" version = "0.18.2" +[[package]] +category = "main" +description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +name = "h11" +optional = false +python-versions = ">=3.6" +version = "0.12.0" + [[package]] category = "main" description = "Internationalized Domain Names in Applications (IDNA)" name = "idna" optional = false python-versions = ">=3.5" -version = "3.2" +version = "3.3" [[package]] category = "main" @@ -926,7 +956,7 @@ marker = "python_version < \"3.9\"" name = "importlib-resources" optional = false python-versions = ">=3.6" -version = "5.2.2" +version = "5.3.0" [package.dependencies] [package.dependencies.zipp] @@ -935,7 +965,7 @@ version = ">=3.1.0" [package.extras] docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"] -testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-black (>=0.3.7)", "pytest-mypy"] +testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-black (>=0.3.7)", "pytest-mypy"] [[package]] category = "main" @@ -1095,7 +1125,7 @@ description = "Invenio user management and authentication." name = "invenio-accounts" optional = false python-versions = "*" -version = "1.4.4" +version = "1.4.8" [package.dependencies] Flask-Breadcrumbs = ">=0.4.0" @@ -1108,7 +1138,7 @@ Flask-WTF = ">=0.14.3" cryptography = ">=3.0.0" email-validator = ">=1.0.5" future = ">=0.16.0" -invenio-base = ">=1.2.3" +invenio-base = ">=1.2.5" invenio-celery = ">=1.1.2" invenio-i18n = ">=1.2.0" invenio-rest = ">=1.2.1" @@ -1181,13 +1211,12 @@ description = "Media assets management for Invenio." name = "invenio-assets" optional = false python-versions = "*" -version = "1.2.6" +version = "1.2.7" [package.dependencies] -Flask = ">=1.0.4,<2.0" -Flask-Collect = "1.2.2" +Flask-Collect-Invenio = ">=1.4.0" Flask-WebpackExt = ">=1.0.0" -invenio-base = ">=1.2.3" +invenio-base = ">=1.2.5" node-semver = ">=0.1.1,<0.2.0" [package.extras] @@ -1201,11 +1230,11 @@ description = "Base package for building Invenio application factories." name = "invenio-base" optional = false python-versions = "*" -version = "1.2.4" +version = "1.2.5" [package.dependencies] -Flask = ">=1.0.4,<2.0" -Werkzeug = ">=1.0.1,<2.0" +Flask = ">=1.0.4,<3.0" +Werkzeug = ">=1.0.1,<3.0" blinker = ">=1.4" six = ">=1.12.0" @@ -1305,20 +1334,20 @@ description = "Jinja utilities for Invenio." name = "invenio-formatter" optional = false python-versions = "*" -version = "1.1.1" +version = "1.1.3" [package.dependencies] -Flask = ">=1.0.4,<2.0" Flask-BabelEx = ">=0.9.4" arrow = ">=0.7.0" bleach = ">=3.1.0" +invenio-base = ">=1.2.5" invenio-i18n = ">=1.2.0" [package.extras] -all = ["Sphinx (>=1.8.0)", "CairoSVG (>=1.0.20,<2.0.0)", "CairoSVG (>=1.0.20)", "Pillow (>=3.2.0)", "pytest-invenio (>=1.4.1,<1.5.0)"] +all = ["Sphinx (>=1.8.0)", "CairoSVG (>=1.0.20,<2.0.0)", "CairoSVG (>=1.0.20)", "Pillow (>=3.2.0)", "pytest-invenio (>=1.4.1,<1.5.0)", "mock (>=4.0.3)"] badges = ["Pillow (>=3.2.0)", "CairoSVG (>=1.0.20,<2.0.0)", "CairoSVG (>=1.0.20)"] docs = ["Sphinx (>=1.8.0)"] -tests = ["pytest-invenio (>=1.4.1,<1.5.0)"] +tests = ["pytest-invenio (>=1.4.1,<1.5.0)", "mock (>=4.0.3)"] [[package]] category = "main" @@ -1655,19 +1684,16 @@ description = "REST API module for Invenio." name = "invenio-rest" optional = false python-versions = "*" -version = "1.2.3" +version = "1.2.4" [package.dependencies] Flask-CORS = ">=2.1.0" -invenio-base = ">=1.2.3" +invenio-base = ">=1.2.5" +marshmallow = ">=2.15.2" webargs = ">=5.5.0,<6.0.0" -[package.dependencies.marshmallow] -python = ">=3.0.0" -version = ">=2.15.2" - [package.extras] -all = ["Sphinx (>=3.3.0)", "xmltodict (>=0.11.0)", "pytest-invenio (>=1.4.0)", "marshmallow (>=2.15.2,<3.0.0)", "marshmallow (>=2.15.2)"] +all = ["Sphinx (>=3.3.0)", "xmltodict (>=0.11.0)", "pytest-invenio (>=1.4.0)"] docs = ["Sphinx (>=3.3.0)"] tests = ["xmltodict (>=0.11.0)", "pytest-invenio (>=1.4.0)", "Sphinx (>=3.3.0)"] @@ -1726,16 +1752,15 @@ description = "User profiles module for Invenio." name = "invenio-userprofiles" optional = false python-versions = "*" -version = "1.2.3" +version = "1.2.4" [package.dependencies] -Flask = ">=1.1.0,<2.0.0" Flask-Breadcrumbs = ">=0.5.0" Flask-Mail = ">=0.9.1" Flask-Menu = ">=0.5.0" Flask-WTF = ">=0.14.3" invenio-accounts = ">=1.2.1" -invenio-base = ">=1.2.4" +invenio-base = ">=1.2.5" invenio-i18n = ">=1.2.0" invenio-theme = ">=1.3.4" @@ -2051,13 +2076,13 @@ category = "main" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." name = "marshmallow" optional = false -python-versions = ">=3.5" -version = "3.13.0" +python-versions = ">=3.6" +version = "3.14.0" [package.extras] -dev = ["pytest", "pytz", "simplejson", "mypy (0.910)", "flake8 (3.9.2)", "flake8-bugbear (21.4.3)", "pre-commit (>=2.4,<3.0)", "tox"] -docs = ["sphinx (4.1.1)", "sphinx-issues (1.2.0)", "alabaster (0.7.12)", "sphinx-version-warning (1.1.2)", "autodocsumm (0.2.6)"] -lint = ["mypy (0.910)", "flake8 (3.9.2)", "flake8-bugbear (21.4.3)", "pre-commit (>=2.4,<3.0)"] +dev = ["pytest", "pytz", "simplejson", "mypy (0.910)", "flake8 (4.0.1)", "flake8-bugbear (21.9.2)", "pre-commit (>=2.4,<3.0)", "tox"] +docs = ["sphinx (4.2.0)", "sphinx-issues (1.2.0)", "alabaster (0.7.12)", "sphinx-version-warning (1.1.2)", "autodocsumm (0.2.7)"] +lint = ["mypy (0.910)", "flake8 (4.0.1)", "flake8-bugbear (21.9.2)", "pre-commit (>=2.4,<3.0)"] tests = ["pytest", "pytz", "simplejson"] [[package]] @@ -2139,6 +2164,17 @@ signals = ["blinker"] signedtoken = ["cryptography", "pyjwt (>=1.0.0)"] test = ["nose", "unittest2", "cryptography", "mock", "pyjwt (>=1.0.0)", "blinker"] +[[package]] +category = "main" +description = "Capture the outcome of Python function calls." +name = "outcome" +optional = false +python-versions = ">=3.6" +version = "1.1.0" + +[package.dependencies] +attrs = ">=19.2.0" + [[package]] category = "main" description = "Core utilities for Python packages" @@ -2181,7 +2217,7 @@ description = "Wrappers to build Python packages using PEP 517 hooks" name = "pep517" optional = false python-versions = "*" -version = "0.11.0" +version = "0.12.0" [package.dependencies] [package.dependencies.importlib_metadata] @@ -2190,7 +2226,7 @@ version = "*" [package.dependencies.tomli] python = ">=3.6" -version = "*" +version = ">=1.1.0" [package.dependencies.zipp] python = "<3.8" @@ -2249,7 +2285,7 @@ description = "Library for building powerful interactive command lines in Python name = "prompt-toolkit" optional = false python-versions = ">=3.6.2" -version = "3.0.20" +version = "3.0.21" [package.dependencies] wcwidth = "*" @@ -2295,8 +2331,8 @@ category = "main" description = "Python style guide checker" name = "pycodestyle" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -version = "2.7.0" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +version = "2.8.0" [[package]] category = "main" @@ -2342,11 +2378,11 @@ description = "JSON Web Token implementation in Python" name = "pyjwt" optional = false python-versions = ">=3.6" -version = "2.1.0" +version = "2.3.0" [package.extras] -crypto = ["cryptography (>=3.3.1,<4.0.0)"] -dev = ["sphinx", "sphinx-rtd-theme", "zope.interface", "cryptography (>=3.3.1,<4.0.0)", "pytest (>=6.0.0,<7.0.0)", "coverage (5.0.4)", "mypy", "pre-commit"] +crypto = ["cryptography (>=3.3.1)"] +dev = ["sphinx", "sphinx-rtd-theme", "zope.interface", "cryptography (>=3.3.1)", "pytest (>=6.0.0,<7.0.0)", "coverage (5.0.4)", "mypy", "pre-commit"] docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"] tests = ["pytest (>=6.0.0,<7.0.0)", "coverage (5.0.4)"] @@ -2376,8 +2412,11 @@ category = "main" description = "Python parsing module" name = "pyparsing" optional = false -python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" -version = "2.4.7" +python-versions = ">=3.6" +version = "3.0.0" + +[package.extras] +diagrams = ["jinja2", "railroad-diagrams"] [[package]] category = "main" @@ -2567,8 +2606,8 @@ category = "main" description = "YAML parser and emitter for Python" name = "pyyaml" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -version = "5.4.1" +python-versions = ">=3.6" +version = "6.0" [[package]] category = "main" @@ -2667,6 +2706,22 @@ version = "3.141.0" [package.dependencies] urllib3 = "*" +[[package]] +category = "main" +description = "" +name = "selenium" +optional = false +python-versions = "~=3.7" +version = "4.0.0" + +[package.dependencies] +trio = ">=0.17,<1.0" +trio-websocket = ">=0.9,<1.0" + +[package.dependencies.urllib3] +extras = ["secure"] +version = ">=1.26,<2.0" + [[package]] category = "main" description = "Python client for Sentry (https://sentry.io)" @@ -2740,6 +2795,14 @@ optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" version = "1.16.0" +[[package]] +category = "main" +description = "Sniff out which async library your code is running under" +name = "sniffio" +optional = false +python-versions = ">=3.5" +version = "1.2.0" + [[package]] category = "main" description = "This package provides 29 stemmers for 28 languages generated from Snowball algorithms." @@ -2748,6 +2811,14 @@ optional = false python-versions = "*" version = "2.1.0" +[[package]] +category = "main" +description = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" +name = "sortedcontainers" +optional = false +python-versions = "*" +version = "2.4.0" + [[package]] category = "main" description = "implements a lazy string for python useful for use with gettext" @@ -2979,6 +3050,36 @@ six = "*" [package.extras] test = ["pytest", "mock"] +[[package]] +category = "main" +description = "A friendly Python library for async concurrency and I/O" +name = "trio" +optional = false +python-versions = ">=3.6" +version = "0.19.0" + +[package.dependencies] +async-generator = ">=1.9" +attrs = ">=19.2.0" +cffi = ">=1.14" +idna = "*" +outcome = "*" +sniffio = "*" +sortedcontainers = "*" + +[[package]] +category = "main" +description = "WebSocket library for Trio" +name = "trio-websocket" +optional = false +python-versions = ">=3.5" +version = "0.9.2" + +[package.dependencies] +async-generator = ">=1.10" +trio = ">=0.11" +wsproto = ">=0.14" + [[package]] category = "main" description = "Backported and Experimental Type Hints for Python 3.5+" @@ -3104,13 +3205,28 @@ category = "main" description = "The comprehensive WSGI web application library." name = "werkzeug" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" -version = "1.0.1" +python-versions = ">=3.6" +version = "2.0.2" + +[package.dependencies] +[package.dependencies.dataclasses] +python = "<3.7" +version = "*" [package.extras] -dev = ["pytest", "pytest-timeout", "coverage", "tox", "sphinx", "pallets-sphinx-themes", "sphinx-issues"] watchdog = ["watchdog"] +[[package]] +category = "main" +description = "WebSockets state-machine based protocol implementation" +name = "wsproto" +optional = false +python-versions = ">=3.6.1" +version = "1.0.0" + +[package.dependencies] +h11 = ">=0.9.0,<1" + [[package]] category = "main" description = "A flexible forms validation and rendering library for Python web development." @@ -3213,6 +3329,10 @@ arrow = [ {file = "arrow-1.2.0-py3-none-any.whl", hash = "sha256:8fb7d9d3d4bf90e49e734c22fa077bdd0964135c4b8120de2510575a8d1f620c"}, {file = "arrow-1.2.0.tar.gz", hash = "sha256:16fc29bbd9e425e3eb0fef3018297910a0f4568f21116fc31771e2760a50e074"}, ] +async-generator = [ + {file = "async_generator-1.10-py3-none-any.whl", hash = "sha256:01c7bf666359b4967d2cda0000cc2e4af16a0ae098cbffcb8472fb9e8ad6585b"}, + {file = "async_generator-1.10.tar.gz", hash = "sha256:6ebb3d106c12920aaae42ccb6f787ef5eefdcdd166ea3d628fa8476abe712144"}, +] atomicwrites = [ {file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"}, {file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"}, @@ -3264,59 +3384,64 @@ celery = [ {file = "celery-5.0.5.tar.gz", hash = "sha256:f4efebe6f8629b0da2b8e529424de376494f5b7a743c321c8a2ddc2b1414921c"}, ] certifi = [ - {file = "certifi-2021.5.30-py2.py3-none-any.whl", hash = "sha256:50b1e4f8446b06f41be7dd6338db18e0990601dce795c2b1686458aa7e8fa7d8"}, - {file = "certifi-2021.5.30.tar.gz", hash = "sha256:2bbf76fd432960138b3ef6dda3dde0544f27cbf8546c458e60baf371917ba9ee"}, + {file = "certifi-2021.10.8-py2.py3-none-any.whl", hash = "sha256:d62a0163eb4c2344ac042ab2bdf75399a71a2d8c7d47eac2e2ee91b9d6339569"}, + {file = "certifi-2021.10.8.tar.gz", hash = "sha256:78884e7c1d4b00ce3cea67b44566851c4343c120abd683433ce934a68ea58872"}, ] cffi = [ - {file = "cffi-1.14.6-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:22b9c3c320171c108e903d61a3723b51e37aaa8c81255b5e7ce102775bd01e2c"}, - {file = "cffi-1.14.6-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:f0c5d1acbfca6ebdd6b1e3eded8d261affb6ddcf2186205518f1428b8569bb99"}, - {file = "cffi-1.14.6-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:99f27fefe34c37ba9875f224a8f36e31d744d8083e00f520f133cab79ad5e819"}, - {file = "cffi-1.14.6-cp27-cp27m-win32.whl", hash = "sha256:55af55e32ae468e9946f741a5d51f9896da6b9bf0bbdd326843fec05c730eb20"}, - {file = "cffi-1.14.6-cp27-cp27m-win_amd64.whl", hash = "sha256:7bcac9a2b4fdbed2c16fa5681356d7121ecabf041f18d97ed5b8e0dd38a80224"}, - {file = "cffi-1.14.6-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:ed38b924ce794e505647f7c331b22a693bee1538fdf46b0222c4717b42f744e7"}, - {file = "cffi-1.14.6-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:e22dcb48709fc51a7b58a927391b23ab37eb3737a98ac4338e2448bef8559b33"}, - {file = "cffi-1.14.6-cp35-cp35m-macosx_10_9_x86_64.whl", hash = "sha256:aedb15f0a5a5949ecb129a82b72b19df97bbbca024081ed2ef88bd5c0a610534"}, - {file = "cffi-1.14.6-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:48916e459c54c4a70e52745639f1db524542140433599e13911b2f329834276a"}, - {file = "cffi-1.14.6-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:f627688813d0a4140153ff532537fbe4afea5a3dffce1f9deb7f91f848a832b5"}, - {file = "cffi-1.14.6-cp35-cp35m-win32.whl", hash = "sha256:f0010c6f9d1a4011e429109fda55a225921e3206e7f62a0c22a35344bfd13cca"}, - {file = "cffi-1.14.6-cp35-cp35m-win_amd64.whl", hash = "sha256:57e555a9feb4a8460415f1aac331a2dc833b1115284f7ded7278b54afc5bd218"}, - {file = "cffi-1.14.6-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e8c6a99be100371dbb046880e7a282152aa5d6127ae01783e37662ef73850d8f"}, - {file = "cffi-1.14.6-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:19ca0dbdeda3b2615421d54bef8985f72af6e0c47082a8d26122adac81a95872"}, - {file = "cffi-1.14.6-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:d950695ae4381ecd856bcaf2b1e866720e4ab9a1498cba61c602e56630ca7195"}, - {file = "cffi-1.14.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e9dc245e3ac69c92ee4c167fbdd7428ec1956d4e754223124991ef29eb57a09d"}, - {file = "cffi-1.14.6-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a8661b2ce9694ca01c529bfa204dbb144b275a31685a075ce123f12331be790b"}, - {file = "cffi-1.14.6-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b315d709717a99f4b27b59b021e6207c64620790ca3e0bde636a6c7f14618abb"}, - {file = "cffi-1.14.6-cp36-cp36m-win32.whl", hash = "sha256:80b06212075346b5546b0417b9f2bf467fea3bfe7352f781ffc05a8ab24ba14a"}, - {file = "cffi-1.14.6-cp36-cp36m-win_amd64.whl", hash = "sha256:a9da7010cec5a12193d1af9872a00888f396aba3dc79186604a09ea3ee7c029e"}, - {file = "cffi-1.14.6-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4373612d59c404baeb7cbd788a18b2b2a8331abcc84c3ba40051fcd18b17a4d5"}, - {file = "cffi-1.14.6-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:f10afb1004f102c7868ebfe91c28f4a712227fe4cb24974350ace1f90e1febbf"}, - {file = "cffi-1.14.6-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:fd4305f86f53dfd8cd3522269ed7fc34856a8ee3709a5e28b2836b2db9d4cd69"}, - {file = "cffi-1.14.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6d6169cb3c6c2ad50db5b868db6491a790300ade1ed5d1da29289d73bbe40b56"}, - {file = "cffi-1.14.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5d4b68e216fc65e9fe4f524c177b54964af043dde734807586cf5435af84045c"}, - {file = "cffi-1.14.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33791e8a2dc2953f28b8d8d300dde42dd929ac28f974c4b4c6272cb2955cb762"}, - {file = "cffi-1.14.6-cp37-cp37m-win32.whl", hash = "sha256:0c0591bee64e438883b0c92a7bed78f6290d40bf02e54c5bf0978eaf36061771"}, - {file = "cffi-1.14.6-cp37-cp37m-win_amd64.whl", hash = "sha256:8eb687582ed7cd8c4bdbff3df6c0da443eb89c3c72e6e5dcdd9c81729712791a"}, - {file = "cffi-1.14.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ba6f2b3f452e150945d58f4badd92310449876c4c954836cfb1803bdd7b422f0"}, - {file = "cffi-1.14.6-cp38-cp38-manylinux1_i686.whl", hash = "sha256:64fda793737bc4037521d4899be780534b9aea552eb673b9833b01f945904c2e"}, - {file = "cffi-1.14.6-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:9f3e33c28cd39d1b655ed1ba7247133b6f7fc16fa16887b120c0c670e35ce346"}, - {file = "cffi-1.14.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26bb2549b72708c833f5abe62b756176022a7b9a7f689b571e74c8478ead51dc"}, - {file = "cffi-1.14.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb687a11f0a7a1839719edd80f41e459cc5366857ecbed383ff376c4e3cc6afd"}, - {file = "cffi-1.14.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d2ad4d668a5c0645d281dcd17aff2be3212bc109b33814bbb15c4939f44181cc"}, - {file = "cffi-1.14.6-cp38-cp38-win32.whl", hash = "sha256:487d63e1454627c8e47dd230025780e91869cfba4c753a74fda196a1f6ad6548"}, - {file = "cffi-1.14.6-cp38-cp38-win_amd64.whl", hash = "sha256:c33d18eb6e6bc36f09d793c0dc58b0211fccc6ae5149b808da4a62660678b156"}, - {file = "cffi-1.14.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:06c54a68935738d206570b20da5ef2b6b6d92b38ef3ec45c5422c0ebaf338d4d"}, - {file = "cffi-1.14.6-cp39-cp39-manylinux1_i686.whl", hash = "sha256:f174135f5609428cc6e1b9090f9268f5c8935fddb1b25ccb8255a2d50de6789e"}, - {file = "cffi-1.14.6-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:f3ebe6e73c319340830a9b2825d32eb6d8475c1dac020b4f0aa774ee3b898d1c"}, - {file = "cffi-1.14.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3c8d896becff2fa653dc4438b54a5a25a971d1f4110b32bd3068db3722c80202"}, - {file = "cffi-1.14.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4922cd707b25e623b902c86188aca466d3620892db76c0bdd7b99a3d5e61d35f"}, - {file = "cffi-1.14.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c9e005e9bd57bc987764c32a1bee4364c44fdc11a3cc20a40b93b444984f2b87"}, - {file = "cffi-1.14.6-cp39-cp39-win32.whl", hash = "sha256:eb9e2a346c5238a30a746893f23a9535e700f8192a68c07c0258e7ece6ff3728"}, - {file = "cffi-1.14.6-cp39-cp39-win_amd64.whl", hash = "sha256:818014c754cd3dba7229c0f5884396264d51ffb87ec86e927ef0be140bfdb0d2"}, - {file = "cffi-1.14.6.tar.gz", hash = "sha256:c9a875ce9d7fe32887784274dd533c57909b7b1dcadcc128a2ac21331a9765dd"}, + {file = "cffi-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c2502a1a03b6312837279c8c1bd3ebedf6c12c4228ddbad40912d671ccc8a962"}, + {file = "cffi-1.15.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:23cfe892bd5dd8941608f93348c0737e369e51c100d03718f108bf1add7bd6d0"}, + {file = "cffi-1.15.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:41d45de54cd277a7878919867c0f08b0cf817605e4eb94093e7516505d3c8d14"}, + {file = "cffi-1.15.0-cp27-cp27m-win32.whl", hash = "sha256:4a306fa632e8f0928956a41fa8e1d6243c71e7eb59ffbd165fc0b41e316b2474"}, + {file = "cffi-1.15.0-cp27-cp27m-win_amd64.whl", hash = "sha256:e7022a66d9b55e93e1a845d8c9eba2a1bebd4966cd8bfc25d9cd07d515b33fa6"}, + {file = "cffi-1.15.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:14cd121ea63ecdae71efa69c15c5543a4b5fbcd0bbe2aad864baca0063cecf27"}, + {file = "cffi-1.15.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:d4d692a89c5cf08a8557fdeb329b82e7bf609aadfaed6c0d79f5a449a3c7c023"}, + {file = "cffi-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0104fb5ae2391d46a4cb082abdd5c69ea4eab79d8d44eaaf79f1b1fd806ee4c2"}, + {file = "cffi-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:91ec59c33514b7c7559a6acda53bbfe1b283949c34fe7440bcf917f96ac0723e"}, + {file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f5c7150ad32ba43a07c4479f40241756145a1f03b43480e058cfd862bf5041c7"}, + {file = "cffi-1.15.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:00c878c90cb53ccfaae6b8bc18ad05d2036553e6d9d1d9dbcf323bbe83854ca3"}, + {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:abb9a20a72ac4e0fdb50dae135ba5e77880518e742077ced47eb1499e29a443c"}, + {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a5263e363c27b653a90078143adb3d076c1a748ec9ecc78ea2fb916f9b861962"}, + {file = "cffi-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f54a64f8b0c8ff0b64d18aa76675262e1700f3995182267998c31ae974fbc382"}, + {file = "cffi-1.15.0-cp310-cp310-win32.whl", hash = "sha256:c21c9e3896c23007803a875460fb786118f0cdd4434359577ea25eb556e34c55"}, + {file = "cffi-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:5e069f72d497312b24fcc02073d70cb989045d1c91cbd53979366077959933e0"}, + {file = "cffi-1.15.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:64d4ec9f448dfe041705426000cc13e34e6e5bb13736e9fd62e34a0b0c41566e"}, + {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2756c88cbb94231c7a147402476be2c4df2f6078099a6f4a480d239a8817ae39"}, + {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b96a311ac60a3f6be21d2572e46ce67f09abcf4d09344c49274eb9e0bf345fc"}, + {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75e4024375654472cc27e91cbe9eaa08567f7fbdf822638be2814ce059f58032"}, + {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:59888172256cac5629e60e72e86598027aca6bf01fa2465bdb676d37636573e8"}, + {file = "cffi-1.15.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:27c219baf94952ae9d50ec19651a687b826792055353d07648a5695413e0c605"}, + {file = "cffi-1.15.0-cp36-cp36m-win32.whl", hash = "sha256:4958391dbd6249d7ad855b9ca88fae690783a6be9e86df65865058ed81fc860e"}, + {file = "cffi-1.15.0-cp36-cp36m-win_amd64.whl", hash = "sha256:f6f824dc3bce0edab5f427efcfb1d63ee75b6fcb7282900ccaf925be84efb0fc"}, + {file = "cffi-1.15.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:06c48159c1abed75c2e721b1715c379fa3200c7784271b3c46df01383b593636"}, + {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c2051981a968d7de9dd2d7b87bcb9c939c74a34626a6e2f8181455dd49ed69e4"}, + {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:fd8a250edc26254fe5b33be00402e6d287f562b6a5b2152dec302fa15bb3e997"}, + {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:91d77d2a782be4274da750752bb1650a97bfd8f291022b379bb8e01c66b4e96b"}, + {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45db3a33139e9c8f7c09234b5784a5e33d31fd6907800b316decad50af323ff2"}, + {file = "cffi-1.15.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:263cc3d821c4ab2213cbe8cd8b355a7f72a8324577dc865ef98487c1aeee2bc7"}, + {file = "cffi-1.15.0-cp37-cp37m-win32.whl", hash = "sha256:17771976e82e9f94976180f76468546834d22a7cc404b17c22df2a2c81db0c66"}, + {file = "cffi-1.15.0-cp37-cp37m-win_amd64.whl", hash = "sha256:3415c89f9204ee60cd09b235810be700e993e343a408693e80ce7f6a40108029"}, + {file = "cffi-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4238e6dab5d6a8ba812de994bbb0a79bddbdf80994e4ce802b6f6f3142fcc880"}, + {file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0808014eb713677ec1292301ea4c81ad277b6cdf2fdd90fd540af98c0b101d20"}, + {file = "cffi-1.15.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:57e9ac9ccc3101fac9d6014fba037473e4358ef4e89f8e181f8951a2c0162024"}, + {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b6c2ea03845c9f501ed1313e78de148cd3f6cad741a75d43a29b43da27f2e1e"}, + {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:10dffb601ccfb65262a27233ac273d552ddc4d8ae1bf93b21c94b8511bffe728"}, + {file = "cffi-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:786902fb9ba7433aae840e0ed609f45c7bcd4e225ebb9c753aa39725bb3e6ad6"}, + {file = "cffi-1.15.0-cp38-cp38-win32.whl", hash = "sha256:da5db4e883f1ce37f55c667e5c0de439df76ac4cb55964655906306918e7363c"}, + {file = "cffi-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:181dee03b1170ff1969489acf1c26533710231c58f95534e3edac87fff06c443"}, + {file = "cffi-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:45e8636704eacc432a206ac7345a5d3d2c62d95a507ec70d62f23cd91770482a"}, + {file = "cffi-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:31fb708d9d7c3f49a60f04cf5b119aeefe5644daba1cd2a0fe389b674fd1de37"}, + {file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6dc2737a3674b3e344847c8686cf29e500584ccad76204efea14f451d4cc669a"}, + {file = "cffi-1.15.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:74fdfdbfdc48d3f47148976f49fab3251e550a8720bebc99bf1483f5bfb5db3e"}, + {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffaa5c925128e29efbde7301d8ecaf35c8c60ffbcd6a1ffd3a552177c8e5e796"}, + {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f7d084648d77af029acb79a0ff49a0ad7e9d09057a9bf46596dac9514dc07df"}, + {file = "cffi-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ef1f279350da2c586a69d32fc8733092fd32cc8ac95139a00377841f59a3f8d8"}, + {file = "cffi-1.15.0-cp39-cp39-win32.whl", hash = "sha256:2a23af14f408d53d5e6cd4e3d9a24ff9e05906ad574822a10563efcef137979a"}, + {file = "cffi-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:3773c4d81e6e818df2efbc7dd77325ca0dcb688116050fb2b3011218eda36139"}, + {file = "cffi-1.15.0.tar.gz", hash = "sha256:920f0d66a896c2d99f0adbb391f990a84091179542c205fa53ce5787aff87954"}, ] charset-normalizer = [ - {file = "charset-normalizer-2.0.6.tar.gz", hash = "sha256:5ec46d183433dcbd0ab716f2d7f29d8dee50505b3fdb40c6b985c7c4f5a3591f"}, - {file = "charset_normalizer-2.0.6-py3-none-any.whl", hash = "sha256:5d209c0a931f215cee683b6445e2d77677e7e75e159f78def0db09d68fafcaa6"}, + {file = "charset-normalizer-2.0.7.tar.gz", hash = "sha256:e019de665e2bcf9c2b64e2e5aa025fa991da8720daa3c1138cadd2fd1856aed0"}, + {file = "charset_normalizer-2.0.7-py3-none-any.whl", hash = "sha256:f7af805c321bfa1ce6714c51f254e0d5bb5e5834039bc17db7ebe3a4cec9492b"}, ] check-manifest = [ {file = "check-manifest-0.47.tar.gz", hash = "sha256:56dadd260a9c7d550b159796d2894b6d0bcc176a94cbc426d9bb93e5e48d12ce"}, @@ -3396,6 +3521,10 @@ cryptography = [ {file = "cryptography-35.0.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:1ed82abf16df40a60942a8c211251ae72858b25b7421ce2497c2eb7a1cee817c"}, {file = "cryptography-35.0.0.tar.gz", hash = "sha256:9933f28f70d0517686bd7de36166dda42094eac49415459d9bdf5e7df3e0086d"}, ] +dataclasses = [ + {file = "dataclasses-0.8-py3-none-any.whl", hash = "sha256:0201d89fa866f68c8ebd9d08ee6ff50c0b255f8ec63a71c16fda7af82bb887bf"}, + {file = "dataclasses-0.8.tar.gz", hash = "sha256:8479067f342acf957dc82ec415d355ab5edb7e7646b90dc6e2fd1d96ad084c97"}, +] decorator = [ {file = "decorator-5.1.0-py3-none-any.whl", hash = "sha256:7b12e7c3c6ab203a29e157335e9122cb03de9ab7264b137594103fd4a683b374"}, {file = "decorator-5.1.0.tar.gz", hash = "sha256:e59913af105b9860aa2c8d3272d9de5a56a4e608db9a2f167a8480b323d529a7"}, @@ -3459,9 +3588,9 @@ flask-celeryext = [ {file = "Flask-CeleryExt-0.3.4.tar.gz", hash = "sha256:47d5d18daebad300b215faca0d1c6da24625f333020482e27591634c05792c98"}, {file = "Flask_CeleryExt-0.3.4-py2.py3-none-any.whl", hash = "sha256:1c84b35462d41d1317800d256b2ce30031b7d3d20dd8dc680ce4f4cc88029867"}, ] -flask-collect = [ - {file = "Flask-Collect-1.2.2.tar.gz", hash = "sha256:26c8a76451ba1d31236367afd90f4c5a99ba88392adad675ee4fb93a45a36927"}, - {file = "Flask_Collect-1.2.2-py2.py3-none-any.whl", hash = "sha256:3274f651b532e93549d37c21c5630fa98e4b9eccf49573f8d920b1225716a12b"}, +flask-collect-invenio = [ + {file = "Flask-Collect-Invenio-1.4.0.tar.gz", hash = "sha256:52c8343773f6366bb1594905e5c8e1f92101ec06c20e966420237ddad2a7918a"}, + {file = "Flask_Collect_Invenio-1.4.0-py2.py3-none-any.whl", hash = "sha256:cf969b7cddf27086ee19883e9660aeac2d455646cbad2a43799660b3cc0cbffb"}, ] flask-cors = [ {file = "Flask-Cors-3.0.10.tar.gz", hash = "sha256:b60839393f3b84a0f3746f6cdca56c1ad7426aa738b70d6c61375857823181de"}, @@ -3522,9 +3651,13 @@ ftfy = [ future = [ {file = "future-0.18.2.tar.gz", hash = "sha256:b1bead90b70cf6ec3f0710ae53a525360fa360d306a86583adc6bf83a4db537d"}, ] +h11 = [ + {file = "h11-0.12.0-py3-none-any.whl", hash = "sha256:36a3cb8c0a032f56e2da7084577878a035d3b61d104230d4bd49c0c6b555a9c6"}, + {file = "h11-0.12.0.tar.gz", hash = "sha256:47222cb6067e4a307d535814917cd98fd0a57b6788ce715755fa2b6c28b56042"}, +] idna = [ - {file = "idna-3.2-py3-none-any.whl", hash = "sha256:14475042e284991034cb48e06f6851428fb14c4dc953acd9be9a5e95c7b6dd7a"}, - {file = "idna-3.2.tar.gz", hash = "sha256:467fbad99067910785144ce333826c71fb0e63a425657295239737f7ecd125f3"}, + {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"}, + {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"}, ] ijson = [ {file = "ijson-3.1.4-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:6c1a777096be5f75ffebb335c6d2ebc0e489b231496b7f2ca903aa061fe7d381"}, @@ -3598,8 +3731,8 @@ importlib-metadata = [ {file = "importlib_metadata-4.8.1.tar.gz", hash = "sha256:f284b3e11256ad1e5d03ab86bb2ccd6f5339688ff17a4d797a0fe7df326f23b1"}, ] importlib-resources = [ - {file = "importlib_resources-5.2.2-py3-none-any.whl", hash = "sha256:2480d8e07d1890056cb53c96e3de44fead9c62f2ba949b0f2e4c4345f4afa977"}, - {file = "importlib_resources-5.2.2.tar.gz", hash = "sha256:a65882a4d0fe5fbf702273456ba2ce74fe44892c25e42e057aca526b702a6d4b"}, + {file = "importlib_resources-5.3.0-py3-none-any.whl", hash = "sha256:7a65eb0d8ee98eedab76e6deb51195c67f8e575959f6356a6e15fd7e1148f2a3"}, + {file = "importlib_resources-5.3.0.tar.gz", hash = "sha256:f2e58e721b505a79abe67f5868d99f8886aec8594c962c7490d0c22925f518da"}, ] infinity = [ {file = "infinity-1.5.tar.gz", hash = "sha256:8daa7c15ce2100fdccfde212337e0cd5cf085869f54dc2634b6c30d61461ecda"}, @@ -3621,8 +3754,8 @@ invenio-access = [ {file = "invenio_access-1.4.2-py2.py3-none-any.whl", hash = "sha256:463cde5a24edab0c147ec7922372e6f46ac940409320e223334bf5f9e62e9d87"}, ] invenio-accounts = [ - {file = "invenio-accounts-1.4.4.tar.gz", hash = "sha256:70d1efea77f5bc6c623ff402ecf8e08ca07a6ebf253c6341cf89bb30289fa18e"}, - {file = "invenio_accounts-1.4.4-py2.py3-none-any.whl", hash = "sha256:59ff381bbcb97e8c59453caa1d9d7e4aebeb6b44ee01363ae662e33c77dd4896"}, + {file = "invenio-accounts-1.4.8.tar.gz", hash = "sha256:cb690e35f9ced8f5971ad08e2fb9a4b33459d11f486878abbb2222e5f06d2b93"}, + {file = "invenio_accounts-1.4.8-py2.py3-none-any.whl", hash = "sha256:8799b251f3d38b8825d95cd6145e2593c09a6f31bfe2b2369c1cfde02e5aef19"}, ] invenio-admin = [ {file = "invenio-admin-1.3.0.tar.gz", hash = "sha256:59aa4cc7e41744eb5c55d37f24e7f8cc5cd4ab368f21b2a6fe4cb90a6a016f05"}, @@ -3633,12 +3766,12 @@ invenio-app = [ {file = "invenio_app-1.3.1-py2.py3-none-any.whl", hash = "sha256:854c0627428a0cd53c96e120e9386eab8e41f24d05c5738ae3761388c486cca0"}, ] invenio-assets = [ - {file = "invenio-assets-1.2.6.tar.gz", hash = "sha256:23a297eb31200bfc80e447f66178aeda85822d69bf93bd4d21fe19c722fdc78e"}, - {file = "invenio_assets-1.2.6-py2.py3-none-any.whl", hash = "sha256:d0918858b661bc24721080208ed521282f79d878a5c95485686fbe2040f1f6c1"}, + {file = "invenio-assets-1.2.7.tar.gz", hash = "sha256:2d1f49136a5705e7521686b642e03ba7d44703288d496ec93312fe887a5daeeb"}, + {file = "invenio_assets-1.2.7-py2.py3-none-any.whl", hash = "sha256:1ba8d88ad740375996086bb0096def3cff86bdaf3567368c8d86f45e1d4cd218"}, ] invenio-base = [ - {file = "invenio-base-1.2.4.tar.gz", hash = "sha256:9179c849091b8109ad9387af73f99a6907b16119b677b982e87ec9a6990b04a6"}, - {file = "invenio_base-1.2.4-py2.py3-none-any.whl", hash = "sha256:408ca3274a922a9de2397f6e9fe5da25f683852618f25ef90c484c0512022465"}, + {file = "invenio-base-1.2.5.tar.gz", hash = "sha256:375b84ab32ebef15f766b8be58005e89b6ec13ba0567a9a21da9001a23562977"}, + {file = "invenio_base-1.2.5-py2.py3-none-any.whl", hash = "sha256:d22a8dee25def2d5e7f10566a12b63e643d6c1267de0baa335dbdfd7382707d6"}, ] invenio-cache = [ {file = "invenio-cache-1.1.0.tar.gz", hash = "sha256:1212a83f98fbe29a936587f7c5b2f838f7f934b0b2a9d9a993e377e5a8ab0cf5"}, @@ -3657,8 +3790,8 @@ invenio-db = [ {file = "invenio_db-1.0.9-py2.py3-none-any.whl", hash = "sha256:c8861a665af5cbb3645d4fde5cc0e04354a108a3d5b4cf2c3eee5d252da5d534"}, ] invenio-formatter = [ - {file = "invenio-formatter-1.1.1.tar.gz", hash = "sha256:575f983ea1c214071d23fd7a437ecd7dc991c545097502f5753e4a81d1f61728"}, - {file = "invenio_formatter-1.1.1-py2.py3-none-any.whl", hash = "sha256:0278a1fb48edda87aecfbaf102bbccffb7bd8fe27a63d0ef1649fd43aaa16587"}, + {file = "invenio-formatter-1.1.3.tar.gz", hash = "sha256:5912ce6c73da894b120f41acebd7d5866fab8274dc37ab265647770bf54b1465"}, + {file = "invenio_formatter-1.1.3-py2.py3-none-any.whl", hash = "sha256:b73af2d04d75469608adbb4e757af23feac1376d6007456d751a9958826660b1"}, ] invenio-i18n = [ {file = "invenio-i18n-1.3.1.tar.gz", hash = "sha256:02534002f3bf63706a4c3d3b15c32ce4cce0c341217d4204c7c29486fabece22"}, @@ -3710,8 +3843,8 @@ invenio-records-ui = [ {file = "invenio_records_ui-1.2.0-py2.py3-none-any.whl", hash = "sha256:2e4adc70fc2f257828c6ea99199bac55d013c7922a5e2cb3d652441304e82fd3"}, ] invenio-rest = [ - {file = "invenio-rest-1.2.3.tar.gz", hash = "sha256:1ca669cffac3ce9c795f6a0d4669460e2b2369b01abaaf71792872714e42a3f5"}, - {file = "invenio_rest-1.2.3-py2.py3-none-any.whl", hash = "sha256:bce36d4b09894942b7756855c8159854d6f1ce550fefa5d78bedc6998933678f"}, + {file = "invenio-rest-1.2.4.tar.gz", hash = "sha256:d198fdea9c38b13139745bfd7ef06dae4300c2fb237a56430e5ee1f91d304821"}, + {file = "invenio_rest-1.2.4-py2.py3-none-any.whl", hash = "sha256:c49f62999011b3bd9408f30342a4afbb49ca8a7dda4c35b1df0bed6119d35db8"}, ] invenio-search = [ {file = "invenio-search-1.4.2.tar.gz", hash = "sha256:1d6f09424b731a335a6f8e05c8e5c55c29b3277486c9ac7534d2c15648e1d7ab"}, @@ -3722,8 +3855,8 @@ invenio-theme = [ {file = "invenio_theme-1.3.9-py2.py3-none-any.whl", hash = "sha256:0ba75a7e2c5a653954449d2400727a2293ddccaba2ef81b4c4f25050c6f66d4b"}, ] invenio-userprofiles = [ - {file = "invenio-userprofiles-1.2.3.tar.gz", hash = "sha256:44f9449f0e4c4a41f7fc0fc5072dcdaa6ae2dbe23cbe9e0b3cd3fc7cfce1cff6"}, - {file = "invenio_userprofiles-1.2.3-py2.py3-none-any.whl", hash = "sha256:ae5af60cad6a24cabef2317cde6d998606d76c8aff527496483ebb8f2d6221be"}, + {file = "invenio-userprofiles-1.2.4.tar.gz", hash = "sha256:09817499c49a8437b55f2fa7e7d0107dd9c380571c0183e1747b79e6f9519d8d"}, + {file = "invenio_userprofiles-1.2.4-py2.py3-none-any.whl", hash = "sha256:224ce798bdbf8820e118684507860bb9a3945d6830e71cc8e5dfc4eef36e8061"}, ] ipython = [ {file = "ipython-7.16.1-py3-none-any.whl", hash = "sha256:2dbcc8c27ca7d3cfe4fcdff7f45b27f9a8d3edfa70ff8024a71c7a8eb5f09d64"}, @@ -3863,8 +3996,8 @@ markupsafe = [ {file = "MarkupSafe-2.0.1.tar.gz", hash = "sha256:594c67807fb16238b30c44bdf74f36c02cdf22d1c8cda91ef8a0ed8dabf5620a"}, ] marshmallow = [ - {file = "marshmallow-3.13.0-py2.py3-none-any.whl", hash = "sha256:dd4724335d3c2b870b641ffe4a2f8728a1380cd2e7e2312756715ffeaa82b842"}, - {file = "marshmallow-3.13.0.tar.gz", hash = "sha256:c67929438fd73a2be92128caa0325b1b5ed8b626d91a094d2f7f2771bf1f1c0e"}, + {file = "marshmallow-3.14.0-py3-none-any.whl", hash = "sha256:6d00e42d6d6289f8cd3e77618a01689d57a078fe324ee579b00fa206d32e9b07"}, + {file = "marshmallow-3.14.0.tar.gz", hash = "sha256:bba1a940985c052c5cc7849f97da196ebc81f3b85ec10c56ef1f3228aa9cbe74"}, ] matplotlib-inline = [ {file = "matplotlib-inline-0.1.3.tar.gz", hash = "sha256:a04bfba22e0d1395479f866853ec1ee28eea1485c1d69a6faf00dc3e24ff34ee"}, @@ -3917,6 +4050,10 @@ oauthlib = [ {file = "oauthlib-2.1.0-py2.py3-none-any.whl", hash = "sha256:d883b36b21a6ad813953803edfa563b1b579d79ca758fe950d1bc9e8b326025b"}, {file = "oauthlib-2.1.0.tar.gz", hash = "sha256:ac35665a61c1685c56336bda97d5eefa246f1202618a1d6f34fccb1bdd404162"}, ] +outcome = [ + {file = "outcome-1.1.0-py2.py3-none-any.whl", hash = "sha256:c7dd9375cfd3c12db9801d080a3b63d4b0a261aa996c4c13152380587288d958"}, + {file = "outcome-1.1.0.tar.gz", hash = "sha256:e862f01d4e626e63e8f92c38d1f8d5546d3f9cce989263c521b2e7990d186967"}, +] packaging = [ {file = "packaging-21.0-py3-none-any.whl", hash = "sha256:c86254f9220d55e31cc94d69bade760f0847da8000def4dfe1c6b872fd14ff14"}, {file = "packaging-21.0.tar.gz", hash = "sha256:7dc96269f53a4ccec5c0670940a4281106dd0bb343f47b7471f779df49c2fbe7"}, @@ -3930,8 +4067,8 @@ passlib = [ {file = "passlib-1.7.4.tar.gz", hash = "sha256:defd50f72b65c5402ab2c573830a6978e5f202ad0d984793c8dde2c4152ebe04"}, ] pep517 = [ - {file = "pep517-0.11.0-py2.py3-none-any.whl", hash = "sha256:3fa6b85b9def7ba4de99fb7f96fe3f02e2d630df8aa2720a5cf3b183f087a738"}, - {file = "pep517-0.11.0.tar.gz", hash = "sha256:e1ba5dffa3a131387979a68ff3e391ac7d645be409216b961bc2efe6468ab0b2"}, + {file = "pep517-0.12.0-py2.py3-none-any.whl", hash = "sha256:dd884c326898e2c6e11f9e0b64940606a93eb10ea022a2e067959f3a110cf161"}, + {file = "pep517-0.12.0.tar.gz", hash = "sha256:931378d93d11b298cf511dd634cf5ea4cb249a28ef84160b3247ee9afb4e8ab0"}, ] pexpect = [ {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"}, @@ -3948,8 +4085,8 @@ pluggy = [ prompt-toolkit = [ {file = "prompt_toolkit-3.0.3-py3-none-any.whl", hash = "sha256:c93e53af97f630f12f5f62a3274e79527936ed466f038953dfa379d4941f651a"}, {file = "prompt_toolkit-3.0.3.tar.gz", hash = "sha256:a402e9bf468b63314e37460b68ba68243d55b2f8c4d0192f85a019af3945050e"}, - {file = "prompt_toolkit-3.0.20-py3-none-any.whl", hash = "sha256:6076e46efae19b1e0ca1ec003ed37a933dc94b4d20f486235d436e64771dcd5c"}, - {file = "prompt_toolkit-3.0.20.tar.gz", hash = "sha256:eb71d5a6b72ce6db177af4a7d4d7085b99756bf656d98ffcc4fecd36850eea6c"}, + {file = "prompt_toolkit-3.0.21-py3-none-any.whl", hash = "sha256:62b3d3ea5a3ccee94dc1aac018279cf64866a76837156ebe159b981c42dd20a8"}, + {file = "prompt_toolkit-3.0.21.tar.gz", hash = "sha256:27f13ff4e4850fe8f860b77414c7880f67c6158076a7b099062cc8570f1562e5"}, ] psutil = [ {file = "psutil-5.8.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:0066a82f7b1b37d334e68697faba68e5ad5e858279fd6351c8ca6024e8d6ba64"}, @@ -4021,8 +4158,8 @@ py = [ {file = "py-1.10.0.tar.gz", hash = "sha256:21b81bda15b66ef5e1a777a21c4dcd9c20ad3efd0b3f817e7a809035269e1bd3"}, ] pycodestyle = [ - {file = "pycodestyle-2.7.0-py2.py3-none-any.whl", hash = "sha256:514f76d918fcc0b55c6680472f0a37970994e07bbb80725808c17089be302068"}, - {file = "pycodestyle-2.7.0.tar.gz", hash = "sha256:c389c1d06bf7904078ca03399a4816f974a1d590090fecea0c63ec26ebaf1cef"}, + {file = "pycodestyle-2.8.0-py2.py3-none-any.whl", hash = "sha256:720f8b39dde8b293825e7ff02c475f3077124006db4f440dcbc9a20b76548a20"}, + {file = "pycodestyle-2.8.0.tar.gz", hash = "sha256:eddd5847ef438ea1c7870ca7eb78a9d47ce0cdb4851a5523949f2601d0cbbe7f"}, ] pycparser = [ {file = "pycparser-2.20-py2.py3-none-any.whl", hash = "sha256:7582ad22678f0fcd81102833f60ef8d0e57288b6b5fb00323d101be910e35705"}, @@ -4041,8 +4178,8 @@ pygments = [ {file = "Pygments-2.10.0.tar.gz", hash = "sha256:f398865f7eb6874156579fdf36bc840a03cab64d1cde9e93d68f46a425ec52c6"}, ] pyjwt = [ - {file = "PyJWT-2.1.0-py3-none-any.whl", hash = "sha256:934d73fbba91b0483d3857d1aff50e96b2a892384ee2c17417ed3203f173fca1"}, - {file = "PyJWT-2.1.0.tar.gz", hash = "sha256:fba44e7898bbca160a2b2b501f492824fc8382485d3a6f11ba5d0c1937ce6130"}, + {file = "PyJWT-2.3.0-py3-none-any.whl", hash = "sha256:e0c4bb8d9f0af0c7f5b1ec4c5036309617d03d56932877f2f7a0beeb5318322f"}, + {file = "PyJWT-2.3.0.tar.gz", hash = "sha256:b888b4d56f06f6dcd777210c334e69c737be74755d3e5e9ee3fe67dc18a0ee41"}, ] pymarc = [ {file = "pymarc-4.1.1.tar.gz", hash = "sha256:b86261927f346521bf1b02eaf75a47d9907ae9d9bc295c1a89ff24e7817dc1ba"}, @@ -4052,8 +4189,8 @@ pynpm = [ {file = "pynpm-0.1.2.tar.gz", hash = "sha256:8a6d3f9423760cf3c142db3bf9bda5a075e8a91837e7d2e2b0a3de5be5e26da2"}, ] pyparsing = [ - {file = "pyparsing-2.4.7-py2.py3-none-any.whl", hash = "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b"}, - {file = "pyparsing-2.4.7.tar.gz", hash = "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1"}, + {file = "pyparsing-3.0.0-py3-none-any.whl", hash = "sha256:d487599e9fb0dc36bee6b5c183c6fc5bd372ce667736f3d430ab7d842a54a35a"}, + {file = "pyparsing-3.0.0.tar.gz", hash = "sha256:001cad8d467e7a9248ef9fd513f5c0d39afcbcb9a43684101853bd0ab962e479"}, ] pyrsistent = [ {file = "pyrsistent-0.18.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f4c8cabb46ff8e5d61f56a037974228e978f26bfefce4f61a4b1ac0ba7a2ab72"}, @@ -4121,27 +4258,39 @@ pywebpack = [ {file = "pywebpack-1.2.0.tar.gz", hash = "sha256:be882ab55a5d28951d8262936efc717a62935719b0551a4a4bb53bef70d9b022"}, ] pyyaml = [ - {file = "PyYAML-5.4.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:3b2b1824fe7112845700f815ff6a489360226a5609b96ec2190a45e62a9fc922"}, - {file = "PyYAML-5.4.1-cp27-cp27m-win32.whl", hash = "sha256:129def1b7c1bf22faffd67b8f3724645203b79d8f4cc81f674654d9902cb4393"}, - {file = "PyYAML-5.4.1-cp27-cp27m-win_amd64.whl", hash = "sha256:4465124ef1b18d9ace298060f4eccc64b0850899ac4ac53294547536533800c8"}, - {file = "PyYAML-5.4.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:bb4191dfc9306777bc594117aee052446b3fa88737cd13b7188d0e7aa8162185"}, - {file = "PyYAML-5.4.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:6c78645d400265a062508ae399b60b8c167bf003db364ecb26dcab2bda048253"}, - {file = "PyYAML-5.4.1-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:4e0583d24c881e14342eaf4ec5fbc97f934b999a6828693a99157fde912540cc"}, - {file = "PyYAML-5.4.1-cp36-cp36m-win32.whl", hash = "sha256:3bd0e463264cf257d1ffd2e40223b197271046d09dadf73a0fe82b9c1fc385a5"}, - {file = "PyYAML-5.4.1-cp36-cp36m-win_amd64.whl", hash = "sha256:e4fac90784481d221a8e4b1162afa7c47ed953be40d31ab4629ae917510051df"}, - {file = "PyYAML-5.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5accb17103e43963b80e6f837831f38d314a0495500067cb25afab2e8d7a4018"}, - {file = "PyYAML-5.4.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:e1d4970ea66be07ae37a3c2e48b5ec63f7ba6804bdddfdbd3cfd954d25a82e63"}, - {file = "PyYAML-5.4.1-cp37-cp37m-win32.whl", hash = "sha256:dd5de0646207f053eb0d6c74ae45ba98c3395a571a2891858e87df7c9b9bd51b"}, - {file = "PyYAML-5.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:08682f6b72c722394747bddaf0aa62277e02557c0fd1c42cb853016a38f8dedf"}, - {file = "PyYAML-5.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d2d9808ea7b4af864f35ea216be506ecec180628aced0704e34aca0b040ffe46"}, - {file = "PyYAML-5.4.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:8c1be557ee92a20f184922c7b6424e8ab6691788e6d86137c5d93c1a6ec1b8fb"}, - {file = "PyYAML-5.4.1-cp38-cp38-win32.whl", hash = "sha256:fa5ae20527d8e831e8230cbffd9f8fe952815b2b7dae6ffec25318803a7528fc"}, - {file = "PyYAML-5.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:0f5f5786c0e09baddcd8b4b45f20a7b5d61a7e7e99846e3c799b05c7c53fa696"}, - {file = "PyYAML-5.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:294db365efa064d00b8d1ef65d8ea2c3426ac366c0c4368d930bf1c5fb497f77"}, - {file = "PyYAML-5.4.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:74c1485f7707cf707a7aef42ef6322b8f97921bd89be2ab6317fd782c2d53183"}, - {file = "PyYAML-5.4.1-cp39-cp39-win32.whl", hash = "sha256:49d4cdd9065b9b6e206d0595fee27a96b5dd22618e7520c33204a4a3239d5b10"}, - {file = "PyYAML-5.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:c20cfa2d49991c8b4147af39859b167664f2ad4561704ee74c1de03318e898db"}, - {file = "PyYAML-5.4.1.tar.gz", hash = "sha256:607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, ] raven = [ {file = "raven-6.10.0-py2.py3-none-any.whl", hash = "sha256:44a13f87670836e153951af9a3c80405d36b43097db869a36e92809673692ce4"}, @@ -4167,6 +4316,7 @@ safety = [ selenium = [ {file = "selenium-3.141.0-py2.py3-none-any.whl", hash = "sha256:2d7131d7bc5a5b99a2d9b04aaf2612c411b03b8ca1b1ee8d3de5845a9be2cb3c"}, {file = "selenium-3.141.0.tar.gz", hash = "sha256:deaf32b60ad91a4611b98d8002757f29e6f2c2d5fcaf202e1c9ad06d6772300d"}, + {file = "selenium-4.0.0-py3-none-any.whl", hash = "sha256:c942b166a21ce9c9065ad249b54059e926d39f9000167b5ca0fa4950d2ef9a82"}, ] sentry-sdk = [ {file = "sentry-sdk-1.4.3.tar.gz", hash = "sha256:b9844751e40710e84a457c5bc29b21c383ccb2b63d76eeaad72f7f1c808c8828"}, @@ -4233,10 +4383,18 @@ six = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, ] +sniffio = [ + {file = "sniffio-1.2.0-py3-none-any.whl", hash = "sha256:471b71698eac1c2112a40ce2752bb2f4a4814c22a54a3eed3676bc0f5ca9f663"}, + {file = "sniffio-1.2.0.tar.gz", hash = "sha256:c4666eecec1d3f50960c6bdf61ab7bc350648da6c126e3cf6898d8cd4ddcd3de"}, +] snowballstemmer = [ {file = "snowballstemmer-2.1.0-py2.py3-none-any.whl", hash = "sha256:b51b447bea85f9968c13b650126a888aabd4cb4463fca868ec596826325dedc2"}, {file = "snowballstemmer-2.1.0.tar.gz", hash = "sha256:e997baa4f2e9139951b6f4c631bad912dfd3c792467e2f03d7239464af90e914"}, ] +sortedcontainers = [ + {file = "sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0"}, + {file = "sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88"}, +] speaklater = [ {file = "speaklater-1.3.tar.gz", hash = "sha256:59fea336d0eed38c1f0bf3181ee1222d0ef45f3a9dd34ebe65e6bfffdd6a65a9"}, ] @@ -4327,6 +4485,14 @@ traitlets = [ {file = "traitlets-4.3.3-py2.py3-none-any.whl", hash = "sha256:70b4c6a1d9019d7b4f6846832288f86998aa3b9207c6821f3578a6a6a467fe44"}, {file = "traitlets-4.3.3.tar.gz", hash = "sha256:d023ee369ddd2763310e4c3eae1ff649689440d4ae59d7485eb4cfbbe3e359f7"}, ] +trio = [ + {file = "trio-0.19.0-py3-none-any.whl", hash = "sha256:c27c231e66336183c484fbfe080fa6cc954149366c15dc21db8b7290081ec7b8"}, + {file = "trio-0.19.0.tar.gz", hash = "sha256:895e318e5ec5e8cea9f60b473b6edb95b215e82d99556a03eb2d20c5e027efe1"}, +] +trio-websocket = [ + {file = "trio-websocket-0.9.2.tar.gz", hash = "sha256:a3d34de8fac26023eee701ed1e7bf4da9a8326b61a62934ec9e53b64970fd8fe"}, + {file = "trio_websocket-0.9.2-py3-none-any.whl", hash = "sha256:5b558f6e83cc20a37c3b61202476c5295d1addf57bd65543364e0337e37ed2bc"}, +] typing-extensions = [ {file = "typing_extensions-3.10.0.2-py2-none-any.whl", hash = "sha256:d8226d10bc02a29bcc81df19a26e56a9647f8b0a6d4a83924139f4a8b01f17b7"}, {file = "typing_extensions-3.10.0.2-py3-none-any.whl", hash = "sha256:f1d25edafde516b146ecd0613dabcc61409817af4766fbbcfb8d1ad4ec441a34"}, @@ -4376,8 +4542,12 @@ webencodings = [ {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, ] werkzeug = [ - {file = "Werkzeug-1.0.1-py2.py3-none-any.whl", hash = "sha256:2de2a5db0baeae7b2d2664949077c2ac63fbd16d98da0ff71837f7d1dea3fd43"}, - {file = "Werkzeug-1.0.1.tar.gz", hash = "sha256:6c80b1e5ad3665290ea39320b91e1be1e0d5f60652b964a3070216de83d2e47c"}, + {file = "Werkzeug-2.0.2-py3-none-any.whl", hash = "sha256:63d3dc1cf60e7b7e35e97fa9861f7397283b75d765afcaefd993d6046899de8f"}, + {file = "Werkzeug-2.0.2.tar.gz", hash = "sha256:aa2bb6fc8dee8d6c504c0ac1e7f5f7dc5810a9903e793b6f715a9f015bdadb9a"}, +] +wsproto = [ + {file = "wsproto-1.0.0-py3-none-any.whl", hash = "sha256:d8345d1808dd599b5ffb352c25a367adb6157e664e140dbecba3f9bc007edb9f"}, + {file = "wsproto-1.0.0.tar.gz", hash = "sha256:868776f8456997ad0d9720f7322b746bbe9193751b5b290b7f924659377c8c38"}, ] wtforms = [ {file = "WTForms-2.3.3-py2.py3-none-any.whl", hash = "sha256:7b504fc724d0d1d4d5d5c114e778ec88c37ea53144683e084215eed5155ada4c"}, diff --git a/pytest.ini b/pytest.ini index 507b84f9..dde067a9 100644 --- a/pytest.ini +++ b/pytest.ini @@ -17,8 +17,7 @@ [pytest] live_server_scope = module - -addopts = --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=rero_mef --cov-report=term-missing --ignore=setup.py +addopts = --pycodestyle --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=rero_mef --cov-report=term-missing --ignore=setup.py --ignore=docs/conf.py testpaths = docs tests rero_mef # not displaying all the PendingDeprecationWarnings from invenio diff --git a/rero_mef/agents/api.py b/rero_mef/agents/api.py index b4ec24fa..3467ea5f 100644 --- a/rero_mef/agents/api.py +++ b/rero_mef/agents/api.py @@ -16,15 +16,12 @@ # along with this program. If not, see . """API for manipulating records.""" -from copy import deepcopy - import click from flask import current_app from invenio_pidstore.models import PersistentIdentifier, PIDStatus from invenio_search import current_search -from ..api import Action, ReroIndexer, ReroMefRecord, ReroMefRecordError -from ..utils import add_md5, add_schema +from ..api import Action, ReroIndexer, ReroMefRecord class AgentRecord(ReroMefRecord): @@ -58,40 +55,20 @@ def create(cls, data, id_=None, delete_pid=False, dbcommit=False, def update_indexes(cls): """Update indexes.""" try: - index = f'agents_{cls.agent}' + index = f'agents_{cls.name}' current_search.flush_and_refresh(index=index) except Exception as err: current_app.logger.error(f'ERROR flush and refresh: {err}') - def update_test_md5(self, data, dbcommit=False, reindex=False): - """Update existing record.""" - return_record = self - if not data.get('md5'): - data = add_md5(data) - if data.get('md5', 'data') == self.get('md5', 'agent'): - # record has no changes - return return_record, Action.UPTODATE - data = add_schema(data, self.agent) - return_record = self.update( - data=data, dbcommit=dbcommit, reindex=reindex) - return return_record, Action.UPDATE - - def replace_test_md5(self, data, dbcommit=False, reindex=False): - """Replace data in record.""" - new_data = deepcopy(data) - pid = new_data.get('pid') - if not pid: - raise ReroMefRecordError.PidMissing(f'missing pid={self.pid}') - self.clear() - self, action = self.update_test_md5( - data=new_data, dbcommit=dbcommit, reindex=reindex) - if action == Action.UPTODATE: - self = new_data - return self - def create_or_update_mef_viaf_record(self, dbcommit=False, reindex=False, online=False): - """Create or update MEF and VIAF record.""" + """Create or update MEF and VIAF record. + + :param dbcommit: Commit changes to DB. + :param reindex: Reindex record. + :param online: Try to get VIAF record online. + :returns: MEF record, MEF action, VIAF record, VIAF + """ from .viaf.api import AgentViafRecord AgentViafRecord.update_indexes() viaf_record, got_online = AgentViafRecord.get_viaf_by_agent( @@ -104,10 +81,7 @@ def create_or_update_mef_viaf_record(self, dbcommit=False, reindex=False, agent_pid=self.pid ) mef_data = {self.agent: {'$ref': ref_string}} - mef_record = AgentMefRecord.get_mef_by_agent_pid( - agent_pid=self.pid, - agent_name=self.name - ) + mef_record = AgentMefRecord.get_mef_by_entity_pid(self.pid, self.name) if viaf_record: mef_data['viaf_pid'] = viaf_record.pid if not mef_record: @@ -142,10 +116,7 @@ def delete_from_mef(self, dbcommit=False, reindex=False, verbose=False): from .mef.api import AgentMefRecord mef_action = Action.DISCARD old_mef_pid = 'None' - mef_record = AgentMefRecord.get_mef_by_agent_pid( - agent_pid=self.pid, - agent_name=self.name - ) + mef_record = AgentMefRecord.get_mef_by_entity_pid(self.pid, self.name) if mef_record: old_mef_pid = mef_record.pid if not mef_record.deleted: @@ -225,10 +196,8 @@ def create_or_update_agent_mef_viaf(cls, data, id_=None, delete_pid=True, online = False else: if action == Action.UPTODATE: - mef_record = AgentMefRecord.get_mef_by_agent_pid( - agent_pid=record.pid, - agent_name=record.name - ) + mef_record = AgentMefRecord.get_mef_by_entity_pid( + record.pid, record.name) mef_action = Action.UPTODATE viaf_record, online = AgentViafRecord.get_viaf_by_agent(record) else: @@ -246,6 +215,7 @@ def get_online_record(cls, id, verbose=False): Has to be overloaded in agent class. """ + raise NotImplementedError() @property def deleted(self): diff --git a/rero_mef/agents/cli.py b/rero_mef/agents/cli.py index 5e3250de..6e710c5f 100644 --- a/rero_mef/agents/cli.py +++ b/rero_mef/agents/cli.py @@ -22,11 +22,11 @@ import os import click +from flask import current_app from flask.cli import with_appcontext from .mef.api import AgentMefRecord -from .tasks import create_from_viaf as task_mef_and_agents_from_viaf -from .tasks import create_mef as task_mef_from_agent +from .tasks import task_create_mef_for_agent, task_create_mef_from_viaf_agent from .utils import create_mef_files, create_viaf_files from .viaf.api import AgentViafRecord from ..utils import get_entity_class, get_entity_classes, progressbar @@ -77,7 +77,7 @@ def create_from_viaf(test_md5, enqueue, online, verbose, progress, wait, ) for pid in progress_bar: if enqueue: - task = task_mef_and_agents_from_viaf.delay( + task = task_create_mef_from_viaf_agent.delay( pid=pid, dbcommit=True, reindex=True, @@ -86,7 +86,7 @@ def create_from_viaf(test_md5, enqueue, online, verbose, progress, wait, ) click.echo(f'viaf pid: {pid} task:{task}') else: - task_mef_and_agents_from_viaf( + task_create_mef_from_viaf_agent( pid=pid, dbcommit=True, reindex=True, @@ -127,14 +127,12 @@ def create_from_viaf(test_md5, enqueue, online, verbose, progress, wait, @with_appcontext def create_mef(pid_type, enqueue, online, verbose, progress, wait, missing): """Create MEF from agents.""" + AGENTS = current_app.config.get('AGENTS', []) if missing: missing_pids, to_much_pids = \ - AgentMefRecord.get_all_missing_agents_pids( - agents=pid_type, - verbose=progress - ) + AgentMefRecord.get_all_missing_pids(pid_type, verbose=progress) for agent in pid_type: - if agent not in ['aidref', 'aggnd', 'agrero']: + if agent not in AGENTS: click.secho( f'Error create MEF from {agent}. Wrong agent!', fg='red' @@ -162,7 +160,7 @@ def create_mef(pid_type, enqueue, online, verbose, progress, wait, missing): ) for pid in progress_bar: if enqueue: - task = task_mef_from_agent.delay( + task = task_create_mef_for_agent.delay( pid=pid, agent=agent, dbcommit=True, @@ -172,7 +170,7 @@ def create_mef(pid_type, enqueue, online, verbose, progress, wait, missing): if verbose: click.echo(f'{agent} pid: {pid} task:{task}') else: - msg = task_mef_from_agent( + msg = task_create_mef_for_agent( pid=pid, agent=agent, dbcommit=True, @@ -235,7 +233,7 @@ def create_csv_mef(viaf_metadata_file, output_directory, verbose): :param output_directory: Output directory. :param verbose: Verbose. """ - click.secho(f' Create MEF CSV files from JSON.', err=True) + click.secho(f' Create MEF CSV files from VIAF metadata.', err=True) pidstore = os.path.join(output_directory, 'mef_pidstore.csv') metadata = os.path.join(output_directory, 'mef_metadata.csv') ids = os.path.join(output_directory, 'mef_id.csv') @@ -247,7 +245,7 @@ def create_csv_mef(viaf_metadata_file, output_directory, verbose): message = f' CSV output files: {pidstore}, {metadata}' count = create_mef_files( - viaf_pidstore_file=viaf_metadata_file, + viaf_metadata_file_name=viaf_metadata_file, input_directory=output_directory, mef_pidstore_file_name=pidstore, mef_metadata_file_name=metadata, diff --git a/rero_mef/agents/gnd/jsonresolvers/gnd_resolver.py b/rero_mef/agents/gnd/jsonresolvers/gnd_resolver.py index 6acf4d05..8fde3d9c 100644 --- a/rero_mef/agents/gnd/jsonresolvers/gnd_resolver.py +++ b/rero_mef/agents/gnd/jsonresolvers/gnd_resolver.py @@ -27,7 +27,7 @@ from ..api import AgentGndRecord -@jsonresolver.route('/api/gnd/', host=get_host()) +@jsonresolver.route('/api/agents/gnd/', host=get_host()) def resolve_gnd(path): """Resolve GND records.""" return resolve_record(path, AgentGndRecord) diff --git a/rero_mef/agents/gnd/views.py b/rero_mef/agents/gnd/views.py index 591b500a..5a392bbd 100644 --- a/rero_mef/agents/gnd/views.py +++ b/rero_mef/agents/gnd/views.py @@ -20,26 +20,27 @@ from flask import Blueprint, redirect, request, url_for api_blueprint = Blueprint( - 'api_gnd', + 'api_agents_gnd', __name__, url_prefix='/gnd' ) @api_blueprint.route('') -def redirect_idref_list(): +@api_blueprint.route('/') +def redirect_list(): """Redirect list to new address.""" return redirect( - url_for('invenio_records_rest.aidref_list', **request.args), + url_for('invenio_records_rest.aggnd_list', **request.args), code=308 ) @api_blueprint.route('/') -def redirect_idref_item(pid): +def redirect_item(pid): """Redirect item to new address.""" return redirect( url_for( - 'invenio_records_rest.aidref_item', pid_value=pid, **request.args), + 'invenio_records_rest.aggnd_item', pid_value=pid, **request.args), code=308 ) diff --git a/rero_mef/agents/idref/jsonresolvers/idref_resolver.py b/rero_mef/agents/idref/jsonresolvers/idref_resolver.py index de37b43d..9c686b8a 100644 --- a/rero_mef/agents/idref/jsonresolvers/idref_resolver.py +++ b/rero_mef/agents/idref/jsonresolvers/idref_resolver.py @@ -26,7 +26,7 @@ from ....utils import get_host, resolve_record -@jsonresolver.route('/api/idref/', host=get_host()) +@jsonresolver.route('/api/agents/idref/', host=get_host()) def resolve_idref(path): """Resolve IDREF records.""" return resolve_record(path, AgentIdrefRecord) diff --git a/rero_mef/agents/idref/views.py b/rero_mef/agents/idref/views.py index e0040c12..936647f6 100644 --- a/rero_mef/agents/idref/views.py +++ b/rero_mef/agents/idref/views.py @@ -20,26 +20,27 @@ from flask import Blueprint, redirect, request, url_for api_blueprint = Blueprint( - 'api_idref', + 'api_agents_idref', __name__, url_prefix='/idref' ) @api_blueprint.route('') -def redirect_idref_list(): +@api_blueprint.route('/') +def redirect_list(): """Redirect list to new address.""" return redirect( - url_for('invenio_records_rest.aggnd_list', **request.args), + url_for('invenio_records_rest.aidref_list', **request.args), code=308 ) @api_blueprint.route('/') -def redirect_idref_item(pid): +def redirect_item(pid): """Redirect item to new address.""" return redirect( url_for( - 'invenio_records_rest.aggnd_item', pid_value=pid, **request.args), + 'invenio_records_rest.aidref_item', pid_value=pid, **request.args), code=308 ) diff --git a/rero_mef/agents/mef/api.py b/rero_mef/agents/mef/api.py index 12d27adb..ff631b41 100644 --- a/rero_mef/agents/mef/api.py +++ b/rero_mef/agents/mef/api.py @@ -17,11 +17,7 @@ """API for manipulating MEF records.""" -from datetime import datetime - import click -import pytz -from elasticsearch_dsl import Q from flask import current_app from invenio_search import current_search from invenio_search.api import RecordsSearch @@ -30,8 +26,9 @@ from .minters import mef_id_minter from .models import AgentMefMetadata from .providers import MefProvider -from ..api import Action, ReroIndexer, ReroMefRecord -from ...utils import get_entity_class, get_entity_classes, progressbar +from ...api import ReroIndexer +from ...api_mef import EntityMefRecord +from ...utils import progressbar class AgentMefSearch(RecordsSearch): @@ -48,246 +45,44 @@ class Meta: default_filter = None -class AgentMefRecord(ReroMefRecord): +class AgentMefRecord(EntityMefRecord): """Mef agent class.""" minter = mef_id_minter fetcher = mef_id_fetcher provider = MefProvider model_cls = AgentMefMetadata + search = AgentMefSearch + mef_type = 'AGENTS' @classmethod def build_ref_string(cls, agent_pid, agent): - """Build url for agent's api.""" + """Build url for agent's api. + + :param agent_pid: Agent pid. + :param agent: Agent type. + :returns: URL to agent + """ with current_app.app_context(): ref_string = (f'{current_app.config.get("RERO_MEF_APP_BASE_URL")}' - f'/api/{agent}/{agent_pid}') + f'/api/agents/{agent}/{agent_pid}') return ref_string - def reindex(self, forceindex=False): - """Reindex record.""" - if forceindex: - result = AgentMefIndexer(version_type='external_gte').index(self) - else: - result = AgentMefIndexer().index(self) - return result - - @classmethod - def get_mef_by_agent_pid(cls, agent_pid, agent_name, pid_only=False): - """Get MEF record by agent pid value.""" - key = f'{agent_name}.pid' - search = AgentMefSearch() \ - .filter('term', **{key: agent_pid}) \ - .source(['pid']) - if search.count() > 1: - current_app.logger.error( - f'MULTIPLE MEF FOUND FOR: {agent_name} {agent_pid}' - ) - try: - mef_pid = next(search.scan()).pid - if pid_only: - return mef_pid - else: - return cls.get_record_by_pid(mef_pid) - except StopIteration: - return None - @classmethod - def get_all_mef_pids_by_agent(cls, agent): - """Get all MEF pids for agent. - - :param agent: Agent to search pid for. - :returns: Generator of agent pids. - """ - key = f'{agent}.pid' - search = AgentMefSearch() - results = search.filter( - 'exists', - field=key - ).source(['pid', key]).scan() - for result in results: - result_dict = result.to_dict() - yield result_dict.get(agent, {}).get('pid'),\ - result_dict.get('pid') - - @classmethod - def get_mef_by_viaf_pid(cls, viaf_pid): - """Get MEF record by agent pid value. - - :param viaf_pid: VIAF pid. - :returns: Associated MEF record. - """ - search = AgentMefSearch() - result = search.filter( - 'term', viaf_pid=viaf_pid).source(['pid']).scan() + def update_indexes(cls): + """Update indexes.""" try: - mef_pid = next(result).pid - return cls.get_record_by_pid(mef_pid) - except StopIteration: - return None - - @classmethod - def get_all_pids_without_agents_viaf(cls): - """Get all pids for records without agents and VIAF pids. - - :returns: Generator of MEF pids without agent links and without VIAF. - """ - query = AgentMefSearch()\ - .filter('bool', must_not=[Q('exists', field="viaf_pid")]) \ - .filter('bool', must_not=[Q('exists', field="gnd")]) \ - .filter('bool', must_not=[Q('exists', field="idref")]) \ - .filter('bool', must_not=[Q('exists', field="rero")]) \ - .source('pid')\ - .scan() - for hit in query: - yield hit.pid - - @classmethod - def get_all_pids_without_viaf(cls): - """Get all pids for records without VIAF pid. - - :returns: Generator of MEF pids without VIAF pid. - """ - query = AgentMefSearch()\ - .filter('bool', must_not=[Q('exists', field="viaf_pid")])\ - .filter('bool', should=[Q('exists', field="gnd")]) \ - .filter('bool', should=[Q('exists', field="idref")]) \ - .filter('bool', should=[Q('exists', field="rero")]) \ - .source('pid')\ - .scan() - for hit in query: - yield hit.pid + current_search.flush_and_refresh(index='mef') + except Exception as err: + current_app.logger.error(f'ERROR flush and refresh: {err}') @classmethod - def get_agent_pids_with_multiple_mef( - cls, - agents=['aggnd', 'aidref', 'agrero'], - verbose=False - ): - """Get agent pids with multiple MEF records. - - :params agents: Agents default=['aggnd', 'aidref', 'agrero']. - :param verbose: Verbose. - :returns: pids, multiple pids, missing pids. - """ - pids = {} - multiple_pids = {} - missing_pids = {} - for agent in agents: - if verbose: - click.echo(f'Calculating {agent}:') - pids[agent] = {} - multiple_pids[agent] = {} - missing_pids[agent] = [] - - agent_class = get_entity_class(agent) - agent_name = agent_class.name - search = AgentMefSearch().filter('exists', field=agent_name) - progress = progressbar( - items=search.scan(), - length=search.count(), - verbose=verbose - ) - for hit in progress: - data = hit.to_dict() - mef_pid = data['pid'] - agent_pid = data[agent_name]['pid'] - pids[agent].setdefault(agent_pid, []) - pids[agent][agent_pid].append(mef_pid) - if len(pids[agent][agent_pid]) > 1: - multiple_pids[agent][agent_pid] = pids[agent][agent_pid] - if len(pids[agent]) < agent_class.count(): - progress = progressbar( - items=agent_class.get_all_pids(), - length=agent_class.count(), - verbose=verbose - ) - for pid in progress: - if not pids[agent].pop(pid, None): - missing_pids[agent].append(pid) - else: - pids[agent] = {} - return pids, multiple_pids, missing_pids - - # multiple_pids = {} - # for agent in agents: - # multiple_pids[agent] = {} - # agent_class = get_entity_class(agent) - # if agent_class: - # agent_name = agent_class.name - # search = AgentMefSearch() - # search.aggs.bucket( - # 'MULTIPLE', - # 'terms', - # field=f'{agent_name}.pid', - # min_doc_count=2, - # size=size - # ) - # res = search.execute() - # for values in res.aggregations.MULTIPLE.buckets: - # agent_pid = values.key - # field = f'{agent_name}.pid' - # search = AgentMefSearch().filter( - # Q('term', **{field: agent_pid})) - # mef_pids = [] - # for hit in search: - # mef_pids.append(hit.pid) - # mef_pids = sorted(mef_pids) - # multiple_pids[agent][agent_pid] = mef_pids - # return multiple_pids + def get_all_missing_viaf_pids(cls, verbose=False): + """Get all missing VIAF pids. - @classmethod - def get_all_missing_agents_pids( - cls, - agents=['aggnd', 'aidref', 'agrero'], - verbose=False - ): - """Get all missing agents. - - :params agents: Agents default=['aggnd', 'aidref', 'agrero']. :param verbose: Verbose. - :returns: missing pids, to much pids. + :returns: Missing VIAF pids. """ - missing_pids = {} - to_much_pids = {} - used_classes = {} - agent_classes = get_entity_classes() - for agent_classe in agent_classes: - if agent_classe in agents: - used_classes[agent_classe] = agent_classes[agent_classe] - for agent, agent_class in used_classes.items(): - if verbose: - click.echo(f'Get pids from {agent} ...') - missing_pids[agent] = {} - progress = progressbar( - items=agent_class.get_all_pids(), - length=agent_class.count(), - verbose=verbose - ) - for pid in progress: - missing_pids[agent][pid] = 1 - if verbose: - click.echo('Get pids from MEF and calculate missing ...') - progress = progressbar( - items=AgentMefSearch().filter('match_all').source().scan(), - length=AgentMefSearch().filter('match_all').source().count(), - verbose=verbose - ) - for hit in progress: - pid = hit.pid - data = hit.to_dict() - for agent, agent_class in used_classes.items(): - agent_data = data.get(agent_class.name) - if agent_data: - agent_pid = agent_data.get('pid') - if not missing_pids[agent].pop(agent_pid, None): - to_much_pids.setdefault(pid, {}) - to_much_pids[pid][agent] = agent_pid - return missing_pids, to_much_pids - - @classmethod - def get_all_missing_viaf_pids(cls, verbose=False): - """Get all missing VIAF pids.""" from ..viaf.api import AgentViafRecord missing_pids = {} if verbose: @@ -302,8 +97,8 @@ def get_all_missing_viaf_pids(cls, verbose=False): if verbose: click.echo('Get pids from MEF and calculate missing ...') progress = progressbar( - items=AgentMefSearch().filter('match_all').source().scan(), - length=AgentMefSearch().filter('match_all').source().count(), + items=cls.search().filter('match_all').source().scan(), + length=cls.search().filter('match_all').source().count(), verbose=True ) for hit in progress: @@ -313,70 +108,19 @@ def get_all_missing_viaf_pids(cls, verbose=False): missing_pids.pop(viaf_pid, None) return missing_pids - def mark_as_deleted(self, dbcommit=False, reindex=False): - """Mark record as deleted.""" - # if current_app.config['INDEXER_REPLACE_REFS']: - # data = deepcopy(self.replace_refs()) - # else: - # data = self.dumps() - # data['_deleted'] = pytz.utc.localize(self.created).isoformat() - # - # indexer = AgentMefIndexer() - # index, doc_type = indexer.record_to_index(self) - # print('---->', index, doc_type) - # body = indexer._prepare_record(data, index, doc_type) - # index, doc_type = indexer._prepare_index(index, doc_type) - # print('---->', index, doc_type) - # - # return indexer.client.index( - # id=str(self.id), - # version=self.revision_id, - # version_type=indexer._version_type, - # index=index, - # doc_type=doc_type, - # body=body - # ) - self['deleted'] = pytz.utc.localize(datetime.now()).isoformat() - self.update(data=self, dbcommit=dbcommit, reindex=reindex) - return self - - @property - def deleted(self): - """Get record deleted value.""" - return self.get('deleted') - - @classmethod - def create_deleted(cls, agent, dbcommit=False, reindex=False): - """Create a deleted record for an agent.""" - data = {} - data[agent.name] = {'$ref': cls.build_ref_string( - agent_pid=agent.pid, - agent=agent.name - )} - data['deleted'] = pytz.utc.localize(datetime.now()).isoformat() - return cls.create(data=data, dbcommit=dbcommit, reindex=reindex) - - @classmethod - def update_indexes(cls): - """Update indexes.""" - try: - current_search.flush_and_refresh(index='mef') - except Exception as err: - current_app.logger.error(f'ERROR flush and refresh: {err}') - - def delete_agent(self, agent_record, dbcommit=False, reindex=False): - """Delete Agency from record.""" - action = Action.DISCARD - if self.pop(agent_record.agent, None): - action = Action.UPDATE - self.replace( - data=self, - dbcommit=dbcommit, - reindex=reindex - ) - if reindex: - AgentMefRecord.update_indexes() - return self, action + def replace_refs(self): + """Replace $ref with real data.""" + data = super().replace_refs() + sources = [] + for agent in ['rero', 'gnd', 'idref']: + if agent in data and data[agent]: + sources.append(agent) + metadata = data[agent].get('metadata') + if metadata: + data[agent] = metadata + data['type'] = metadata['bf:Agent'] + data['sources'] = sources + return data class AgentMefIndexer(ReroIndexer): diff --git a/rero_mef/agents/mef/jsonschemas/mef/mef-v0.0.1.json b/rero_mef/agents/mef/jsonschemas/mef/mef-v0.0.1.json index de0453ab..1a27850f 100644 --- a/rero_mef/agents/mef/jsonschemas/mef/mef-v0.0.1.json +++ b/rero_mef/agents/mef/jsonschemas/mef/mef-v0.0.1.json @@ -20,20 +20,20 @@ "minLength": 1 }, "viaf_pid": { - "title": "VIAF authority ID", + "title": "VIAF agent ID", "type": "string", "minLength": 1 }, "gnd": { - "title": "GND authority ID", + "title": "GND agent ID", "type": "object" }, "rero": { - "title": "RERO authority ID", + "title": "RERO agent ID", "type": "object" }, "idref": { - "title": "IDREF authority ID", + "title": "IDREF agent ID", "type": "object" }, "deleted": { diff --git a/rero_mef/agents/mef/listner.py b/rero_mef/agents/mef/listner.py deleted file mode 100644 index 4d2a7488..00000000 --- a/rero_mef/agents/mef/listner.py +++ /dev/null @@ -1,38 +0,0 @@ -# -*- coding: utf-8 -*- -# -# RERO MEF -# Copyright (C) 2020 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 MEF records.""" - -from .api import AgentMefSearch - - -def enrich_mef_data(sender, json=None, record=None, index=None, doc_type=None, - arguments=None, **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. - """ - if index.split('-')[0] == AgentMefSearch.Meta.index: - sources = [] - for agent in ['rero', 'gnd', 'idref']: - if agent in json and json[agent]: - sources.append(agent) - json['type'] = json[agent]['bf:Agent'] - json['sources'] = sources diff --git a/rero_mef/serializers.py b/rero_mef/agents/mef/serializers.py similarity index 65% rename from rero_mef/serializers.py rename to rero_mef/agents/mef/serializers.py index affe012f..66095dc3 100644 --- a/rero_mef/serializers.py +++ b/rero_mef/agents/mef/serializers.py @@ -23,50 +23,17 @@ from invenio_records_rest.serializers.json import JSONSerializer from invenio_records_rest.serializers.response import record_responsify -from .agents.mef.api import AgentMefRecord, AgentMefSearch -from .agents.viaf.api import AgentViafSearch -from .utils import get_entity_classes +from ...utils import get_entity_classes def add_links(pid, record): - """Add MEF link to agents.""" + """Add VIAF links to MEF.""" links = {} - if pid.pid_type == 'mef': - viaf_pid = record.get('viaf_pid') - if viaf_pid: - links['viaf'] = '{scheme}://{host}/api/agents/viaf/' \ - + str(viaf_pid) - links['viaf.org'] = 'http://www.viaf.org/viaf/' + str(viaf_pid) - elif pid.pid_type == "viaf": - viaf_pid = record.get('pid') - mef_pid_search = AgentMefSearch() \ - .filter('term', viaf_pid=viaf_pid) \ - .source(['pid']).scan() - try: - mef_pid = next(mef_pid_search).pid - links['mef'] = '{scheme}://{host}/api/agents/mef/' + str(mef_pid) - except Exception: - pass - links['viaf.org'] = 'http://www.viaf.org/viaf/' + str(viaf_pid) - else: - mef_pid = AgentMefRecord.get_mef_by_agent_pid( - record.pid, - record.name, - pid_only=True - ) - if mef_pid: - links['mef'] = '{scheme}://{host}/api/agents/mef/' + str(mef_pid) - try: - viaf_pid_name = record.viaf_pid_name - query = AgentViafSearch(). \ - filter({'term': {viaf_pid_name: pid.pid_value}}). \ - source('pid') - viaf_pid = next(query.scan()).pid - links['viaf'] = '{scheme}://{host}/api/agents/viaf/' \ + viaf_pid = record.get('viaf_pid') + if viaf_pid: + links['viaf'] = '{scheme}://{host}/api/agents/viaf/' \ + str(viaf_pid) - links['viaf.org'] = 'http://www.viaf.org/viaf/' + str(viaf_pid) - except Exception: - pass + links['viaf.org'] = 'http://www.viaf.org/viaf/' + str(viaf_pid) link_factory = default_links_factory_with_additional(links) return link_factory(pid) @@ -123,4 +90,5 @@ def serialize(self, pid, record, links_factory=None, **kwargs): json_v1 = ReroMefSerializer(RecordSchemaJSONV1) """JSON v1 serializer.""" -json_v1_response = record_responsify(json_v1, 'application/rero+json') +json_v1_agent_mef_response = record_responsify( + json_v1, 'application/rero+json') diff --git a/rero_mef/agents/mef/views.py b/rero_mef/agents/mef/views.py index 46fdc633..dd3660dc 100644 --- a/rero_mef/agents/mef/views.py +++ b/rero_mef/agents/mef/views.py @@ -20,14 +20,15 @@ from flask import Blueprint, redirect, request, url_for api_blueprint = Blueprint( - 'api_mef', + 'api_agents_mef', __name__, url_prefix='/mef' ) @api_blueprint.route('') -def redirect_idref_list(): +@api_blueprint.route('/') +def redirect_list(): """Redirect list to new address.""" return redirect( url_for('invenio_records_rest.mef_list', **request.args), @@ -36,7 +37,7 @@ def redirect_idref_list(): @api_blueprint.route('/') -def redirect_idref_item(pid): +def redirect_item(pid): """Redirect item to new address.""" return redirect( url_for( diff --git a/rero_mef/agents/rero/jsonresolvers/rero_resolver.py b/rero_mef/agents/rero/jsonresolvers/rero_resolver.py index 91cfcbdd..bbb3e533 100644 --- a/rero_mef/agents/rero/jsonresolvers/rero_resolver.py +++ b/rero_mef/agents/rero/jsonresolvers/rero_resolver.py @@ -26,7 +26,7 @@ from ....utils import get_host, resolve_record -@jsonresolver.route('/api/rero/', host=get_host()) +@jsonresolver.route('/api/agents/rero/', host=get_host()) def resolve_rero(path): """Resolve RERO records.""" return resolve_record(path, AgentReroRecord) diff --git a/rero_mef/agents/rero/views.py b/rero_mef/agents/rero/views.py index 8db83258..81179fbd 100644 --- a/rero_mef/agents/rero/views.py +++ b/rero_mef/agents/rero/views.py @@ -20,14 +20,15 @@ from flask import Blueprint, redirect, request, url_for api_blueprint = Blueprint( - 'api_rero', + 'api_agents_rero', __name__, url_prefix='/rero' ) @api_blueprint.route('') -def redirect_idref_list(): +@api_blueprint.route('/') +def redirect_list(): """Redirect list to new address.""" return redirect( url_for('invenio_records_rest.agrero_list', **request.args), @@ -36,7 +37,7 @@ def redirect_idref_list(): @api_blueprint.route('/') -def redirect_idref_item(pid): +def redirect_item(pid): """Redirect item to new address.""" return redirect( url_for( diff --git a/rero_mef/agents/serializers.py b/rero_mef/agents/serializers.py new file mode 100644 index 00000000..d4c682a7 --- /dev/null +++ b/rero_mef/agents/serializers.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2020 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 . + +"""Record serialization.""" + +from flask import request +from invenio_records_rest.links import default_links_factory_with_additional +from invenio_records_rest.schemas import RecordSchemaJSONV1 +from invenio_records_rest.serializers.json import JSONSerializer +from invenio_records_rest.serializers.response import record_responsify + +from .mef.api import AgentMefRecord +from .viaf.api import AgentViafSearch + + +def add_links(pid, record): + """Add MEF link to agents.""" + links = {} + mef_pid = AgentMefRecord.get_mef_by_entity_pid( + record.pid, record.name, pid_only=True) + if mef_pid: + links['mef'] = '{scheme}://{host}/api/agents/mef/' + str(mef_pid) + try: + viaf_pid_name = record.viaf_pid_name + query = AgentViafSearch(). \ + filter({'term': {viaf_pid_name: pid.pid_value}}). \ + source('pid') + viaf_pid = next(query.scan()).pid + links['viaf'] = '{scheme}://{host}/api/agents/viaf/' \ + + str(viaf_pid) + links['viaf.org'] = 'http://www.viaf.org/viaf/' + str(viaf_pid) + except Exception: + pass + + link_factory = default_links_factory_with_additional(links) + return link_factory(pid) + + +class ReroMefSerializer(JSONSerializer): + """Mixin serializing records as JSON.""" + + def serialize(self, pid, record, links_factory=None, **kwargs): + """Serialize a single record and persistent identifier. + + :param pid: Persistent identifier instance. + :param record: Record instance. + :param links_factory: Factory function for record links. + """ + if request and request.args.get('resolve'): + record = record.replace_refs() + + return super(ReroMefSerializer, self).serialize( + pid, record, links_factory=add_links, **kwargs + ) + + +json_v1 = ReroMefSerializer(RecordSchemaJSONV1) +"""JSON v1 serializer.""" + +json_v1_agent_response = record_responsify(json_v1, 'application/rero+json') diff --git a/rero_mef/agents/tasks.py b/rero_mef/agents/tasks.py index e63b6681..8df99ffc 100644 --- a/rero_mef/agents/tasks.py +++ b/rero_mef/agents/tasks.py @@ -24,7 +24,7 @@ @shared_task -def create_from_viaf(pid, dbcommit=True, reindex=True, +def task_create_mef_from_viaf_agent(pid, dbcommit=True, reindex=True, test_md5=False, online=False, verbose=False): """Create MEF and agents from VIAF task. @@ -49,15 +49,14 @@ def create_from_viaf(pid, dbcommit=True, reindex=True, @shared_task -def create_mef(pid, agent, dbcommit=True, reindex=True, - online=False): +def task_create_mef_for_agent(pid, agent, dbcommit=True, reindex=True, + online=False): """Create MEF from agent task. :param pid: pid for agent to use :param agent: agent :param dbcommit: db commit or not :param reindex: reindex or not - :param test_md5: test md5 or not :param online: get VIAF online if not exist :returns: no return """ @@ -70,12 +69,15 @@ def create_mef(pid, agent, dbcommit=True, reindex=True, reindex=reindex, online=online ) - mef_pid = 'Non' - if mef_record: - mef_pid = mef_record.pid - viaf_pid = 'Non' - if viaf_record: - viaf_pid = viaf_record.pid + mef_pid = 'Non' + if mef_record: + mef_pid = mef_record.pid + viaf_pid = 'Non' + if viaf_record: + viaf_pid = viaf_record.pid - actions = f'mef: {mef_pid} {mef_action.value} viaf: {viaf_pid} {online}' - return f'Create MEF from {agent} pid: {pid} | {actions}' + actions = f'mef: {mef_pid} {mef_action.value} ' \ + 'viaf: {viaf_pid} {online}' + return f'Create MEF from {agent} pid: {pid} | {actions}' + else: + return f'Not found agent {agent}:{pid}' diff --git a/rero_mef/agents/utils.py b/rero_mef/agents/utils.py index 5ee04f8a..f792a6a4 100644 --- a/rero_mef/agents/utils.py +++ b/rero_mef/agents/utils.py @@ -17,9 +17,9 @@ """Utilities.""" -import datetime import json import os +from datetime import datetime from uuid import uuid4 import click @@ -31,7 +31,7 @@ def write_mef_files(pid, data, pidstore, metadata, ids): """Write MEF metadata, pidstore and ids file. - + :param pid: Pid for data. :param data: Corresponding data to write. :param pidstore: Pidstore file. @@ -50,10 +50,10 @@ def write_mef_files(pid, data, pidstore, metadata, ids): def init_agent_pids(input_directory, verbose): """Init agent data. - + :param input_directory: Input directory to look for agent pidstore files. :param verbose: Verbose. - :returns: Dictionary with agent name and associated pids and dictonary with + :returns: Dictionary with agent name and associated pids and dictonary with VIAF agent pid names. """ pids = {} @@ -82,7 +82,7 @@ def init_agent_pids(input_directory, verbose): def create_mef_files( - viaf_pidstore_file, + viaf_metadata_file_name, input_directory, mef_pidstore_file_name, mef_metadata_file_name, @@ -98,7 +98,7 @@ def create_mef_files( :param mef_ids_file_name: MEF ids output file name. :param verbose: Verbose. :returns: count of processed MEF records. - """ + """ if verbose: click.echo('Start ***') pids, viaf_agent_pid_names = init_agent_pids(input_directory, verbose) @@ -111,16 +111,16 @@ def create_mef_files( schemas = current_app.config.get('RECORDS_JSON_SCHEMA') base_url = current_app.config.get('RERO_MEF_APP_BASE_URL') schema = (f'{base_url}' - f'{current_app.config.get("JSONSCHEMAS_ENDPOINT")}' - f'{schemas["mef"]}') + f'{current_app.config.get("JSONSCHEMAS_ENDPOINT")}' + f'{schemas["mef"]}') # Create MEF with VIAF if verbose: click.echo( - f' Create MEF with VIAF pid: {viaf_pidstore_file}' + f' Create MEF with VIAF pid: {viaf_metadata_file_name}' ) progress = progressbar( - items=open(str(viaf_pidstore_file), 'r', encoding='utf-8'), - length=number_records_in_file(viaf_pidstore_file, 'csv'), + items=open(str(viaf_metadata_file_name), 'r', encoding='utf-8'), + length=number_records_in_file(viaf_metadata_file_name, 'csv'), verbose=verbose ) for line in progress: @@ -146,6 +146,7 @@ def create_mef_files( metadata=metadata, ids=ids ) + # Create MEF without VIAF length = sum([len(p) for p in pids.values()]) if verbose: @@ -179,7 +180,7 @@ def create_viaf_files( verbose=False ): """Create VIAF CSV file to load. - + :param viaf_input_file: VIAF input source file name. :param viaf_pidstore_file_name: VIAF pidstore output file name. :param viaf_metadata_file_name: VIAF metadata output file name. @@ -187,7 +188,7 @@ def create_viaf_files( :returns: count of processed VIAF records. """ if verbose: - click.echo('Start ***') + click.echo(' Start ...') agent_pid = 0 corresponding_data = {} diff --git a/rero_mef/agents/viaf/api.py b/rero_mef/agents/viaf/api.py index 0253f11f..96d41a1a 100644 --- a/rero_mef/agents/viaf/api.py +++ b/rero_mef/agents/viaf/api.py @@ -117,10 +117,10 @@ def get_viaf_by_agent(cls, agent, online=False): return cls.get_record_by_pid(viaf_pid), False pid = agent.get('pid') viaf_pid_name = agent.viaf_pid_name - result = AgentViafSearch().filter( - {'term': {viaf_pid_name: pid}}).source(['pid']).scan() + query = AgentViafSearch() \ + .filter({'term': {viaf_pid_name: pid}}) try: - viaf_pid = next(result).pid + viaf_pid = next(query.source(['pid']).scan()).pid return cls.get_record_by_pid(viaf_pid), False except StopIteration: if online: @@ -148,7 +148,15 @@ def get_viaf_by_agent(cls, agent, online=False): def create_mef_and_agents(self, dbcommit=False, reindex=False, test_md5=False, online=False, verbose=False): - """Create MEF and agents records.""" + """Create MEF and agents records. + + :param dbcommit: Commit changes to DB. + :param reindex: Reindex record. + :param test_md5: Test MD% (not used). + :param online: Search online for new VIAF record. + :param verbose: Verbose. + :returns: Actions. + """ actions = {} for agent, agent_data in get_agents_endpoints().items(): record_class = obj_or_import_string(agent_data.get('record_class')) @@ -219,10 +227,15 @@ def update_indexes(cls): current_app.logger.error(f'ERROR flush and refresh: {err}') def delete(self, dbcommit=False, delindex=False, online=False): - """Delete record and persistent identifier.""" + """Delete record and persistent identifier. + + :param dbcommit: Commit changes to DB. + :param reindex: Reindex record. + :param online: Search online for new VIAF record. + :returns: MEF actions message. + """ agents_records = self.get_agents_records() # delete viaf_pid from MEF record - from ..mef.api import AgentMefRecord mef_record = AgentMefRecord.get_mef_by_viaf_pid(self.pid) if mef_record: mef_record.pop('viaf_pid', None) @@ -278,7 +291,12 @@ def get_agents_records(self): @classmethod def get_missing_agent_pids(cls, agent, verbose=False): - """Get all missing pids defined in VIAF.""" + """Get all missing pids defined in VIAF. + + :param agent: Agent to search for missing pids. + :param verbose: Verbose. + :returns: Agent pids without VIAF, VIAF pids without agent + """ pids_db = {} pids_viaf = [] record_class = get_entity_class(agent) @@ -294,9 +312,9 @@ def get_missing_agent_pids(cls, agent, verbose=False): if verbose: click.echo(f'Get pids from VIAF with {agent} ...') agent_pid_name = f'{agent}_pid' - query = AgentViafSearch().filter('bool', should=[ - Q('exists', field=agent_pid_name) - ]).source(['pid', agent_pid_name]) + query = AgentViafSearch() \ + .filter('bool', should=[Q('exists', field=agent_pid_name)]) \ + .source(['pid', agent_pid_name]) progress = progressbar( items=query.scan(), length=query.count(), diff --git a/rero_mef/agents/viaf/jsonresolvers/__init__.py b/rero_mef/agents/viaf/jsonresolvers/__init__.py new file mode 100644 index 00000000..a675ab24 --- /dev/null +++ b/rero_mef/agents/viaf/jsonresolvers/__init__.py @@ -0,0 +1,18 @@ +# -*- 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 . + +"""JSON resolvers.""" diff --git a/rero_mef/agents/viaf/jsonresolvers/viaf_resolver.py b/rero_mef/agents/viaf/jsonresolvers/viaf_resolver.py new file mode 100644 index 00000000..a379fd96 --- /dev/null +++ b/rero_mef/agents/viaf/jsonresolvers/viaf_resolver.py @@ -0,0 +1,32 @@ +# -*- 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 . + + +"""JSON resolvers.""" + +from __future__ import absolute_import, print_function, unicode_literals + +import jsonresolver + +from ..api import AgentViafRecord +from ....utils import get_host, resolve_record + + +@jsonresolver.route('/api/agents/viaf/', host=get_host()) +def resolve_rero(path): + """Resolve VIAF records.""" + return resolve_record(path, AgentViafRecord) diff --git a/rero_mef/agents/viaf/serializers.py b/rero_mef/agents/viaf/serializers.py new file mode 100644 index 00000000..2cff3b77 --- /dev/null +++ b/rero_mef/agents/viaf/serializers.py @@ -0,0 +1,88 @@ +# -*- 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 . + +"""Record serialization.""" + +from flask import request, url_for +from invenio_records_rest.links import default_links_factory_with_additional +from invenio_records_rest.schemas import RecordSchemaJSONV1 +from invenio_records_rest.serializers.json import JSONSerializer +from invenio_records_rest.serializers.response import record_responsify + +from ..mef.api import AgentMefSearch + + +def add_links(pid, record): + """Add MEF link to VIAF.""" + links = {} + viaf_pid = record.get('pid') + mef_pid_search = AgentMefSearch() \ + .filter('term', viaf_pid=viaf_pid) \ + .source(['pid']).scan() + try: + for idx, search in enumerate(mef_pid_search): + url = '{scheme}://{host}/api/agents/mef/' + str(search.pid) + if idx: + links[f'mef {idx}'] = url + else: + links['mef'] = url + except Exception: + pass + links['viaf.org'] = 'http://www.viaf.org/viaf/' + str(viaf_pid) + + link_factory = default_links_factory_with_additional(links) + return link_factory(pid) + + +# Nice to have direct working links in test server! +def local_link(agent, name, record): + """Change links to actual links.""" + if name in record: + ref = record[name].get('$ref') + if ref: + my_pid = ref.split('/')[-1] + url = url_for( + f'invenio_records_rest.{agent}_item', + pid_value=my_pid, + _external=True + ) + record[name].update({'$ref': url}) + + +class ReroMefSerializer(JSONSerializer): + """Mixin serializing records as JSON.""" + + def serialize(self, pid, record, links_factory=None, **kwargs): + """Serialize a single record and persistent identifier. + + :param pid: Persistent identifier instance. + :param record: Record instance. + :param links_factory: Factory function for record links. + """ + if request and request.args.get('resolve'): + record = record.replace_refs() + + return super(ReroMefSerializer, self).serialize( + pid, record, links_factory=add_links, **kwargs + ) + + +json_v1 = ReroMefSerializer(RecordSchemaJSONV1) +"""JSON v1 serializer.""" + +json_v1_agent_viaf_response = record_responsify( + json_v1, 'application/rero+json') diff --git a/rero_mef/agents/viaf/views.py b/rero_mef/agents/viaf/views.py index a31c1c2b..b240a988 100644 --- a/rero_mef/agents/viaf/views.py +++ b/rero_mef/agents/viaf/views.py @@ -20,14 +20,15 @@ from flask import Blueprint, redirect, request, url_for api_blueprint = Blueprint( - 'api_viaf', + 'api_agents_viaf', __name__, url_prefix='/viaf' ) @api_blueprint.route('') -def redirect_idref_list(): +@api_blueprint.route('/') +def redirect_list(): """Redirect list to new address.""" return redirect( url_for('invenio_records_rest.viaf_list', **request.args), @@ -36,7 +37,7 @@ def redirect_idref_list(): @api_blueprint.route('/') -def redirect_idref_item(pid): +def redirect_item(pid): """Redirect item to new address.""" return redirect( url_for( diff --git a/rero_mef/api.py b/rero_mef/api.py index 26e05764..9e286ce4 100644 --- a/rero_mef/api.py +++ b/rero_mef/api.py @@ -118,20 +118,22 @@ def create(cls, data, id_=None, delete_pid=False, dbcommit=False, return record def update_test_md5(self, data, dbcommit=False, reindex=False): - """Update existing record.""" - return_record = self - if data.get('md5'): - data = add_md5(data) - data_md5 = data.get('md5', 'data') - agent_md5 = self.get('md5', 'agent') - if data_md5 == agent_md5: - # record has no changes - agent_action = Action.UPTODATE - return return_record, agent_action + """Update existing record. + + :param data: Data to test MD5 changes. + :param dbcommit: Commit changes to DB. + :param reindex: Reindex record. + :returns: Record. + """ + data = deepcopy(data) + data = add_md5(data) + if data.get('md5', 'data') == self.get('md5', 'agent'): + # record has no changes + return self, Action.UPTODATE + data = add_schema(data, self.agent) return_record = self.replace( data=data, dbcommit=dbcommit, reindex=reindex) - agent_action = Action.UPDATE - return return_record, agent_action + return return_record, Action.UPDATE @classmethod def create_or_update(cls, data, id_=None, delete_pid=True, dbcommit=False, @@ -297,14 +299,17 @@ def count(cls, with_deleted=False): def index_all(cls): """Index all records.""" ids = cls.get_all_ids() - cls.index_ids(ids) - return len(ids) + count = cls.index_ids(ids) + return count @classmethod def index_ids(cls, ids): """Index ids.""" + count = 0 for uuid in ids: + count += 1 RecordIndexer().index(cls.get_record_by_id(uuid)) + return count def delete(self, force=False, dbcommit=False, delindex=False): """Delete record and persistent identifier.""" @@ -341,20 +346,41 @@ def dbcommit(self, reindex=False, forceindex=False): if reindex: self.reindex(forceindex=forceindex) + @classmethod + def get_indexer_class(cls): + """Get the indexer from config.""" + try: + indexer = obj_or_import_string( + current_app.config['RECORDS_REST_ENDPOINTS'][ + cls.provider.pid_type + ]['indexer_class'] + ) + except Exception: + # provide default indexer if no indexer is defined in config. + indexer = ReroIndexer + return indexer + def reindex(self, forceindex=False): """Reindex record.""" + indexer = self.get_indexer_class() if forceindex: - result = RecordIndexer(version_type='external_gte').index(self) + result = indexer(version_type='external_gte').index(self) else: - result = RecordIndexer().index(self) + result = indexer().index(self) return result def delete_from_index(self): """Delete record from index.""" + indexer = self.get_indexer_class() try: - RecordIndexer().delete(self) + indexer().delete(self) except NotFoundError: - pass + current_app.logger.warning( + 'Can not delete from index {class_name}: {pid}'.format( + class_name=self.__class__.__name__, + pid=self.pid + ) + ) @property def pid(self): diff --git a/rero_mef/api_mef.py b/rero_mef/api_mef.py new file mode 100644 index 00000000..0dbcfa0a --- /dev/null +++ b/rero_mef/api_mef.py @@ -0,0 +1,266 @@ +# -*- 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 . + +"""API for manipulating MEF records.""" + +from datetime import datetime + +import click +import pytz +from elasticsearch_dsl import Q +from flask import current_app +from invenio_search import current_search + +from .api import Action, ReroMefRecord +from .utils import get_entity_class, get_entity_classes, progressbar + + +class EntityMefRecord(ReroMefRecord): + """Mef agent class.""" + + minter = None + fetcher = None + provider = None + model_cls = None + viaf_cls = None + search = None + mef_type = '' + + @classmethod + def get_mef_by_entity_pid(cls, entity_pid, entity_name, pid_only=False): + """Get MEF record by entity pid value. + + :param entity_pid: Entety 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'{entity_name}.pid' + search = cls.search() \ + .filter('term', **{key: entity_pid}) \ + .source(['pid']) + if search.count() > 1: + current_app.logger.error( + f'MULTIPLE MEF FOUND FOR: {entity_name} {entity_pid}' + ) + try: + mef_pid = next(search.scan()).pid + if pid_only: + return mef_pid + else: + return cls.get_record_by_pid(mef_pid) + except StopIteration: + return None + + @classmethod + def get_mef_by_viaf_pid(cls, viaf_pid): + """Get MEF record by agent pid value. + + :param viaf_pid: VIAF pid. + :returns: Associated MEF record. + """ + query = cls.search() \ + .filter('term', viaf_pid=viaf_pid) + try: + mef_pid = next(query.source(['pid']).scan()).pid + return cls.get_record_by_pid(mef_pid) + except StopIteration: + return None + + @classmethod + def get_all_pids_without_agents_and_viaf(cls): + """Get all pids for records without agents and VIAF pids. + + :returns: Generator of MEF pids without agent links and without VIAF. + """ + query = cls.search() \ + .filter('bool', must_not=[Q('exists', field="viaf_pid")]) + for pid_type in current_app.config.get(cls.mef_type, []): + query = query \ + .filter('bool', must_not=[Q('exists', field=pid_type)]) + for hit in query.source('pid').scan(): + yield hit.pid + + @classmethod + def get_all_pids_without_viaf(cls): + """Get all pids for records without VIAF pid. + + :returns: Generator of MEF pids without VIAF pid. + """ + query = cls.search() \ + .filter('bool', must_not=[Q('exists', field="viaf_pid")]) + for pid_type in current_app.config.get(cls.mef_type, []): + query = query \ + .filter('bool', should=[Q('exists', field=pid_type)]) + for hit in query.source('pid').scan(): + yield hit.pid + + @classmethod + def get_pids_with_multiple_mef(cls, record_types=[], verbose=False): + """Get agent pids with multiple MEF records. + + :params record_types: Record types (pid_types). + :param verbose: Verbose. + :returns: pids, multiple pids, missing pids. + """ + pids = {} + multiple_pids = {} + missing_pids = {} + for record_type in record_types: + if verbose: + click.echo(f'Calculating {record_type}:') + pids[record_type] = {} + multiple_pids[record_type] = {} + missing_pids[record_type] = [] + + agent_class = get_entity_class(record_type) + if agent_class: + agent_name = agent_class.name + query = cls.search().filter('exists', field=agent_name) + progress = progressbar( + items=query + .params(preserve_order=True) + .sort({'pid': {'order': 'asc'}}) + .scan(), + length=query.count(), + verbose=verbose + ) + for hit in progress: + data = hit.to_dict() + mef_pid = data['pid'] + agent_pid = data[agent_name]['pid'] + pids[record_type].setdefault(agent_pid, []) + pids[record_type][agent_pid].append(mef_pid) + if len(pids[record_type][agent_pid]) > 1: + multiple_pids[record_type][agent_pid] = \ + pids[record_type][agent_pid] + if len(pids[record_type]) < agent_class.count(): + progress = progressbar( + items=agent_class.get_all_pids(), + length=agent_class.count(), + verbose=verbose + ) + for pid in progress: + if not pids[record_type].pop(pid, None): + missing_pids[record_type].append(pid) + else: + pids[record_type] = {} + else: + current_app.logger.error( + f'Record type not found: {record_type}') + return pids, multiple_pids, missing_pids + + @classmethod + def get_all_missing_pids(cls, record_types=[], verbose=False): + """Get all missing agents. + + :params record_types: Record types (pid_type). + :param verbose: Verbose. + :returns: missing pids, to much pids. + """ + missing_pids = {} + to_much_pids = {} + used_classes = {} + entity_classes = get_entity_classes() + for entity_class in entity_classes: + if entity_class in record_types: + used_classes[entity_class] = entity_classes[entity_class] + for entity, entity_class in used_classes.items(): + if verbose: + click.echo(f'Get pids from {entity} ...') + missing_pids[entity] = {} + progress = progressbar( + items=entity_class.get_all_pids(), + length=entity_class.count(), + verbose=verbose + ) + for pid in progress: + missing_pids[entity][pid] = 1 + if verbose: + click.echo('Get pids from MEF and calculate missing ...') + progress = progressbar( + items=cls.search().filter('match_all').scan(), + length=cls.search().filter('match_all').count(), + verbose=verbose + ) + for hit in progress: + pid = hit.pid + + data = hit.to_dict() + for agent, agent_class in used_classes.items(): + agent_data = data.get(agent_class.name) + if agent_data: + agent_pid = agent_data.get('pid') + if not missing_pids[agent].pop(agent_pid, None): + to_much_pids.setdefault(pid, {}) + to_much_pids[pid][agent] = agent_pid + return missing_pids, to_much_pids + + def mark_as_deleted(self, dbcommit=False, reindex=False): + """Mark record as deleted. + + :param dbcommit: Commit changes to DB. + :param reindex: Reindex record. + :returns: Modified record. + """ + self['deleted'] = pytz.utc.localize(datetime.now()).isoformat() + self.update(data=self, dbcommit=dbcommit, reindex=reindex) + return self + + @property + def deleted(self): + """Get record deleted value.""" + return self.get('deleted') + + @classmethod + def create_deleted(cls, record, dbcommit=False, reindex=False): + """Create a deleted record for an record. + + :param record: Record to create. + :param dbcommit: Commit changes to DB. + :param reindex: Reindex record. + :returns: Created record. + """ + data = {} + data[record.name] = { + '$ref': cls.build_ref_string(record.pid, record.name)} + data['deleted'] = pytz.utc.localize(datetime.now()).isoformat() + return cls.create(data=data, dbcommit=dbcommit, reindex=reindex) + + @classmethod + def update_indexes(cls): + """Update indexes.""" + try: + current_search.flush_and_refresh(index='mef') + except Exception as err: + current_app.logger.error(f'ERROR flush and refresh: {err}') + + def delete_ref(self, record, dbcommit=False, reindex=False): + """Delete $ref from record. + + :param record: Record to delete the $ref. + :param dbcommit: Commit changes to DB. + :param reindex: Reindex record. + :returns: Modified record and executed action. + """ + action = Action.DISCARD + if self.pop(record.name, None): + action = Action.UPDATE + self.replace(data=self, dbcommit=dbcommit, reindex=reindex) + if reindex: + self.update_indexes() + return self, action diff --git a/rero_mef/cli.py b/rero_mef/cli.py index efc5bd3a..6dd1a6fb 100644 --- a/rero_mef/cli.py +++ b/rero_mef/cli.py @@ -32,13 +32,17 @@ from flask.cli import with_appcontext from flask_security.confirmable import confirm_user from invenio_accounts.cli import commit, users +from invenio_db import db from invenio_oaiharvester.cli import oaiharvester from invenio_oaiharvester.models import OAIHarvestConfig +from invenio_oauth2server.cli import process_scopes, process_user +from invenio_oauth2server.models import Client, Token from invenio_records_rest.utils import obj_or_import_string from invenio_search.cli import es_version_check from invenio_search.proxies import current_search, current_search_client from sqlitedict import SqliteDict from werkzeug.local import LocalProxy +from werkzeug.security import gen_salt from .marctojson.records import RecordsCount from .monitoring import Monitoring @@ -366,7 +370,7 @@ def load_csv(entity, pidstore_file, metadata_file, ids_file, bulk_count, @fixtures.command() @click.argument('output_directory') -@click.option('-e', '--entitiy', 'entities', multiple=True, +@click.option('-e', '--entity', 'entities', multiple=True, default=['aggnd', 'aidref', 'agrero', 'corero', 'mef', 'viaf']) @click.option('-v', '--verbose', 'verbose', is_flag=True, default=False) @with_appcontext @@ -447,7 +451,7 @@ def csv_to_json(csv_metadata_file, json_output_file, indent, verbose): @with_appcontext def csv_diff(csv_metadata_file, csv_metadata_file_compair, entity, output, indent, verbose, sqlite_dict): - """Agencies record diff. + """Entities record diff. :param csv_metadata_file: CSV metadata file to compair. :param csv_metadata_file_compair: CSV metadata file to compair too. @@ -489,17 +493,14 @@ def ordert_data(data): if output: file_name = os.path.splitext(csv_metadata_file)[0] file_name_new = f'{file_name}_new.json' - file_new = open(file_name_new, 'w') - file_new.write('[') + file_new = JsonWriter(file_name_new) file_name_diff = f'{file_name}_changed.json' - file_diff = open(file_name_diff, 'w') - file_diff.write('[') + file_diff = JsonWriter(file_name_diff) file_name_delete = f'{file_name}_delete.json' - file_delete = open(file_name_delete, 'w') - file_delete.write('[') + file_delete = JsonWriter(file_name_delete) click.echo(f'New file: {file_name_new}') - click.echo(f'Changed file: {file_name_new}') - click.echo(f'Deleted file: {file_name_new}') + click.echo(f'Changed file: {file_name_diff}') + click.echo(f'Deleted file: {file_name_delete}') compaire_data = SqliteDict(sqlite_dict, autocommit=True) if csv_metadata_file_compair and not entity: @@ -595,7 +596,7 @@ def add_oai_source_config(name, baseurl, metadataprefix, setspecs, comment, @with_appcontext def init_oai_harvest_config(configfile, update): """Init OAIHarvestConfig.""" - configs = yaml.load(configfile) + configs = yaml.load(configfile, Loader=yaml.FullLoader) for name, values in sorted(configs.items()): baseurl = values['baseurl'] metadataprefix = values.get('metadataprefix', 'marc21') @@ -948,7 +949,7 @@ def wait_empty_tasks(delay, verbose=False): f'Waiting: {next(spinner)}\r', nl=False ) - # TODO: we have to find a way do get the remaining queue count from + # TODO: we have to find a way do get the remaining queue count from # rabbitmq. The cellery queue could be empty but not the rabbitmq # queue. try to get the queue count twice with a delay of 5 seconds # to be more sure the cellery and rabbitmy queue is empty. @@ -1020,7 +1021,7 @@ def manual_confirm_user(user): @with_appcontext def reindex_missing(entities, verbose): """Reindex entities missing in ES. - + :param entities: entity type to compair too. :param verbose: Verbose. """ @@ -1054,3 +1055,72 @@ def reindex_missing(entities, verbose): f' {entity} record not found: {pid}', fg='red' ) + + +def create_personal( + name, user_id, scopes=None, is_internal=False, access_token=None): + """Create a personal access token. + + A token that is bound to a specific user and which doesn't expire, i.e. + similar to the concept of an API key. + + :param name: Client name. + :param user_id: User ID. + :param scopes: The list of permitted scopes. (Default: ``None``) + :param is_internal: If ``True`` it's a internal access token. + (Default: ``False``) + :param access_token: personalized access_token. + :returns: A new access token. + """ + with db.session.begin_nested(): + scopes = " ".join(scopes) if scopes else "" + + client = Client( + name=name, + user_id=user_id, + is_internal=True, + is_confidential=False, + _default_scopes=scopes + ) + client.gen_salt() + + if not access_token: + access_token = gen_salt( + current_app.config.get( + 'OAUTH2SERVER_TOKEN_PERSONAL_SALT_LEN') + ) + token = Token( + client_id=client.client_id, + user_id=user_id, + access_token=access_token, + expires=None, + _scopes=scopes, + is_personal=True, + is_internal=is_internal, + ) + + db.session.add(client) + db.session.add(token) + + return token + + +@utils.command('tokens_create') +@click.option('-n', '--name', required=True) +@click.option( + '-u', '--user', required=True, callback=process_user, + help='User ID or email.') +@click.option( + '-s', '--scope', 'scopes', multiple=True, callback=process_scopes) +@click.option('-i', '--internal', is_flag=True) +@click.option( + '-t', '--access_token', 'access_token', required=False, + help='personalized access_token.') +@with_appcontext +def tokens_create(name, user, scopes, internal, access_token): + """Create a personal OAuth token.""" + token = create_personal( + name, user.id, scopes=scopes, is_internal=internal, + access_token=access_token) + db.session.commit() + click.secho(token.access_token, fg='blue') diff --git a/rero_mef/concepts/api.py b/rero_mef/concepts/api.py index b0cdfdb3..9223448d 100644 --- a/rero_mef/concepts/api.py +++ b/rero_mef/concepts/api.py @@ -16,10 +16,11 @@ # along with this program. If not, see . """API for manipulating records.""" +import click from flask import current_app from invenio_search import current_search -from ..api import ReroIndexer, ReroMefRecord +from ..api import Action, ReroIndexer, ReroMefRecord class ConceptRecord(ReroMefRecord): @@ -37,11 +38,109 @@ def __init__(self, *args, **kwargs): def update_indexes(cls): """Update indexes.""" try: - index = 'fconcepts_{cls.concept}' + index = f'concepts_{cls.concept}' current_search.flush_and_refresh(index=index) except Exception as err: current_app.logger.error(f'ERROR flush and refresh: {err}') + def delete_from_mef(self, dbcommit=False, reindex=False, verbose=False): + """Delete concept from MEF record. + + :param dbcommit: Commit changes to DB. + :param reindex: Reindex record. + :param verbose: Verbose. + :returns: MEF record, MEF action. + """ + from .mef.api import ConceptMefRecord + mef_action = Action.DISCARD + old_mef_pid = 'None' + mef_record = ConceptMefRecord.get_mef_by_entity_pid( + self.pid, self.name) + if mef_record: + old_mef_pid = mef_record.pid + if not mef_record.deleted: + mef_record.pop(self.concept, None) + mef_action = Action.DELETEAGENT + mef_record = mef_record.replace( + data=mef_record, dbcommit=dbcommit, reindex=reindex) + mef_record = ConceptMefRecord.create_deleted( + record=self, dbcommit=dbcommit, reindex=reindex) + else: + mef_action = Action.ALREADYDELETED + else: + # MEF record is missing create one + mef_record = ConceptMefRecord.create_deleted( + record=self, dbcommit=dbcommit, reindex=reindex) + mef_action = Action.CREATE + if reindex: + ConceptMefRecord.update_indexes() + if verbose: + click.echo( + f'Delete {self.concept}: {self.pid} ' + f'from mef: {old_mef_pid} {mef_action.value} ' + f'new mef: {mef_record.pid}' + ) + return mef_record, mef_action + + def create_or_update_mef_viaf_record(self, dbcommit=False, reindex=False, + online=False): + """Create or update MEF and VIAF record. + + :param dbcommit: Commit changes to DB. + :param reindex: Reindex record. + :param online: Try to get VIAF record online. + :returns: MEF record, MEF action, VIAF record, VIAF + """ + viaf_record = None + got_online = False + # from .viaf.api import AgentViafRecord + # AgentViafRecord.update_indexes() + # viaf_record, got_online = AgentViafRecord.get_viaf_by_agent( + # concept=self, + # online=online + # ) + from .mef.api import ConceptMefRecord + ref_string = ConceptMefRecord.build_ref_string( + concept=self.concept, + concept_pid=self.pid + ) + mef_data = {self.concept: {'$ref': ref_string}} + mef_record = ConceptMefRecord.get_mef_by_entity_pid( + self.pid, self.name) + # if viaf_record: + # mef_data['viaf_pid'] = viaf_record.pid + # if not mef_record: + # mef_record = ConceptMefRecord.get_mef_by_viaf_pid( + # viaf_record.pid) + if self.deleted: + mef_record, mef_action = self.delete_from_mef( + dbcommit=dbcommit, + reindex=reindex + ) + else: + if mef_record: + mef_action = Action.UPDATE + mef_record = mef_record.update( + data=mef_data, + dbcommit=dbcommit, + reindex=reindex + ) + else: + mef_action = Action.CREATE + mef_record = ConceptMefRecord.create( + data=mef_data, + dbcommit=dbcommit, + reindex=reindex, + ) + if reindex: + ConceptMefRecord.update_indexes() + return mef_record, mef_action, viaf_record, got_online + + @property + def deleted(self): + """Get record deleted value.""" + return self.get('deleted') + class ConceptIndexer(ReroIndexer): - """Indexing class for agents.""" + """Indexing class for concepts.""" diff --git a/rero_mef/concepts/cli.py b/rero_mef/concepts/cli.py new file mode 100644 index 00000000..d5271102 --- /dev/null +++ b/rero_mef/concepts/cli.py @@ -0,0 +1,108 @@ +# -*- 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 . + +"""Click command line interface for MEF record management.""" + +from __future__ import absolute_import, print_function + +import click +from flask import current_app +from flask.cli import with_appcontext + +from .mef.api import ConceptMefRecord +from .tasks import task_create_mef_for_concept +from ..utils import get_entity_class, progressbar + + +@click.group() +def concepts(): + """Agent management commands.""" + + +@concepts.command() +@click.option('-t', '--pid_type', 'pid_type', multiple=True, + default=['corero']) +@click.option('-k', '--enqueue', 'enqueue', is_flag=True, default=False, + help="Enqueue record creation.") +@click.option('-o', '--online', 'online', is_flag=True, default=False) +@click.option('-v', '--verbose', 'verbose', is_flag=True, default=False) +@click.option('-p', '--progress', 'progress', is_flag=True, default=False) +@click.option('-w', '--wait', 'wait', is_flag=True, default=False) +@click.option('-m', '--missing', 'missing', is_flag=True, default=False) +@with_appcontext +def create_mef(pid_type, enqueue, online, verbose, progress, wait, missing): + """Create MEF from concepts.""" + CONCEPTS = current_app.config.get('CONCEPTS', []) + if missing: + missing_pids, to_much_pids = \ + ConceptMefRecord.get_all_missing_pids(pid_type, verbose=progress) + for concept in pid_type: + if concept not in CONCEPTS: + click.secho( + f'Error create MEF from {concept}. Wrong concept!', + fg='red' + ) + else: + click.secho( + f'Create MEF from {concept}.', + fg='green' + ) + concept_class = get_entity_class(concept) + counts = {} + counts[concept] = concept_class.count() + counts['mef'] = ConceptMefRecord.count() + if missing: + progress_bar = progressbar( + items=missing_pids[concept], + length=len(missing_pids[concept]), + verbose=progress + ) + else: + progress_bar = progressbar( + items=concept_class.get_all_pids(), + length=counts[concept], + verbose=progress + ) + for pid in progress_bar: + if enqueue: + task = task_create_mef_for_concept.delay( + pid=pid, + concept=concept, + dbcommit=True, + reindex=True, + online=online + ) + if verbose: + click.echo(f'{concept} pid: {pid} task:{task}') + else: + msg = task_create_mef_for_concept( + pid=pid, + concept=concept, + dbcommit=True, + reindex=True, + online=online + ) + if verbose: + click.echo(msg) + if wait: + from ..cli import wait_empty_tasks + wait_empty_tasks(delay=3, verbose=True) + click.secho( + f'COUNTS: mef: {counts["mef"]}|{ConceptMefRecord.count()}' + f', {concept}: {counts[concept]}|{concept_class.count()}', + fg='blue' + ) diff --git a/rero_mef/concepts/mef/__init__.py b/rero_mef/concepts/mef/__init__.py new file mode 100644 index 00000000..711b5fb1 --- /dev/null +++ b/rero_mef/concepts/mef/__init__.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2020 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 . + +"""MEF.""" diff --git a/rero_mef/concepts/mef/api.py b/rero_mef/concepts/mef/api.py new file mode 100644 index 00000000..7d45a67b --- /dev/null +++ b/rero_mef/concepts/mef/api.py @@ -0,0 +1,103 @@ +# -*- 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 . + +"""API for manipulating MEF records.""" + +from flask import current_app +from invenio_search import current_search +from invenio_search.api import RecordsSearch + +from .fetchers import mef_id_fetcher +from .minters import mef_id_minter +from .models import ConceptMefMetadata +from .providers import ConceptMefProvider +from ...api import ReroIndexer +from ...api_mef import EntityMefRecord + + +class ConceptMefSearch(RecordsSearch): + """RecordsSearch.""" + + class Meta: + """Search only on index.""" + + index = 'concepts_mef' + doc_types = None + fields = ('*', ) + facets = {} + + default_filter = None + + +class ConceptMefRecord(EntityMefRecord): + """Mef concept class.""" + + minter = mef_id_minter + fetcher = mef_id_fetcher + provider = ConceptMefProvider + model_cls = ConceptMefMetadata + search = ConceptMefSearch + mef_type = 'CONCEPTS' + + @classmethod + def build_ref_string(cls, 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(): + ref_string = (f'{current_app.config.get("RERO_MEF_APP_BASE_URL")}' + f'/api/concepts/{concept}/{concept_pid}') + return ref_string + + @classmethod + def update_indexes(cls): + """Update indexes.""" + try: + current_search.flush_and_refresh(index='concepts_mef') + except Exception as err: + current_app.logger.error( + 'ERROR flush and refresh: {err}'.format(err=err) + ) + + def replace_refs(self): + """Replace $ref with real data.""" + data = super().replace_refs() + sources = [] + for agent in ['rero']: + if agent in data and data[agent]: + sources.append(agent) + metadata = data[agent].get('metadata') + if metadata: + data[agent] = metadata + data['sources'] = sources + return data + + +class ConceptMefIndexer(ReroIndexer): + """MefIndexer.""" + + record_cls = ConceptMefRecord + + def bulk_index(self, record_id_iterator): + """Bulk index records. + + :param record_id_iterator: Iterator yielding record UUIDs. + """ + self._bulk_op(record_id_iterator, op_type='index', doc_type='mef') diff --git a/rero_mef/concepts/mef/fetchers.py b/rero_mef/concepts/mef/fetchers.py new file mode 100644 index 00000000..ed968e28 --- /dev/null +++ b/rero_mef/concepts/mef/fetchers.py @@ -0,0 +1,28 @@ +# -*- 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 . + +"""Persistent identifier fetchers.""" + + +from __future__ import absolute_import, print_function + +from functools import partial + +from .providers import ConceptMefProvider +from ...fetchers import id_fetcher + +mef_id_fetcher = partial(id_fetcher, provider=ConceptMefProvider) diff --git a/rero_mef/concepts/mef/jsonresolvers/__init__.py b/rero_mef/concepts/mef/jsonresolvers/__init__.py new file mode 100644 index 00000000..a675ab24 --- /dev/null +++ b/rero_mef/concepts/mef/jsonresolvers/__init__.py @@ -0,0 +1,18 @@ +# -*- 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 . + +"""JSON resolvers.""" diff --git a/rero_mef/concepts/mef/jsonresolvers/mef_resolver.py b/rero_mef/concepts/mef/jsonresolvers/mef_resolver.py new file mode 100644 index 00000000..38f62a32 --- /dev/null +++ b/rero_mef/concepts/mef/jsonresolvers/mef_resolver.py @@ -0,0 +1,32 @@ +# -*- 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 . + + +"""Json resolvers.""" + +from __future__ import absolute_import, print_function, unicode_literals + +import jsonresolver + +from ..api import ConceptMefRecord +from ....utils import get_host, resolve_record + + +@jsonresolver.route('/api/concepts/mef/', host=get_host()) +def resolve_mef(path): + """Resolve Mef records.""" + return resolve_record(path, ConceptMefRecord) diff --git a/rero_mef/concepts/mef/jsonschemas/__init__.py b/rero_mef/concepts/mef/jsonschemas/__init__.py new file mode 100644 index 00000000..8d99bd72 --- /dev/null +++ b/rero_mef/concepts/mef/jsonschemas/__init__.py @@ -0,0 +1,20 @@ +# -*- 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 . + +"""JSON schemas.""" + +from __future__ import absolute_import, print_function 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 new file mode 100644 index 00000000..9ab8f4a2 --- /dev/null +++ b/rero_mef/concepts/mef/jsonschemas/concepts_mef/mef-concept-v0.0.1.json @@ -0,0 +1,31 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema#", + "title": "Schema for MEF concepts", + "type": "object", + "required": [ + "$schema", + "pid" + ], + "additionalProperties": false, + "properties": { + "$schema": { + "title": "Schema", + "description": "Schema for MEF concept record.", + "type": "string", + "minLength": 7 + }, + "pid": { + "title": "Mef concept ID", + "type": "string", + "minLength": 1 + }, + "rero": { + "title": "RERO concept ID", + "type": "object" + }, + "deleted": { + "title": "Deletion date", + "type": "string" + } + } +} diff --git a/rero_mef/concepts/mef/mappings/__init__.py b/rero_mef/concepts/mef/mappings/__init__.py new file mode 100644 index 00000000..84f15fa1 --- /dev/null +++ b/rero_mef/concepts/mef/mappings/__init__.py @@ -0,0 +1,18 @@ +# -*- 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 . + +"""Elasticsearch mappings.""" diff --git a/rero_mef/concepts/mef/mappings/v7/__init__.py b/rero_mef/concepts/mef/mappings/v7/__init__.py new file mode 100644 index 00000000..84f15fa1 --- /dev/null +++ b/rero_mef/concepts/mef/mappings/v7/__init__.py @@ -0,0 +1,18 @@ +# -*- 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 . + +"""Elasticsearch mappings.""" 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 new file mode 100644 index 00000000..09843761 --- /dev/null +++ b/rero_mef/concepts/mef/mappings/v7/concepts_mef/mef-concept-v0.0.1.json @@ -0,0 +1,154 @@ +{ + "settings": { + "number_of_shards": 8, + "number_of_replicas": 2, + "max_result_window": 100000000, + "analysis": { + "filter": { + "autocomplete_filter": { + "type": "edge_ngram", + "min_gram": 1, + "max_gram": 20 + }, + "my_ascii_folding": { + "type": "asciifolding", + "preserve_original": true + } + }, + "analyzer": { + "autocomplete": { + "type": "custom", + "tokenizer": "standard", + "filter": [ + "lowercase", + "autocomplete_filter", + "my_ascii_folding" + ] + } + } + } + }, + "mappings": { + "date_detection": false, + "numeric_detection": false, + "properties": { + "$schema": { + "type": "keyword" + }, + "pid": { + "type": "keyword" + }, + "type": { + "type": "keyword" + }, + "deleted": { + "type": "date" + }, + "rero": { + "type": "object", + "properties": { + "$schema": { + "type": "keyword" + }, + "pid": { + "type": "keyword" + }, + "bf:Agent": { + "type": "keyword" + }, + "md5": { + "type": "keyword" + }, + "language": { + "type": "keyword" + }, + "gender": { + "type": "keyword" + }, + "identifier": { + "type": "keyword" + }, + "date_of_birth": { + "type": "text" + }, + "date_of_death": { + "type": "text" + }, + "biographical_information": { + "type": "text" + }, + "preferred_name": { + "type": "text" + }, + "authorized_access_point": { + "type": "text", + "copy_to": "autocomplete_name" + }, + "qualifier": { + "type": "keyword" + }, + "numeration": { + "type": "keyword" + }, + "variant_name": { + "type": "text" + }, + "date_of_establishment": { + "type": "text" + }, + "date_of_termination": { + "type": "text" + }, + "conference": { + "type": "keyword" + }, + "variant_access_point": { + "type": "text", + "copy_to": "autocomplete_name" + }, + "parallel_access_point": { + "type": "text", + "copy_to": "autocomplete_name" + }, + "country_associated": { + "type": "keyword" + }, + "deleted": { + "type": "date" + }, + "relation_pid": { + "type": "object", + "properties": { + "value": { + "type": "keyword" + }, + "type": { + "type": "keyword" + } + } + }, + "_created": { + "type": "date" + }, + "_updated": { + "type": "date" + } + } + }, + "sources": { + "type": "keyword" + }, + "autocomplete_name": { + "type": "text", + "analyzer": "autocomplete", + "search_analyzer": "standard" + }, + "_created": { + "type": "date" + }, + "_updated": { + "type": "date" + } + } + } +} diff --git a/rero_mef/concepts/mef/minters.py b/rero_mef/concepts/mef/minters.py new file mode 100644 index 00000000..e7bcc99d --- /dev/null +++ b/rero_mef/concepts/mef/minters.py @@ -0,0 +1,36 @@ +# -*- 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 . + +"""Identifier minters.""" + +from __future__ import absolute_import, print_function, unicode_literals + +from .providers import ConceptMefProvider + + +def mef_id_minter(record_uuid, data, provider=ConceptMefProvider, + pid_key='pid', object_type='rec'): + """RERO ILS MEF concept pid minter.""" + assert pid_key not in data + provider = provider.create( + object_type=object_type, + object_uuid=record_uuid + ) + pid = provider.pid + data[pid_key] = pid.pid_value + + return pid diff --git a/rero_mef/concepts/mef/models.py b/rero_mef/concepts/mef/models.py new file mode 100644 index 00000000..f41160ff --- /dev/null +++ b/rero_mef/concepts/mef/models.py @@ -0,0 +1,43 @@ +# -*- 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 . + +"""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 ConceptMefIdentifier(RecordIdentifier): + """Sequence generator for MEF Authority identifiers.""" + + __tablename__ = 'concept_mef_id' + __mapper_args__ = {'concrete': True} + + recid = db.Column( + db.BigInteger().with_variant(db.Integer, 'sqlite'), + primary_key=True, + autoincrement=True, + ) + + +class ConceptMefMetadata(db.Model, RecordMetadataBase): + """Represent a record metadata.""" + + __tablename__ = 'concept_mef_metadata' diff --git a/rero_mef/concepts/mef/providers.py b/rero_mef/concepts/mef/providers.py new file mode 100644 index 00000000..aca1c279 --- /dev/null +++ b/rero_mef/concepts/mef/providers.py @@ -0,0 +1,56 @@ +# -*- 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 . + +"""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 ConceptMefIdentifier + + +class ConceptMefProvider(BaseProvider): + """Mef identifier provider.""" + + pid_type = 'comef' + """Type of persistent identifier.""" + + pid_identifier = ConceptMefIdentifier.__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 Record ids. + """ + + default_status = PIDStatus.REGISTERED + """MEF IDs are registered immediately by default.""" + + @classmethod + def create(cls, object_type=None, object_uuid=None, **kwargs): + """Create a new Mef Authority identifier.""" + assert 'pid_value' not in kwargs + kwargs['pid_value'] = str(ConceptMefIdentifier.next()) + kwargs.setdefault('status', cls.default_status) + if object_type and object_uuid: + kwargs['status'] = PIDStatus.REGISTERED + return super().create( + object_type=object_type, object_uuid=object_uuid, **kwargs) diff --git a/rero_mef/concepts/mef/serializers.py b/rero_mef/concepts/mef/serializers.py new file mode 100644 index 00000000..7b61650d --- /dev/null +++ b/rero_mef/concepts/mef/serializers.py @@ -0,0 +1,90 @@ +# -*- 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 . + +"""Record serialization.""" + +from flask import request, url_for +from invenio_records_rest.links import default_links_factory_with_additional +from invenio_records_rest.schemas import RecordSchemaJSONV1 +from invenio_records_rest.serializers.json import JSONSerializer +from invenio_records_rest.serializers.response import record_responsify + +from ...utils import get_entity_classes + + +def add_links(pid, record): + """Add VIAF links to MEF.""" + links = {} + # viaf_pid = record.get('viaf_pid') + # if viaf_pid: + # links['viaf'] = '{scheme}://{host}/api/agents/viaf/' \ + # + str(viaf_pid) + # links['viaf.org'] = 'http://www.viaf.org/viaf/' + str(viaf_pid) + + link_factory = default_links_factory_with_additional(links) + return link_factory(pid) + + +# Nice to have direct working links in test server! +def local_link(agent, name, record): + """Change links to actual links.""" + if name in record: + ref = record[name].get('$ref') + if ref: + my_pid = ref.split('/')[-1] + url = url_for( + f'invenio_records_rest.{agent}_item', + pid_value=my_pid, + _external=True + ) + record[name].update({'$ref': url}) + + +class ReroMefSerializer(JSONSerializer): + """Mixin serializing records as JSON.""" + + def serialize(self, pid, record, links_factory=None, **kwargs): + """Serialize a single record and persistent identifier. + + :param pid: Persistent identifier instance. + :param record: Record instance. + :param links_factory: Factory function for record links. + """ + if request and request.args.get('resolve'): + record = record.replace_refs() + if request and request.args.get('sources'): + sources = [] + # TODO: add the list of sources into the current_app.config + if 'rero' in record: + sources.append('rero') + record['sources'] = sources + + concept_classes = get_entity_classes() + for concept, concept_classe in concept_classes.items(): + if concept in ['corero']: + local_link(concept, concept_classe.name, record) + + return super(ReroMefSerializer, self).serialize( + pid, record, links_factory=add_links, **kwargs + ) + + +json_v1 = ReroMefSerializer(RecordSchemaJSONV1) +"""JSON v1 serializer.""" + +json_v1_concept_mef_response = record_responsify( + json_v1, 'application/rero+json') diff --git a/rero_mef/concepts/rero/api.py b/rero_mef/concepts/rero/api.py index e1308ce6..60d91c76 100644 --- a/rero_mef/concepts/rero/api.py +++ b/rero_mef/concepts/rero/api.py @@ -51,20 +51,6 @@ class ConceptReroRecord(ConceptRecord): model_cls = ConceptReroMetadata name = 'rero' - # @classmethod - # def get_online_record(cls, id, verbose=False): - # """Get online record.""" - # from .tasks import concepts_get_record - # return concepts_get_record(id=id, verbose=verbose) - - def reindex(self, forceindex=False): - """Reindex record.""" - if forceindex: - result = ConceptReroIndexer(version_type='external_gte').index(self) - else: - result = ConceptReroIndexer().index(self) - return result - class ConceptReroIndexer(ConceptIndexer): """ConceptsIndexer.""" diff --git a/rero_mef/concepts/serializers.py b/rero_mef/concepts/serializers.py new file mode 100644 index 00000000..df74ac92 --- /dev/null +++ b/rero_mef/concepts/serializers.py @@ -0,0 +1,62 @@ +# -*- 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 . + +"""Record serialization.""" + +from flask import request +from invenio_records_rest.links import default_links_factory_with_additional +from invenio_records_rest.schemas import RecordSchemaJSONV1 +from invenio_records_rest.serializers.json import JSONSerializer +from invenio_records_rest.serializers.response import record_responsify + +from .mef.api import ConceptMefRecord + + +def add_links(pid, record): + """Add MEF link to agents.""" + links = {} + mef_pid = ConceptMefRecord.get_mef_by_entity_pid( + record.pid, record.name, pid_only=True) + if mef_pid: + links['mef'] = '{scheme}://{host}/api/concepts/mef/' + str(mef_pid) + + link_factory = default_links_factory_with_additional(links) + return link_factory(pid) + + +class ReroMefSerializer(JSONSerializer): + """Mixin serializing records as JSON.""" + + def serialize(self, pid, record, links_factory=None, **kwargs): + """Serialize a single record and persistent identifier. + + :param pid: Persistent identifier instance. + :param record: Record instance. + :param links_factory: Factory function for record links. + """ + if request and request.args.get('resolve'): + record = record.replace_refs() + + return super(ReroMefSerializer, self).serialize( + pid, record, links_factory=add_links, **kwargs + ) + + +json_v1 = ReroMefSerializer(RecordSchemaJSONV1) +"""JSON v1 serializer.""" + +json_v1_concept_response = record_responsify(json_v1, 'application/rero+json') diff --git a/rero_mef/concepts/tasks.py b/rero_mef/concepts/tasks.py new file mode 100644 index 00000000..7f953743 --- /dev/null +++ b/rero_mef/concepts/tasks.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 . + +"""Tasks used by RERO-MEF.""" + +from celery import shared_task + +from ..utils import get_entity_class + + +@shared_task +def task_create_mef_for_concept(pid, concept, dbcommit=True, reindex=True, + online=False): + """Create MEF from concept task. + + :param pid: pid for concept to use + :param concept: concept + :param dbcommit: db commit or not + :param reindex: reindex or not + :param online: get missing records from internet + :returns: no return + """ + concept_class = get_entity_class(concept) + concept_record = concept_class.get_record_by_pid(pid) + if concept_record: + mef_record, mef_action, viaf_record, online = \ + concept_record.create_or_update_mef_viaf_record( + dbcommit=dbcommit, + reindex=reindex, + online=online + ) + mef_pid = 'Non' + if mef_record: + mef_pid = mef_record.pid + msg = f'Create MEF from {concept} pid: {pid} ' \ + f'| mef: {mef_pid} {mef_action.value}' + return msg + else: + return f'Not found concept {concept}:{pid}' diff --git a/rero_mef/config.py b/rero_mef/config.py index daa2148c..f5283fc5 100644 --- a/rero_mef/config.py +++ b/rero_mef/config.py @@ -34,6 +34,7 @@ from .agents.mef.models import AgentMefIdentifier from .agents.rero.models import AgentReroIdentifier from .agents.viaf.models import ViafIdentifier +from .concepts.mef.models import ConceptMefIdentifier from .concepts.rero.models import ConceptReroIdentifier from .filter import exists_filter from .marctojson.do_gnd_agent import Transformation as AgentGndTransformation @@ -190,19 +191,20 @@ BULK_CHUNK_COUNT = 100000 TRANSFORMATION = { - 'corero': ConceptReroTransformation, 'aggnd': AgentGndTransformation, 'aidref': AgentIdrefTransformation, - 'agrero': AgentReroTransformation + 'agrero': AgentReroTransformation, + 'corero': ConceptReroTransformation } IDENTIFIERS = { 'mef': AgentMefIdentifier, 'viaf': ViafIdentifier, - 'corero': ConceptReroIdentifier, 'aggnd': AgentGndIdentifier, 'aidref': AgentIdrefIdentifier, - 'agrero': AgentReroIdentifier + 'agrero': AgentReroIdentifier, + 'comef': ConceptMefIdentifier, + 'corero': ConceptReroIdentifier } AGENTS = [ @@ -212,7 +214,7 @@ ] CONCEPTS = [ - 'corero', + 'corero' ] RERO_MEF_APP_BASE_URL = 'https://mef.rero.ch' @@ -236,8 +238,8 @@ search_index='mef', search_type=None, record_serializers={ - 'application/json': ('rero_mef.serializers' - ':json_v1_response'), + 'application/json': ('rero_mef.agents.mef.serializers' + ':json_v1_agent_mef_response'), }, search_serializers={ 'application/json': ('invenio_records_rest.serializers' @@ -261,8 +263,8 @@ search_index='viaf', search_type=None, record_serializers={ - 'application/json': ('rero_mef.serializers' - ':json_v1_response'), + 'application/json': ('rero_mef.agents.viaf.serializers' + ':json_v1_agent_viaf_response'), }, search_serializers={ 'application/json': ('invenio_records_rest.serializers' @@ -286,8 +288,8 @@ search_index='agents_gnd', search_type=None, record_serializers={ - 'application/json': ('rero_mef.serializers' - ':json_v1_response'), + 'application/json': ('rero_mef.agents.serializers' + ':json_v1_agent_response'), }, search_serializers={ 'application/json': ('invenio_records_rest.serializers' @@ -311,8 +313,8 @@ search_index='agents_idref', search_type=None, record_serializers={ - 'application/json': ('rero_mef.serializers' - ':json_v1_response'), + 'application/json': ('rero_mef.agents.serializers' + ':json_v1_agent_response'), }, search_serializers={ 'application/json': ('invenio_records_rest.serializers' @@ -337,8 +339,8 @@ search_index='agents_rero', search_type=None, record_serializers={ - 'application/json': ('rero_mef.serializers' - ':json_v1_response'), + 'application/json': ('rero_mef.agents.serializers' + ':json_v1_agent_response'), }, search_serializers={ 'application/json': ('invenio_records_rest.serializers' @@ -352,6 +354,32 @@ max_result_window=MAX_RESULT_WINDOW, error_handlers=dict(), ), + comef=dict( + pid_type='comef', + pid_minter='concept_mef_id', + pid_fetcher='concept_mef_id', + search_class="rero_mef.concepts.mef.api:ConceptMefSearch", + indexer_class="rero_mef.concepts.mef.api:ConceptMefIndexer", + record_class="rero_mef.concepts.mef.api:ConceptMefRecord", + search_index='concepts_mef', + search_type=None, + record_serializers={ + 'application/json': ('rero_mef.concepts.mef.serializers' + ':json_v1_concept_mef_response'), + }, + search_serializers={ + 'application/json': ('invenio_records_rest.serializers' + ':json_v1_search'), + }, + search_factory_imp='rero_mef.query:and_search_factory', + list_route='/concepts/mef/', + item_route=('/concepts/mef/'), + default_media_type='application/json', + max_result_window=MAX_RESULT_WINDOW, + error_handlers=dict(), + ), corero=dict( pid_type='corero', pid_minter='concept_rero_id', @@ -362,8 +390,8 @@ search_index='concepts_rero', search_type=None, record_serializers={ - 'application/json': ('rero_mef.serializers' - ':json_v1_response'), + 'application/json': ('rero_mef.concepts.serializers' + ':json_v1_concept_response'), }, search_serializers={ 'application/json': ('invenio_records_rest.serializers' @@ -380,8 +408,19 @@ ) ) +RERO_AGENTS = [ + 'aggnd', + 'aidref', + 'agrero' +] + +RERO_CONCEPTS = [ + 'corero' +] + RECORDS_JSON_SCHEMA = { 'corero': '/concepts_rero/rero-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', 'aidref': '/agents_idref/idref-agent-v0.0.1.json', @@ -470,6 +509,22 @@ 'deleted': exists_filter('deleted'), } ), + concepts_mef=dict( + aggs=dict( + sources=dict( + terms=dict(field='sources', size=30) + ), + deleted=dict( + filter=dict(exists=dict(field="deleted")) + ), + ), + filters={ + 'agent_type': terms_filter('type'), + 'agent_sources': terms_filter('sources'), + 'deleted': exists_filter('deleted'), + 'rero_double': terms_filter('rero.pid') + } + ), concepts_rero=dict( aggs=dict( classification=dict( diff --git a/rero_mef/ext.py b/rero_mef/ext.py index 220190f6..9cd0ea29 100644 --- a/rero_mef/ext.py +++ b/rero_mef/ext.py @@ -19,10 +19,6 @@ from __future__ import absolute_import, print_function -from invenio_indexer.signals import before_record_index - -from .agents.mef.listner import enrich_mef_data - class REROMEFAPP(object): """rero-mef extension.""" @@ -39,4 +35,3 @@ def init_app(self, app): def register_signals(self, app): """Register signals.""" - before_record_index.connect(enrich_mef_data, sender=app) diff --git a/rero_mef/marctojson/do_gnd_agent.py b/rero_mef/marctojson/do_gnd_agent.py index 1f04d252..1cb5c227 100644 --- a/rero_mef/marctojson/do_gnd_agent.py +++ b/rero_mef/marctojson/do_gnd_agent.py @@ -212,13 +212,13 @@ def get_date(dates_per_tag, selector): dates_per_tag[subfields_4]['death_date'] = death_date if self.marc.get_fields('110') or self.marc.get_fields('111'): + date_of_establishment = get_date(dates_per_tag, 'birth_date') + date_of_termination = get_date(dates_per_tag, 'death_date') dates_per_tag.pop('100', None) dates_per_tag.pop('datl', None) dates_per_tag.pop('datx', None) - date_of_establishment = get_date(dates_per_tag, 'birth_date') if date_of_establishment: self.json_dict['date_of_establishment'] = date_of_establishment - date_of_termination = get_date(dates_per_tag, 'death_date') if date_of_termination: self.json_dict['date_of_termination'] = date_of_termination else: diff --git a/rero_mef/marctojson/do_rero_agent.py b/rero_mef/marctojson/do_rero_agent.py index 0d6068d0..1a9deefe 100644 --- a/rero_mef/marctojson/do_rero_agent.py +++ b/rero_mef/marctojson/do_rero_agent.py @@ -67,15 +67,15 @@ def trans_rero_birth_and_death_dates(self): 100 $d pos. 1-4 YYYY birth_date 100 $d pos. 6-9 YYYY birth_date """ - def format_100_date(date_str): - """DocString.""" - date_formated = date_str - if len(date_str) == 8: - date_formated = \ - f'{date_str[0:4]}-{date_str[4:6]}-{date_str[6:8]}' - elif len(date_str) == 4: - date_formated = date_str[0:4] - return date_formated + # def format_100_date(date_str): + # """DocString.""" + # date_formated = date_str + # if len(date_str) == 8: + # date_formated = \ + # f'{date_str[0:4]}-{date_str[4:6]}-{date_str[6:8]}' + # elif len(date_str) == 4: + # date_formated = date_str[0:4] + # return date_formated if self.logger and self.verbose: self.logger.info( @@ -208,6 +208,8 @@ def trans_rero_variant_name(self): punctuation = '' spaced_punctuation = '' subfields = {'a': ' ', 'b': ' ', 'c': ' '} + # TODO: This code is not working for mixed tags! + # Does 400, 410, 411 mixes exist? if self.marc.get_fields('410') or self.marc.get_fields('411'): subfields = {'a': ' ', 'b': ' ', 'd': ' '} if self.marc.get_fields('410'): @@ -258,7 +260,7 @@ def trans_rero_variant_access_point(self): self.json_dict['variant_access_point'] = variant_access_points def trans_rero_parallel_access_point(self): - """Transformation variant_name 700/710/710.""" + """Transformation parallel_access_point 700/710/710.""" if self.logger and self.verbose: self.logger.info( 'Call Function', 'trans_rero_parallel_access_point') diff --git a/rero_mef/marctojson/do_rero_concepts.py b/rero_mef/marctojson/do_rero_concepts.py index 8a71529f..462e8011 100644 --- a/rero_mef/marctojson/do_rero_concepts.py +++ b/rero_mef/marctojson/do_rero_concepts.py @@ -84,7 +84,7 @@ def trans_rero_bnf_type(self): data_075_a = self.marc['075']['a'].strip() if data_075_a: self.json_dict['bnf_type'] = data_075_a - except: + except Exception as err: pass def trans_rero_authorized_access_point(self): @@ -174,7 +174,7 @@ def trans_rero_close_match(self): 'authorized_access_point': subfield_a, 'source': subfield_v } - except: + except Exception as err: pass def trans_rero_note(self): diff --git a/rero_mef/marctojson/logger.py b/rero_mef/marctojson/logger.py index 703b0a54..f047ae51 100644 --- a/rero_mef/marctojson/logger.py +++ b/rero_mef/marctojson/logger.py @@ -51,7 +51,7 @@ def __init__(self, name="VirtuaScript", log_output_file=None, """ self.name = name - # create logger with "spam_application" + # create logger self.logger = logging.getLogger(name) if log_master: self.logger.setLevel(log_level) diff --git a/rero_mef/monitoring.py b/rero_mef/monitoring.py index 37b0446b..447e7bbc 100644 --- a/rero_mef/monitoring.py +++ b/rero_mef/monitoring.py @@ -31,7 +31,7 @@ from invenio_search import RecordsSearch, current_search_client from redis import Redis -from .permissions import admin_permission +from .permissions import monitoring_permission from .utils import get_entity_class, progressbar api_blueprint = Blueprint( @@ -42,12 +42,12 @@ def check_authentication(func): - """Decorator to check authentication for items HTTP API.""" + """Decorator to check authentication for monitoring HTTP API.""" @wraps(func) def decorated_view(*args, **kwargs): if not current_user.is_authenticated: return jsonify({'status': 'error: Unauthorized'}), 401 - if not admin_permission.require().can(): + if not monitoring_permission.require().can(): return jsonify({'status': 'error: Forbidden'}), 403 return func(*args, **kwargs) return decorated_view @@ -340,8 +340,8 @@ def __str__(self): 5. elasticsearch count """ result = '' - msg_head = 'DB - ES {"type":>6} {"count":>10}' - msg_head += f' {"index":>25} {"count":>10}\n' + msg_head = f'DB - ES {"type":>6} {"count":>10}' + msg_head += f' {"index":>25} {"count_es":>10}\n' msg_head += f'{"":-^64s}\n' for doc_type, info in sorted(self.info().items()): diff --git a/rero_mef/permissions.py b/rero_mef/permissions.py index 38352b6c..da721cdf 100644 --- a/rero_mef/permissions.py +++ b/rero_mef/permissions.py @@ -21,3 +21,4 @@ from invenio_access.permissions import Permission admin_permission = Permission(RoleNeed('admins')) +monitoring_permission = Permission(RoleNeed('monitoring')) diff --git a/rero_mef/utils.py b/rero_mef/utils.py index 45461512..c2e5afa5 100644 --- a/rero_mef/utils.py +++ b/rero_mef/utils.py @@ -625,15 +625,6 @@ def pidstore_csv_line(agent, agent_pid, record_uuid, date): return pidstore_line + os.linesep -def add_agent_to_json(mef_record, agent, agent_pid): - """Add agent ref to MEF record.""" - from .agents.mef.api import AgentMefRecord - ref_string = AgentMefRecord.build_ref_string( - agent=agent, agent_pid=agent_pid - ) - mef_record[agent] = {'$ref': ref_string} - - def raw_connection(): """Return a raw connection to the database.""" with current_app.app_context(): @@ -989,27 +980,27 @@ def get_entity_classes(without_mef_viaf=True): return agents -def get_endpoint_class(agent, class_name): - """Get agent class from config.""" +def get_endpoint_class(entity, class_name): + """Get entity class from config.""" endpoints = current_app.config.get('RECORDS_REST_ENDPOINTS', {}) - endpoint = endpoints.get(agent, {}) + endpoint = endpoints.get(entity, {}) endpoint_class = obj_or_import_string(endpoint.get(class_name)) return endpoint_class -def get_entity_class(agent): - """Get agent record class from config.""" - return get_endpoint_class(agent=agent, class_name='record_class') +def get_entity_class(entity): + """Get entity record class from config.""" + return get_endpoint_class(entity=entity, class_name='record_class') -def get_entity_search_class(agent): - """Get agent search class from config.""" - return get_endpoint_class(agent=agent, class_name='search_class') +def get_entity_search_class(entity): + """Get entity search class from config.""" + return get_endpoint_class(entity=entity, class_name='search_class') -def get_entity_indexer_class(agent): - """Get agent indexer class from config.""" - return get_endpoint_class(agent=agent, class_name='indexer_class') +def get_entity_indexer_class(entity): + """Get entity indexer class from config.""" + return get_endpoint_class(entity=entity, class_name='indexer_class') def write_link_json( @@ -1134,6 +1125,18 @@ def set_timestamp(name, **kwargs): return utc_now +def get_timestamp(name): + """Get timestamp in current cache. + + :param name: name of time stamp. + :returns: time of time stamp + """ + time_stamps = current_cache.get('timestamps') + if not time_stamps: + return None + return time_stamps.get(name) + + def settimestamp(func): """Set timestamp function wrapper.""" @wraps(func) diff --git a/scripts/setup b/scripts/setup index 090aebc5..47660405 100755 --- a/scripts/setup +++ b/scripts/setup @@ -65,14 +65,14 @@ function db_init () { # Purge celery celery -A rero_mef.celery purge -f # Clean redis - invenio utils flush_cache --yes-i-know || true + invenio utils flush-cache --yes-i-know || true invenio db destroy --yes-i-know || true invenio db init create invenio index destroy --force --yes-i-know || true invenio index init --force invenio index queue init purge - # Create admin role to rectict access + # Create roles to rectict access invenio roles create admin invenio access allow superuser-access role admin # create new admin user @@ -81,6 +81,17 @@ function db_init () { invenio roles create -d 'Admins Group' admins invenio access allow admin-access role admins invenio roles add admin@rero.ch admins + # create new monitoring user + invenio roles create -d 'Monitoring Group' monitoring + invenio users create -a monitoring@rero.ch --password monitor + invenio roles add admin@rero.ch monitoring + invenio roles add monitoring@rero.ch monitoring + if [ -z ${INVENIO_RERO_ACCESS_TOKEN_MONITORING} ] + then + invenio utils tokens_create -n monitoring -u monitoring@rero.ch + else + invenio utils tokens_create -n monitoring -u monitoring@rero.ch -t ${INVENIO_RERO_ACCESS_TOKEN_MONITORING} + fi } function oai_init () { @@ -113,6 +124,8 @@ function sample_load () { info_msg "Importing ${ENTITY} concept records:" dojson -i ./data/${ENTITY}.json | invenio fixtures create-or-update ${ENTITY} done + info_msg "Creating MEF records:" + invenio concepts create-mef oai_init } @@ -129,7 +142,7 @@ function deploy () { oai_init invenio utils runindex --raise-on-error --concurrency 8 --delayed invenio utils runindex --raise-on-error - invenio utils reindex-missing -v + # invenio utils reindex-missing -v invenio agents-counts } @@ -160,9 +173,9 @@ function create_csv () { # Create VIAF CSV files from viaf.txt invenio agents create-csv-viaf ${OUTPUT_DIR}/viaf.txt ${OUTPUT_DIR} - info_msg "Create MEF CSV files from viaf_metadata.csv: ${OUTPUT_DIR}" + info_msg "Create MEF CSV files from viaf_pidstore.csv: ${OUTPUT_DIR}" # Create MEF CSV files from viaf_metadata.csv - invenio agents create-csv-mef ${OUTPUT_DIR}/viaf_pidstore.csv ${OUTPUT_DIR} + invenio agents create-csv-mef ${OUTPUT_DIR}/viaf_metadata.csv ${OUTPUT_DIR} } function create_and_load () { diff --git a/setup.py b/setup.py index d191ae4e..5b298d0c 100644 --- a/setup.py +++ b/setup.py @@ -70,10 +70,6 @@ 'invenio_base.blueprints': [ 'rero_mef = rero_mef.theme.views:blueprint', ], - 'invenio_base.api_blueprints': [ - 'api_rero_mef = rero_mef.theme.views:api_blueprint', - 'monitoring = rero_mef.monitoring:api_blueprint', - ], 'invenio_config.module': [ 'rero_mef = rero_mef.config', ], @@ -83,6 +79,7 @@ 'agents_gnd = rero_mef.agents.gnd.models', 'agents_idref = rero_mef.agents.idref.models', 'agents_rero = rero_mef.agents.rero.models', + 'concepts_mef = rero_mef.concepts.mef.models', 'concepts_rero = rero_mef.concepts.rero.models', ], 'invenio_pidstore.minters': [ @@ -91,7 +88,8 @@ 'agent_gnd_id = rero_mef.agents.gnd.minters:gnd_id_minter', 'agent_idref_id = rero_mef.agents.idref.minters:idref_id_minter', 'agent_rero_id = rero_mef.agents.rero.minters:rero_id_minter', - 'concept_rero_id = rero_mef.concepts.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', ], 'invenio_pidstore.fetchers': [ 'mef_id = rero_mef.agents.mef.fetchers:mef_id_fetcher', @@ -99,7 +97,8 @@ 'agent_gnd_id = rero_mef.agents.gnd.fetchers:gnd_id_fetcher', 'agent_idref_id = rero_mef.agents.idref.fetchers:idref_id_fetcher', 'agent_rero_id = rero_mef.agents.rero.fetchers:rero_id_fetcher', - 'concept_rero_id = rero_mef.concepts.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', ], 'invenio_jsonschemas.schemas': [ 'common = rero_mef.jsonschemas', @@ -108,7 +107,8 @@ 'agents_gnd = rero_mef.agents.gnd.jsonschemas', 'agents_idref = rero_mef.agents.idref.jsonschemas', 'agents_rero = rero_mef.agents.rero.jsonschemas', - 'cocepts_rero = rero_mef.concepts.rero.jsonschemas' + 'cocepts_mef = rero_mef.concepts.mef.jsonschemas', + 'cocepts_rero = rero_mef.concepts.rero.jsonschemas', ], 'invenio_search.mappings': [ 'mef = rero_mef.agents.mef.mappings', @@ -116,34 +116,41 @@ 'agents_gnd = rero_mef.agents.gnd.mappings', 'agents_idref = rero_mef.agents.idref.mappings', 'agents_rero = rero_mef.agents.rero.mappings', - 'concepts_rero = rero_mef.concepts.rero.mappings' + 'concepts_mef = rero_mef.concepts.mef.mappings', + 'concepts_rero = rero_mef.concepts.rero.mappings', ], 'invenio_records.jsonresolver': [ 'mef = rero_mef.agents.mef.jsonresolvers.mef_resolver', + 'viaf = rero_mef.agents.viaf.jsonresolvers.viaf_resolver', 'agents_gnd = rero_mef.agents.gnd.jsonresolvers.gnd_resolver', 'agents_idref = rero_mef.agents.idref.jsonresolvers.idref_resolver', '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', ], 'invenio_base.api_blueprints': [ + 'api_rero_mef = rero_mef.theme.views:api_blueprint', + 'api_monitoring = rero_mef.monitoring:api_blueprint', 'api_agents_mef = rero_mef.agents.mef.views:api_blueprint', 'api_agents_viaf = rero_mef.agents.viaf.views:api_blueprint', 'api_agents_gnd = rero_mef.agents.gnd.views:api_blueprint', 'api_agents_idref = rero_mef.agents.idref.views:api_blueprint', - 'api_agents_rero = rero_mef.agents.rero.views:api_blueprint' + 'api_agents_rero = rero_mef.agents.rero.views:api_blueprint', ], 'flask.commands': [ 'fixtures = rero_mef.cli:fixtures', 'utils = rero_mef.cli:utils', 'celery = rero_mef.cli:celery', 'agents = rero_mef.agents.cli:agents', + 'concepts = rero_mef.concepts.cli:concepts', + 'monitoring = rero_mef.monitoring:monitoring', ], 'dojson.cli.rule': [ 'tomarc = dojson.contrib.to_marc21:to_marc21', - 'idrefjson = rero_ebooks.dojson.from_unimarc.model:from_unimarc' + 'idrefjson = rero_ebooks.dojson.from_unimarc.model:from_unimarc', ], 'dojson.cli.dump': [ - 'pjson = rero_mef.dojson.utils:dump' + 'pjson = rero_mef.dojson.utils:dump', ] }, classifiers=[ @@ -154,7 +161,7 @@ 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Development Status :: 3 - Alpha', ], ) diff --git a/tests/agents/conftest.py b/tests/agents/conftest.py deleted file mode 100644 index 0d5784ce..00000000 --- a/tests/agents/conftest.py +++ /dev/null @@ -1,161 +0,0 @@ -# -*- coding: utf-8 -*- -# -# RERO MEF -# Copyright (C) 2020 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 . - -"""Pytest configuration.""" - -import pytest - - -@pytest.fixture(scope='module') -def create_app(instance_path): - """Create test app.""" - from invenio_app.factory import create_app as create_ui_api - return create_ui_api - - -@pytest.fixture(scope='session') -def empty_mef_record(): - """Empty MEF record.""" - json_record = {} - return json_record - - -@pytest.fixture(scope='session') -def mef_record(): - """MEF record.""" - record = { - "$schema": - "http://mef.rero.ch/schemas/mef/mef-v0.0.1.json", - "gnd": {"$ref": "http://mef.rero.ch/api/gnd/12391664X"}, - "rero": {"$ref": "http://mef.rero.ch/api/rero/A023655346"}, - "idref": {"$ref": "http://mef.rero.ch/api/idref/069774331"}, - "viaf_pid": "66739143" - } - return record - - -@pytest.fixture(scope='session') -def viaf_record(): - """VIAF record.""" - record = { - "$schema": - "http://mef.rero.ch/schemas/viaf/viaf-v0.0.1.json", - "pid": "66739143", - "gnd_pid": "12391664X", - "rero_pid": "A023655346", - "idref_pid": "069774331" - } - return record - - -@pytest.fixture(scope='session') -def gnd_record(): - """GND record.""" - record = { - "$schema": - "http://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", - "identifier": "http://d-nb.info/gnd/12391664X", - "pid": "12391664X", - "bf:Agent": "bf:Person", - "variant_name": [ - "Cavaleriis, Joannes Baptista \u0098de\u009c", - "Cavalleris, Joannes Baptista \u0098de\u009c", - "Cavaleriis, Joanes Baptista \u0098de\u009c", - "Cavalleriis, Johannes Baptista \u0098de\u009c", - "Cavalerius, Johannes Battista \u0098de\u009c", - "Cavallerys, Johannes Baptista \u0098de\u009c", - "Cavaleriis, Johannes Baptista \u0098de\u009c", - "Cavalieri, Giovanni Battista \u0098de\u009c", - "Cavallieri, Giovan Battista \u0098de\u009c", - "Cavalleriis, Johannes Battista", - "Cavallerius, Johannes Baptista", - "Cavallerius, Joannes Baptista", - "Cavalleriis, Johannes Baptista", - "Cavallieri, Giovanni Battista", - "Cavaleriis, Giovanni Battista", - "Cavalleriis, Io. Baptista \u0098de\u009c", - "Cavallieri, Giovanni Battista \u0098de\u009c", - "Cavalerijs, Io. Baptista \u0098de\u009c", - "Cavallieri, Giovanni B.", - "Cavaleriis, Joannes B. \u0098de\u009c", - "Cavallerius, Jo. B. \u0098de\u009c", - "Cavalleriis, Joannes Baptista \u0098de\u009c", - "Cavallerijs, Baptista \u0098de\u009c", - "Cavalleriis, Giovanni Battista \u0098de\u009c", - "Cavallieri, Giovanbattista \u0098de\u009c", - "Cavallerius, Io. Bap.ta", - "Cavalierii, Johannes Baptista \u0098de\u009c" - ], - "authorized_access_point": "Cavalieri, Giovanni Battista, 1525-1601", - "biographical_information": [ - "LoC-NA", - "LCAuth" - ], - "preferred_name": "Cavalieri, Giovanni Battista", - "date_of_birth": "ca. 1525", - "date_of_death": "1601" - } - return record - - -@pytest.fixture(scope='session') -def rero_record(): - """RERO record.""" - record = { - "$schema": - "http://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", - "bf:Agent": "bf:Person", - "authorized_access_point": - "Cavalieri, Giovanni Battista,, ca.1525-1601", - "date_of_birth": "ca.1525-1601", - "biographical_information": [ - "Graveur, dessinateur et \u00e9diteur" - ], - "variant_name": [ - "De Cavalieri, Giovanni Battista,", - "Cavalleriis, Baptista de,", - "Cavalleriis, Giovanni Battista de,", - "Cavalieri, Gianbattista," - ], - "identifier": "http://data.rero.ch/02-A023655346", - "pid": "A023655346", - "preferred_name": "Cavalieri, Giovanni Battista," - } - return record - - -@pytest.fixture(scope='session') -def idref_record(): - """IDREF record.""" - record = { - "pid": "069774331", - "bf:Agent": "bf:Person", - "date_of_birth": "....", - "date_of_death": "1540", - "language": ["fre"], - "identifier": "http://www.idref.fr/069774331", - "biographical_information": [ - "Grammairien" - ], - "preferred_name": "Briss\u00e9, Nicolas, grammairien", - "authorized_access_point": - "Briss\u00e9, Nicolas, ....-1540, grammairien", - "gender": "male", - "$schema": - "http://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json" - } - return record diff --git a/tests/agents/helpers.py b/tests/agents/helpers.py deleted file mode 100644 index 38361e75..00000000 --- a/tests/agents/helpers.py +++ /dev/null @@ -1,64 +0,0 @@ -# -*- coding: utf-8 -*- -# -# RERO MEF -# Copyright (C) 2020 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 . - -"""Pytest helpers.""" - -# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 - -import os - -from pymarc import marcxml - -from rero_mef.marctojson.do_gnd_agent import \ - Transformation as Transformation_gnd -from rero_mef.marctojson.do_idref_agent import \ - Transformation as Transformation_idref -from rero_mef.marctojson.do_rero_agent import \ - Transformation as Transformation_rero - - -def trans_prep(source, xml_part_to_add): - """Prepare transformation.""" - build_xml_record_file(xml_part_to_add) - current_dir = os.path.dirname(__file__) - file_name = os.path.join( - current_dir, 'examples/xml_minimal_record.xml') - records = marcxml.parse_xml_to_array( - file_name, strict=False, normalize_form=None) - trans = { - 'gnd': Transformation_gnd(marc=records[0], logger=None, - verbose=False, transform=False), - 'idref': Transformation_idref(marc=records[0], logger=None, - verbose=False, transform=False), - 'rero': Transformation_rero(marc=records[0], logger=None, - verbose=False, transform=False) - } - return trans.get(source) - - -def build_xml_record_file(xml_part_to_add): - """Build_xml_record_file.""" - xml_record_as_text = """ - - 00589nx a2200193 45 """ + \ - xml_part_to_add + \ - '' - current_dir = os.path.dirname(__file__) - file_name = os.path.join( - current_dir, 'examples/xml_minimal_record.xml') - with open(file_name, 'w', encoding='utf-8') as out: - out.write(xml_record_as_text) diff --git a/tests/api/test_monitoring_rest.py b/tests/api/test_monitoring_rest.py new file mode 100644 index 00000000..8c6565bc --- /dev/null +++ b/tests/api/test_monitoring_rest.py @@ -0,0 +1,114 @@ +# -*- 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 . + +"""Test REST API monitoring.""" + +import json +import time + +from flask import url_for +from utils import create_and_login_monitoring_user + +from rero_mef.agents.idref.api import AgentIdrefRecord +from rero_mef.utils import get_timestamp, set_timestamp + + +def test_monitoring_es_db_counts(client): + """Test monitoring es_db_counts.""" + res = client.get(url_for('api_monitoring.es_db_counts')) + assert res.status_code == 200 + assert json.loads(res.get_data(as_text=True)) == { + 'data': { + 'aggnd': {'db': 0, 'db-es': 0, 'es': 0, 'index': 'agents_gnd'}, + 'agrero': {'db': 0, 'db-es': 0, 'es': 0, 'index': 'agents_rero'}, + 'aidref': {'db': 0, 'db-es': 0, 'es': 0, 'index': 'agents_idref'}, + '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'}, + 'viaf': {'db': 0, 'db-es': 0, 'es': 0, 'index': 'viaf'} + } + } + + +def test_monitoring_check_es_db_counts(app, client, agent_idref_record): + """Test monitoring check_es_db_counts.""" + res = client.get(url_for('api_monitoring.check_es_db_counts')) + assert res.status_code == 200 + assert json.loads(res.get_data(as_text=True)) == { + 'data': {'status': 'green'}} + + pers = AgentIdrefRecord.create( + data=agent_idref_record, + delete_pid=False, + dbcommit=True, + reindex=False) + AgentIdrefRecord.update_indexes() + res = client.get(url_for('api_monitoring.check_es_db_counts')) + assert res.status_code == 200 + assert json.loads(res.get_data(as_text=True)) == { + 'data': {'status': 'red'}, + 'errors': [{ + 'code': 'DB_ES_COUNTER_MISSMATCH', + 'details': 'There are 1 items from aidref missing in ES.', + 'id': 'DB_ES_COUNTER_MISSMATCH', + 'links': { + 'about': 'http://localhost/monitoring/check_es_db_counts', + 'aidref': 'http://localhost/monitoring/missing_pids/aidref' + }, + 'title': "DB items counts don't match ES items count." + }] + } + + # this view is only accessible by admin + res = client.get(url_for('api_monitoring.missing_pids', doc_type='aidref')) + assert res.status_code == 401 + + create_and_login_monitoring_user(app, client) + + res = client.get(url_for( + 'api_monitoring.missing_pids', doc_type='aidref')) + assert res.status_code == 200 + + assert json.loads(res.get_data(as_text=True)) == { + 'data': { + 'DB': [], + 'ES': ['http://localhost/agents/idref/069774331'], + 'ES duplicate': [] + } + } + + +def test_timestamps(app, client): + """Test timestamps""" + time_stamp = set_timestamp('test', msg='test msg') + assert get_timestamp('test') == {'time': time_stamp, 'msg': 'test msg'} + res = client.get(url_for('api_monitoring.timestamps')) + assert res.status_code == 401 + + create_and_login_monitoring_user(app, client) + + res = client.get(url_for('api_monitoring.timestamps')) + assert res.status_code == 200 + assert json.loads(res.get_data(as_text=True)) == { + 'data': { + 'test': { + 'msg': 'test msg', + 'unixtime': time.mktime(time_stamp.timetuple()), + 'utctime': time_stamp.strftime("%Y-%m-%d %H:%M:%S") + } + } + } diff --git a/tests/api/test_view_agents_gnd.py b/tests/api/test_view_agents_gnd.py new file mode 100644 index 00000000..7dcf6db3 --- /dev/null +++ b/tests/api/test_view_agents_gnd.py @@ -0,0 +1,67 @@ +# -*- 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 . + +"""Test REST API GND.""" + +import json + +from flask import url_for + +from rero_mef.agents.gnd.api import AgentGndRecord + + +def test_view_agents_gnd(client, agent_gnd_record): + """Test redirect GND.""" + + AgentGndRecord.create( + data=agent_gnd_record, + delete_pid=False, + dbcommit=True, + reindex=True, + ) + AgentGndRecord.update_indexes() + pid = agent_gnd_record.get('pid') + url = url_for('api_agents_gnd.redirect_list') + res = client.get(url) + assert res.status_code == 308 + res = client.get(url, follow_redirects=True) + assert res.status_code == 200 + assert json.loads(res.get_data(as_text=True))['aggregations'] == { + 'agent_type': { + 'buckets': [{'doc_count': 1, 'key': 'bf:Person'}], + 'doc_count_error_upper_bound': 0, + 'sum_other_doc_count': 0 + }, + 'deleted': {'doc_count': 0} + } + + url = url_for('api_agents_gnd.redirect_item', pid=pid) + res = client.get(url) + assert res.status_code == 308 + res = client.get(url, follow_redirects=True) + assert res.status_code == 200 + data = json.loads(res.get_data(as_text=True)) + assert data.get('id') == pid + assert data.get('metadata', {}).get('pid') == pid + + url = url_for('api_agents_gnd.redirect_item', pid='WRONG') + res = client.get(url, follow_redirects=True) + assert res.status_code == 404 + assert json.loads(res.get_data(as_text=True)) == { + "status": 404, + "message": "PID does not exist." + } diff --git a/tests/api/test_view_agents_idref.py b/tests/api/test_view_agents_idref.py new file mode 100644 index 00000000..e32e84c0 --- /dev/null +++ b/tests/api/test_view_agents_idref.py @@ -0,0 +1,67 @@ +# -*- 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 . + +"""Test REST API IDREF.""" + +import json + +from flask import url_for + +from rero_mef.agents.idref.api import AgentIdrefRecord + + +def test_view_agents_idref(client, agent_idref_record): + """Test redirect IDREF.""" + + AgentIdrefRecord.create( + data=agent_idref_record, + delete_pid=False, + dbcommit=True, + reindex=True, + ) + AgentIdrefRecord.update_indexes() + pid = agent_idref_record.get('pid') + url = url_for('api_agents_idref.redirect_list') + res = client.get(url) + assert res.status_code == 308 + res = client.get(url, follow_redirects=True) + assert res.status_code == 200 + assert json.loads(res.get_data(as_text=True))['aggregations'] == { + 'agent_type': { + 'buckets': [{'doc_count': 1, 'key': 'bf:Person'}], + 'doc_count_error_upper_bound': 0, + 'sum_other_doc_count': 0 + }, + 'deleted': {'doc_count': 0} + } + + url = url_for('api_agents_idref.redirect_item', pid=pid) + res = client.get(url) + assert res.status_code == 308 + res = client.get(url, follow_redirects=True) + assert res.status_code == 200 + data = json.loads(res.get_data(as_text=True)) + assert data.get('id') == pid + assert data.get('metadata', {}).get('pid') == pid + + url = url_for('api_agents_idref.redirect_item', pid='WRONG') + res = client.get(url, follow_redirects=True) + assert res.status_code == 404 + assert json.loads(res.get_data(as_text=True)) == { + "status": 404, + "message": "PID does not exist." + } diff --git a/tests/api/test_view_agents_mef.py b/tests/api/test_view_agents_mef.py new file mode 100644 index 00000000..d4526051 --- /dev/null +++ b/tests/api/test_view_agents_mef.py @@ -0,0 +1,76 @@ +# -*- 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 . + +"""Test REST API MEF.""" + +import json + +from flask import url_for + +from rero_mef.agents.mef.api import AgentMefRecord + + +def test_view_agents_mef(client, agent_mef_record): + """Test redirect MEF.""" + AgentMefRecord.create( + data=agent_mef_record, + delete_pid=False, + dbcommit=True, + reindex=True, + ) + AgentMefRecord.update_indexes() + pid = agent_mef_record.get('pid') + url = url_for('api_agents_mef.redirect_list') + res = client.get(url) + assert res.status_code == 308 + res = client.get(url, follow_redirects=True) + assert res.status_code == 200 + assert json.loads(res.get_data(as_text=True))['aggregations'] == { + 'agent_type': { + 'buckets': [ + {'doc_count': 1, 'key': 'bf:Person'} + ], + 'doc_count_error_upper_bound': 0, + 'sum_other_doc_count': 0 + }, + 'deleted': {'doc_count': 0}, + 'sources': { + 'buckets': [ + {'doc_count': 1, 'key': 'gnd'}, + {'doc_count': 1, 'key': 'idref'}, + {'doc_count': 1, 'key': 'rero'} + ], + 'doc_count_error_upper_bound': 0, + 'sum_other_doc_count': 0 + } + } + url = url_for('api_agents_mef.redirect_item', pid=pid) + res = client.get(url) + assert res.status_code == 308 + res = client.get(url, follow_redirects=True) + assert res.status_code == 200 + data = json.loads(res.get_data(as_text=True)) + assert data.get('id') == pid + assert data.get('metadata', {}).get('pid') == pid + + url = url_for('api_agents_mef.redirect_item', pid='WRONG') + res = client.get(url, follow_redirects=True) + assert res.status_code == 404 + assert json.loads(res.get_data(as_text=True)) == { + "status": 404, + "message": "PID does not exist." + } diff --git a/tests/api/test_view_agents_rero.py b/tests/api/test_view_agents_rero.py new file mode 100644 index 00000000..e05ae116 --- /dev/null +++ b/tests/api/test_view_agents_rero.py @@ -0,0 +1,67 @@ +# -*- 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 . + +"""Test REST API RERO.""" + +import json + +from flask import url_for + +from rero_mef.agents.rero.api import AgentReroRecord + + +def test_view_agents_rero(client, agent_rero_record): + """Test redirect RERO.""" + + AgentReroRecord.create( + data=agent_rero_record, + delete_pid=False, + dbcommit=True, + reindex=True, + ) + AgentReroRecord.update_indexes() + pid = agent_rero_record.get('pid') + url = url_for('api_agents_rero.redirect_list') + res = client.get(url) + assert res.status_code == 308 + res = client.get(url, follow_redirects=True) + assert res.status_code == 200 + assert json.loads(res.get_data(as_text=True))['aggregations'] == { + 'agent_type': { + 'buckets': [{'doc_count': 1, 'key': 'bf:Person'}], + 'doc_count_error_upper_bound': 0, + 'sum_other_doc_count': 0 + }, + 'deleted': {'doc_count': 0} + } + + url = url_for('api_agents_rero.redirect_item', pid=pid) + res = client.get(url) + assert res.status_code == 308 + res = client.get(url, follow_redirects=True) + assert res.status_code == 200 + data = json.loads(res.get_data(as_text=True)) + assert data.get('id') == pid + assert data.get('metadata', {}).get('pid') == pid + + url = url_for('api_agents_rero.redirect_item', pid='WRONG') + res = client.get(url, follow_redirects=True) + assert res.status_code == 404 + assert json.loads(res.get_data(as_text=True)) == { + "status": 404, + "message": "PID does not exist." + } diff --git a/tests/api/test_view_agents_viaf.py b/tests/api/test_view_agents_viaf.py new file mode 100644 index 00000000..f4b75d6b --- /dev/null +++ b/tests/api/test_view_agents_viaf.py @@ -0,0 +1,64 @@ +# -*- 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 . + +"""Test REST API VIAF.""" + +import json + +from flask import url_for + +from rero_mef.agents.viaf.api import AgentViafRecord + + +def test_view_agents_viaf(client, agent_viaf_record): + """Test redirect VIAF.""" + + AgentViafRecord.create( + data=agent_viaf_record, + delete_pid=False, + dbcommit=True, + reindex=True, + ) + AgentViafRecord.update_indexes() + pid = agent_viaf_record.get('pid') + url = url_for('api_agents_viaf.redirect_list') + res = client.get(url) + assert res.status_code == 308 + res = client.get(url, follow_redirects=True) + assert res.status_code == 200 + assert json.loads(res.get_data(as_text=True))['aggregations'] == { + 'gnd': {'doc_count': 1}, + 'idref': {'doc_count': 1}, + 'rero': {'doc_count': 1} + } + + url = url_for('api_agents_viaf.redirect_item', pid=pid) + res = client.get(url) + assert res.status_code == 308 + res = client.get(url, follow_redirects=True) + assert res.status_code == 200 + data = json.loads(res.get_data(as_text=True)) + assert data.get('id') == pid + assert data.get('metadata', {}).get('pid') == pid + + url = url_for('api_agents_viaf.redirect_item', pid='WRONG') + res = client.get(url, follow_redirects=True) + assert res.status_code == 404 + assert json.loads(res.get_data(as_text=True)) == { + "status": 404, + "message": "PID does not exist." + } diff --git a/tests/conftest.py b/tests/conftest.py index 61da35de..da6de349 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -59,3 +59,173 @@ def app_config(app_config): app_config['CELERY_TASK_ALWAYS_EAGER'] = True app_config['CELERY_TASK_EAGER_PROPAGATES'] = True return app_config + + +@pytest.fixture(scope='session') +def agent_mef_record(): + """Agent MEF record.""" + record = { + "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", + "gnd": {"$ref": "https://mef.rero.ch/api/gnd/12391664X"}, + "rero": {"$ref": "https://mef.rero.ch/api/rero/A023655346"}, + "idref": {"$ref": "https://mef.rero.ch/api/idref/069774331"}, + "viaf_pid": "66739143" + } + return record + + +@pytest.fixture(scope='session') +def agent_viaf_record(): + """Agent VIAF record.""" + record = { + "$schema": "https://mef.rero.ch/schemas/viaf/viaf-v0.0.1.json", + "pid": "66739143", + "gnd_pid": "12391664X", + "rero_pid": "A023655346", + "idref_pid": "069774331" + } + return record + + +@pytest.fixture(scope='session') +def agent_gnd_record(): + """Agent GND record.""" + record = { + "$schema": + "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", + "identifier": "http://d-nb.info/gnd/12391664X", + "pid": "12391664X", + "bf:Agent": "bf:Person", + "variant_name": [ + "Cavaleriis, Joannes Baptista \u0098de\u009c", + "Cavalleris, Joannes Baptista \u0098de\u009c", + "Cavaleriis, Joanes Baptista \u0098de\u009c", + "Cavalleriis, Johannes Baptista \u0098de\u009c", + "Cavalerius, Johannes Battista \u0098de\u009c", + "Cavallerys, Johannes Baptista \u0098de\u009c", + "Cavaleriis, Johannes Baptista \u0098de\u009c", + "Cavalieri, Giovanni Battista \u0098de\u009c", + "Cavallieri, Giovan Battista \u0098de\u009c", + "Cavalleriis, Johannes Battista", + "Cavallerius, Johannes Baptista", + "Cavallerius, Joannes Baptista", + "Cavalleriis, Johannes Baptista", + "Cavallieri, Giovanni Battista", + "Cavaleriis, Giovanni Battista", + "Cavalleriis, Io. Baptista \u0098de\u009c", + "Cavallieri, Giovanni Battista \u0098de\u009c", + "Cavalerijs, Io. Baptista \u0098de\u009c", + "Cavallieri, Giovanni B.", + "Cavaleriis, Joannes B. \u0098de\u009c", + "Cavallerius, Jo. B. \u0098de\u009c", + "Cavalleriis, Joannes Baptista \u0098de\u009c", + "Cavallerijs, Baptista \u0098de\u009c", + "Cavalleriis, Giovanni Battista \u0098de\u009c", + "Cavallieri, Giovanbattista \u0098de\u009c", + "Cavallerius, Io. Bap.ta", + "Cavalierii, Johannes Baptista \u0098de\u009c" + ], + "authorized_access_point": "Cavalieri, Giovanni Battista, 1525-1601", + "biographical_information": [ + "LoC-NA", + "LCAuth" + ], + "preferred_name": "Cavalieri, Giovanni Battista", + "date_of_birth": "ca. 1525", + "date_of_death": "1601" + } + return record + + +@pytest.fixture(scope='session') +def agent_rero_record(): + """Agent RERO record.""" + record = { + "$schema": + "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", + "bf:Agent": "bf:Person", + "authorized_access_point": + "Cavalieri, Giovanni Battista,, ca.1525-1601", + "date_of_birth": "ca.1525-1601", + "biographical_information": [ + "Graveur, dessinateur et \u00e9diteur" + ], + "variant_name": [ + "De Cavalieri, Giovanni Battista,", + "Cavalleriis, Baptista de,", + "Cavalleriis, Giovanni Battista de,", + "Cavalieri, Gianbattista," + ], + "identifier": "http://data.rero.ch/02-A023655346", + "pid": "A023655346", + "preferred_name": "Cavalieri, Giovanni Battista," + } + return record + + +@pytest.fixture(scope='session') +def agent_idref_record(): + """Agent IDREF record.""" + record = { + "pid": "069774331", + "bf:Agent": "bf:Person", + "date_of_birth": "....", + "date_of_death": "1540", + "language": ["fre"], + "identifier": "http://www.idref.fr/069774331", + "biographical_information": [ + "Grammairien" + ], + "preferred_name": "Briss\u00e9, Nicolas, grammairien", + "authorized_access_point": + "Briss\u00e9, Nicolas, ....-1540, grammairien", + "gender": "male", + "$schema": + "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json" + } + return record + + +@pytest.fixture(scope='session') +def concept_rero_record(): + """Concept RERO record.""" + record = { + "$schema": + "https://mef.rero.ch/schemas/" + "concepts_rero/rero-concept-v0.0.1.json", + "authorized_access_point": "Activités d'éveil", + "broader": [{ + "authorized_access_point": "Enseignement primaire" + }], + "identifiedBy": [{ + "source": "RERO", + "type": "bf:Local", + "value": "A021001006" + }, { + "source": "BNF", + "type": "bf:Local", + "value": "FRBNF11930822X" + }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119308220" + }], + "note": [{ + "label": [ + "Vocabulaire de l'éducation / G. Mialaret, 1979" + ], + "noteType": "dataSource" + }, { + "label": ["LCSH, 1995-03"], + "noteType": "dataNotFound" + }], + "pid": "A021001006", + "related": [{ + "authorized_access_point": "Leçons de choses" + }], + "variant_access_point": [ + "Activités d'éveil (enseignement primaire)", + "Disciplines d'éveil", + "Éveil, Activités d'" + ] + } + return record diff --git a/tests/data/aggnd.json b/tests/data/aggnd.json new file mode 100644 index 00000000..5b0a1e8b --- /dev/null +++ b/tests/data/aggnd.json @@ -0,0 +1,6700 @@ +[ + { + "md5": "7ad3908b98dda9e7874bf14677c40d58", + "pid": "100068944", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/100068944", + "numeration": "", + "variant_name": [ + "Caorsin, Gulielmus", + "Caoursin, William", + "Caorsin, Guglielmo", + "Caorsin, Gulielmo", + "Guillaume, Caoursin", + "Guilelmus, Caorsin", + "William, Caoursin", + "Caorsin, Guillaume", + "Coarsin, Guillaume", + "Coursin, Guillaume", + "Caonersyn, Wylhelm", + "Caonersin, Wilhelm", + "Guilelmus, Caorsinus" + ], + "date_of_birth": "1430", + "date_of_death": "1501", + "preferred_name": "Caoursin, Guillaume", + "authorized_access_point": "Caoursin, Guillaume, 1430-1501", + "biographical_information": [ + "Rhodiorum historia", + "Geschichtsschreiber; Vizekanzler d. Johanniter-Ordens" + ] + }, + { + "md5": "bca0ee2974fde3049e8546b85750558e", + "pid": "1011449145", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1011449145", + "numeration": "", + "date_of_birth": "1971", + "preferred_name": "Kay, Tamara", + "authorized_access_point": "Kay, Tamara, 1971-" + }, + { + "md5": "9aab7750173030bf78e37cb4b3e6b8b4", + "pid": "1019500344", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1019500344", + "numeration": "", + "preferred_name": "Routon, Kenneth", + "authorized_access_point": "Routon, Kenneth", + "biographical_information": [ + "Ass. professor of cultural anthropology at the Univ. of New Orleans" + ] + }, + { + "md5": "0a0ba802436df3a338acc5d60269f1b8", + "pid": "1020513020", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1020513020", + "numeration": "", + "preferred_name": "Neaum, Michael", + "authorized_access_point": "Neaum, Michael", + "biographical_information": [ + "Engl. Arrangeur und Komponist; musikal. Begleiter, 1972-2007 regula\u0308rer Begleiter des Cantamus Girl's Choir; Gesangscoach" + ] + }, + { + "md5": "9fc39e801ae3a0088e20f550685d7081", + "pid": "1022552112", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1022552112", + "numeration": "", + "date_of_birth": "17.07.1968", + "preferred_name": "Seftel, Joshua", + "authorized_access_point": "Seftel, Joshua, 1968-" + }, + { + "md5": "bf9ba824bb109db736fb7674e71a12e5", + "pid": "1025155637", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1025155637", + "numeration": "", + "variant_name": [ + "Wen, Bin Lim", + "Wen Bin Lim" + ], + "preferred_name": "Lim, Wen Bin", + "authorized_access_point": "Lim, Wen Bin" + }, + { + "md5": "fa13e7657b35de812403c1edfae5044e", + "pid": "1026199441", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1026199441", + "numeration": "", + "variant_name": [ + "Joseph, Branden W." + ], + "date_of_birth": "ca. 20. Jh.", + "preferred_name": "Joseph, Branden Wayne", + "authorized_access_point": "Joseph, Branden Wayne, ca. 20. Jh.", + "biographical_information": [ + "Frank Gallipoli Professor of Modern and Contemporary Art and Director of Art Humanities, Columbia University, New York, Department of Art History and Archaeology (2006-); Ph.D. 1999" + ] + }, + { + "md5": "e12d424773c6e45b86b245582662e7c4", + "pid": "1032029374", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1032029374", + "numeration": "", + "date_of_birth": "19XX", + "preferred_name": "Luard, Honey", + "authorized_access_point": "Luard, Honey, 19XX-", + "biographical_information": [ + "Head of publications and press at White Cube gallery in London (1992-); BA from the University of Manchester and an MA from the Courtauld Institute" + ] + }, + { + "md5": "8502bb7e9d570f8a8e2fc7495e2c1c2c", + "pid": "1032305649", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1032305649", + "numeration": "", + "variant_name": [ + "Czechowicz, Gabrjel" + ], + "date_of_birth": "02.10.1876", + "date_of_death": "22.01.1938", + "preferred_name": "Czechowicz, Gabriel", + "authorized_access_point": "Czechowicz, Gabriel, 1876-1938", + "biographical_information": [ + "Poln. Jurist; O\u0308konom; Politiker; von 1926 bis 1928 Finanzminister in Polen" + ] + }, + { + "md5": "ec4289912e46e42d4109c93fd8ab79bf", + "pid": "1035018888", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1035018888", + "numeration": "", + "date_of_birth": "1937", + "preferred_name": "Richter, Werner", + "authorized_access_point": "Richter, Werner, 1937-", + "biographical_information": [ + "Diss., Universita\u0308t Ko\u0308ln, 1969" + ] + }, + { + "md5": "fe92512059b1b15f6abceb7ffcd08042", + "pid": "1035656221", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1035656221", + "numeration": "", + "variant_name": [ + "Komiya Ko\u0304zo\u0304", + "\u5c0f\u5bae\u66e0\u4e09" + ], + "date_of_birth": "1917", + "date_of_death": "1995", + "preferred_name": "Komiya, Ko\u0304zo\u0304", + "authorized_access_point": "Komiya, Ko\u0304zo\u0304, 1917-1995" + }, + { + "md5": "80755a74ce8ddcdabbcdcc906999ce10", + "pid": "103624163", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/103624163", + "numeration": "", + "variant_name": [ + "Na\u0304g\u0306i\u0304, Hila\u0304l", + "Na\u0304gi\u0304, Hila\u0304l", + "Na\u0304ji\u0304, Hila\u0304l" + ], + "preferred_name": "Na\u0304g\u030ci\u0304, Hila\u0304l", + "authorized_access_point": "Na\u0304g\u030ci\u0304, Hila\u0304l" + }, + { + "md5": "f4287b3ed481c94840ad305d73d4b42b", + "pid": "103807349", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/103807349", + "numeration": "", + "date_of_birth": "1917", + "date_of_death": "1985", + "preferred_name": "Yardumian, Richard", + "authorized_access_point": "Yardumian, Richard, 1917-1985" + }, + { + "md5": "3324f7a61ebbdfcf5168e5f433c425cf", + "pid": "103843914", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/103843914", + "numeration": "", + "variant_name": [ + "Laub, Wasa" + ], + "date_of_birth": "1857", + "date_of_death": "1911", + "preferred_name": "Laub, Va\u0301s\u030ca", + "authorized_access_point": "Laub, Va\u0301s\u030ca, 1857-1911" + }, + { + "md5": "22e66a9581ad3ffc2674250aa4009179", + "pid": "1038798124", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1038798124", + "numeration": "", + "date_of_birth": "1952", + "preferred_name": "Madryas, Cezary", + "authorized_access_point": "Madryas, Cezary, 1952-" + }, + { + "md5": "b7331d51c739267e9a2ac20943403f69", + "pid": "10432063X", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/10432063X", + "numeration": "", + "variant_name": [ + "Seidel, Martin, der Ju\u0308ngere", + "Seidel, Martinus", + "Seydel, Martin", + "Seydel, Martinus" + ], + "date_of_birth": "1594", + "date_of_death": "22.12.1664", + "preferred_name": "Seidel, Martin", + "authorized_access_point": "Seidel, Martin, 1594-1664", + "biographical_information": [ + "Dt. ev. Theologe; 1611 Schu\u0308ler in Grimma 1630 ordiniert und Pastor in Knauthain bei Leipzig" + ] + }, + { + "md5": "abf329c6d7938807a854ab8ed66fd735", + "pid": "1044044519", + "gender": "male", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1044044519", + "numeration": "", + "preferred_name": "Rose, Adrian P.", + "authorized_access_point": "Rose, Adrian P." + }, + { + "md5": "f9cce0013e0b0760dfb6340367c8e190", + "pid": "1046083678", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1046083678", + "numeration": "", + "date_of_birth": "1843", + "date_of_death": "1932", + "preferred_name": "Welti, Oswald", + "authorized_access_point": "Welti, Oswald, 1843-1932", + "biographical_information": [ + "Schweizer Drucker und Fotograf" + ] + }, + { + "md5": "e9b80c626e0c78c6a194b1ded69ab09e", + "pid": "1047508257", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1047508257", + "numeration": "", + "preferred_name": "Prapanna, Vandana", + "authorized_access_point": "Prapanna, Vandana" + }, + { + "md5": "91ec76e90cb3dd7c3e3e0d2936c6c03a", + "pid": "1048228142", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1048228142", + "numeration": "", + "preferred_name": "Beaudet, Flavie", + "authorized_access_point": "Beaudet, Flavie", + "biographical_information": [ + "Mai\u0302trise en sciences pastorales; formatrice et coordonnatrice des stages pastoraux au Centre de Formation en Pastorale et de Spiritualite\u0301 et e\u0301galement charge\u0301e d'enseignement aux faculte\u0301s de The\u0301ologie et des Sciences humaines (2013)" + ] + }, + { + "md5": "6236b3c4885da27853b56c7ae4ee2e79", + "pid": "104999227X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/104999227X", + "numeration": "", + "variant_name": [ + "Lee, Bernon P." + ], + "preferred_name": "Lee, Bernon", + "authorized_access_point": "Lee, Bernon", + "biographical_information": [ + "Dept. of Biblical and Theological Studies, Bethel Univ., Minn. (2013)" + ] + }, + { + "md5": "07e8adb85d913c09f240b3d594b74a98", + "pid": "1050328639", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1050328639", + "numeration": "", + "preferred_name": "Adams, Seonaidh", + "authorized_access_point": "Adams, Seonaidh", + "biographical_information": [ + "Ga\u0308lisch-Lehrer" + ] + }, + { + "md5": "3614c5bc7a32dedabd1fcd0474237161", + "pid": "1051286786", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1051286786", + "numeration": "", + "variant_name": [ + "Normann, Reinhard v.", + "Von Normann, Reinhard" + ], + "date_of_birth": "1938", + "preferred_name": "Normann, Reinhard von", + "authorized_access_point": "Normann, Reinhard von, 1938-", + "biographical_information": [ + "Dipl.-Kaufmann, Verf. von Ratgebern, Sachbu\u0308chern und Nachschlagewerken" + ] + }, + { + "md5": "cb58f6b6ce27a8e2982719652adb8b77", + "pid": "1051412552", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1051412552", + "numeration": "", + "variant_name": [ + "Serventy, Dominic", + "Serventy, Dominic L.", + "Serventy, D. L." + ], + "date_of_birth": "1904", + "date_of_death": "1988", + "preferred_name": "Serventy, Dominic Louis", + "authorized_access_point": "Serventy, Dominic Louis, 1904-1988", + "biographical_information": [ + "Vollsta\u0308ndiger Vorname: Dominic Louis" + ] + }, + { + "md5": "ec677172780b175361f8571c58e1be60", + "pid": "1054143951", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1054143951", + "numeration": "", + "variant_name": [ + "Lamberton, Charles" + ], + "date_of_birth": "1876", + "date_of_death": "1960", + "preferred_name": "Lamberton, C.", + "authorized_access_point": "Lamberton, C., 1876-1960" + }, + { + "md5": "e3723bcfe45b09b134ba83d6dced2d62", + "pid": "1055200525", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1055200525", + "numeration": "", + "date_of_birth": "1777", + "date_of_death": "1825", + "preferred_name": "Hallager, Laurents", + "authorized_access_point": "Hallager, Laurents, 1777-1825" + }, + { + "md5": "5be9d5afddedacd3e209fa41a7dfad04", + "pid": "1055348328", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1055348328", + "numeration": "", + "variant_name": [ + "Lavoix, Henri Michel", + "Lavoix, H.", + "Lavoix, Michel Henri", + "Lavoix, Henri-Michel" + ], + "date_of_birth": "19.01.1820", + "date_of_death": "23.10.1892", + "preferred_name": "Lavoix, Henri", + "authorized_access_point": "Lavoix, Henri, 1820-1892", + "biographical_information": [ + "Conservateur au De\u0301partement des me\u0301dailles et antiques de la Bibliothe\u0300que Nationale, Paris. Critique dramatique et musical a\u0300 l'\"Illustration\" sous le pseudonyme de Savigny" + ] + }, + { + "md5": "5f16984881d953ef5a0c30726686e70f", + "pid": "1055753001", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1055753001", + "numeration": "", + "variant_name": [ + "Mayer, Arno Joseph" + ], + "date_of_birth": "1926", + "preferred_name": "Mayer, Arno J.", + "authorized_access_point": "Mayer, Arno J., 1926-", + "biographical_information": [ + "Holocaust-U\u0308berlebender (1940 in die USA)", + "Princeton University (2008)", + "Prof. Emeritus of European History" + ] + }, + { + "md5": "10c984d9347380b40e97aa23fe93a408", + "pid": "1055795316", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1055795316", + "numeration": "", + "variant_name": [ + "Halper, Ben-Sijjon", + "Halper, Ben-S\u0323iyyo\u0302n", + "Halper, Benzion", + "Halpern, Ben-S\u0323ijjo\u0304n", + "Halpern, Ben-S\u0323iyyo\u0302n", + "Halper, B.", + "\u05d4\u05dc\u05e4\u05e8, \u05d1\u05df\u05be\u05e6\u05d9\u05d5\u05df" + ], + "date_of_birth": "1884", + "date_of_death": "1924", + "preferred_name": "Halper, Ben-Tsiyon", + "authorized_access_point": "Halper, Ben-Tsiyon, 1884-1924", + "biographical_information": [ + "Hebraist, Arabist und Editor" + ] + }, + { + "md5": "608f7899ebcc4cb1e687ef87791a9bf2", + "pid": "1056159278", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1056159278", + "numeration": "", + "variant_name": [ + "Giusti, Giovanni", + "Giusti, Giambattista", + "Giusti, G.B." + ], + "date_of_birth": "1758", + "date_of_death": "1829", + "preferred_name": "Giusti, Giovanni Battista", + "authorized_access_point": "Giusti, Giovanni Battista, 1758-1829", + "biographical_information": [ + "ital. Literat und Ingenieur", + "U\u0308bersetzer" + ] + }, + { + "md5": "e69ef373b362a8bbf7e44a9c26b3bcf0", + "pid": "1056601809", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1056601809", + "numeration": "", + "variant_name": [ + "Lemus Romero, Samuel Bernardo" + ], + "preferred_name": "Lemus, Samuel Bernardo", + "authorized_access_point": "Lemus, Samuel Bernardo", + "biographical_information": [ + "Journalist, Chronist, Dichter" + ] + }, + { + "md5": "bdaa6624a7c49a7c6669729daedb0629", + "pid": "1057324841", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1057324841", + "numeration": "", + "variant_name": [ + "Ballivia\u0301n Roxas, Vicente de", + "Ballivia\u0301n y Rojas, Vicente de", + "Ballivia\u0301n y Roxas, Vicente de", + "Roxas, Vicente de Ballivia\u0301n y" + ], + "date_of_birth": "1810", + "date_of_death": "1891", + "preferred_name": "Ballivia\u0301n Rojas, Vicente de", + "authorized_access_point": "Ballivia\u0301n Rojas, Vicente de, 1810-1891", + "biographical_information": [ + "Historiker u. Diplomat" + ] + }, + { + "md5": "ba455d9ef5b5a242e24d45778d51ca03", + "pid": "1057339253", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1057339253", + "numeration": "", + "preferred_name": "Herna\u0301ndez Torres, Santiago", + "authorized_access_point": "Herna\u0301ndez Torres, Santiago", + "biographical_information": [ + "Co-Autor von \"El espacio industrial en Gran Canaria\", Las Palmas de Gran Canaria 1997" + ] + }, + { + "md5": "c9e4a956cb2c1ece880ac102d3245b70", + "pid": "1057520837", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1057520837", + "numeration": "", + "date_of_birth": "1932", + "preferred_name": "Cardoso, Anto\u0301nio", + "authorized_access_point": "Cardoso, Anto\u0301nio, 1932-", + "biographical_information": [ + "Kunsthistoriker", + "geb. in Amarante; vero\u0308ffentl. Lit. zur portug. Kunst u. Architektur." + ] + }, + { + "md5": "ff5dadb36c47e546eab3620ee1c75131", + "pid": "1059925583", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1059925583", + "numeration": "", + "date_of_birth": "1981", + "preferred_name": "Pedraglio, Francesco", + "authorized_access_point": "Pedraglio, Francesco, 1981-" + }, + { + "md5": "2a22e7846e4c446001b9dd429e46d8f6", + "pid": "106068375X", + "gender": "female", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://d-nb.info/gnd/106068375X", + "numeration": "", + "preferred_name": "Stras, Laurie", + "authorized_access_point": "Stras, Laurie" + }, + { + "md5": "291ede082d812b8d8512a1245d78186b", + "pid": "1061016382", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1061016382", + "numeration": "", + "date_of_birth": "1854", + "date_of_death": "1945", + "preferred_name": "Cohen, Louis", + "authorized_access_point": "Cohen, Louis, 1854-1945", + "biographical_information": [ + "Engl. Journalist, Schriftsteller,Diamantenha\u0308ndler und Makler" + ] + }, + { + "md5": "1bc8acd35f83ae800a364182a59c3904", + "pid": "1061268225", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1061268225", + "numeration": "", + "preferred_name": "Chiarini, Claude", + "authorized_access_point": "Chiarini, Claude" + }, + { + "md5": "d9679ca9d14f4662e9c50fd128d65d37", + "pid": "106136769X", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/106136769X", + "numeration": "", + "preferred_name": "Renaud, Christian", + "authorized_access_point": "Renaud, Christian" + }, + { + "md5": "b830fa754446fb3ca901eb30ebe0d5de", + "pid": "1061744094", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1061744094", + "numeration": "", + "variant_name": [ + "Boszat, Ingrid" + ], + "date_of_birth": "ca. 20. Jh.", + "preferred_name": "Broszat, Ingrid", + "authorized_access_point": "Broszat, Ingrid, ca. 20. Jh." + }, + { + "md5": "b44fe1306fa3b4eb161d52c6ecc88225", + "pid": "1063814340", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1063814340", + "numeration": "", + "date_of_birth": "1910", + "date_of_death": "1997", + "preferred_name": "Bielawski, Jo\u0301zef", + "authorized_access_point": "Bielawski, Jo\u0301zef, 1910-1997", + "biographical_information": [ + "Arabist, Wissenschaftler, U\u0308bersetzer Jura Universita\u0308t Krako\u0301w, Orientalistik Ankara, Professor Universita\u0308t Warszawa, Mitglied Akademie der Wissenschaften Irak" + ] + }, + { + "md5": "9bfc73569cac3453dc8632b467c36fb0", + "pid": "1064724876", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1064724876", + "numeration": "", + "preferred_name": "Saul, Matthew", + "authorized_access_point": "Saul, Matthew", + "biographical_information": [ + "PhD, University of Sheffield, 2009. Post-doctoral research fellow on the European Research Council (ERC) funded MultiRights project, University of Oslo, Norway, February 2013-. Lecturer in law, Durham Universtiy, 2008-2013" + ] + }, + { + "md5": "cf8301da8f0742b83d324f9fc270a395", + "pid": "107441148X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/107441148X", + "numeration": "", + "variant_name": [ + "Diaz, Janet Winecoff", + "Winecoff Diaz, Janet" + ], + "preferred_name": "Diaz, Janet", + "authorized_access_point": "Diaz, Janet" + }, + { + "md5": "5d7e7bf204b036038c853a2a80057b42", + "pid": "107495839X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/107495839X", + "numeration": "", + "variant_name": [ + "Turner, R. J. W." + ], + "preferred_name": "Turner, Robert J. W.", + "authorized_access_point": "Turner, Robert J. W." + }, + { + "md5": "4c9e1f55a166db1ebc88df5b0b109df8", + "pid": "107738338X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/107738338X", + "numeration": "", + "preferred_name": "Sibears, Daniel M.", + "authorized_access_point": "Sibears, Daniel M." + }, + { + "md5": "c9021e19bcae6e2658f25c4f8e35a969", + "pid": "1077501706", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1077501706", + "numeration": "", + "preferred_name": "Gunnlaugson, Olen", + "authorized_access_point": "Gunnlaugson, Olen" + }, + { + "md5": "a9851b5281fedc7d24da238b627392a3", + "pid": "1077608101", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1077608101", + "numeration": "", + "date_of_birth": "1956", + "preferred_name": "Sto\u0308ppler, Thomas", + "authorized_access_point": "Sto\u0308ppler, Thomas, 1956-", + "biographical_information": [ + "Studiendirektor, ist Landesvorsitzender des europaweit gro\u0308\u00dften Fachverbandes im Behindertenbereich: Verband Sonderpa\u0308dagogik e.V. Baden-Wu\u0308rttemberg (vds). Nach langja\u0308hriger Ta\u0308tigkeit als Sonderpa\u0308dagoge und Schulleiter mit den Fo\u0308rderschwerpunkten Verhalten und Lernen sowie im Lehrerbildungsbereich ist er derzeit Leiter des Staatlichen Seminars fu\u0308r Didaktik und Lehrerbildung, Abteilung Sonderschulen in Stuttgart." + ] + }, + { + "md5": "da7e97949b7f191fe109ad3d0eeac286", + "pid": "1079304231", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1079304231", + "numeration": "", + "variant_name": [ + "Efrussi, Tatiana Aleksandrovna" + ], + "date_of_birth": "1988", + "preferred_name": "Efrussi, Tatiana", + "authorized_access_point": "Efrussi, Tatiana, 1988-" + }, + { + "md5": "f0e2b6b1d25150a8d22f52c48e86cd20", + "pid": "1079471162", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1079471162", + "numeration": "", + "date_of_birth": "1877", + "date_of_death": "1943", + "preferred_name": "Hollaus, Bartholoma\u0308us", + "authorized_access_point": "Hollaus, Bartholoma\u0308us, 1877-1943", + "biographical_information": [ + "1897 an der Akademie der Bildenden Ku\u0308nste Mu\u0308nchen" + ] + }, + { + "md5": "7690418a951a71208fbafb7db2ef0e21", + "pid": "1079732772", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1079732772", + "numeration": "", + "date_of_birth": "1878", + "preferred_name": "Krennitz, Franz", + "authorized_access_point": "Krennitz, Franz, 1878-", + "biographical_information": [ + "1909 an der Akademie der Bildenden Ku\u0308nste Mu\u0308nchen" + ] + }, + { + "md5": "3c77fa5ca1c80bf007168f387a769c5d", + "pid": "1079820728", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1079820728", + "numeration": "", + "variant_name": [ + "Blechinger, Alexander", + "Blechinger, Alexander" + ], + "date_of_birth": "1956", + "preferred_name": "Blechinger, Alexander", + "authorized_access_point": "Blechinger, Alexander, 1956-" + }, + { + "md5": "f98b1b4bdc7bac2b1be65532912ebe69", + "pid": "1079981993", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1079981993", + "numeration": "", + "variant_name": [ + "Artl, G." + ], + "preferred_name": "Artl, Gerhard", + "authorized_access_point": "Artl, Gerhard" + }, + { + "md5": "42ba151614c6f7149eb5632dc7d019d6", + "pid": "1081209488", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1081209488", + "numeration": "", + "date_of_birth": "1954", + "preferred_name": "Wiener, Daniel", + "authorized_access_point": "Wiener, Daniel, 1954-" + }, + { + "md5": "bea991afd211f217c6bbdc72ed1ffbc8", + "pid": "1081429097", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1081429097", + "numeration": "", + "variant_name": [ + "Unwirth, Gregorius", + "Unwird, Gregor", + "Unwird, Gregorius", + "Unwirdt, Gregor" + ], + "date_of_birth": "1542", + "date_of_death": "1601", + "preferred_name": "Unwirth, Gregor", + "authorized_access_point": "Unwirth, Gregor, 1542-1601" + }, + { + "md5": "b1f7c4016b4632f5f778963b5c70b4dd", + "pid": "1081682752", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1081682752", + "numeration": "", + "preferred_name": "Pulipaka, Ganapathi", + "authorized_access_point": "Pulipaka, Ganapathi" + }, + { + "md5": "acd17215da9454ce2296b909bbfa6342", + "pid": "1083848275", + "gender": "male", + "language": [ + "ita" + ], + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1083848275", + "numeration": "", + "date_of_birth": "1812", + "date_of_death": "1884", + "preferred_name": "Maggiore, Giacomo", + "authorized_access_point": "Maggiore, Giacomo, 1812-1884" + }, + { + "md5": "668a96be2966322ca836da435136b066", + "pid": "1084011735", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1084011735", + "numeration": "", + "variant_name": [ + "Scha\u0308ufelein, Hans Leonhard", + "Scha\u0308ufelein, Hans Leonhard", + "Scha\u0308ufelein, Hans Leonhard", + "Scha\u0308ufelein, Hans Leonhard", + "Scha\u0308ufelein, Hans Leonhard", + "Scha\u0308ufelein, Hans Leonhard" + ], + "date_of_birth": "1480", + "date_of_death": "1540", + "preferred_name": "Scha\u0308ufelein, Hans Leonhard", + "authorized_access_point": "Scha\u0308ufelein, Hans Leonhard, 1480-1540" + }, + { + "md5": "1982899be88fe5a4243f63feec0df020", + "pid": "1084358085", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1084358085", + "numeration": "", + "variant_name": [ + "Wagner, Richard", + "Wagner, Richard", + "Wagner, Richard", + "Wagner, Richard" + ], + "date_of_birth": "1813", + "date_of_death": "1883", + "preferred_name": "Wagner, Richard", + "authorized_access_point": "Wagner, Richard, 1813-1883", + "biographical_information": [ + "Titel bei Hunt: Siegfried (O Siegfreid! Dein war ich von je)" + ] + }, + { + "md5": "5a1cb752ab5219eb7b3eaeab41189a41", + "pid": "1088049001", + "qualifier": "Damascenus", + "identifier": "http://d-nb.info/gnd/1088049001", + "numeration": "", + "variant_name": [ + "Leontius, Damascenus" + ], + "preferred_name": "Leontius Damascenus", + "authorized_access_point": "Leontius, Damascenus" + }, + { + "md5": "25f35dadfecaf6183b4270979a8f0b53", + "pid": "1088070116", + "qualifier": "Zwifaltensis", + "identifier": "http://d-nb.info/gnd/1088070116", + "numeration": "", + "preferred_name": "Bertholdus Zwifaltensis", + "authorized_access_point": "Bertholdus, Zwifaltensis" + }, + { + "md5": "b984a9c6cd8dc290475b1ed5cbc57946", + "pid": "1089160305", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1089160305", + "numeration": "", + "variant_name": [ + "Ruggles, Richard", + "Ruggles, Richard Irwin", + "Ruggles, Dick" + ], + "date_of_birth": "1923", + "date_of_death": "2008", + "preferred_name": "Ruggles, Richard I.", + "authorized_access_point": "Ruggles, Richard I., 1923-2008", + "biographical_information": [ + "Geograph" + ] + }, + { + "md5": "ff92cf92cdb645d8429d556a25009358", + "pid": "1089227736", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1089227736", + "numeration": "", + "date_of_birth": "20. Jht.", + "preferred_name": "Mu\u0308ller-Starck, Gerhard", + "authorized_access_point": "Mu\u0308ller-Starck, Gerhard, 20. Jht.", + "biographical_information": [ + "Forstwissenschaftler, Deutschland, Schweiz" + ] + }, + { + "md5": "6dde74877c66aa59bffc0bd09183ab67", + "pid": "1089252579", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1089252579", + "numeration": "", + "variant_name": [ + "Utley, Jaspar David", + "Utley, Jasper" + ], + "preferred_name": "Utley, David Jaspar", + "authorized_access_point": "Utley, David Jaspar", + "biographical_information": [ + "Schriftsteller, Namibia" + ] + }, + { + "md5": "7795e5f6ec3d00075f7591f18b7abb2f", + "pid": "1089267177", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1089267177", + "numeration": "", + "variant_name": [ + "Schimmel, Nikolaus" + ], + "preferred_name": "Schimmel, Nikolaus W.", + "authorized_access_point": "Schimmel, Nikolaus W.", + "biographical_information": [ + "Klavierbauer, Deutschland" + ] + }, + { + "md5": "42a99ab24d49e60da508bc34a7f5880b", + "pid": "1089283814", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1089283814", + "numeration": "", + "variant_name": [ + "Margaryan, Alfred A." + ], + "date_of_birth": "20. Jht.", + "preferred_name": "Margaryan, Alfred", + "authorized_access_point": "Margaryan, Alfred, 20. Jht.", + "biographical_information": [ + "Chemiker" + ] + }, + { + "md5": "10588d602db9eff04bd19e078b05a481", + "pid": "1089339771", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1089339771", + "numeration": "", + "variant_name": [ + "Appelman, Jaco", + "Appelman, Jacob Herre" + ], + "preferred_name": "Appelman, Jaco H.", + "authorized_access_point": "Appelman, Jaco H.", + "biographical_information": [ + "Wirtschaftswissenschaftler", + "Vollsta\u0308ndiger Vorname: Jaco Herre" + ] + }, + { + "md5": "4dfb5cd3c38800abef274260f13ea390", + "pid": "1089477015", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1089477015", + "numeration": "", + "variant_name": [ + "Junius Redivivus", + "Redivivus, Junius", + "Bridges Adams, William" + ], + "date_of_birth": "1797", + "date_of_death": "1872", + "preferred_name": "Adams, William Bridges", + "authorized_access_point": "Adams, William Bridges, 1797-1872" + }, + { + "md5": "67fede2ca5e69017ff5646314e7d8265", + "pid": "1089511663", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1089511663", + "numeration": "", + "variant_name": [ + "Roja, Nicola\u0301s" + ], + "preferred_name": "Rojas, Nicola\u0301s", + "authorized_access_point": "Rojas, Nicola\u0301s", + "biographical_information": [ + "Biologe" + ] + }, + { + "md5": "ad555c3f98672c33a24c53c24cdfbdd8", + "pid": "108951431X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/108951431X", + "numeration": "", + "date_of_birth": "1916", + "date_of_death": "2001", + "preferred_name": "Koch, Howard W.", + "authorized_access_point": "Koch, Howard W., 1916-2001", + "biographical_information": [ + "Filmproduzent, Filmregisseur" + ] + }, + { + "md5": "8584c87f092be9289893453640eda812", + "pid": "108964194X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/108964194X", + "numeration": "", + "date_of_birth": "18. Jht.", + "preferred_name": "Mischel, Johann Alexander", + "authorized_access_point": "Mischel, Johann Alexander, 18. Jht.", + "biographical_information": [ + "Mediziner, Uebersetzer" + ] + }, + { + "md5": "e0705c938f183d45b120d094bca16ae5", + "pid": "1089682018", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1089682018", + "numeration": "", + "preferred_name": "Schmid, Franziska Sibylle", + "authorized_access_point": "Schmid, Franziska Sibylle", + "biographical_information": [ + "Umweltwissenschaftlerin" + ] + }, + { + "md5": "eff6a3573efb31a49548b87cb96a7ea6", + "pid": "1089693907", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1089693907", + "numeration": "", + "variant_name": [ + "Zhao, Vincent", + "Chiu, Vincent", + "Chiu, Man-cheuk", + "Chao, Wen-jar", + "Zhao, Zhuo", + "Zhao Wen Zhou", + "Chuk, Vincent Chiu Man", + "Chiu, Man Cheuk", + "Zhao, Wenzuo Vincent", + "Zhao, Wenzhou", + "Zhao, Wen Zhou", + "\u8d75\u6587\u5353", + "\u8d99\u6587\u5353", + "\u8d75\u5353" + ], + "date_of_birth": "1972", + "preferred_name": "Zhao, Wenzhuo", + "authorized_access_point": "Zhao, Wenzhuo, 1972-", + "biographical_information": [ + "Schauspieler, Wushu-Ka\u0308mpfer" + ] + }, + { + "md5": "0726c0e603a2952ed2396fc2ce5e27b3", + "pid": "1089778236", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1089778236", + "numeration": "", + "date_of_birth": "1965", + "preferred_name": "Krammer, Gerhard", + "authorized_access_point": "Krammer, Gerhard, 1965-" + }, + { + "md5": "0d7677ad009b2327a69bb919b5bc7998", + "pid": "1090111223", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1090111223", + "numeration": "", + "date_of_birth": "1951", + "preferred_name": "Dewdney, Christopher", + "authorized_access_point": "Dewdney, Christopher, 1951-" + }, + { + "md5": "bb7b4458561518906faaddfe61adc329", + "pid": "1095234463", + "qualifier": "Familie : 1703- : Heubisch", + "identifier": "http://d-nb.info/gnd/1095234463", + "numeration": "", + "preferred_name": "Lo\u0308hlein Familie : 1703- : Heubisch", + "authorized_access_point": "Lo\u0308hlein, Familie : 1703- : Heubisch", + "biographical_information": [ + "Mu\u0308llerfamilie, seit 1703 in Heubisch ansa\u0308ssig, spa\u0308ter auch im Coburger und Neusta\u0308dter Gebiet; Nachkommen teilweise als Pfarrer, Musiker und Komponisten bekannt" + ] + }, + { + "md5": "7cf1fc70e6a346bddf10121b6536b16b", + "pid": "1095794957", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1095794957", + "numeration": "", + "preferred_name": "Bols, Mike", + "authorized_access_point": "Bols, Mike" + }, + { + "md5": "254ec9221069bed42c8856827070bd2c", + "pid": "1096172224", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1096172224", + "numeration": "", + "variant_name": [ + "Juteau Lee, Danielle", + "Lee, Danielle Juteau" + ], + "date_of_birth": "1942", + "preferred_name": "Juteau, Danielle", + "authorized_access_point": "Juteau, Danielle, 1942-", + "biographical_information": [ + "Professeure e\u0301me\u0301rite\u0301 au De\u0301partement de sociologie de l'Universite\u0301 de Montre\u0301al (2015)" + ] + }, + { + "md5": "b66437b893fd24e42a5fd411e81ac1bf", + "pid": "109790715", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/109790715", + "numeration": "", + "variant_name": [ + "Franc\u0327ois" + ], + "preferred_name": "Doly, Guy", + "authorized_access_point": "Doly, Guy" + }, + { + "md5": "e60b5c0294e12440e2685e1882b572cd", + "pid": "1098168984", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1098168984", + "numeration": "", + "variant_name": [ + "Lappe, J. H. A.", + "Lappe, Johann", + "Lappe, Heinrich", + "Lappe, August" + ], + "date_of_birth": "ca. 1824", + "preferred_name": "Lappe, Johann Heinrich August", + "authorized_access_point": "Lappe, Johann Heinrich August, ca. 1824" + }, + { + "md5": "78f84ea49f9916f265acea1ba52bb18b", + "pid": "1100576819", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1100576819", + "numeration": "", + "date_of_birth": "09.10.1877", + "date_of_death": "15.06.1952", + "preferred_name": "Cisar, Wenzel", + "authorized_access_point": "Cisar, Wenzel, 1877-1952" + }, + { + "md5": "67a7bb812988ee602c669153258c13d7", + "pid": "1102915556", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1102915556", + "numeration": "", + "variant_name": [ + "Delius, Frederick" + ], + "date_of_birth": "1862", + "date_of_death": "1934", + "preferred_name": "Delius, Frederick", + "authorized_access_point": "Delius, Frederick, 1862-1934" + }, + { + "md5": "70518223069c01a8484572e1be6ab0ac", + "pid": "1104279754", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1104279754", + "numeration": "", + "variant_name": [ + "Yang Rui", + "\u6768, \u8564", + "\u694a\u8564", + "\u694a, \u8564" + ], + "date_of_birth": "1975", + "preferred_name": "Yang, Rui", + "authorized_access_point": "Yang, Rui, 1975-" + }, + { + "md5": "0ab4478ce764821191e2d7fba443fe5f", + "pid": "1109931689", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1109931689", + "numeration": "", + "variant_name": [ + "Bibik, V. L." + ], + "date_of_birth": "1970", + "preferred_name": "Bibik, Vladislav Leonidovic\u030c", + "authorized_access_point": "Bibik, Vladislav Leonidovic\u030c, 1970-" + }, + { + "md5": "4790f6a016cdc1aa575f94d4602e2773", + "pid": "111263638", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/111263638", + "numeration": "", + "variant_name": [ + "Ba\u0304rinto, Aguneshu" + ], + "date_of_birth": "23.10.1922", + "date_of_death": "24.10.2008", + "preferred_name": "Ba\u0301lint, A\u0301gnes", + "authorized_access_point": "Ba\u0301lint, A\u0301gnes, 1922-2008", + "biographical_information": [ + "Ungar. Kinder- und Drehbuchautorin" + ] + }, + { + "md5": "8664c2448cefca7143447d76c81ebb90", + "pid": "1114895318", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1114895318", + "numeration": "", + "preferred_name": "Gros, Sabine", + "authorized_access_point": "Gros, Sabine" + }, + { + "md5": "ca4580b7014bc148063e1a1412eb5aaa", + "pid": "1116459507", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1116459507", + "numeration": "", + "variant_name": [ + "Schulze, Claudia" + ], + "date_of_birth": "1982", + "preferred_name": "Ehrlich, Claudia", + "authorized_access_point": "Ehrlich, Claudia, 1982-", + "biographical_information": [ + "Beruf: A\u0308rztin" + ] + }, + { + "md5": "59c555549444970c52d7e1df94238f45", + "pid": "1117731855", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1117731855", + "numeration": "", + "preferred_name": "Leahy, Tamara", + "authorized_access_point": "Leahy, Tamara", + "biographical_information": [ + "Chied of Staff, Military and Defence Studies Program, Australian Command and Staff College ; 2011 BA of Law, Australian National UNiversity" + ] + }, + { + "md5": "84efb83e3bd94810529b2674db242e5b", + "pid": "1120533260", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1120533260", + "numeration": "", + "preferred_name": "Grellety, Re\u0301mi", + "authorized_access_point": "Grellety, Re\u0301mi" + }, + { + "md5": "ed4b656a63dd549fc5fa59883e0fd098", + "pid": "1120736277", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1120736277", + "numeration": "", + "preferred_name": "Mirzaei, Nazli", + "authorized_access_point": "Mirzaei, Nazli", + "biographical_information": [ + "Dissertation, Medizinische Fakulta\u0308t, Ludwig-Maximilians-Universita\u0308t Mu\u0308nchen, 2016" + ] + }, + { + "md5": "1afb2e21e16ffb061fbc12cea356df2d", + "pid": "1120815401", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1120815401", + "numeration": "", + "variant_name": [ + "Stradner, Michael" + ], + "preferred_name": "Stradner, Michael Alexander", + "authorized_access_point": "Stradner, Michael Alexander", + "biographical_information": [ + "Promotion an der Rheinisch-Westfa\u0308lischen Technischen Hochschule Aachen, Fakulta\u0308t fu\u0308r Wirtschaftswissenschaften, 2016" + ] + }, + { + "md5": "eaedd7779d02b5dca2e20352a382ad39", + "pid": "1126067296", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1126067296", + "numeration": "", + "preferred_name": "Corcelli, John", + "authorized_access_point": "Corcelli, John", + "biographical_information": [ + "Zum 100. Jahrestag des Untergangs der Titanic produzierte er eine Dokumentation u\u0308ber die Musiker, die dort spielten, mit dem Titel \"Hartley's Violin\"" + ] + }, + { + "md5": "491aef2b2f797eef03ddf355b867218e", + "pid": "1126071935", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1126071935", + "numeration": "", + "variant_name": [ + "Jacob, Bernard Lortat" + ], + "preferred_name": "Lortat-Jacob, Bernard", + "authorized_access_point": "Lortat-Jacob, Bernard" + }, + { + "md5": "90d0d51102389810993f81ac6f275e95", + "pid": "112912388X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/112912388X", + "numeration": "", + "date_of_birth": "1955", + "preferred_name": "Charendoff, Susan", + "authorized_access_point": "Charendoff, Susan, 1955-", + "biographical_information": [ + "She holds a LL.B. from Osgoode Hall Law School and a B.A. from York University. She is currently the Director, Civil Policy and Programs Branch, Court Services Division in the (Ontario) Ministry of Attorney General" + ] + }, + { + "md5": "caf383736384d398769a1b69f561ab38", + "pid": "1129898709", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1129898709", + "numeration": "", + "date_of_birth": "1962", + "preferred_name": "Rao, Pratima V.", + "authorized_access_point": "Rao, Pratima V., 1962-", + "biographical_information": [ + "she holds degrees in economics, sociology, and law" + ] + }, + { + "md5": "0ee411d97b6263f0a0a88bf5af9b5722", + "pid": "1131199715", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1131199715", + "numeration": "", + "date_of_birth": "1982", + "preferred_name": "Shandilya, Smita", + "authorized_access_point": "Shandilya, Smita, 1982-", + "biographical_information": [ + "Arbeitet am Sagar Institute of Research Technology & Science, India" + ] + }, + { + "md5": "ac4065fe03432c39f67f43d9a5d06855", + "pid": "1131218620", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1131218620", + "numeration": "", + "date_of_birth": "07.08.1941", + "date_of_death": "10.08.1991", + "preferred_name": "Wro\u0301blewski, Jerzy", + "authorized_access_point": "Wro\u0301blewski, Jerzy, 1941-1991", + "biographical_information": [ + "Polski rysownik i autor komikso\u0301w" + ] + }, + { + "md5": "47a01a92a8eeb7faaf0c03fd30a2173f", + "pid": "1139311719", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1139311719", + "numeration": "", + "variant_name": [ + "Ingo\u0301lfsdo\u0301ttir, Au\u00f0ur H." + ], + "date_of_birth": "1970", + "preferred_name": "Au\u00f0ur H. Ingo\u0301lfsdo\u0301ttir", + "authorized_access_point": "Au\u00f0ur H. Ingo\u0301lfsdo\u0301ttir, 1970-", + "biographical_information": [ + "BA (International studies, University of Washington, Seattle), post graduate diploma (Professional journalism, University of Iceland), MA (International relations, Fletcher School of Law and Diplomacy, Tufts University, Boston), PhD (Universita\u0308t Lappland, Rovaniemi, 2016), Assistant Professor an der Universita\u0308t Bifro\u0308st (Island)" + ] + }, + { + "md5": "7e395f5f505ab0ee8caf5f8c19a1c392", + "pid": "1139400851", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1139400851", + "numeration": "", + "date_of_birth": "1966", + "preferred_name": "Lapp, Axel", + "authorized_access_point": "Lapp, Axel, 1966-" + }, + { + "md5": "ec5f1221ff84e0bf4fcd35f194ed65fc", + "pid": "1139789902", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1139789902", + "numeration": "", + "variant_name": [ + "Mignaburu-Berho, Magdalena E.", + "Berho, Magdalena E. Mignaburu", + "Mignaburu, Magdalena" + ], + "date_of_birth": "1955", + "preferred_name": "Mignaburu Berho, Magdalena E.", + "authorized_access_point": "Mignaburu Berho, Magdalena E., 1955-" + }, + { + "md5": "72192567d852b3ae2d7b17ce2ad7b731", + "pid": "1140075810", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1140075810", + "numeration": "", + "preferred_name": "Bayer, Timo", + "authorized_access_point": "Bayer, Timo", + "biographical_information": [ + "Wissenschaftl. Mitarbeiter am DFG-Projekt Richard Kleine, Lehrstuhl fu\u0308r Systemat. Theologie, Institut fu\u0308r Kathol. Theologie, Universita\u0308t des Saarlandes" + ] + }, + { + "md5": "b7686dc3a50a50f1b80060366500c040", + "pid": "1140439618", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1140439618", + "numeration": "", + "date_of_birth": "1982", + "preferred_name": "Hinojos, Mario", + "authorized_access_point": "Hinojos, Mario, 1982-" + }, + { + "md5": "bb38cf7dccfc842c1532972d4d41646e", + "pid": "1140557696", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1140557696", + "numeration": "", + "variant_name": [ + "Schimitzek, Friedrich Wilhelm" + ], + "date_of_birth": "12.01.1892", + "preferred_name": "Schimitzek, Friedrich", + "authorized_access_point": "Schimitzek, Friedrich, 1892-" + }, + { + "md5": "3707049dd511750596217bae14ffefa0", + "pid": "1143266722", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1143266722", + "numeration": "", + "variant_name": [ + "Richter, Regina" + ], + "date_of_birth": "12.01.1954", + "date_of_death": "22.10.2017", + "preferred_name": "Gorjewa, Regina", + "authorized_access_point": "Gorjewa, Regina, 1954-2017" + }, + { + "md5": "c8e094460855dc52055a3dc033443828", + "pid": "1143635876", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1143635876", + "numeration": "", + "preferred_name": "Ranganathan, Thiagu", + "authorized_access_point": "Ranganathan, Thiagu" + }, + { + "md5": "502094d5ff15184c48e91929d20bdfe6", + "pid": "1145375154", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1145375154", + "numeration": "", + "date_of_birth": "1931", + "preferred_name": "Echard, William E.", + "authorized_access_point": "Echard, William E., 1931-" + }, + { + "md5": "8476904da048760f6dde4a5884d0a8fe", + "pid": "1145486533", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1145486533", + "numeration": "", + "date_of_birth": "1890", + "preferred_name": "Noeldeke, Alexander", + "authorized_access_point": "Noeldeke, Alexander, 1890-", + "biographical_information": [ + "(geb. in Karlsruhe i.B.)" + ] + }, + { + "md5": "8a5ac47f14676ff21a0a6e6fb38e5277", + "pid": "1145880231", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1145880231", + "numeration": "", + "date_of_birth": "1947", + "preferred_name": "Tirichter, Monika", + "authorized_access_point": "Tirichter, Monika, 1947-" + }, + { + "md5": "10fbbc4e888d5e38db53f338a64e0056", + "pid": "1146337116", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1146337116", + "numeration": "", + "variant_name": [ + "Carpentier, Louis-Laurent", + "Carpentier, Laurent" + ], + "date_of_birth": "1968", + "preferred_name": "Laurent", + "authorized_access_point": "Laurent, 1968-", + "biographical_information": [ + "belg. Comiczeichner und Colorist" + ] + }, + { + "md5": "d71dfd29bd014d8addfb432838b3ed4e", + "pid": "1146518064", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1146518064", + "numeration": "", + "variant_name": [ + "Jakkara\u0304ju Ven\u0307kat\u0323akavi", + "Vem\u0323kat\u0323akavi, Jakkara\u0304ju" + ], + "preferred_name": "Ven\u0307kat\u0323akavi, Jakkara\u0304ju", + "authorized_access_point": "Ven\u0307kat\u0323akavi, Jakkara\u0304ju", + "biographical_information": [ + "Ansetzung lt. Orientabt., TUUB, 27.04.2004" + ] + }, + { + "md5": "084130632c2df47a29f3ceac639c8ec6", + "pid": "1146538235", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1146538235", + "numeration": "", + "preferred_name": "Selig, Joachim", + "authorized_access_point": "Selig, Joachim", + "biographical_information": [ + "Wirtschaftswissenschaftler", + "Ulm, Universita\u0308t: Fak. fu\u0308r Mathematik und Wirtschaftswissenschaften / Abt. Optimierung und Operations Research (Diplomarbeit 2003)" + ] + }, + { + "md5": "16b530a38de0d80bd4901306cd152744", + "pid": "1146539355", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1146539355", + "numeration": "", + "preferred_name": "Breidbach, Michael", + "authorized_access_point": "Breidbach, Michael", + "biographical_information": [ + "Physiker", + "geb. in Leverkusen, Diss. Ko\u0308ln 2004" + ] + }, + { + "md5": "ef2659a7aa496f041d217ef301c76a52", + "pid": "1146540825", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1146540825", + "numeration": "", + "date_of_birth": "1939", + "preferred_name": "Magerl, Wolfram", + "authorized_access_point": "Magerl, Wolfram, 1939-" + }, + { + "md5": "be5dad240ad4a0bc1e1c629cedbd4f64", + "pid": "1146583117", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1146583117", + "numeration": "", + "variant_name": [ + "Bessonova, A. M.", + "Bessonova, Anastasija Michajlovna" + ], + "date_of_birth": "1917", + "date_of_death": "2001", + "preferred_name": "Bessonova, Anastasija M.", + "authorized_access_point": "Bessonova, Anastasija M., 1917-2001" + }, + { + "md5": "a1e90bc43c74fcd660b20a440e138502", + "pid": "1146703015", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1146703015", + "numeration": "", + "date_of_birth": "1948", + "preferred_name": "Owens, Elizabeth", + "authorized_access_point": "Owens, Elizabeth, 1948-" + }, + { + "md5": "f2579d5156eba80453c215a12965a1fe", + "pid": "1146794703", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1146794703", + "numeration": "", + "date_of_birth": "1922", + "preferred_name": "Fregly, Bert", + "authorized_access_point": "Fregly, Bert, 1922-" + }, + { + "md5": "1b1e9154f5f62cb6d9ec9346f780fd2d", + "pid": "1146809913", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1146809913", + "numeration": "", + "variant_name": [ + "Teodorc\u030cik, K. F.", + "Teodorc\u030cik, Kazimir Francevic\u030c" + ], + "date_of_birth": "1891", + "preferred_name": "Teodorc\u030cik, Kazimir F.", + "authorized_access_point": "Teodorc\u030cik, Kazimir F., 1891-" + }, + { + "md5": "3fce9af2a94fa7dc7f985d660fbcb327", + "pid": "1146844743", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1146844743", + "numeration": "", + "preferred_name": "Fundinger, Andreas", + "authorized_access_point": "Fundinger, Andreas", + "biographical_information": [ + "Geologe" + ] + }, + { + "md5": "576a713b178451d0eaa13e82e5b5ca34", + "pid": "1147127794", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1147127794", + "numeration": "", + "variant_name": [ + "Na\u0304ra\u0304yan\u0323adeva, Gajapati", + "Na\u0304ra\u0304yan\u0323a" + ], + "preferred_name": "Na\u0304ra\u0304yan\u0323adeva", + "authorized_access_point": "Na\u0304ra\u0304yan\u0323adeva", + "biographical_information": [ + "King Gajapati Na\u0304ra\u0304yan\u0323adeva of Parlakimidi in Orissa; learnt music from Kaviratna Purus\u0323ottama and the result of his study is embodied in his work San\u0307gi\u0304tana\u0304ra\u0304yan\u0323a" + ] + }, + { + "md5": "7a2c72a20504d3bab42ecbd41c9bc0cf", + "pid": "1147141754", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1147141754", + "numeration": "", + "variant_name": [ + "Gandhi, Nighat" + ], + "preferred_name": "Gandhi, Nighat M.", + "authorized_access_point": "Gandhi, Nighat M.", + "biographical_information": [ + "Writer & professional mental health counselor; spent her formative yrs. in Dhaka and Karachi; studied in USA; presently resides in Allahabad & writes for Indian and Pakistani newspapers" + ] + }, + { + "md5": "2f39dc70c28d09278a28f199971a4552", + "pid": "1147167125", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1147167125", + "numeration": "", + "variant_name": [ + "Luc, Fre\u0300re" + ], + "date_of_birth": "1914", + "date_of_death": "1996", + "preferred_name": "Dochier, Luc", + "authorized_access_point": "Dochier, Luc, 1914-1996", + "biographical_information": [ + "1914-1996. Mo\u0308nch in Tibhirine" + ] + }, + { + "md5": "53bbf335ee2c5f91691d3dc80a2b45bf", + "pid": "1147618305", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1147618305", + "numeration": "", + "variant_name": [ + "Rohling, E. J." + ], + "preferred_name": "Rohling, Eelco J.", + "authorized_access_point": "Rohling, Eelco J." + }, + { + "md5": "722c4af6c8b3e0023ac0772a2445716d", + "pid": "1148667989", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1148667989", + "numeration": "", + "variant_name": [ + "Schriver, Randall", + "Schriver, Randy" + ], + "preferred_name": "Schriver, Randall G.", + "authorized_access_point": "Schriver, Randall G.", + "biographical_information": [ + "Beziehungen Taiwan-USA, Beziehungen USA-Asien, Verteidigungs-/Sicherheitspolitik" + ] + }, + { + "md5": "90f9119b424fcd28ce8a6073b1c1dcab", + "pid": "1148669892", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1148669892", + "numeration": "", + "variant_name": [ + "Ionesco, Dina", + "Ionesco, Dina" + ], + "preferred_name": "Ionesco, Dina", + "authorized_access_point": "Ionesco, Dina" + }, + { + "md5": "0a1b0087fbee13aa9ec64140bbd653a8", + "pid": "115168127X", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/115168127X", + "numeration": "", + "variant_name": [ + "Mann, Christiane" + ], + "preferred_name": "Wurdel, Christiane", + "authorized_access_point": "Wurdel, Christiane" + }, + { + "md5": "63c264546cd1e65b7f91a9e90507451a", + "pid": "1153744600", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1153744600", + "numeration": "", + "variant_name": [ + "Kruppe\u0301, Jerzy Jo\u0301zef", + "Czajka" + ], + "date_of_birth": "1931", + "preferred_name": "Kruppe\u0301, Jerzy", + "authorized_access_point": "Kruppe\u0301, Jerzy, 1931-" + }, + { + "md5": "92346f9bafb2fb3e438219ea29c864bd", + "pid": "1154802817", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1154802817", + "numeration": "", + "variant_name": [ + "Fischer, Jan Benedikt" + ], + "preferred_name": "Fischer, Jan-Benedikt", + "authorized_access_point": "Fischer, Jan-Benedikt" + }, + { + "md5": "5d565518b11dbccdc2f02a31cea7114b", + "pid": "1157146929", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1157146929", + "numeration": "", + "variant_name": [ + "Lopez-Pellicer, Jose\u0301 A.", + "Pellicer, Jose\u0301 A. Lopez" + ], + "preferred_name": "Lopez Pellicer, Jose\u0301 A.", + "authorized_access_point": "Lopez Pellicer, Jose\u0301 A." + }, + { + "md5": "9dad0468b09a44999222443cf64f57a6", + "pid": "1157297676", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1157297676", + "numeration": "", + "variant_name": [ + "Glenn, Lynda D." + ], + "preferred_name": "Dixon Glenn, Lynda", + "authorized_access_point": "Dixon Glenn, Lynda" + }, + { + "md5": "cc6f1e659e35c994f24bb06ce50ea86f", + "pid": "1157699162", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1157699162", + "numeration": "", + "preferred_name": "Mercker, G.", + "authorized_access_point": "Mercker, G." + }, + { + "md5": "c5c975f304b41fd12f1c29d4b8aa2a55", + "pid": "1157766730", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1157766730", + "numeration": "", + "preferred_name": "Pallavicinus, Sfortia", + "authorized_access_point": "Pallavicinus, Sfortia" + }, + { + "md5": "1812db3f4cdb0a6c9d55b5b37afd9973", + "pid": "1158249543", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1158249543", + "numeration": "", + "variant_name": [ + "LeTohic, Jacqueline", + "LeTohic, Jacqueline P.-", + "Proust, Jacqueline", + "Tohic, Jacqueline P.- le", + "Tohic, Jacqueline le" + ], + "preferred_name": "Proust-LeTohic, Jacqueline", + "authorized_access_point": "Proust-LeTohic, Jacqueline" + }, + { + "md5": "f182aac2f9f82dc0df8ca94d0a95d3aa", + "pid": "115832599", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/115832599", + "numeration": "", + "date_of_birth": "1965", + "preferred_name": "Olschinka, Ernst Georg", + "authorized_access_point": "Olschinka, Ernst Georg, 1965-", + "biographical_information": [ + "Diss. Medizinische Fakulta\u0308t" + ] + }, + { + "md5": "d26f837d37aae440eb117affb3ed6b85", + "pid": "115832961X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/115832961X", + "numeration": "", + "variant_name": [ + "Moiseev, Petr Pavlovic\u030c" + ], + "preferred_name": "Moiseev, Petr P.", + "authorized_access_point": "Moiseev, Petr P." + }, + { + "md5": "ee6a76b83f10c237f8fb29ff969d6311", + "pid": "1158360819", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1158360819", + "numeration": "", + "variant_name": [ + "Nazarov, K\u0327ambarali" + ], + "preferred_name": "Nazarov, K\u0327ambarali N.", + "authorized_access_point": "Nazarov, K\u0327ambarali N." + }, + { + "md5": "81eecbdeb82bfb76a54a58e45c6b8a57", + "pid": "115836346X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/115836346X", + "numeration": "", + "variant_name": [ + "Kuz'minych, Tat'jana Nikolaevna" + ], + "preferred_name": "Kuz'minych, Tat'jana N.", + "authorized_access_point": "Kuz'minych, Tat'jana N." + }, + { + "md5": "0196bf8b4bcb9da0c9bd1b1290981ea3", + "pid": "1158376529", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1158376529", + "numeration": "", + "variant_name": [ + "Iskandarian, Alexander H.", + "Iskandarjan, Aleksandr G." + ], + "preferred_name": "Iskandarean, Alek'sandr H.", + "authorized_access_point": "Iskandarean, Alek'sandr H." + }, + { + "md5": "b4e8ea2ca0d79eafddcd37c15c023ecc", + "pid": "1158385439", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1158385439", + "numeration": "", + "variant_name": [ + "Wood, Derek" + ], + "preferred_name": "Wood, Derek R. W.", + "authorized_access_point": "Wood, Derek R. W." + }, + { + "md5": "8dd6299229797b5112db48e65e7db80b", + "pid": "1158387253", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1158387253", + "numeration": "", + "variant_name": [ + "Laps\u030cin, Viktor", + "Laps\u030cin, Viktor Michajlovic\u030c" + ], + "preferred_name": "Laps\u030cin, Viktor M.", + "authorized_access_point": "Laps\u030cin, Viktor M." + }, + { + "md5": "281640b05309441de45c5740b768272b", + "pid": "115845760X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/115845760X", + "numeration": "", + "variant_name": [ + "Kashnecky, Alexandre" + ], + "preferred_name": "Kas\u030cickij, Aleksandr", + "authorized_access_point": "Kas\u030cickij, Aleksandr" + }, + { + "md5": "91df1afc24a21823d3f24bcb2d145cb8", + "pid": "1158559291", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1158559291", + "numeration": "", + "variant_name": [ + "Schwan, Wiltrud" + ], + "preferred_name": "Brand, Wiltrud", + "authorized_access_point": "Brand, Wiltrud" + }, + { + "md5": "5edf38a6f64d5646587bb30f891b9496", + "pid": "1158574614", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1158574614", + "numeration": "", + "variant_name": [ + "Chernyshova, Nina Vasylivna", + "C\u030cernys\u030cova, Nina Vasylivna" + ], + "preferred_name": "C\u030cernys\u030cova, Nina V.", + "authorized_access_point": "C\u030cernys\u030cova, Nina V." + }, + { + "md5": "62cad52d781341129d3d0ff6354157fc", + "pid": "1158577125", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1158577125", + "numeration": "", + "variant_name": [ + "Cao, Xua\u0302n My\u0303", + "My\u0303, Cao Xua\u0302n" + ], + "preferred_name": "Cao-xua\u0302n-My\u0303", + "authorized_access_point": "Cao-xua\u0302n-My\u0303" + }, + { + "md5": "54c2bbe61b0bd549210ddc923823c5df", + "pid": "1158794118", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1158794118", + "numeration": "", + "variant_name": [ + "Smith" + ], + "preferred_name": "Smith, Sophia", + "authorized_access_point": "Smith, Sophia" + }, + { + "md5": "0782a839cd1a24a50e2d56d6158ec19b", + "pid": "1159046239", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1159046239", + "numeration": "", + "variant_name": [ + "Mo\u0308nnich, Gu\u0308nther" + ], + "preferred_name": "Mo\u0308nnich, Gu\u0308nter", + "authorized_access_point": "Mo\u0308nnich, Gu\u0308nter" + }, + { + "md5": "b0ecc18c3454ccd9cd7f500434fb9baa", + "pid": "115909358X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/115909358X", + "numeration": "", + "variant_name": [ + "Vilhelm Hertug af Glyksborg", + "Vilhelm Hertug af Glyksborg" + ], + "preferred_name": "Wilhelm Herzog von Schleswig-Holstein-Sonderburg-Gluecksburg", + "authorized_access_point": "Wilhelm Herzog von Schleswig-Holstein-Sonderburg-Gluecksburg" + }, + { + "md5": "9e4784e5cd4f58b9c5684fe7b3246038", + "pid": "1159213550", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1159213550", + "numeration": "", + "variant_name": [ + "Maksimova, Vera", + "Maksimova, Vera Anatol\u02b9evna" + ], + "preferred_name": "Maksimova, Vera A.", + "authorized_access_point": "Maksimova, Vera A." + }, + { + "md5": "39f107436a4ea3e8f5e8c350aa955d8c", + "pid": "1159214239", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1159214239", + "numeration": "", + "variant_name": [ + "Tkachev, V. N.", + "Tkachev, Valentin Nikolaevich", + "Tkac\u030cev, Valentin Nikolaevic\u030c" + ], + "preferred_name": "Tkac\u030cev, Valentin N.", + "authorized_access_point": "Tkac\u030cev, Valentin N." + }, + { + "md5": "2e0f9b8184cb9bd76103e9ed1bc67d75", + "pid": "1159252289", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1159252289", + "numeration": "", + "variant_name": [ + "Shkundin, G. D.", + "S\u030ckundin, Grigorij Davidovic\u030c" + ], + "preferred_name": "S\u030ckundin, Grigorij D.", + "authorized_access_point": "S\u030ckundin, Grigorij D." + }, + { + "md5": "096451d9259a2fda6853972d7e3d50b9", + "pid": "1159283095", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1159283095", + "numeration": "", + "variant_name": [ + "Lot, Fernan" + ], + "preferred_name": "Lot, Fernand", + "authorized_access_point": "Lot, Fernand" + }, + { + "md5": "fa6e9a909fe660d3ab0716735f7d2349", + "pid": "1159284946", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1159284946", + "numeration": "", + "variant_name": [ + "Bibile\u0301ichvili, Tsissana", + "Bibileischwili, Tsisana", + "Bibileishvili, Tsisana" + ], + "preferred_name": "Bibileis\u030cvili, C\u0315isana", + "authorized_access_point": "Bibileis\u030cvili, C\u0315isana" + }, + { + "md5": "2f3ec155e67a8c61dd738d97dcb5979c", + "pid": "116144131X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/116144131X", + "numeration": "", + "date_of_birth": "1981", + "preferred_name": "Reznick, Graham", + "authorized_access_point": "Reznick, Graham, 1981-" + }, + { + "md5": "8ff2a26a7f7dae54b981597e7b211d1d", + "pid": "1163061921", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1163061921", + "numeration": "", + "variant_name": [ + "Kranich, Johannes Engelbertus", + "Kranich, Johannes Engelbert", + "Kranich, Johann Engelhard", + "Kranich, Joh. Engelhardus" + ], + "preferred_name": "Kranich, Johann Engelbert", + "authorized_access_point": "Kranich, Johann Engelbert", + "biographical_information": [ + "Student in Marburg" + ] + }, + { + "md5": "8d2b1eb2499aa158b104a5f850a3369a", + "pid": "116348747", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/116348747", + "numeration": "", + "date_of_birth": "1822", + "date_of_death": "1882", + "preferred_name": "Haase, Rudolf", + "authorized_access_point": "Haase, Rudolf, 1822-1882" + }, + { + "md5": "51ef4efa07ca2b058384b8b50108cc24", + "pid": "116361816", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/116361816", + "numeration": "", + "date_of_birth": "1883", + "date_of_death": "1944", + "preferred_name": "Haemmerli, Theodor", + "authorized_access_point": "Haemmerli, Theodor, 1883-1944" + }, + { + "md5": "ca739763982a68585cbb0a5bcc9a0b77", + "pid": "1165187388", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1165187388", + "numeration": "", + "variant_name": [ + "Malik, Randa Abdel" + ], + "preferred_name": "Abdel Malik, Randa", + "authorized_access_point": "Abdel Malik, Randa", + "biographical_information": [ + "Diss. Fachbereich Biochemie, Chemie und Pharmazie an der Univ. Frankfurt am Main (2018)" + ] + }, + { + "md5": "f2dbd2ea4d2d8263e2fed24a67db1318", + "pid": "1165269503", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1165269503", + "numeration": "", + "variant_name": [ + "Birch, Suzanne E. Pilaar" + ], + "preferred_name": "Pilaar Birch, Suzanne E.", + "authorized_access_point": "Pilaar Birch, Suzanne E." + }, + { + "md5": "82812d44925f8ace557427a2ed101be2", + "pid": "1165547821", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1165547821", + "numeration": "", + "preferred_name": "Be\u00df, Christoph von", + "authorized_access_point": "Be\u00df, Christoph von", + "biographical_information": [ + "aus schlesischem Adel; 1614 im Collegium illustre zu Tu\u0308bingen" + ] + }, + { + "md5": "8b2e14faa3c6218a884124efbcb0634d", + "pid": "1166620131", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1166620131", + "numeration": "", + "date_of_birth": "1947", + "preferred_name": "Smith, Christopher", + "authorized_access_point": "Smith, Christopher, 1947-" + }, + { + "md5": "cc9760a653a66e7a591d62579af772c0", + "pid": "1168178509", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1168178509", + "numeration": "", + "variant_name": [ + "Coca, Juana Gamero de" + ], + "date_of_birth": "1959", + "date_of_death": "2017", + "preferred_name": "Gamero de Coca, Juana", + "authorized_access_point": "Gamero de Coca, Juana, 1959-2017" + }, + { + "md5": "360a6eacd1af555a9ea3c7c91481ec80", + "pid": "116830565", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/116830565", + "numeration": "", + "preferred_name": "Greig, David", + "authorized_access_point": "Greig, David" + }, + { + "md5": "5125a5265bbb12e1192fd3c640b847a4", + "pid": "116947195", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/116947195", + "numeration": "", + "variant_name": [ + "Lerchenfeld Brennberg, Alfons von", + "Brennberg, Alfons von Lerchenfeld-" + ], + "date_of_birth": "1838", + "date_of_death": "1904", + "preferred_name": "Lerchenfeld-Brennberg, Alfons von", + "authorized_access_point": "Lerchenfeld-Brennberg, Alfons von, 1838-1904" + }, + { + "md5": "1569f7414a58070139eeb9c9c492b0b5", + "pid": "1169953743", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1169953743", + "numeration": "", + "date_of_birth": "06.09.1828", + "date_of_death": "01.03.1883", + "preferred_name": "Schlichter, Christian", + "authorized_access_point": "Schlichter, Christian, 1828-1883", + "biographical_information": [ + "1882-1883 Erster Bu\u0308rgermeister von Wiesbaden" + ] + }, + { + "md5": "6186a71dccdfabe434173f1134b8d75f", + "pid": "1171152183", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1171152183", + "numeration": "", + "preferred_name": "Krausz, Barbara", + "authorized_access_point": "Krausz, Barbara", + "biographical_information": [ + "Dissertation Universita\u0308t Stuttgart 2018, Fakulta\u0308t Konstruktions-, Produktions- und Fahrzeugtechnik" + ] + }, + { + "md5": "eba806728367ac7e8a3e5e5671575e3c", + "pid": "117125184X", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/117125184X", + "numeration": "", + "preferred_name": "Bu\u0308ker, Gundula", + "authorized_access_point": "Bu\u0308ker, Gundula" + }, + { + "md5": "415e4780ebd18495d35294d7702382d8", + "pid": "117143553", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/117143553", + "numeration": "", + "variant_name": [ + "Prus, Marian Morelovski de", + "Morelowski, Marian" + ], + "date_of_birth": "02.03.1884", + "date_of_death": "25.07.1963", + "preferred_name": "Morelovski de Prus, Marian", + "authorized_access_point": "Morelovski de Prus, Marian, 1884-1963" + }, + { + "md5": "513197f868e6e904fc1e82734f13e40a", + "pid": "117155608", + "gender": "male", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://d-nb.info/gnd/117155608", + "numeration": "", + "date_of_birth": "1860", + "date_of_death": "1946", + "preferred_name": "Loesch, Ernst", + "authorized_access_point": "Loesch, Ernst, 1860-1946", + "biographical_information": [ + "Dt. Maler und Schriftsteller" + ] + }, + { + "md5": "528c419ff229662a18507f2cf0dbdd8d", + "pid": "117186430", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/117186430", + "numeration": "", + "variant_name": [ + "Buttersack, Felix Friedrich", + "Buttersack, Felix von" + ], + "date_of_birth": "1833", + "date_of_death": "1890", + "preferred_name": "Buttersack, Felix", + "authorized_access_point": "Buttersack, Felix, 1833-1890", + "biographical_information": [ + "Tu\u0308bingen (Wirkungsort)" + ] + }, + { + "md5": "ebdeb599d459cb244a448b39ace32a70", + "pid": "1172505020", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1172505020", + "numeration": "", + "variant_name": [ + "Jacq, Christian", + "Jacq, Christian" + ], + "date_of_birth": "1947", + "preferred_name": "Jacq, Christian", + "authorized_access_point": "Jacq, Christian, 1947-" + }, + { + "md5": "3f3ccc317e9b227890b7cea1d8fa020d", + "pid": "117291307", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/117291307", + "numeration": "", + "preferred_name": "Umbreit, Franz Robert", + "authorized_access_point": "Umbreit, Franz Robert" + }, + { + "md5": "3026a9131ca3d5c766fca843840f828c", + "pid": "1173303146", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1173303146", + "numeration": "", + "date_of_birth": "1960", + "preferred_name": "Lavold, Bente", + "authorized_access_point": "Lavold, Bente, 1960-", + "biographical_information": [ + "Mitarbeiterin der norwegischen Nationalbibliothek" + ] + }, + { + "md5": "aa38f966d2dcf23a2e4529cb24f873dd", + "pid": "117471178", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/117471178", + "numeration": "", + "preferred_name": "Severeanu, George", + "authorized_access_point": "Severeanu, George" + }, + { + "md5": "2f22225cebfd120c722182d504533f15", + "pid": "117490555", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/117490555", + "numeration": "", + "date_of_birth": "1845", + "date_of_death": "1906", + "preferred_name": "Spiess, Bernhard", + "authorized_access_point": "Spiess, Bernhard, 1845-1906" + }, + { + "md5": "35665f5930697c8ddbc003b24845c248", + "pid": "117628026", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/117628026", + "numeration": "", + "preferred_name": "Tiselius, Gustaf", + "authorized_access_point": "Tiselius, Gustaf" + }, + { + "md5": "138f9b88a1e89c8427758808ba33595b", + "pid": "1176847597", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1176847597", + "numeration": "", + "variant_name": [ + "Dick, Benjamin Kerry" + ], + "date_of_birth": "23.11.1955", + "date_of_death": "27.03.2017", + "preferred_name": "Dick, Beau", + "authorized_access_point": "Dick, Beau, 1955-2017", + "biographical_information": [ + "Kanadischer indigener Maskenschnitzer, Bildhauer, Maler, Galerist und Aktivist" + ] + }, + { + "md5": "330de1cb3f32f3beb57b68122d6c4b8a", + "pid": "1177717379", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1177717379", + "numeration": "", + "variant_name": [ + "Davies, John Michael" + ], + "date_of_birth": "1942", + "preferred_name": "Davies, John", + "authorized_access_point": "Davies, John, 1942-" + }, + { + "md5": "f718e81212f53d7e2b34e8e19f8ee807", + "pid": "1178017486", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1178017486", + "numeration": "", + "variant_name": [ + "Hjarl Petersen, Jane" + ], + "preferred_name": "Petersen, Jane Hjarl", + "authorized_access_point": "Petersen, Jane Hjarl" + }, + { + "md5": "fb6647a10a57725af0974ff813644dfc", + "pid": "117948682X", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/117948682X", + "numeration": "", + "date_of_birth": "1962", + "preferred_name": "Sperka, Jerzy", + "authorized_access_point": "Sperka, Jerzy, 1962-" + }, + { + "md5": "3c0f0492a1ab4b17ee15dad4dbd7d1d9", + "pid": "1183057687", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1183057687", + "numeration": "", + "preferred_name": "Meyer, Susanna", + "authorized_access_point": "Meyer, Susanna" + }, + { + "md5": "ecdde060f56ccb4a5f6e8780db53dc84", + "pid": "1183812086", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1183812086", + "numeration": "", + "preferred_name": "Mu\u0308ller, Joachim", + "authorized_access_point": "Mu\u0308ller, Joachim" + }, + { + "md5": "a657f7817cfd8d352ae07c23f858fd7a", + "pid": "1183967802", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1183967802", + "numeration": "", + "preferred_name": "Douglas, Claire", + "authorized_access_point": "Douglas, Claire" + }, + { + "md5": "ae22184f0d7a3545f9dbb13cfb71c616", + "pid": "1184634262", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1184634262", + "numeration": "", + "preferred_name": "Omari, Ehsan", + "authorized_access_point": "Omari, Ehsan" + }, + { + "md5": "ade763ef38a874bb5ab20b73aa4fc9be", + "pid": "1187368121", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1187368121", + "numeration": "", + "date_of_birth": "1970", + "preferred_name": "To\u0301th, Szila\u0301rd Tibor", + "authorized_access_point": "To\u0301th, Szila\u0301rd Tibor, 1970-" + }, + { + "md5": "fa882e735a81b776e3f10c43ed6fe0f2", + "pid": "11879356X", + "qualifier": "A\u0308gypten, Ko\u0308nig", + "identifier": "http://d-nb.info/gnd/11879356X", + "numeration": "II.", + "variant_name": [ + "Ptolemaios, Philadelphos", + "Ptolemaios, Philadelphos", + "Ptolemaeus, Philadelphus, Rex", + "Ptolemaeus, Epistolographus", + "Ptolemaeus, A\u0308gypten, Ko\u0308nig" + ], + "date_of_death": "v246", + "preferred_name": "Ptolemaios II. A\u0308gypten, Ko\u0308nig", + "authorized_access_point": "Ptolemaios, II., A\u0308gypten, Ko\u0308nig, -v246" + }, + { + "md5": "d1b6cd5b0ca383a5992ab18bc2953950", + "pid": "118818805", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/118818805", + "numeration": "", + "variant_name": [ + "Richelet, Ce\u0301sare P.", + "P. R. A.", + "Richelet, Ce\u0301sare-Pierre", + "Richelet, Ce\u0301sar Pierre", + "Richelet, Peter", + "Richelet, Ce\u0301sar-Pierre", + "Richelet, P.", + "Richelet, Pierre Ce\u0301sar" + ], + "date_of_birth": "1626", + "date_of_death": "1698", + "preferred_name": "Richelet, Pierre", + "authorized_access_point": "Richelet, Pierre, 1626-1698", + "biographical_information": [ + "Franz. Linguist und Lexikograph; studierte 3 Jahre Rechtswissenschaft, war jedoch nicht als Anwalt o.a\u0308. ta\u0308tig" + ] + }, + { + "md5": "17752c04a3d843f76f6b4600a601fa32", + "pid": "118842218", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/118842218", + "numeration": "", + "date_of_birth": "1899", + "date_of_death": "1952", + "preferred_name": "Sieler, Maria", + "authorized_access_point": "Sieler, Maria, 1899-1952", + "biographical_information": [ + "\"Mystikerin\" aus d. Steiermark m. Privatoffenbarungen" + ] + }, + { + "md5": "84ff48a325df6c0b17423468da12cc46", + "pid": "118865900", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/118865900", + "numeration": "", + "variant_name": [ + "Levy, Hermann", + "Levi, H." + ], + "date_of_birth": "07.11.1839", + "date_of_death": "13.05.1900", + "preferred_name": "Levi, Hermann", + "authorized_access_point": "Levi, Hermann, 1839-1900" + }, + { + "md5": "a763a987779582eaa55ecf4359f7a56d", + "pid": "118908642", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/118908642", + "numeration": "", + "preferred_name": "Palacio, Carlos", + "authorized_access_point": "Palacio, Carlos", + "biographical_information": [ + "20.Jh." + ] + }, + { + "md5": "d4d94bffd28a48c0ec3af8a20c8162cd", + "pid": "118995316", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/118995316", + "numeration": "", + "variant_name": [ + "Sheils Makowski, Brigid" + ], + "date_of_birth": "1937", + "preferred_name": "Makowski, Brigid S.", + "authorized_access_point": "Makowski, Brigid S., 1937-", + "biographical_information": [ + "Nordir. Revolutiona\u0308rin" + ] + }, + { + "md5": "92bee5f1616d1d2a625b8768f749f1e9", + "pid": "1190043440", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1190043440", + "numeration": "", + "date_of_birth": "1984", + "preferred_name": "Lovec, Marko", + "authorized_access_point": "Lovec, Marko, 1984-" + }, + { + "md5": "63a015b142f8058ebec8e147a44d0cfa", + "pid": "1190648008", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1190648008", + "numeration": "", + "preferred_name": "Osborne, Paul", + "authorized_access_point": "Osborne, Paul", + "biographical_information": [ + "trainiert u.a. Hunde fu\u0308r ihren Einsatz bei der Feuerwehr" + ] + }, + { + "md5": "228beaa56e340bdb945d0425445b879b", + "pid": "1192403959", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1192403959", + "numeration": "", + "variant_name": [ + "Maister, David", + "Maister, David Hilton" + ], + "date_of_birth": "1947", + "preferred_name": "Maister, David H.", + "authorized_access_point": "Maister, David H., 1947-", + "biographical_information": [ + "formerly a Harvard Business School professor, consults to professional service firms worldwide" + ] + }, + { + "md5": "c4060d087cb88d8ef8f4940248bf0e8e", + "pid": "119310808X", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/119310808X", + "numeration": "", + "preferred_name": "Zehetner, Michael", + "authorized_access_point": "Zehetner, Michael" + }, + { + "md5": "4db702e2072fb02d70a76ad4b55fe270", + "pid": "1193659566", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1193659566", + "numeration": "", + "preferred_name": "Montesinos, Jesu\u0301s", + "authorized_access_point": "Montesinos, Jesu\u0301s" + }, + { + "md5": "753d545313d2880aed9f204fe09f345d", + "pid": "119464942", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/119464942", + "numeration": "", + "variant_name": [ + "Solsberi, Garrison E.", + "Solsberi, Garrison", + "Salisbury, Garrison E.", + "Salisbury, Harrison Evans", + "Salisbury, Harrison" + ], + "date_of_birth": "14.11.1908", + "date_of_death": "05.07.1993", + "preferred_name": "Salisbury, Harrison E.", + "authorized_access_point": "Salisbury, Harrison E., 1908-1993", + "biographical_information": [ + "Amerikan. Journalist" + ] + }, + { + "md5": "5109ce4f95ac5de7a0583acdebe9e2b2", + "pid": "11947428X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/11947428X", + "numeration": "", + "date_of_birth": "1720", + "date_of_death": "1791", + "preferred_name": "Sagramoso, Michele Enrico di", + "authorized_access_point": "Sagramoso, Michele Enrico di, 1720-1791", + "biographical_information": [ + "Ital. Adeliger" + ] + }, + { + "md5": "5b60980719a76d132db0fa938d7ec0b6", + "pid": "119499363", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/119499363", + "numeration": "", + "date_of_birth": "1914", + "date_of_death": "1994", + "preferred_name": "Cullen, Gordon", + "authorized_access_point": "Cullen, Gordon, 1914-1994", + "biographical_information": [ + "Engl. Architekt u. Sta\u0308dtebauer", + "Architekt, Grossbritannien" + ] + }, + { + "md5": "ef6c08d483e0fdc47732881efb112943", + "pid": "119552914", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/119552914", + "numeration": "", + "date_of_birth": "1875", + "date_of_death": "1949", + "preferred_name": "Schiavazzi, Piero", + "authorized_access_point": "Schiavazzi, Piero, 1875-1949" + }, + { + "md5": "679b4d77d16a74a9f344272c423e71a9", + "pid": "1195625049", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1195625049", + "numeration": "", + "date_of_birth": "1977", + "preferred_name": "Galanopoulos, Philippe", + "authorized_access_point": "Galanopoulos, Philippe, 1977-" + }, + { + "md5": "aea8bf50499476ec528964dea55609a0", + "pid": "1197826912", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1197826912", + "numeration": "", + "preferred_name": "Vonderfour, C. F.", + "authorized_access_point": "Vonderfour, C. F." + }, + { + "md5": "cd859550b0386d07fb4601a571db437a", + "pid": "1197921923", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1197921923", + "numeration": "", + "date_of_birth": "1971", + "preferred_name": "Krieg, Sebastian", + "authorized_access_point": "Krieg, Sebastian, 1971-", + "biographical_information": [ + "engagiert im lokalen Bu\u0308ndnis gegen Rechtsextremismus Eisenach, in der Thu\u0308ringenvernetzung von Bu\u0308ndnissen und Initiativen gegen rechts und in den Programmbeirat des Thu\u0308ringer Landesprogramms denkbunt" + ] + }, + { + "md5": "392d735319cb9a05740a0472421fab94", + "pid": "11982387X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/11982387X", + "numeration": "", + "variant_name": [ + "Schottelius, Johannes" + ], + "preferred_name": "Schottel, Johannes", + "authorized_access_point": "Schottel, Johannes", + "biographical_information": [ + "Beitr. im VD-16" + ] + }, + { + "md5": "803b674fbad7dca548cc371706e336f1", + "pid": "1200420071", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1200420071", + "numeration": "", + "preferred_name": "Hosseini, Atosa", + "authorized_access_point": "Hosseini, Atosa" + }, + { + "md5": "7f3a763ade20e9e9f975dc116393d56e", + "pid": "120175533", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/120175533", + "numeration": "", + "date_of_birth": "31.08.1964", + "date_of_death": "05.08.2002", + "preferred_name": "Strom, Swet-Patrik", + "authorized_access_point": "Strom, Swet-Patrik, 1964-2002" + }, + { + "md5": "511af7b3abc4b76810bbe713f0dbae3e", + "pid": "1201779243", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1201779243", + "numeration": "", + "variant_name": [ + "Ufer, Jo\u0308rg", + "Ufer, Jo\u0308rg R.", + "Dr. Nordschleife" + ], + "preferred_name": "Ufer, Jo\u0308rg-Richard", + "authorized_access_point": "Ufer, Jo\u0308rg-Richard", + "biographical_information": [ + "Schreibt Bu\u0308cher u\u0308ber die Autorennen am Nu\u0308rburgring" + ] + }, + { + "md5": "762ecba15e63eb7a6348bf561d5c5a26", + "pid": "1202813968", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1202813968", + "numeration": "", + "preferred_name": "Sousa, Lu\u0301cio", + "authorized_access_point": "Sousa, Lu\u0301cio", + "biographical_information": [ + "Lu\u0301cio Sousa is professor of anthropology at the Department of Social Sciences and Management at Universidade Aberta, Portugal, and a researcher at the Institute for the Study of Literature and Tradition (IELT-FCSH-UNL)." + ] + }, + { + "md5": "26640e0ebad699a484ada71b72be5e7e", + "pid": "120284952", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/120284952", + "numeration": "", + "variant_name": [ + "Dierich, Johannes Urban" + ], + "date_of_birth": "1651", + "date_of_death": "1691", + "preferred_name": "Dierich, Johann Urban", + "authorized_access_point": "Dierich, Johann Urban, 1651-1691", + "biographical_information": [ + "Handelsmann in Leipzig" + ] + }, + { + "md5": "0197af059043a5e787ac9f8905758dda", + "pid": "120343525", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/120343525", + "numeration": "", + "date_of_birth": "1968", + "preferred_name": "Holtmann, Bernhard", + "authorized_access_point": "Holtmann, Bernhard, 1968-", + "biographical_information": [ + "Diss. Inst. fu\u0308r pharmazeutische Chemie" + ] + }, + { + "md5": "fec1e02ef35e57b8ca103c349279a4a5", + "pid": "1203731949", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1203731949", + "numeration": "", + "variant_name": [ + "Latys\u030ceva, Tat\u02b9jana V.", + "Latys\u030ceva, Tat\u02b9jana", + "Latys\u030ceva, T. V.", + "Latys\u030ceva, T.", + "\u041b\u0430\u0442\u044b\u0448\u0435\u0432\u0430 \u0422\u0430\u0442\u044c\u044f\u043d\u0430 \u0412\u0430\u0441\u0438\u043b\u044c\u0435\u0432\u043d\u0430" + ], + "date_of_birth": "ca. 20./21. Jh.", + "preferred_name": "Latys\u030ceva, Tat\u02b9jana Vasil\u02b9evna", + "authorized_access_point": "Latys\u030ceva, Tat\u02b9jana Vasil\u02b9evna, ca. 20./21. Jh." + }, + { + "md5": "8dfc24e47648749f9cb76bc725413ced", + "pid": "120498464", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/120498464", + "numeration": "", + "date_of_birth": "1953", + "preferred_name": "Frisch, Christine", + "authorized_access_point": "Frisch, Christine, 1953-", + "biographical_information": [ + "Sonderschul-Pa\u0308dagogin" + ] + }, + { + "md5": "0925057361b370ff8bb347c095358ae7", + "pid": "120539544X", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/120539544X", + "numeration": "", + "variant_name": [ + "Cadwaladr, Margaret I." + ], + "date_of_birth": "1949", + "preferred_name": "Cadwaladr, Margaret", + "authorized_access_point": "Cadwaladr, Margaret, 1949-" + }, + { + "md5": "c77c1319c2a59a18e5c6e826db3eaf2f", + "pid": "120554682", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/120554682", + "numeration": "", + "date_of_birth": "1970", + "preferred_name": "Lange, Bastian", + "authorized_access_point": "Lange, Bastian, 1970-", + "biographical_information": [ + "ta\u0308tig am Leibniz-Institut for Regional Geography, Leipzig, Germany; Schwerpunkte: Kreativwirtschaft, Governancefragen, Innovationsprozesse, Raumentwicklung" + ] + }, + { + "md5": "496e01922874458b7a6080408f501f36", + "pid": "1207474568", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1207474568", + "numeration": "", + "variant_name": [ + "Kuehl, Sheila James" + ], + "date_of_birth": "1941", + "preferred_name": "Kuehl, Sheila", + "authorized_access_point": "Kuehl, Sheila, 1941-" + }, + { + "md5": "82f35b0dde6be50bc79403710a74f0b9", + "pid": "120759241", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/120759241", + "numeration": "", + "date_of_birth": "1971", + "preferred_name": "Busch, Sylvia", + "authorized_access_point": "Busch, Sylvia, 1971-", + "biographical_information": [ + "Juristin" + ] + }, + { + "md5": "3c2b0cc10945edc373c5f59970d36637", + "pid": "1208406337", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1208406337", + "numeration": "", + "date_of_birth": "17.04.1944", + "preferred_name": "Edwards, Olwen", + "authorized_access_point": "Edwards, Olwen, 1944-" + }, + { + "md5": "ed6f707944253d7e7d5a84959fbb0cf9", + "pid": "120917661", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/120917661", + "numeration": "", + "date_of_birth": "1960", + "preferred_name": "Jakob, Gerd", + "authorized_access_point": "Jakob, Gerd, 1960-", + "biographical_information": [ + "Diss. Fachbereich Elektrotechnik" + ] + }, + { + "md5": "0d9fb45252991ef5eb14c57b5698853d", + "pid": "1210233460", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1210233460", + "numeration": "", + "date_of_birth": "1896", + "preferred_name": "Illig, Hermann", + "authorized_access_point": "Illig, Hermann, 1896-" + }, + { + "md5": "cbab371bacc4aa71b546cad6bcf87062", + "pid": "1211358380", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1211358380", + "numeration": "", + "preferred_name": "Ko\u0308lling, Mario", + "authorized_access_point": "Ko\u0308lling, Mario" + }, + { + "md5": "b36c43adc73116132c7f245c63c179c4", + "pid": "121163393", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/121163393", + "numeration": "", + "variant_name": [ + "Donato, Francesco Saverio" + ], + "date_of_birth": "1734", + "date_of_death": "1796", + "preferred_name": "Lillo, Saverio", + "authorized_access_point": "Lillo, Saverio, 1734-1796", + "biographical_information": [ + "Ital. Maler" + ] + }, + { + "md5": "28e92be35cff840b6c91eaed8ca8e30f", + "pid": "1211775216", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1211775216", + "numeration": "", + "date_of_birth": "1783", + "date_of_death": "1835", + "preferred_name": "Potter, Richard", + "authorized_access_point": "Potter, Richard, 1783-1835" + }, + { + "md5": "aad0be77a50a74103b60e888b44c1bb7", + "pid": "121310582", + "qualifier": "Familie", + "identifier": "http://d-nb.info/gnd/121310582", + "numeration": "", + "preferred_name": "Bu\u0142hak Familie", + "authorized_access_point": "Bu\u0142hak, Familie", + "biographical_information": [ + "Poln. Adelsfamilie" + ] + }, + { + "md5": "3ae0038c3681eb478f74668e9d94ff26", + "pid": "1213248760", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/1213248760", + "numeration": "", + "date_of_birth": "1936", + "date_of_death": "2012", + "preferred_name": "Ba\u0308r, Horst", + "authorized_access_point": "Ba\u0308r, Horst, 1936-2012" + }, + { + "md5": "e839b3f178a07bd006ea52f4390d1ea9", + "pid": "121717194", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/121717194", + "numeration": "", + "date_of_birth": "1949", + "preferred_name": "Ko\u0308pcke, Bettina", + "authorized_access_point": "Ko\u0308pcke, Bettina, 1949-", + "biographical_information": [ + "A\u0308rztin (El Salvador, Mittelamerika)" + ] + }, + { + "md5": "3a79aed88827dc6129660a9b352a7d2e", + "pid": "121808173", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/121808173", + "numeration": "", + "variant_name": [ + "Scho\u0308nbeck, Johannes" + ], + "preferred_name": "Scho\u0308nbeck, Johann", + "authorized_access_point": "Scho\u0308nbeck, Johann", + "biographical_information": [ + "Pastor" + ] + }, + { + "md5": "d332027ce38ffd1f88a6935c15ba87a8", + "pid": "122244958", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/122244958", + "numeration": "", + "variant_name": [ + "Reno, Kym" + ], + "date_of_birth": "1940", + "preferred_name": "Tschauder, Gunter", + "authorized_access_point": "Tschauder, Gunter, 1940-", + "biographical_information": [ + "Vo\u0308lklingen (Wirkungsort); Dt. Schriftsteller, Manager sowie Verkaufs- und Managementtrainer" + ] + }, + { + "md5": "97f419b1c75ba39206bf40078076d196", + "pid": "122546016", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/122546016", + "numeration": "", + "variant_name": [ + "Hein, Malte Probst-" + ], + "date_of_birth": "1970", + "preferred_name": "Probst-Hein, Malte", + "authorized_access_point": "Probst-Hein, Malte, 1970-", + "biographical_information": [ + "Diss. Fachbereich Maschinenbau" + ] + }, + { + "md5": "958ebbb985f4dcb0a1f93a56316ee5d6", + "pid": "122564405", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/122564405", + "numeration": "", + "date_of_birth": "1968", + "preferred_name": "Schmitt, Christian", + "authorized_access_point": "Schmitt, Christian, 1968-", + "biographical_information": [ + "Diss. Wirtschaftswissenschaften" + ] + }, + { + "md5": "cfdd98296d150b946fded09e733eb822", + "pid": "122616243", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/122616243", + "numeration": "", + "date_of_birth": "1970", + "preferred_name": "Leitner, Marina", + "authorized_access_point": "Leitner, Marina, 1970-", + "biographical_information": [ + "Psychologin" + ] + }, + { + "md5": "32bdc814078cde97fbd08403f46d47c3", + "pid": "12307374X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/12307374X", + "numeration": "", + "date_of_death": "1580", + "preferred_name": "Massa, Baldassare de", + "authorized_access_point": "Massa, Baldassare de, -1580" + }, + { + "md5": "947d3890d3b78ad51f4a3bc24233239f", + "pid": "123090598", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/123090598", + "numeration": "", + "date_of_birth": "1942", + "preferred_name": "Nievergelt, Dieter", + "authorized_access_point": "Nievergelt, Dieter, 1942-" + }, + { + "md5": "ee28bb45bb3027f7808c237149653f12", + "pid": "123541328", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/123541328", + "numeration": "", + "date_of_birth": "1975", + "preferred_name": "Mo\u0308llmann, Helge", + "authorized_access_point": "Mo\u0308llmann, Helge, 1975-", + "biographical_information": [ + "Diss. Medizinische Fakulta\u0308t" + ] + }, + { + "md5": "081e9371edba0d7b22ef0c229237c5b4", + "pid": "123571693", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/123571693", + "numeration": "", + "variant_name": [ + "Willenberg, Holger Sven" + ], + "date_of_birth": "1969", + "preferred_name": "Willenberg, Holger", + "authorized_access_point": "Willenberg, Holger, 1969-", + "biographical_information": [ + "Diss. Fachbereich Endokrinologie", + "Habil.-Schr. Innere Medizin" + ] + }, + { + "md5": "b245edef685733bef9a7e735ec23a766", + "pid": "123731062", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/123731062", + "numeration": "", + "date_of_birth": "1923", + "preferred_name": "Kru\u0308ger, Sabine", + "authorized_access_point": "Kru\u0308ger, Sabine, 1923-", + "biographical_information": [ + "Dt. Sprachwissenschaftlerin" + ] + }, + { + "md5": "14e588a5f196e9adb5e003c6cb9acca7", + "pid": "12377795X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/12377795X", + "numeration": "", + "date_of_birth": "1971", + "preferred_name": "Keil, Markus", + "authorized_access_point": "Keil, Markus, 1971-", + "biographical_information": [ + "Diss., Mathematisch-Naturwissenschaftliche Fakulta\u0308ten (Physik)" + ] + }, + { + "md5": "8b0dd073535f0c5c6747aef74febfd0a", + "pid": "123952425", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/123952425", + "numeration": "", + "variant_name": [ + "Helbich, Wolfgang", + "Helbich, Wolfgang Johannes", + "Helbich-Lehmkuhl, Wolfgang", + "Helbich-Lehmkuhl, Wolfgang J.", + "Helbich-Lehmkuhl, Wolfgang Johannes" + ], + "date_of_birth": "1935", + "preferred_name": "Helbich, Wolfgang J.", + "authorized_access_point": "Helbich, Wolfgang J., 1935-", + "biographical_information": [ + "Dt. Historiker; Prof. fu\u0308r Neuere Geschichte mit bes. Beru\u0308cks. der Geschichte Nordamerikas an der Ruhr-Universita\u0308t Bochum; Initiator einer Sammlung von Briefen deutscher Auswanderer" + ] + }, + { + "md5": "73722748c1cce8bf332b88a617b7135e", + "pid": "123954940", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/123954940", + "numeration": "", + "date_of_birth": "1956", + "date_of_death": "1994", + "preferred_name": "Ra\u0301kos, Petr", + "authorized_access_point": "Ra\u0301kos, Petr, 1956-1994", + "biographical_information": [ + "Tschech. Schriftsteller" + ] + }, + { + "md5": "7173fa2d5c5a2d4a05eb22593e0f6837", + "pid": "124271057", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/124271057", + "numeration": "", + "date_of_birth": "1929", + "preferred_name": "Echevarri\u0301a, Fernando", + "authorized_access_point": "Echevarri\u0301a, Fernando, 1929-", + "biographical_information": [ + "Portug. Lyriker" + ] + }, + { + "md5": "811f243526ab7578024f46bc675405df", + "pid": "124368913", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/124368913", + "numeration": "", + "date_of_birth": "1973", + "preferred_name": "Vo\u00df, Stefanie", + "authorized_access_point": "Vo\u00df, Stefanie, 1973-", + "biographical_information": [ + "Diss. Medizinische Fakulta\u0308t" + ] + }, + { + "md5": "4a3efad80d4b9900c91fb9eee493f658", + "pid": "124384196", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/124384196", + "numeration": "", + "date_of_birth": "1917", + "date_of_death": "1995", + "preferred_name": "Holtrop, Jan", + "authorized_access_point": "Holtrop, Jan, 1917-1995", + "biographical_information": [ + "Niederla\u0308nd. Maler" + ] + }, + { + "md5": "869ad7f8051e27f428abf89aa39da192", + "pid": "124521134", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/124521134", + "numeration": "", + "date_of_birth": "1968", + "preferred_name": "Ro\u0308schner, Christoph Georg", + "authorized_access_point": "Ro\u0308schner, Christoph Georg, 1968-", + "biographical_information": [ + "Diss. Fachbereich Medizin" + ] + }, + { + "md5": "ce68b132283cf4aa6ccb8c348d482264", + "pid": "124715311", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/124715311", + "numeration": "", + "variant_name": [ + "Kaplan, R. B." + ], + "date_of_birth": "20.09.1929", + "preferred_name": "Kaplan, Robert B.", + "authorized_access_point": "Kaplan, Robert B., 1929-", + "biographical_information": [ + "Amerikan. Linguist" + ] + }, + { + "md5": "729386c8d735892e2e666ffee4715fd2", + "pid": "12473409X", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/12473409X", + "numeration": "", + "variant_name": [ + "Pestieau, Pierre Marie", + "Pestieau, P.", + "Pestiau, Pierre", + "Pestieau, Pierre M.", + "Pesteau, Pierre" + ], + "date_of_birth": "10.09.1943", + "preferred_name": "Pestieau, Pierre", + "authorized_access_point": "Pestieau, Pierre, 1943-", + "biographical_information": [ + "TSE, Belgien", + "Ta\u0308tig am CREPP, HEC-Management School, University of Lie\u0300ge", + "Belgischer Wirtschaftswissenschaftler, auch in den USA und Gro\u00dfbritannien ta\u0308tig" + ] + }, + { + "md5": "3907ab2f083f0296f60671385027b0f2", + "pid": "125037988", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/125037988", + "numeration": "", + "date_of_birth": "1908", + "preferred_name": "Halperin, Natalie", + "authorized_access_point": "Halperin, Natalie, 1908-" + }, + { + "md5": "b5188a0706f0fc7450f52c881e3a8712", + "pid": "125666632", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/125666632", + "numeration": "", + "preferred_name": "Preisler, Peter", + "authorized_access_point": "Preisler, Peter" + }, + { + "md5": "34d60194de3c382083e6a85c09be9add", + "pid": "125668465", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/125668465", + "numeration": "", + "preferred_name": "Kretzschmar, Serge", + "authorized_access_point": "Kretzschmar, Serge" + }, + { + "md5": "0d9d4f3fcf3f753859b17d3e3cdb0211", + "pid": "126712158", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/126712158", + "numeration": "", + "preferred_name": "Behnke, H.", + "authorized_access_point": "Behnke, H." + }, + { + "md5": "6b604b1db74722e527e47844cf9bef6b", + "pid": "12688790X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/12688790X", + "numeration": "", + "date_of_birth": "1889", + "date_of_death": "1962", + "preferred_name": "Pe\u0301quignot, Euge\u0300ne", + "authorized_access_point": "Pe\u0301quignot, Euge\u0300ne, 1889-1962" + }, + { + "md5": "4b3cfe55b311bb9d05b90e875d9c9353", + "pid": "127205233", + "qualifier": "Gra\u0308fin von", + "identifier": "http://d-nb.info/gnd/127205233", + "numeration": "", + "variant_name": [ + "Du\u0308rniz, Gertrud von", + "Du\u0308rniz, Gertrud P.-", + "Podewils, Gertrudis", + "Podevils-Du\u0308rniz, Gertrudis" + ], + "preferred_name": "Podewils-Du\u0308rniz, Gertrud Gra\u0308fin von", + "authorized_access_point": "Podewils-Du\u0308rniz, Gertrud, Gra\u0308fin von" + }, + { + "md5": "0f991fbad9a172bb87c6981a8a61cc17", + "pid": "127283447", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/127283447", + "numeration": "", + "date_of_birth": "1926", + "preferred_name": "Zbierski, Andrzej", + "authorized_access_point": "Zbierski, Andrzej, 1926-" + }, + { + "md5": "a348b0d3c04f7d78d8c5b5093cd549b6", + "pid": "127307427", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/127307427", + "numeration": "", + "preferred_name": "Henriot, Jean-Claude", + "authorized_access_point": "Henriot, Jean-Claude" + }, + { + "md5": "d485471e49d632e32b5a40dd2f18d8ec", + "pid": "12742508X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/12742508X", + "numeration": "", + "preferred_name": "Bogsrud, Thorvald", + "authorized_access_point": "Bogsrud, Thorvald" + }, + { + "md5": "0a62e45a5b7cd95be3a2ee4a6aad682c", + "pid": "127772553", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/127772553", + "numeration": "", + "variant_name": [ + "Knippenberg, Josef" + ], + "preferred_name": "Knippenberg, J.", + "authorized_access_point": "Knippenberg, J." + }, + { + "md5": "04c62f14a0b9dc3deb5107699fb09967", + "pid": "127845925", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/127845925", + "numeration": "", + "preferred_name": "Siemens, Martin", + "authorized_access_point": "Siemens, Martin" + }, + { + "md5": "a8042bf103c964305a71622c874e2f06", + "pid": "127857214", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/127857214", + "numeration": "", + "date_of_birth": "1896", + "preferred_name": "Uloth, Robert", + "authorized_access_point": "Uloth, Robert, 1896-" + }, + { + "md5": "5d135a5d4e1e3645d95e012454b7c15b", + "pid": "128174889", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/128174889", + "numeration": "", + "preferred_name": "Lindblad, Waldemar", + "authorized_access_point": "Lindblad, Waldemar" + }, + { + "md5": "283abf2ada86724c42d778f2dcbf80f5", + "pid": "128244224", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/128244224", + "numeration": "", + "preferred_name": "Neuho\u0308fer, Paul", + "authorized_access_point": "Neuho\u0308fer, Paul" + }, + { + "md5": "2631079693ed89121a2d7660b524f7ee", + "pid": "128275022", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/128275022", + "numeration": "", + "preferred_name": "Reckling, Karl-Heinz", + "authorized_access_point": "Reckling, Karl-Heinz", + "biographical_information": [ + "stellv. Stadtbezirksschulrat fu\u0308r Polytechnik und Berufsbildung" + ] + }, + { + "md5": "be3d4731ecf9bc68c2eec6188aa4fb88", + "pid": "12833794X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/12833794X", + "numeration": "", + "variant_name": [ + "Erman, E." + ], + "preferred_name": "Erman, Elise", + "authorized_access_point": "Erman, Elise" + }, + { + "md5": "fde3a862b93ab09ec4e21512c9613c5a", + "pid": "128438185", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/128438185", + "numeration": "", + "variant_name": [ + "Graichen, Patrick R." + ], + "date_of_birth": "1972", + "preferred_name": "Graichen, Patrick", + "authorized_access_point": "Graichen, Patrick, 1972-" + }, + { + "md5": "4e85a34257ffe6f2775637fcec53f4ef", + "pid": "12864852X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/12864852X", + "numeration": "", + "date_of_birth": "1954", + "preferred_name": "Schu\u0308\u00dflburner, Josef", + "authorized_access_point": "Schu\u0308\u00dflburner, Josef, 1954-", + "biographical_information": [ + "Regierungsdirektor; Studium der Rechtswissenschaften" + ] + }, + { + "md5": "16a1317ab42fc4fd5eb88fc03b97ba75", + "pid": "128887249", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/128887249", + "numeration": "", + "variant_name": [ + "Jin-Ah Ahn", + "Ahn, Jin-Ah" + ], + "date_of_birth": "1969", + "preferred_name": "An, Chin-a", + "authorized_access_point": "An, Chin-a, 1969-", + "biographical_information": [ + "Korean. Komponistin" + ] + }, + { + "md5": "e7f90ad0ce8f547d1e97c46a6475135d", + "pid": "129097632", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/129097632", + "numeration": "", + "date_of_birth": "1856", + "date_of_death": "1934", + "preferred_name": "Barnett, Jackson", + "authorized_access_point": "Barnett, Jackson, 1856-1934", + "biographical_information": [ + "Creek-Indianer, reich durch O\u0308lfunde auf seinem Land" + ] + }, + { + "md5": "4f717662463af4a698ad2b6476ff71fe", + "pid": "12981752X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/12981752X", + "numeration": "", + "date_of_birth": "1943", + "date_of_death": "2018", + "preferred_name": "Jurjevics, Juris", + "authorized_access_point": "Jurjevics, Juris, 1943-2018", + "biographical_information": [ + "Amerikan. Verleger; Schriftsteller" + ] + }, + { + "md5": "1297a9ac7c657b1da37924ebaf073235", + "pid": "130124648", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/130124648", + "numeration": "", + "variant_name": [ + "Ihori, T." + ], + "date_of_birth": "1952", + "preferred_name": "Ihori, Toshihiro", + "authorized_access_point": "Ihori, Toshihiro, 1952-", + "biographical_information": [ + "National Gradual Institite for Policy Studies, Minato-ku, Tokyo", + "Department of Economics, Metropolitan University, Tokyo", + "Graduate School of Economics, University of Tokyo" + ] + }, + { + "md5": "e707fc08ce3b98cf4cd6c1c3d0ef6413", + "pid": "130556939", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/130556939", + "numeration": "", + "date_of_birth": "1968", + "preferred_name": "Kru\u0308ger, Olaf", + "authorized_access_point": "Kru\u0308ger, Olaf, 1968-", + "biographical_information": [ + "Philosoph und Sozialwissenschaftler, Fachgebiet: Wirtschafts- und Verkehrsgeschichte; Dipl.-Kaufmann" + ] + }, + { + "md5": "eeea15cd5b3dde6ec2d27db9938b0cef", + "pid": "130677299", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/130677299", + "numeration": "", + "variant_name": [ + "Ming-Yuet, Kee" + ], + "date_of_birth": "1952", + "preferred_name": "Kee Ming-Yuet", + "authorized_access_point": "Kee Ming-Yuet, 1952-", + "biographical_information": [ + "Malaysische Sammlerin von Chinesischem Porzellan und Privatdozentin" + ] + }, + { + "md5": "9868cc8c7f0952653149425747333111", + "pid": "130859842", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/130859842", + "numeration": "", + "date_of_birth": "1929", + "preferred_name": "Fischer, Max", + "authorized_access_point": "Fischer, Max, 1929-", + "biographical_information": [ + "Dt. Entomologe" + ] + }, + { + "md5": "dc995830146180dfdfc82f1db51d85c5", + "pid": "131898922", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/131898922", + "numeration": "", + "date_of_birth": "1968", + "preferred_name": "Moskowitz, Marina", + "authorized_access_point": "Moskowitz, Marina, 1968-", + "biographical_information": [ + "Ta\u0308tig am Department of History, Univ. of Glasgow" + ] + }, + { + "md5": "4bf0d31dbefe9303ca935505bcffba0d", + "pid": "131915401", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/131915401", + "numeration": "", + "variant_name": [ + "Hulme, D." + ], + "date_of_birth": "1952", + "preferred_name": "Hulme, David", + "authorized_access_point": "Hulme, David, 1952-", + "biographical_information": [ + "Professor fu\u0308r Entwicklungsstudien an der Universita\u0308t von Manchester", + "Prof. of Development Studies; Inst. for Development Policy and Management, Univ. Manchester, UK; dir., Chronic Poverty Res. Ctr.; BA MA Cambridge, PhD JCU Queensland; res. interests: rural dev. pol. and plan.; poverty reduction strategies; finance for the poor; sociol. of dev.; role of community orgs. and NGOs; evaluation of tech. asst.; environ. mgmt.; public sector reform; country experience: Bangladesh, Belize, Hungary, India, Indonesia, Kenya, Malawi, Malaysia, Mexico, Nepal, Nigeria, Papua New Guinea, Solomon Islands, Sri Lanka, Tanzania, Uganda, Zimbabwe. Soziologe" + ] + }, + { + "md5": "82ca63a6c8e5e12972ca1ed770662033", + "pid": "132272105", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/132272105", + "numeration": "", + "preferred_name": "Matthews, Gelien", + "authorized_access_point": "Matthews, Gelien", + "biographical_information": [ + "Caribbean Nazarene College, Trinidad and Tobago" + ] + }, + { + "md5": "ec4361014520273e3d6cf7f8d86efdc0", + "pid": "132327147", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/132327147", + "numeration": "", + "preferred_name": "Ruff, Joshua", + "authorized_access_point": "Ruff, Joshua", + "biographical_information": [ + "Curator at the Long Island Museum of American Art, History and Carriages" + ] + }, + { + "md5": "512ec33759b7e857f4fcd12aee31a0c6", + "pid": "132490846", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/132490846", + "numeration": "", + "preferred_name": "Peters, Christian", + "authorized_access_point": "Peters, Christian" + }, + { + "md5": "5bb23e7b4ffeb89ee0ffb774bdfcf4ae", + "pid": "133362817", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/133362817", + "numeration": "", + "date_of_birth": "1944", + "preferred_name": "Johnson, John", + "authorized_access_point": "Johnson, John, 1944-", + "biographical_information": [ + "President of Coach Boxing, Inc." + ] + }, + { + "md5": "0c4ed751dc1040165b745b2a2d59fdb3", + "pid": "133999912", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/133999912", + "numeration": "", + "variant_name": [ + "Batissier, L.", + "Batissier, Yves Louis Joseph", + "Batissier, Yves-Louis-Joseph" + ], + "date_of_birth": "1813", + "date_of_death": "1882", + "preferred_name": "Batissier, Louis", + "authorized_access_point": "Batissier, Louis, 1813-1882", + "biographical_information": [ + "Inspecteur de monuments historiques de l'Allier. - Charge\u0301 de mission en Gre\u0300ce, Syrie et Asie Mineure. - Vice-consul de France a\u0300 Suez" + ] + }, + { + "md5": "82ddd83f8633ada1a34798f480479484", + "pid": "134321707", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/134321707", + "numeration": "", + "variant_name": [ + "Ayres, Reginald B.-", + "Ayres, Reginald Barrett-" + ], + "date_of_birth": "07.05.1920", + "preferred_name": "Barrett-Ayres, Reginald", + "authorized_access_point": "Barrett-Ayres, Reginald, 1920-" + }, + { + "md5": "76f768eb66245e404d3585074a230d12", + "pid": "134550412", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/134550412", + "numeration": "", + "date_of_birth": "19XX", + "preferred_name": "Walter, Peter", + "authorized_access_point": "Walter, Peter, 19XX-" + }, + { + "md5": "d6722ad1d896744dd8b088c48d2523f1", + "pid": "134563166", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/134563166", + "numeration": "", + "date_of_birth": "10.11.1939", + "date_of_death": "01.02.2014", + "preferred_name": "Zacher, Peter", + "authorized_access_point": "Zacher, Peter, 1939-2014", + "biographical_information": [ + "Musikkritiker u. Kommunalpolitiker; ab 1960 in Dresden." + ] + }, + { + "md5": "968ed7ac9dbca64084c6a10a52bd1e77", + "pid": "134619102", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/134619102", + "numeration": "", + "date_of_birth": "1928", + "preferred_name": "Zech, Carlferdinand", + "authorized_access_point": "Zech, Carlferdinand, 1928-" + }, + { + "md5": "bd1f02a253c177f551c8ab154b489054", + "pid": "134624149", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/134624149", + "numeration": "", + "preferred_name": "Wiedemann, Herbert", + "authorized_access_point": "Wiedemann, Herbert", + "biographical_information": [ + "1983 Promotion in Musikpa\u0308dagogik. Seit 1988 Professor fu\u0308r Musikpa\u0308dagogik an d. Univ. der Ku\u0308nste in Berlin" + ] + }, + { + "md5": "3559e8e057db8ac5ec312d693c6c0d6f", + "pid": "134781821", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/134781821", + "numeration": "", + "variant_name": [ + "Raid, K." + ], + "date_of_birth": "04.03.1921", + "date_of_death": "21.01.2005", + "preferred_name": "Raid, Kaljo", + "authorized_access_point": "Raid, Kaljo, 1921-2005", + "biographical_information": [ + "Pastor der Estnischen Baptistengemeinde in Toronto" + ] + }, + { + "md5": "716237d75d6083fae9e0f7fe3613b48f", + "pid": "134845870", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/134845870", + "numeration": "", + "preferred_name": "Walter, Albert", + "authorized_access_point": "Walter, Albert" + }, + { + "md5": "e49bbb7d495d25d62d2d6c1ddde19be9", + "pid": "134851617", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/134851617", + "numeration": "", + "preferred_name": "Martin, Laura", + "authorized_access_point": "Martin, Laura" + }, + { + "md5": "6d9ed4cf8765c78107982113e14ec59e", + "pid": "135226082", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/135226082", + "numeration": "", + "variant_name": [ + "Gosling, John" + ], + "preferred_name": "Mekon", + "authorized_access_point": "Mekon" + }, + { + "md5": "1bea86540f92dc4be35e75e18f545ed4", + "pid": "136017282", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/136017282", + "numeration": "", + "preferred_name": "Dietrich, Peter", + "authorized_access_point": "Dietrich, Peter", + "biographical_information": [ + "Diss. Hamburg 2006, Erziehungswissenschaften, aus Wei\u00dfenborn" + ] + }, + { + "md5": "9ac8da7e6abcb06bde8d3ee8aa7b9351", + "pid": "136380638", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/136380638", + "numeration": "", + "date_of_birth": "16.09.1935", + "preferred_name": "Winter, Bernd", + "authorized_access_point": "Winter, Bernd, 1935-", + "biographical_information": [ + "Promotion an der Universita\u0308t Erlangen-Nu\u0308rnberg 1970" + ] + }, + { + "md5": "a76b62467cfeffb2968e6cd3b044a0da", + "pid": "136999271", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/136999271", + "numeration": "", + "date_of_birth": "1981", + "preferred_name": "Walter, Hanna", + "authorized_access_point": "Walter, Hanna, 1981-", + "biographical_information": [ + "Diss. Medizinische Fakulta\u0308t der Univ. Tu\u0308bingen" + ] + }, + { + "md5": "5c45c3777da3ee07bf59e66aa7e8ee12", + "pid": "137111223", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/137111223", + "numeration": "", + "variant_name": [ + "Woyna, Benedictus" + ], + "date_of_death": "1615", + "preferred_name": "Wojna, Benedyct", + "authorized_access_point": "Wojna, Benedyct, -1615" + }, + { + "md5": "9b91fd03fc0254223e7d73627d042c2f", + "pid": "137769032", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/137769032", + "numeration": "", + "preferred_name": "Schmitt, Karl", + "authorized_access_point": "Schmitt, Karl", + "biographical_information": [ + "Reisefu\u0308hrer" + ] + }, + { + "md5": "718265d54b2c453d44083a13e5d429a3", + "pid": "137858825", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/137858825", + "numeration": "", + "variant_name": [ + "Forster, Bill" + ], + "date_of_birth": "1878", + "preferred_name": "Breuer, Hermann", + "authorized_access_point": "Breuer, Hermann, 1878-" + }, + { + "md5": "fd719d9040d70c2be965947b2e79a23f", + "pid": "137960344", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/137960344", + "numeration": "", + "variant_name": [ + "Quintana, Mari\u0301a Esther", + "Quintana M., Mari\u0301a Esther" + ], + "preferred_name": "Quintana Millamoto, Mari\u0301a Esther", + "authorized_access_point": "Quintana Millamoto, Mari\u0301a Esther", + "biographical_information": [ + "Uruguay. Hispanistin; lebt und Unterrichtet in die USA" + ] + }, + { + "md5": "ad72a1d31a0a02607d29beb114ae89eb", + "pid": "13902185X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/13902185X", + "numeration": "", + "preferred_name": "Priftis, Kostas N.", + "authorized_access_point": "Priftis, Kostas N." + }, + { + "md5": "e13d7c26dfaa55c2c1bfb7a83c554546", + "pid": "13905216X", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/13905216X", + "numeration": "", + "date_of_birth": "1947", + "preferred_name": "Schneider, Helmut", + "authorized_access_point": "Schneider, Helmut, 1947-", + "biographical_information": [ + "Associate Dean of Research and Graduate Programs, E. J. Ourso College of Business, Louisiana State University", + "Promotion Berlin, Freie Univ. 1978" + ] + }, + { + "md5": "e073a7d38e8523f3920d05633d6f0f2d", + "pid": "139094342", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139094342", + "numeration": "", + "date_of_birth": "1976", + "preferred_name": "Kurig, Barbara", + "authorized_access_point": "Kurig, Barbara, 1976-", + "biographical_information": [ + "Diss. Universita\u0308t Tu\u0308bingen, Fakulta\u0308t fu\u0308r Chemie und Pharmazie" + ] + }, + { + "md5": "805d62d3ebb10e5dde84b60f2294e48b", + "pid": "139117091", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139117091", + "numeration": "", + "preferred_name": "Ho\u0308lck, Benjamin", + "authorized_access_point": "Ho\u0308lck, Benjamin" + }, + { + "md5": "68ae32a6f764f3e54b76443e0082ae94", + "pid": "13912523X", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/13912523X", + "numeration": "", + "variant_name": [ + "Hollander, Pierre, d'" + ], + "preferred_name": "D'Hollander, Pierre", + "authorized_access_point": "D'Hollander, Pierre", + "biographical_information": [ + "Bariton, 20. Jh." + ] + }, + { + "md5": "67d2dc7d6bfb9bf7a2ba9fdb6dacd103", + "pid": "139128557", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139128557", + "numeration": "", + "variant_name": [ + "\u5c0f\u548c\u7530\u54f2\u7537" + ], + "date_of_birth": "1944", + "preferred_name": "Owada, Tetsuo", + "authorized_access_point": "Owada, Tetsuo, 1944-" + }, + { + "md5": "dbc9b3552288f8d7f62d788ee5d2006e", + "pid": "139134816", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139134816", + "numeration": "", + "preferred_name": "Reich, Friedrich Wilhelm", + "authorized_access_point": "Reich, Friedrich Wilhelm", + "biographical_information": [ + "Bekehrter Jude" + ] + }, + { + "md5": "34308dbad79648d4b4f2123e18d58d4f", + "pid": "139142878", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139142878", + "numeration": "", + "variant_name": [ + "Hyejung, Yoon", + "Hyejung Yoon" + ], + "preferred_name": "Yoon, Hyejung", + "authorized_access_point": "Yoon, Hyejung", + "biographical_information": [ + "Ta\u0308tig am Dep. of Computer Science and Engineering, Ewha Womans Univ., Seoul, South Korea" + ] + }, + { + "md5": "72e92f980c9b3c8072efdef811653d63", + "pid": "139173544", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139173544", + "numeration": "", + "date_of_birth": "1975", + "preferred_name": "Feurstein, Christian", + "authorized_access_point": "Feurstein, Christian, 1975-", + "biographical_information": [ + "Leiter des Wirtschaftsarchivs Vorarlberg in Feldkirch (ab 2002)" + ] + }, + { + "md5": "b1684a30cd8bcc5c0428f6dad3bd2aab", + "pid": "139180060", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139180060", + "numeration": "", + "variant_name": [ + "Romanjuk, Ivan Mironovic\u030c", + "Romanjuk, Ivan", + "Romanjuk, Ivan M.", + "Romanjuk, I. M." + ], + "date_of_birth": "1962", + "preferred_name": "Romanjuk, Ivan Myronovyc\u030c", + "authorized_access_point": "Romanjuk, Ivan Myronovyc\u030c, 1962-", + "biographical_information": [ + "Internet, Ukrain. Historiker, http://www.vspu.edu.ua/faculty/histor/history_ukr_tich.php" + ] + }, + { + "md5": "54fc694944987b3802425ec663a5a813", + "pid": "139196269", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139196269", + "numeration": "", + "date_of_birth": "1963", + "preferred_name": "Oldorff, Sven", + "authorized_access_point": "Oldorff, Sven, 1963-", + "biographical_information": [ + "Dresden, Techn. Univ., Fak. Forst-, Geo- und Hydrowiss., Diplomarbeit, 1990" + ] + }, + { + "md5": "56c33ceb67f35443039bf151332ec294", + "pid": "139204105", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139204105", + "numeration": "", + "date_of_birth": "1971", + "preferred_name": "Grins\u030ctejn, Nana", + "authorized_access_point": "Grins\u030ctejn, Nana, 1971-", + "biographical_information": [ + "Russ. Dichterin" + ] + }, + { + "md5": "7f5204f8ca3d0a0e0dc7b3000f47a2fc", + "pid": "139209204", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139209204", + "numeration": "", + "preferred_name": "Douchy, Herve\u0301", + "authorized_access_point": "Douchy, Herve\u0301" + }, + { + "md5": "6d99f55f3b3d38ac6b4784d78aba4bc0", + "pid": "139238034", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139238034", + "numeration": "", + "date_of_birth": "1772", + "date_of_death": "1839", + "preferred_name": "Proskowetz, Anton", + "authorized_access_point": "Proskowetz, Anton, 1772-1839" + }, + { + "md5": "750414ef73a04e44cf86b7a92aa7a53c", + "pid": "139257012", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139257012", + "numeration": "", + "date_of_birth": "1963", + "preferred_name": "Michailowa, Antonia", + "authorized_access_point": "Michailowa, Antonia, 1963-", + "biographical_information": [ + "Dresden, Techn. Univ., Fak. Bau-, Wasser- und Forstwesen, Diplomarbeit, 1989" + ] + }, + { + "md5": "fd6aa20a174760ccf17d03f4ae9a37cb", + "pid": "139268456", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139268456", + "numeration": "", + "date_of_birth": "1955", + "preferred_name": "Stuart, George Edwin", + "authorized_access_point": "Stuart, George Edwin, 1955-" + }, + { + "md5": "89a901d63db9275996b38cf03436951e", + "pid": "139284575", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139284575", + "numeration": "", + "variant_name": [ + "Roth, Conrad", + "Rothe, Konrad", + "Rothe, Conrad" + ], + "date_of_death": "1637", + "preferred_name": "Roth, Konrad", + "authorized_access_point": "Roth, Konrad, -1637", + "biographical_information": [ + "Ratskonsulent; Ratsadvokat in Augsburg" + ] + }, + { + "md5": "96f35cc8ea78854df884d3328fd5ce95", + "pid": "139286160", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139286160", + "numeration": "", + "date_of_birth": "1976", + "preferred_name": "Wiese, Rene\u0301", + "authorized_access_point": "Wiese, Rene\u0301, 1976-", + "biographical_information": [ + "Archivoberrat und Dezernatsleiter in der Abteilung Landesarchiv des Landesamtes fu\u0308r Kultur und Denkmalpflege Mecklenburg-Vorpommern in Schwerin, Mitglied der Historischen Kommission fu\u0308r Mecklenburg" + ] + }, + { + "md5": "04fdab1665476654c024e211ea485b21", + "pid": "139286659", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139286659", + "numeration": "", + "date_of_birth": "1968", + "preferred_name": "Irwin, Ruth", + "authorized_access_point": "Irwin, Ruth, 1968-" + }, + { + "md5": "a8f46725611416de25883d3036bd3cdf", + "pid": "139289690", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139289690", + "numeration": "", + "variant_name": [ + "Albero, Claudio dall'" + ], + "date_of_birth": "ca. Anfang 21. Jh.", + "preferred_name": "Dall'Albero, Claudio", + "authorized_access_point": "Dall'Albero, Claudio, ca. Anfang 21. Jh.", + "biographical_information": [ + "Hrsg. der Massenzio-Gesamtausgabe" + ] + }, + { + "md5": "b8ba038971b3c375d46870ca35d149d0", + "pid": "139310991", + "qualifier": "Anhalt-Bernburg, Fu\u0308rst", + "identifier": "http://d-nb.info/gnd/139310991", + "numeration": "V.", + "date_of_death": "1410", + "preferred_name": "Bernhard V. Anhalt-Bernburg, Fu\u0308rst", + "authorized_access_point": "Bernhard, V., Anhalt-Bernburg, Fu\u0308rst, -1410", + "biographical_information": [ + "Fu\u0308rst von Anhalt-Bernburg" + ] + }, + { + "md5": "214435214c069b219e13dc3ae07410d5", + "pid": "139317783", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139317783", + "numeration": "", + "date_of_birth": "1961", + "preferred_name": "Bludschun, Uwe", + "authorized_access_point": "Bludschun, Uwe, 1961-", + "biographical_information": [ + "Dresden, Techn. Univ., Fak. Bau-, Wasser- und Forstwesen, Diplomarbeit, 1988" + ] + }, + { + "md5": "794b170b10290d229e1c73df64c71e09", + "pid": "139323708", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139323708", + "numeration": "", + "variant_name": [ + "Stepas\u030ckin, Valentin A.", + "Stepas\u030ckin, V. A.", + "Stepas\u030ckin, Valentin", + "\u0421\u0442\u0435\u043f\u0430\u0448\u043a\u0438\u043d, \u0412\u0430\u043b\u0435\u043d\u0442\u0438\u043d \u0410\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440\u043e\u0432\u0438\u0447" + ], + "date_of_birth": "1956", + "preferred_name": "Stepas\u030ckin, Valentin Aleksandrovic\u030c", + "authorized_access_point": "Stepas\u030ckin, Valentin Aleksandrovic\u030c, 1956-" + }, + { + "md5": "7b5c6ac075baa61e182a2f640eca2028", + "pid": "139334114", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139334114", + "numeration": "", + "preferred_name": "Khattab, Ahmed Aziz", + "authorized_access_point": "Khattab, Ahmed Aziz", + "biographical_information": [ + "aus Kairo - A\u0308gypten; Habilitation an der Medizinischen Fakulta\u0308t der Universita\u0308t Kiel" + ] + }, + { + "md5": "86f4529749947369975b5e67b0940702", + "pid": "139350101", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139350101", + "numeration": "", + "variant_name": [ + "Rodius, Henemannus" + ], + "preferred_name": "Rode, Henemann", + "authorized_access_point": "Rode, Henemann", + "biographical_information": [ + "Verfasser eines Panegyrikons" + ] + }, + { + "md5": "2d1fbe5f0a1f40c6c73e0e25ef5fdd22", + "pid": "139355820", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139355820", + "numeration": "", + "date_of_birth": "1833", + "date_of_death": "1893", + "preferred_name": "Wiedhase, Heinrich Johann", + "authorized_access_point": "Wiedhase, Heinrich Johann, 1833-1893" + }, + { + "md5": "461ce7f8d05e066c7cd25aea2087f8d9", + "pid": "139361405", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139361405", + "numeration": "", + "date_of_birth": "1954", + "preferred_name": "Gaeremynck, Veerle", + "authorized_access_point": "Gaeremynck, Veerle, 1954-" + }, + { + "md5": "e96034f8b13b3d17935448df70e426f8", + "pid": "139376119", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139376119", + "numeration": "", + "variant_name": [ + "Nguyen, M. L." + ], + "preferred_name": "Nguyen, Minh-Long", + "authorized_access_point": "Nguyen, Minh-Long" + }, + { + "md5": "7929c81528fdb7ef18e4998111e97865", + "pid": "139380027", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139380027", + "numeration": "", + "variant_name": [ + "Henschel, G. A. L.", + "Henschelius, G. A." + ], + "date_of_birth": "1806", + "date_of_death": "1852", + "preferred_name": "Henschel, G. A. Louis", + "authorized_access_point": "Henschel, G. A. Louis, 1806-1852" + }, + { + "md5": "091daf1bd0007d7949b99aaf6375395c", + "pid": "13938233X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/13938233X", + "numeration": "", + "date_of_birth": "14.06.1883", + "date_of_death": "24.12.1936", + "preferred_name": "Ratte, Ida", + "authorized_access_point": "Ratte, Ida, 1883-1936", + "biographical_information": [ + "Dt. Heimatschriftstellerin in Fredeburg " + ] + }, + { + "md5": "829dbb143c7b0a3d836d18abcfcd99f7", + "pid": "139383050", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139383050", + "numeration": "", + "preferred_name": "Kloth, Andreas", + "authorized_access_point": "Kloth, Andreas" + }, + { + "md5": "a6ccffa355cde9dc0e0cd7954733a83e", + "pid": "139418598", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139418598", + "numeration": "", + "preferred_name": "Wang, Chonggang", + "authorized_access_point": "Wang, Chonggang", + "biographical_information": [ + "NEC Laboratories America, Princeton, NJ" + ] + }, + { + "md5": "cf6bfdbaf0be6a393e231ec1508f7ca7", + "pid": "139422102", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139422102", + "numeration": "", + "variant_name": [ + "Georgoulas, Stratos" + ], + "date_of_birth": "20./21. Jh.", + "preferred_name": "Geo\u0304rgulas, Stratos", + "authorized_access_point": "Geo\u0304rgulas, Stratos, 20./21. Jh." + }, + { + "md5": "3d910ca839198b48acb52efa11e62c64", + "pid": "13943237X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/13943237X", + "numeration": "", + "variant_name": [ + "Sko\u0308ld, Beatrice Christensen" + ], + "date_of_birth": "1941", + "preferred_name": "Christensen Sko\u0308ld, Beatrice", + "authorized_access_point": "Christensen Sko\u0308ld, Beatrice, 1941-" + }, + { + "md5": "a7a0dfe39de6de43f1b95301eaa6f9c2", + "pid": "139476091", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139476091", + "numeration": "", + "date_of_birth": "1983", + "preferred_name": "Metzele, Verena", + "authorized_access_point": "Metzele, Verena, 1983-" + }, + { + "md5": "141cc5353cdc50f53756785d461f284e", + "pid": "139480056", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139480056", + "numeration": "", + "variant_name": [ + "Hillel, F." + ], + "date_of_birth": "1865", + "preferred_name": "Hillel, Feivel", + "authorized_access_point": "Hillel, Feivel, 1865-" + }, + { + "md5": "28fab2128f76ec1edc1dff9ec7a31afd", + "pid": "139494626", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139494626", + "numeration": "", + "date_of_birth": "1984", + "preferred_name": "Kenner, Alessandra", + "authorized_access_point": "Kenner, Alessandra, 1984-", + "biographical_information": [ + "M.A. Philosophische Fak. an der Universita\u0308t Erlangen-Nu\u0308rnberg" + ] + }, + { + "md5": "06889dc3576016108d3ae847acfecd78", + "pid": "139499571", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139499571", + "numeration": "", + "preferred_name": "Mandewirth, Sue", + "authorized_access_point": "Mandewirth, Sue" + }, + { + "md5": "10b55d42ac2f54f7f5dbcb90390ffa15", + "pid": "139503072", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139503072", + "numeration": "", + "date_of_birth": "1864", + "date_of_death": "1926", + "preferred_name": "Klingatsch, Adolf", + "authorized_access_point": "Klingatsch, Adolf, 1864-1926" + }, + { + "md5": "7102411769e884a7e6f89a91ad2143ae", + "pid": "139512950", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139512950", + "numeration": "", + "date_of_birth": "1859", + "date_of_death": "1935", + "preferred_name": "Ruhstrat, Franz", + "authorized_access_point": "Ruhstrat, Franz, 1859-1935", + "biographical_information": [ + "oldenburgischer Staatsminister" + ] + }, + { + "md5": "9e98d4175f79a3121c76702bd2cee7aa", + "pid": "139535489", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139535489", + "numeration": "", + "date_of_birth": "1979", + "preferred_name": "Preu\u00df, Anja", + "authorized_access_point": "Preu\u00df, Anja, 1979-", + "biographical_information": [ + "Diss. Fachbereich Pharmazie, Univ. Marburg" + ] + }, + { + "md5": "ebef1a894f6b138e0692c3f62fa81a53", + "pid": "139538461", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139538461", + "numeration": "", + "date_of_birth": "XX.XX.1806", + "date_of_death": "28.04.1871", + "preferred_name": "Trainer, Philipp", + "authorized_access_point": "Trainer, Philipp, 1806-1871", + "biographical_information": [ + "Dt. evang. Pfarrer aus Hilchenbach (Kreis Siegen-Wittgenstein)" + ] + }, + { + "md5": "149dc8578db4ee9c681a15e426b507a1", + "pid": "139542043", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139542043", + "numeration": "", + "date_of_birth": "1968", + "preferred_name": "Finke, Timo", + "authorized_access_point": "Finke, Timo, 1968-" + }, + { + "md5": "09210cfef674119d5a9e2dafe58a9cd1", + "pid": "13954402X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/13954402X", + "numeration": "", + "date_of_birth": "1977", + "preferred_name": "Nowak, Jacek", + "authorized_access_point": "Nowak, Jacek, 1977-" + }, + { + "md5": "e1631c62fea3f3679d9e4ca988f2d4c4", + "pid": "139549498", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139549498", + "numeration": "", + "variant_name": [ + "Hinkel, Franz Adolf Reinhold" + ], + "date_of_birth": "14.01.1900", + "preferred_name": "Hinkel, Reinhold", + "authorized_access_point": "Hinkel, Reinhold, 1900-" + }, + { + "md5": "edbea60ba41458c2f59cf9ee28ac6a3e", + "pid": "139555803", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139555803", + "numeration": "", + "variant_name": [ + "Zhiyong Yang", + "Zhiyong, Yang" + ], + "preferred_name": "Yang, Zhiyong", + "authorized_access_point": "Yang, Zhiyong" + }, + { + "md5": "302d0cb2c93a6ad1e08b7d82c8299c06", + "pid": "139571736", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139571736", + "numeration": "", + "date_of_birth": "12.09.1939", + "preferred_name": "Jandl, Adolf", + "authorized_access_point": "Jandl, Adolf, 1939-" + }, + { + "md5": "f7317ce1a55dc2c8e8bdda56e2cad6e4", + "pid": "139572309", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139572309", + "numeration": "", + "variant_name": [ + "Kealy, Sean Patrick", + "Kealy, Sea\u0301n P." + ], + "date_of_birth": "29.03.1937", + "preferred_name": "Kealy, Sean P.", + "authorized_access_point": "Kealy, Sean P., 1937-", + "biographical_information": [ + "Prof. of philosophy and religion, Kenyatta Univ., Nairobi, Kenya; prof. of Biblical Studies an der Duquesne Univ., Pittsburgh, Pa." + ] + }, + { + "md5": "501016cde501cc7cc072d1038d947cae", + "pid": "139612483", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139612483", + "numeration": "", + "date_of_birth": "1965", + "preferred_name": "Merkel, Beate", + "authorized_access_point": "Merkel, Beate, 1965-", + "biographical_information": [ + "Diss. Fachbereich Medizin" + ] + }, + { + "md5": "6a8be7a7c493a9b0d9593cd4fadfe542", + "pid": "139621156", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139621156", + "numeration": "", + "variant_name": [ + "Salis, Johannes von" + ], + "date_of_birth": "1546", + "date_of_death": "1624", + "preferred_name": "Salis, Johann von", + "authorized_access_point": "Salis, Johann von, 1546-1624", + "biographical_information": [ + "Montanunternehmer" + ] + }, + { + "md5": "27aa810bde529c3c363f996fe73dd21b", + "pid": "139621652", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139621652", + "numeration": "", + "date_of_birth": "1973", + "preferred_name": "Sohst, Wiebke", + "authorized_access_point": "Sohst, Wiebke, 1973-", + "biographical_information": [ + "ist in der Kundenservice-Steuerung eines gro\u00dfen Unternehmens ta\u0308tig; lebt im Siebengebirge bei Bonn und auf der Halbinsel Eiderstedt in Nordfriesland" + ] + }, + { + "md5": "4c05dd379ef6145d079e4b4096b13238", + "pid": "139622675", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139622675", + "numeration": "", + "date_of_birth": "1971", + "preferred_name": "Schwandt, Michael", + "authorized_access_point": "Schwandt, Michael, 1971-", + "biographical_information": [ + "Publikationen zu kritischer Theorie, Antisemitismus und Gedenksta\u0308ttenpa\u0308dagogik" + ] + }, + { + "md5": "78cc232d527aa9cb7cb001f81136c744", + "pid": "139626417", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139626417", + "numeration": "", + "date_of_birth": "1968", + "preferred_name": "Bernheimer, Andrew", + "authorized_access_point": "Bernheimer, Andrew, 1968-", + "biographical_information": [ + "US-Amerikan. Architekt" + ] + }, + { + "md5": "e92de74cc0d4d9cc0d17d62bee4daa06", + "pid": "13962693X", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/13962693X", + "numeration": "", + "date_of_birth": "24.06.1944", + "preferred_name": "Goetz, Arturo", + "authorized_access_point": "Goetz, Arturo, 1944-", + "biographical_information": [ + "Argentin. Filmschauspieler" + ] + }, + { + "md5": "a456fd53b6c37777c12cc48190664889", + "pid": "139630147", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139630147", + "numeration": "", + "date_of_birth": "1979", + "preferred_name": "Dubbini, Rachele", + "authorized_access_point": "Dubbini, Rachele, 1979-" + }, + { + "md5": "2105dd9c28fc4cb428e07fbdf20fb5f6", + "pid": "139649263", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139649263", + "numeration": "", + "date_of_birth": "1936", + "preferred_name": "Goe\u00dfler, Ju\u0308rgen", + "authorized_access_point": "Goe\u00dfler, Ju\u0308rgen, 1936-", + "biographical_information": [ + "Dresden, Techn. Univ., Fak. Bau-, Wasser- und Forstwesen, Diplomarbeit, 1978" + ] + }, + { + "md5": "ee0819ecc3cf4f8bee4eaaf417034303", + "pid": "139654526", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139654526", + "numeration": "", + "variant_name": [ + "Mattig, Heinrich von der" + ], + "date_of_birth": "1827", + "date_of_death": "07.07.1898", + "preferred_name": "Wallmann, Heinrich", + "authorized_access_point": "Wallmann, Heinrich, 1827-1898", + "biographical_information": [ + "Obero\u0308sterreichischer Arzt, auch Lyriker und Mundartdichter; 1862: Dr. der Medizin u. Chirurgie, Magister der Geburtshilfe, k.k. Oberfeldarzt, Docent an der k.k. Universita\u0308t zu Wien, emeritierter Prosector der k.k. med.-chir. Josefs-Akademie" + ] + }, + { + "md5": "d2a19039606ae09f05ed81f489d83aec", + "pid": "139655395", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139655395", + "numeration": "", + "variant_name": [ + "Dong, Ling Han", + "Dong Ling Han" + ], + "preferred_name": "Han, Dong Ling", + "authorized_access_point": "Han, Dong Ling", + "biographical_information": [ + "Ta\u0308tig am Dep. of Industrial and Systems Engineering, National Univ. of Singapore" + ] + }, + { + "md5": "d5623d8426398e663d85750f15423b80", + "pid": "139659382", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139659382", + "numeration": "", + "date_of_birth": "1959", + "preferred_name": "Ba\u0308r, Frank", + "authorized_access_point": "Ba\u0308r, Frank, 1959-", + "biographical_information": [ + "Dresden, Techn. Univ., Fak. Forst-, Geo- und Hydrowiss., Diss, 2009" + ] + }, + { + "md5": "19659f51f688b577014719c4f2b0af31", + "pid": "139668136", + "qualifier": "Familie", + "identifier": "http://d-nb.info/gnd/139668136", + "numeration": "", + "preferred_name": "Watty Familie", + "authorized_access_point": "Watty, Familie", + "biographical_information": [ + "Hamburger Familie mit Nebenlinien in Rheinland-Westfalen, Mexiko u. d. USA" + ] + }, + { + "md5": "313088cc5520188e94831057c2d5622a", + "pid": "139695125", + "gender": "male", + "language": [ + "jpn", + "chi" + ], + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139695125", + "numeration": "", + "preferred_name": "Nakajima, Sho\u0304", + "authorized_access_point": "Nakajima, Sho\u0304", + "biographical_information": [ + "Japan. Mongolist" + ] + }, + { + "md5": "e4a9fb193ef37edef3614ab88f1216a9", + "pid": "139705104", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139705104", + "numeration": "", + "date_of_birth": "1954", + "preferred_name": "Birka, Hubertus", + "authorized_access_point": "Birka, Hubertus, 1954-", + "biographical_information": [ + "Dresden, Techn. Univ., Fak. Bau-, Wasser- und Forstwesen, Diplomarbeit, 1976" + ] + }, + { + "md5": "4d45187f2b2f12569684f5816c08d617", + "pid": "139708162", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139708162", + "numeration": "", + "date_of_birth": "21.11.1870", + "date_of_death": "07.08.1944", + "preferred_name": "Hopf, Friedrich Eugen", + "authorized_access_point": "Hopf, Friedrich Eugen, 1870-1944", + "biographical_information": [ + "dt. Dermatologe und Kommunalpolitiker, ero\u0308ffnete 1898 eine private Hautklinik in Dresden; 1901-1911 Vorsitzender der Ortsgruppe Dresden des Alldeutschen Verbandes; 1903-1911 Stadtverordneter in Dresden" + ] + }, + { + "md5": "8a77f82dd8cc2de061f431657449e426", + "pid": "139708669", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139708669", + "numeration": "", + "date_of_birth": "XX.XX.1671", + "date_of_death": "20.07.1743", + "preferred_name": "Jacobi, Adam", + "authorized_access_point": "Jacobi, Adam, 1671-1743", + "biographical_information": [ + "dt. Baumeister und Ratsmaurermeister, an Bauarbeiten an Leipziger Kirchen beteiligt, 1733 beim Umbau des Leipziger Rathauses erwa\u0308hnt" + ] + }, + { + "md5": "72e127aef5ecea904ec03882c346c31f", + "pid": "13971166X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/13971166X", + "numeration": "", + "date_of_birth": "1644", + "date_of_death": "1691", + "preferred_name": "Hinlopen, Gerard", + "authorized_access_point": "Hinlopen, Gerard, 1644-1691" + }, + { + "md5": "b03d7f7e439693c264c0521f31dfa288", + "pid": "139717676", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139717676", + "numeration": "", + "preferred_name": "Lee, Thomas H.", + "authorized_access_point": "Lee, Thomas H." + }, + { + "md5": "915ba125eb71934046dcb28919b5af0f", + "pid": "139719156", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139719156", + "numeration": "", + "date_of_birth": "1962", + "preferred_name": "Cant\u0327a\u0302ru, Grigore", + "authorized_access_point": "Cant\u0327a\u0302ru, Grigore, 1962-", + "biographical_information": [ + "Philologe" + ] + }, + { + "md5": "d516ef0dd4f5f73b42ad44f3a0c0d990", + "pid": "139733256", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139733256", + "numeration": "", + "preferred_name": "Fritz, Martin", + "authorized_access_point": "Fritz, Martin", + "biographical_information": [ + "Promotion an der Ludwig-Maximilians-Univ. Mu\u0308nchen (1990)" + ] + }, + { + "md5": "a6fc7de553e340149e44658a23a1209c", + "pid": "139734325", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139734325", + "numeration": "", + "preferred_name": "Stolte, Dirk", + "authorized_access_point": "Stolte, Dirk" + }, + { + "md5": "e154f082bcebb8b7cbd3b99dbc6d3a05", + "pid": "139746927", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139746927", + "numeration": "", + "variant_name": [ + "Metzger, Joseph" + ], + "date_of_birth": "ca. 16. Jh.", + "preferred_name": "Metzker, Joseph", + "authorized_access_point": "Metzker, Joseph, ca. 16. Jh.", + "biographical_information": [ + "Goldschmied und Grafiker, zwischen 1565 und 1583 in Go\u0308rlitz nachweisbar" + ] + }, + { + "md5": "5133c40f5c77178f09f22bc5cc7f2395", + "pid": "139751661", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139751661", + "numeration": "", + "preferred_name": "Golas, Lisa", + "authorized_access_point": "Golas, Lisa" + }, + { + "md5": "6c909106fc0e4440eecec63b0f6b8cb6", + "pid": "13976674X", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/13976674X", + "numeration": "", + "variant_name": [ + "Mu\u0308ller, Ludger Josef" + ], + "date_of_birth": "1910", + "preferred_name": "Mu\u0308ller, Ludger", + "authorized_access_point": "Mu\u0308ller, Ludger, 1910-", + "biographical_information": [ + "Mu\u0308nster, Med. Diss., 1936" + ] + }, + { + "md5": "1be133866bdfb3d2e875db6358a72874", + "pid": "139769366", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139769366", + "numeration": "", + "variant_name": [ + "Abraham, Ernst A." + ], + "date_of_birth": "1906", + "preferred_name": "Abraham, Ernst August", + "authorized_access_point": "Abraham, Ernst August, 1906-", + "biographical_information": [ + "Dipl.-Volkswirt" + ] + }, + { + "md5": "fed811e362b5337b7c82e4be45c2d814", + "pid": "139772103", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139772103", + "numeration": "", + "date_of_birth": "1908", + "preferred_name": "Strunz, Josef", + "authorized_access_point": "Strunz, Josef, 1908-" + }, + { + "md5": "68e5fe6f9405b539e2c54f1cdecd8b70", + "pid": "139774807", + "qualifier": "Familie", + "identifier": "http://d-nb.info/gnd/139774807", + "numeration": "", + "date_of_birth": "ca. 13. Jh.", + "preferred_name": "Gu\u0308tzkow Familie", + "authorized_access_point": "Gu\u0308tzkow, Familie, ca. 13. Jh.-", + "biographical_information": [ + "Grafen von Gu\u0308tzkow; pommersches Grafengeschlecht" + ] + }, + { + "md5": "cb549f0fe4f7c98f7331dde0a98ef9ad", + "pid": "139794204", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139794204", + "numeration": "", + "date_of_birth": "1949", + "preferred_name": "Hansen, Svein Bendik", + "authorized_access_point": "Hansen, Svein Bendik, 1949-" + }, + { + "md5": "af198047ec64a048c1b6af936b255734", + "pid": "139796282", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139796282", + "numeration": "", + "preferred_name": "Cappello, Silvia", + "authorized_access_point": "Cappello, Silvia", + "biographical_information": [ + "PhD in English studies" + ] + }, + { + "md5": "ff88e2c729531830bcbd08f977415fba", + "pid": "139822542", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139822542", + "numeration": "", + "variant_name": [ + "Summerer, Carolin" + ], + "date_of_birth": "1982", + "preferred_name": "Hinkmann, Carolin", + "authorized_access_point": "Hinkmann, Carolin, 1982-", + "biographical_information": [ + "Diss. Medizinische Fakalta\u0308t an der Universita\u0308t Erlangen-Nu\u0308rnberg" + ] + }, + { + "md5": "a382aec31e9df29da4883479cf8f3dc8", + "pid": "13983043X", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/13983043X", + "numeration": "", + "date_of_birth": "19.11.1926", + "date_of_death": "08.02.2000", + "preferred_name": "Ritsch, Felicitas", + "authorized_access_point": "Ritsch, Felicitas, 1926-2000" + }, + { + "md5": "a640f1ce451068ce07b4f2d6b1b67963", + "pid": "139856072", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139856072", + "numeration": "", + "date_of_birth": "1973", + "preferred_name": "Popp, Julius", + "authorized_access_point": "Popp, Julius, 1973-" + }, + { + "md5": "442e3f9b125652f85b2a374d652a8880", + "pid": "13986072X", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/13986072X", + "numeration": "", + "date_of_birth": "1962", + "preferred_name": "Lee, Vivian P. Y.", + "authorized_access_point": "Lee, Vivian P. Y., 1962-", + "biographical_information": [ + "Univ. of Hong Kong" + ] + }, + { + "md5": "280d0a03ab350a4d1de11ddea53f3fe4", + "pid": "139862269", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139862269", + "numeration": "", + "date_of_birth": "ca. ", + "date_of_death": "19. Jh.", + "preferred_name": "Schifferdecker, Eduard", + "authorized_access_point": "Schifferdecker, Eduard, ca. -19. Jh.", + "biographical_information": [ + "Bierbrauer" + ] + }, + { + "md5": "21890ab8ece8a57e159942b5bc4c2a4c", + "pid": "139863249", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139863249", + "numeration": "", + "date_of_birth": "ca. ", + "date_of_death": "20. Jh.", + "preferred_name": "Dreizehner, Wilhelm", + "authorized_access_point": "Dreizehner, Wilhelm, ca. -20. Jh.", + "biographical_information": [ + "Schiffsbaumeister" + ] + }, + { + "md5": "fc0b9df6033e2659841522ecd6670bb4", + "pid": "139863915", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139863915", + "numeration": "", + "date_of_birth": "09.05.1939", + "date_of_death": "07.01.2014", + "preferred_name": "Lauer, David D.", + "authorized_access_point": "Lauer, David D., 1939-2014", + "biographical_information": [ + "Dt. Bildhauer" + ] + }, + { + "md5": "f7ca51cd15f1ecef0f2c15094de86236", + "pid": "139875484", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139875484", + "numeration": "", + "variant_name": [ + "Yu-Hwa, Huang" + ], + "date_of_birth": "12.02.1979", + "preferred_name": "Huang, Yu-Hwa", + "authorized_access_point": "Huang, Yu-Hwa, 1979-", + "biographical_information": [ + "Diss. Universita\u0308t Wu\u0308rzburg, Fakulta\u0308t fu\u0308r Biologie" + ] + }, + { + "md5": "e67ca3c19140743bb202cdd595b8986a", + "pid": "139879994", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139879994", + "numeration": "", + "variant_name": [ + "Schuster, Kristin" + ], + "date_of_birth": "ca. 20. Jh.", + "preferred_name": "Horstmann, Kristin", + "authorized_access_point": "Horstmann, Kristin, ca. 20. Jh." + }, + { + "md5": "eb3d32606993b6b205c13b822383bf40", + "pid": "139887741", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139887741", + "numeration": "", + "date_of_birth": "1979", + "preferred_name": "Becker, Swetlana", + "authorized_access_point": "Becker, Swetlana, 1979-", + "biographical_information": [ + "Diss. Universita\u0308t Erlangen-Nu\u0308rnberg, Medizinische Fakulta\u0308t" + ] + }, + { + "md5": "ca67dff7e764431a165194dfaf2259ef", + "pid": "139889345", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139889345", + "numeration": "", + "variant_name": [ + "Fraser, Helen Beatrice", + "Fraser, Helen B." + ], + "preferred_name": "Fraser, Helen", + "authorized_access_point": "Fraser, Helen", + "biographical_information": [ + "Schwerpunkte u.a. Phonetik, Phonologie, Psycholinguistik, Geschichte und Philosophie der Linguistik, Englisch in Australien" + ] + }, + { + "md5": "bf92d7b71f030d1b020296ad5d0a1d2f", + "pid": "139894535", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139894535", + "numeration": "", + "variant_name": [ + "Ebner, Stephan" + ], + "date_of_birth": "1983", + "preferred_name": "Ebner, Stephan M.", + "authorized_access_point": "Ebner, Stephan M., 1983-", + "biographical_information": [ + "Seelstrang & Partner mbB, Mu\u0308nchen" + ] + }, + { + "md5": "17da790e21d39c8dbefbcf3513b83167", + "pid": "139894977", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139894977", + "numeration": "", + "preferred_name": "Leunen, Nico", + "authorized_access_point": "Leunen, Nico" + }, + { + "md5": "e8d6cbb7859e8adbec83a5073f9753d9", + "pid": "139939415", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139939415", + "numeration": "", + "date_of_birth": "1975", + "preferred_name": "Wilzeck, Andreas", + "authorized_access_point": "Wilzeck, Andreas, 1975-", + "biographical_information": [ + "Diss. Fakulta\u0308t Elektrotechnik und Informatik an der Universita\u0308t Hannover" + ] + }, + { + "md5": "221606b5ab1bf736c3c916d7c75a4ad3", + "pid": "139942920", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139942920", + "numeration": "", + "date_of_birth": "1978", + "preferred_name": "Lehmann, Ingo", + "authorized_access_point": "Lehmann, Ingo, 1978-", + "biographical_information": [ + "Freier Autor und Redakteur bei einer Film- und Fernsehproduktionsfirma" + ] + }, + { + "md5": "ce8dbfd6eb497b999ba3cbd62e879ca1", + "pid": "139946144", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139946144", + "numeration": "", + "date_of_birth": "1569", + "date_of_death": "1637", + "preferred_name": "Ru\u0308ffer, Balthasar", + "authorized_access_point": "Ru\u0308ffer, Balthasar, 1569-1637", + "biographical_information": [ + "Dt. Kaufmann, Ratsherr in Schweinfurt, Reichsvogt" + ] + }, + { + "md5": "5745e28b3c23f9a0e8a87f80a87ca3a7", + "pid": "139952179", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139952179", + "numeration": "", + "variant_name": [ + "Hoang, Tri" + ], + "date_of_birth": "20.01.1977", + "preferred_name": "Hoang, Minh Tri", + "authorized_access_point": "Hoang, Minh Tri, 1977-", + "biographical_information": [ + "Diss. Fachbereich Biochemie, Chemie und Pharmazie" + ] + }, + { + "md5": "6d6e2305aefb0e3e9b0459e507c565a9", + "pid": "139961968", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139961968", + "numeration": "", + "variant_name": [ + "De Leo\u0301n, Facundo Ponce", + "Leo\u0301n, Facundo Ponce de" + ], + "date_of_birth": "1978", + "preferred_name": "Ponce de Leo\u0301n, Facundo", + "authorized_access_point": "Ponce de Leo\u0301n, Facundo, 1978-", + "biographical_information": [ + "Uruguay. Philosoph, Kommunikationswissenschaftler, Journalist" + ] + }, + { + "md5": "33453d24f800918a3e5e7e2390e46331", + "pid": "139972625", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139972625", + "numeration": "", + "variant_name": [ + "Otto, Gretel Martina" + ], + "date_of_birth": "1936", + "preferred_name": "Otto, Martina", + "authorized_access_point": "Otto, Martina, 1936-" + }, + { + "md5": "27326d372ba525afe070505113def7dd", + "pid": "139974199", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/139974199", + "numeration": "", + "preferred_name": "Brunner, Dominik", + "authorized_access_point": "Brunner, Dominik", + "biographical_information": [ + "Diss. Stuttgart 2009, Fakulta\u0308t Konstruktions-, Produktions- und Fahrzeugtechnik" + ] + }, + { + "md5": "bad02944a6690aa9445fb36e964703c1", + "pid": "140031936", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140031936", + "numeration": "", + "date_of_birth": "1982", + "preferred_name": "Vo\u00df, Carolin", + "authorized_access_point": "Vo\u00df, Carolin, 1982-", + "biographical_information": [ + "Diss. Technische Universita\u0308t Mu\u0308nchen, Fakulta\u0308t fu\u0308r Medizin" + ] + }, + { + "md5": "542514c1746905eac801150639a44236", + "pid": "140058699", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140058699", + "numeration": "", + "date_of_death": "1943", + "preferred_name": "Plotnarek, Franz", + "authorized_access_point": "Plotnarek, Franz, -1943", + "biographical_information": [ + "1943 von den Nazis hingerichtet" + ] + }, + { + "md5": "bec27ccd4768640bb9a0514ad92fbb7f", + "pid": "140091319", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140091319", + "numeration": "", + "variant_name": [ + "Go\u0308bel, Christof Stefan" + ], + "date_of_birth": "1966", + "preferred_name": "Go\u0308bel, Christof", + "authorized_access_point": "Go\u0308bel, Christof, 1966-", + "biographical_information": [ + "Aachen, Techn. Hochsch., Doktor der Ingenieurwiss., 2002" + ] + }, + { + "md5": "b786266f9b8d1bf755fba221816684a4", + "pid": "14010657X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/14010657X", + "numeration": "", + "date_of_birth": "12.09.1936", + "preferred_name": "Rahim, Habib-ur", + "authorized_access_point": "Rahim, Habib-ur, 1936-", + "biographical_information": [ + "lebt in Deutschland" + ] + }, + { + "md5": "9acda17684347a7514b9b5ac7fdeee78", + "pid": "140115889", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140115889", + "numeration": "", + "date_of_birth": "1977", + "preferred_name": "Gerards, Marco", + "authorized_access_point": "Gerards, Marco, 1977-" + }, + { + "md5": "daf7dda1298b0139d9873c212fdbe47e", + "pid": "140122494", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140122494", + "numeration": "", + "date_of_birth": "1977", + "preferred_name": "Bons, Iris", + "authorized_access_point": "Bons, Iris, 1977-" + }, + { + "md5": "f7a2151181b95ee4cedfa916f29ce48a", + "pid": "140129510", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140129510", + "numeration": "", + "variant_name": [ + "Matsen, Brad" + ], + "date_of_birth": "1944", + "preferred_name": "Matsen, Bradford", + "authorized_access_point": "Matsen, Bradford, 1944-" + }, + { + "md5": "c9158038fb88a93e4fe4f21b267be3db", + "pid": "140132872", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140132872", + "numeration": "", + "preferred_name": "Scho\u0308ftner, Sandra", + "authorized_access_point": "Scho\u0308ftner, Sandra", + "biographical_information": [ + "Sankt Po\u0308lten, Fachhochschul-Diplomstudiengang Medienmanagement, Dipl.-Arb., 2009" + ] + }, + { + "md5": "3602a54b21effa27b9fbfc8cd9b12f83", + "pid": "140142622", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140142622", + "numeration": "", + "variant_name": [ + "Lapadula, Mario" + ], + "date_of_birth": "07.07.1951", + "preferred_name": "Lapadula, Mario H.", + "authorized_access_point": "Lapadula, Mario H., 1951-", + "biographical_information": [ + "Argentin. Schriftsteller" + ] + }, + { + "md5": "131a143cef2cad93a61ef14305f10503", + "pid": "14016815X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/14016815X", + "numeration": "", + "date_of_birth": "1982", + "preferred_name": "Simon, Corinna Nora", + "authorized_access_point": "Simon, Corinna Nora, 1982-", + "biographical_information": [ + "Diss. Fachbereich Medizin, Univ. Marburg" + ] + }, + { + "md5": "e0aecce8569de20534bfc58ae7157dd8", + "pid": "140169016", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140169016", + "numeration": "", + "preferred_name": "Harrison, Roger", + "authorized_access_point": "Harrison, Roger", + "biographical_information": [ + "Ta\u0308tig bei Proctor & Gamble; ta\u0308tig am Dep. of Industrial Administration, Yale Univ." + ] + }, + { + "md5": "d343695d67bfcb71335e8d82f82704f9", + "pid": "140199535", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140199535", + "numeration": "", + "variant_name": [ + "Won, Jun Lee", + "Won Jun Lee" + ], + "preferred_name": "Lee, Won Jun", + "authorized_access_point": "Lee, Won Jun", + "biographical_information": [ + "Ta\u0308tig als Prof. of MIS at SKKU Business School, Sungkyunkwan Univ., Seoul, South Korea" + ] + }, + { + "md5": "6663d8b91a2730f471226a9e04d8e995", + "pid": "140234381", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140234381", + "numeration": "", + "date_of_birth": "1955", + "preferred_name": "Scho\u0308neich, Martin", + "authorized_access_point": "Scho\u0308neich, Martin, 1955-", + "biographical_information": [ + "Dt. Bildhauer" + ] + }, + { + "md5": "f33685f52da9bd897d81a64ae8a37287", + "pid": "140248609", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140248609", + "numeration": "", + "date_of_birth": "1937", + "preferred_name": "Rieger, Wolfgang", + "authorized_access_point": "Rieger, Wolfgang, 1937-" + }, + { + "md5": "2f58c556a2531fd43b74edf0cd42b04e", + "pid": "140259015", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140259015", + "numeration": "", + "variant_name": [ + "Calatayud Pe\u0301rez, Emilio", + "Pe\u0301rez, Emilio Calatayud", + "Calatayud-Pe\u0301rez, Emilio" + ], + "date_of_birth": "1955", + "preferred_name": "Calatayud, Emilio", + "authorized_access_point": "Calatayud, Emilio, 1955-" + }, + { + "md5": "87d930255d1ff7f99a3ed23eb92eae67", + "pid": "140285776", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140285776", + "numeration": "", + "variant_name": [ + "Rodrigues de Sousa, Ma\u0301rio Jose\u0301", + "De Sousa, Ma\u0301rio Jose\u0301 Rodrigues" + ], + "date_of_birth": "21.03.1971", + "preferred_name": "Sousa, Ma\u0301rio Jose\u0301 Rodrigues de", + "authorized_access_point": "Sousa, Ma\u0301rio Jose\u0301 Rodrigues de, 1971-", + "biographical_information": [ + "Priester in Faro, Dio\u0308zese do Algarve ; Priesterweihe 1996" + ] + }, + { + "md5": "b10bfd5f11f3eb73425419e0d0d65261", + "pid": "140306412", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140306412", + "numeration": "", + "date_of_birth": "1956", + "preferred_name": "Dragovic\u0301, Ljubomir", + "authorized_access_point": "Dragovic\u0301, Ljubomir, 1956-", + "biographical_information": [ + "Kroat. Schriftsteller, geb. in Sonkovic\u0301, lebt in Sonkovic\u0301 und Banja Luka" + ] + }, + { + "md5": "1599a3b5c99ea92ec6e150f50214b9ca", + "pid": "140322140", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140322140", + "numeration": "", + "date_of_birth": "10.07.1965", + "preferred_name": "Schmiedel, Erwin", + "authorized_access_point": "Schmiedel, Erwin, 1965-", + "biographical_information": [ + "O\u0308sterr. Bariton und Schriftsteller" + ] + }, + { + "md5": "6feb5f5dcf24d991d0f9dd19571742f2", + "pid": "140322213", + "gender": "male", + "language": [ + "per" + ], + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140322213", + "numeration": "", + "variant_name": [ + "Hayati, A. A." + ], + "date_of_birth": "1974", + "preferred_name": "H\u0323aya\u0304ti\u0304, \u02bfAli\u0304-\u02bfAba\u0304s", + "authorized_access_point": "H\u0323aya\u0304ti\u0304, \u02bfAli\u0304-\u02bfAba\u0304s, 1974-" + }, + { + "md5": "d8f9b609da42cd395f1a4c4852c7f44d", + "pid": "140327126", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140327126", + "numeration": "", + "variant_name": [ + "Zander, J." + ], + "date_of_birth": "1937", + "preferred_name": "Zander, Jan", + "authorized_access_point": "Zander, Jan, 1937-" + }, + { + "md5": "8b21be817f052b8a1d6b17276fb00111", + "pid": "140327606", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140327606", + "numeration": "", + "variant_name": [ + "Rossignol, Nicolas Mayer-" + ], + "date_of_birth": "1968?", + "preferred_name": "Mayer-Rossignol, Nicolas", + "authorized_access_point": "Mayer-Rossignol, Nicolas, 1968?-", + "biographical_information": [ + "Franz. Ingenieur beim Corps des Mines" + ] + }, + { + "md5": "0ad2939c92e3304cd1ec51c5fb43d803", + "pid": "140330720", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140330720", + "numeration": "", + "variant_name": [ + "Oliva Ordo\u0301n\u0303ez, Emilio", + "Ordo\u0301n\u0303ez, Emilio Oliva" + ], + "date_of_birth": "1949", + "preferred_name": "Oliva, Emilio", + "authorized_access_point": "Oliva, Emilio, 1949-" + }, + { + "md5": "2e56a4cd11314ee370261b6a6e3752c2", + "pid": "140338683", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140338683", + "numeration": "", + "date_of_birth": "ca. um 1800", + "preferred_name": "Rousset, S.", + "authorized_access_point": "Rousset, S., ca. um 1800", + "biographical_information": [ + "Franz. Jurist" + ] + }, + { + "md5": "28ea4e4d2f340629bddf2d26fb31ab46", + "pid": "140345833", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140345833", + "numeration": "", + "preferred_name": "Passarge, Friedrich August", + "authorized_access_point": "Passarge, Friedrich August" + }, + { + "md5": "8803775e66e8991e741d5b0e6181dafe", + "pid": "140345884", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140345884", + "numeration": "", + "date_of_birth": "14.04.1969", + "preferred_name": "Kirchmann, Helmut", + "authorized_access_point": "Kirchmann, Helmut, 1969-", + "biographical_information": [ + "Diss. Fachbereich Sozial- und Verhaltenswissenschaften" + ] + }, + { + "md5": "fc5998d0ee70b64587b5cfbaef234429", + "pid": "140351493", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140351493", + "numeration": "", + "variant_name": [ + "Jevseeva, Ludmila Ivanovna", + "Evseeva, Ljudmila" + ], + "date_of_birth": "14.08.1913", + "date_of_death": "28.01.1980", + "preferred_name": "Jevsejeva, Ludmila", + "authorized_access_point": "Jevsejeva, Ludmila, 1913-1980", + "biographical_information": [ + "Esperantistin" + ] + }, + { + "md5": "905a20126c86e1c182dbb46814f82080", + "pid": "140416919", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140416919", + "numeration": "", + "preferred_name": "Kern, Alexander", + "authorized_access_point": "Kern, Alexander", + "biographical_information": [ + "Magister, ta\u0308tig am Institut fu\u0308r Unternehmensfu\u0308hrung, WU Wien; Schwerpunkte: Unternehmensfu\u0308hrung, Controlling und Beratung" + ] + }, + { + "md5": "fb9bed7288e79a030591e38ad7e72af8", + "pid": "140419799", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140419799", + "numeration": "", + "date_of_birth": "1955", + "preferred_name": "Amendt, Christiane", + "authorized_access_point": "Amendt, Christiane, 1955-", + "biographical_information": [ + "Grund- und Hauptschullehrerin; Ta\u0308tigkeit in der Fo\u0308rderung von LRS-Kindern" + ] + }, + { + "md5": "dc6e2dc0bf858d6c54e83c11e70e33e2", + "pid": "140424873", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140424873", + "numeration": "", + "date_of_birth": "1972", + "preferred_name": "Stampone, Giuseppe", + "authorized_access_point": "Stampone, Giuseppe, 1972-" + }, + { + "md5": "d54545ed8cabe44d5238e7d8cd691d1a", + "pid": "14046090X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/14046090X", + "numeration": "", + "date_of_birth": "1981", + "preferred_name": "Allermann, Lars", + "authorized_access_point": "Allermann, Lars, 1981-", + "biographical_information": [ + "Diss. Technische Universita\u0308t Kaiserslautern, Fachbereich Mathematik" + ] + }, + { + "md5": "98b5fa018cdf3fe74c2cd17cc5e20fa5", + "pid": "140469923", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140469923", + "numeration": "", + "date_of_birth": "1992", + "preferred_name": "Kornek, Christian", + "authorized_access_point": "Kornek, Christian, 1992-" + }, + { + "md5": "ceffdb82bf4d5ba1bf71d9afe8539e5d", + "pid": "140489096", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140489096", + "numeration": "", + "variant_name": [ + "Hampel, Georg", + "Hampel, G.", + "Schorsch", + "Big Brother George" + ], + "date_of_birth": "1953", + "preferred_name": "Hampel, Schorsch", + "authorized_access_point": "Hampel, Schorsch, 1953-" + }, + { + "md5": "11b18fd0ca4656042c3432436bdc3689", + "pid": "140490841", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140490841", + "numeration": "", + "date_of_birth": "1975", + "preferred_name": "Burdinski, Michael", + "authorized_access_point": "Burdinski, Michael, 1975-", + "biographical_information": [ + "Fachanwalt fu\u0308r Bau- und Architektenrecht", + "hat am 20.02.2009 an d. Univ. Mannheim promoviert" + ] + }, + { + "md5": "0cf27bba948fbcbf3f467aea7a3ecf89", + "pid": "140499024", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140499024", + "numeration": "", + "date_of_birth": "1980", + "preferred_name": "Markovic\u0301, Ana", + "authorized_access_point": "Markovic\u0301, Ana, 1980-", + "biographical_information": [ + "Diss. Fachbereich Verfahrenstechnik" + ] + }, + { + "md5": "7a57054e94d9caabb8d3aae236102469", + "pid": "140500634", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140500634", + "numeration": "", + "preferred_name": "Tabeau, Ewa", + "authorized_access_point": "Tabeau, Ewa", + "biographical_information": [ + "Studium der Statistik und O\u0308konometrie" + ] + }, + { + "md5": "8bb72e0ff43c83d26b46f2b5a1b10d72", + "pid": "140521720", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140521720", + "numeration": "", + "variant_name": [ + "Wei, Chen", + "Wei Chen" + ], + "preferred_name": "Chen, Wei", + "authorized_access_point": "Chen, Wei", + "biographical_information": [ + "Ta\u0308tig an der School of Hotel & Tourism Management at Hong Kong Polytechnic Univ." + ] + }, + { + "md5": "39805d7cdac94367fab01d7eb55f6f97", + "pid": "140533257", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140533257", + "numeration": "", + "variant_name": [ + "Guille\u0301, A\u0301lvaro Mata" + ], + "preferred_name": "Mata Guille\u0301, A\u0301lvaro", + "authorized_access_point": "Mata Guille\u0301, A\u0301lvaro", + "biographical_information": [ + "Costarican. Dichter und Erza\u0308hler; Direktor der Theater- und Tanztruppe Baco" + ] + }, + { + "md5": "d41c810e54affaf8a15389668d5b8ee5", + "pid": "140540830", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140540830", + "numeration": "", + "preferred_name": "Gro\u00dfe, C.", + "authorized_access_point": "Gro\u00dfe, C." + }, + { + "md5": "8384f3f8b6ef013ade9da7689b803011", + "pid": "140543503", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140543503", + "numeration": "", + "variant_name": [ + "Bezdieka, Thomas Franz" + ], + "preferred_name": "Bezde\u030cka, Toma\u0301s\u030c Frantis\u030cek", + "authorized_access_point": "Bezde\u030cka, Toma\u0301s\u030c Frantis\u030cek", + "biographical_information": [ + "Rats-Syndicus von Hradischtie" + ] + }, + { + "md5": "152be73f0389e379d08b97df62397039", + "pid": "140546391", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140546391", + "numeration": "", + "date_of_birth": "1976", + "preferred_name": "Barniske, Anna-Magdalena", + "authorized_access_point": "Barniske, Anna-Magdalena, 1976-" + }, + { + "md5": "7d84077de38ccbda6571fd3b5034404d", + "pid": "14055260X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/14055260X", + "numeration": "", + "variant_name": [ + "Schob, Fritz Klaus" + ], + "date_of_birth": "1933", + "preferred_name": "Schob, Klaus", + "authorized_access_point": "Schob, Klaus, 1933-" + }, + { + "md5": "b3b26852bfae46826fc3390fcbb2f455", + "pid": "140553533", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140553533", + "numeration": "", + "date_of_birth": "1590", + "date_of_death": "1655", + "preferred_name": "Vernazza, Livia", + "authorized_access_point": "Vernazza, Livia, 1590-1655", + "biographical_information": [ + "Ehefrau von Giovanni de' Medici (1567-1621)" + ] + }, + { + "md5": "99b235a04c9f991b56d21086c316c918", + "pid": "140564306", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140564306", + "numeration": "", + "variant_name": [ + "Thang, Nguyen", + "Nguyen, Thang" + ], + "preferred_name": "Nguyen Thang", + "authorized_access_point": "Nguyen Thang", + "biographical_information": [ + "Ta\u0308tig am Centre for Analysis and Forecasting, Vietnam Academy of Social Sciences, Hanoi, Vietnam" + ] + }, + { + "md5": "2fc66e85c64498c48bbbc4e0a7c61994", + "pid": "140564853", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140564853", + "numeration": "", + "variant_name": [ + "Patroczki ab Patronow, Kazimierz", + "Patroczki Patronow, Kazimierz ab", + "Patronow Patroczki, Kazimierz ab", + "Patroczki de Patronow, Kazimierz", + "Patroczki Patronow, Kazimierz de", + "Patronow Patroczki, Kazimierz de", + "Patrocki de Patronow, Casimirus", + "Patrocki Patronow, Casimirus de", + "Patronow Patrocki, Casimirus de", + "Patrocki von Patronow, Kasimir", + "Patrocki Patronow, Kasimir von", + "Patrocki, Casimirus", + "Patrocki, Kasimir", + "Patronow, Kazimierz", + "Patronow, Casimirus", + "Patronow, Kasimir" + ], + "preferred_name": "Patrocki, Kazimierz", + "authorized_access_point": "Patrocki, Kazimierz", + "biographical_information": [ + "Dekan von Ostrzeszow (Schildberg) in Polen" + ] + }, + { + "md5": "d8cfca116dd7db9bf1dac59f81ea3620", + "pid": "140580204", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140580204", + "numeration": "", + "date_of_birth": "1979", + "preferred_name": "Gast, Ronald", + "authorized_access_point": "Gast, Ronald, 1979-", + "biographical_information": [ + "Diss. Fachbereich Chemie und Pharmazie" + ] + }, + { + "md5": "45a8909eb6a138c0fdd173e9ebff2495", + "pid": "140605304", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140605304", + "numeration": "", + "date_of_birth": "ca. 20./21. Jh.", + "preferred_name": "Deppisch, Nico", + "authorized_access_point": "Deppisch, Nico, ca. 20./21. Jh.", + "biographical_information": [ + "E-Bassist" + ] + }, + { + "md5": "9d52f2347befa3a9354916e8643e7d83", + "pid": "140609873", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140609873", + "numeration": "", + "variant_name": [ + "S\u030ctejman, I.", + "S\u030cteimanis, Josifs", + "S\u030ctejman, I. A.", + "S\u030ctejman, Iosif A.", + "S\u030ctejman, Iosif" + ], + "date_of_birth": "1923", + "preferred_name": "S\u030cteimans, Josifs", + "authorized_access_point": "S\u030cteimans, Josifs, 1923-", + "biographical_information": [ + "Lett. Historiker; 1952-2007 Dozent an der Hochschule in Du\u0308naburg" + ] + }, + { + "md5": "e7ae704699fbaa0b8d8bb8d8ce825e8f", + "pid": "140623388", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140623388", + "numeration": "", + "preferred_name": "Graham, Harriet", + "authorized_access_point": "Graham, Harriet" + }, + { + "md5": "30d3eeb9758812f3fc3435b41dcff9f9", + "pid": "140655387", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140655387", + "numeration": "", + "variant_name": [ + "Jacobs, Johannes", + "Magnus, Jac. Johs. Carl" + ], + "date_of_birth": "19.08.1812", + "date_of_death": "XX.XX.1879", + "preferred_name": "Magnus, Jacob Johannes Carl", + "authorized_access_point": "Magnus, Jacob Johannes Carl, 1812-1879" + }, + { + "md5": "7fd5461118be1acedd552ced220b8feb", + "pid": "140657975", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140657975", + "numeration": "", + "preferred_name": "Lampe, Timo", + "authorized_access_point": "Lampe, Timo" + }, + { + "md5": "c522b508c398fc9edcae81d6d91ed926", + "pid": "140665927", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140665927", + "numeration": "", + "variant_name": [ + "Meining, Wong", + "Meiling Wong" + ], + "preferred_name": "Wong, Meiling", + "authorized_access_point": "Wong, Meiling", + "biographical_information": [ + "Ta\u0308tig am Dep. of Industrial Engineering and Management, National Chinyi Univ. of Technology, Taipin, Taiwan; ta\u0308tig am Dep. of Industrial Engineering and Enterprise Information, Tunghai Univ., Taichung, China" + ] + }, + { + "md5": "1231084887f967db7a5d148b21a164a9", + "pid": "140671153", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140671153", + "numeration": "", + "date_of_birth": "1973", + "preferred_name": "Ko\u0308rner, Sarah", + "authorized_access_point": "Ko\u0308rner, Sarah, 1973-" + }, + { + "md5": "ea9f67cef4eb6da6e6875042ec85f5c5", + "pid": "140680829", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140680829", + "numeration": "", + "variant_name": [ + "Zemachson, Simon", + "Zemachson, S." + ], + "date_of_birth": "1870", + "date_of_death": "1928", + "preferred_name": "Zemachson, Sholom Zvi", + "authorized_access_point": "Zemachson, Sholom Zvi, 1870-1928", + "biographical_information": [ + "Ju\u0308d. Kantor und Komponist" + ] + }, + { + "md5": "17d6c74a4f72af59f00169d7bb026201", + "pid": "140699562", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140699562", + "numeration": "", + "variant_name": [ + "Klemp, Wilhelm Rudolf" + ], + "date_of_birth": "1908", + "preferred_name": "Klemp, Wilhelm", + "authorized_access_point": "Klemp, Wilhelm, 1908-" + }, + { + "md5": "3a63c2d91a1d62e99d1b34697bef81ca", + "pid": "140703063", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140703063", + "numeration": "", + "preferred_name": "Krings, Fabian", + "authorized_access_point": "Krings, Fabian", + "biographical_information": [ + "Leitet seit 2010 den German Desk bei DLA Pieper in Wien" + ] + }, + { + "md5": "63b903640db32406491ee83782e98640", + "pid": "140707921", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140707921", + "numeration": "", + "date_of_birth": "04.06.1970", + "preferred_name": "Wulf, Detlef", + "authorized_access_point": "Wulf, Detlef, 1970-" + }, + { + "md5": "1f12b61e40f8d2228f71ba15132515fd", + "pid": "14071393X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/14071393X", + "numeration": "", + "date_of_birth": "25.05.1978", + "preferred_name": "Alhussein, Mustafa", + "authorized_access_point": "Alhussein, Mustafa, 1978-" + }, + { + "md5": "2b565d8caa11e3f795729286b75f03b9", + "pid": "140723269", + "qualifier": "Crespi", + "identifier": "http://d-nb.info/gnd/140723269", + "numeration": "", + "variant_name": [ + "Lleonard, Crespi", + "Crespi, Leonardo", + "Crespi, Lleonard", + "Crespi, Leonart" + ], + "preferred_name": "Leonardo Crespi", + "authorized_access_point": "Leonardo, Crespi" + }, + { + "md5": "e6c068fe2a01a957f2a5e0a4b03b7660", + "pid": "140724656", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140724656", + "numeration": "", + "variant_name": [ + "Flo\u0301rez, Jose\u0301 Gabriel Aguirre" + ], + "preferred_name": "Aguirre Flo\u0301rez, Jose\u0301 Gabriel", + "authorized_access_point": "Aguirre Flo\u0301rez, Jose\u0301 Gabriel", + "biographical_information": [ + "Kolumbian. Wirtschaftspru\u0308fer und Finanzexperte" + ] + }, + { + "md5": "0bec0ed770a0d93368d6ae2667ac6136", + "pid": "140730834", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140730834", + "numeration": "", + "variant_name": [ + "Hyunnam, Kim", + "Hyunnam Kim" + ], + "preferred_name": "Kim, Hyunnam", + "authorized_access_point": "Kim, Hyunnam" + }, + { + "md5": "6d34f9c03f94b74dd4a2b1f889cfb5e2", + "pid": "140741623", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140741623", + "numeration": "", + "variant_name": [ + "Hoffmann, Moritz Julius" + ], + "date_of_birth": "1981", + "preferred_name": "Hoffmann, Moritz", + "authorized_access_point": "Hoffmann, Moritz, 1981-", + "biographical_information": [ + "Diss. Medizinische Fakulta\u0308t an der Universita\u0308t Go\u0308ttingen" + ] + }, + { + "md5": "76e1e499ade80606c17634f2e77e139b", + "pid": "140749195", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140749195", + "numeration": "", + "date_of_birth": "1972", + "preferred_name": "Biefeld, Jo\u0308rg", + "authorized_access_point": "Biefeld, Jo\u0308rg, 1972-", + "biographical_information": [ + "Diss. Fachbereich Sozialwissenschaften, Medien und Sport der Univ. Mainz" + ] + }, + { + "md5": "3991f8cf485d65a37804f838e66e323f", + "pid": "140751149", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140751149", + "numeration": "", + "date_of_birth": "1886", + "date_of_death": "1953", + "preferred_name": "Boecker, Eduard", + "authorized_access_point": "Boecker, Eduard, 1886-1953" + }, + { + "md5": "b3a1d1555ffe16ee329d0dbed573d278", + "pid": "140764097", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140764097", + "numeration": "", + "date_of_birth": "1976", + "preferred_name": "Hirschler, Sandra", + "authorized_access_point": "Hirschler, Sandra, 1976-", + "biographical_information": [ + "Diss. Fachbereich Sozialwissenschaften, Medien und Sport, Inst. fu\u0308r Erziehungswissenschaften" + ] + }, + { + "md5": "2d26d9344fd443f964e7aaa54e4e7a91", + "pid": "140764143", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140764143", + "numeration": "", + "date_of_birth": "10.02.1938", + "preferred_name": "Siegel, Manfred", + "authorized_access_point": "Siegel, Manfred, 1938-" + }, + { + "md5": "a67ef66f1e2971d668c35c96c2387f30", + "pid": "140779035", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140779035", + "numeration": "", + "date_of_birth": "1945", + "preferred_name": "Dietrich, Dagmar", + "authorized_access_point": "Dietrich, Dagmar, 1945-", + "biographical_information": [ + "Publikationen zur Bau- und Kunstgeschichte Bayerns" + ] + }, + { + "md5": "f97e4b54f095c8e1257327f53622bb95", + "pid": "140791434", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140791434", + "numeration": "", + "variant_name": [ + "Helbing, K.", + "Helbing, K. W.", + "Helbing, Kurt W." + ], + "date_of_birth": "20.10.1939", + "preferred_name": "Helbing, Kurt", + "authorized_access_point": "Helbing, Kurt, 1939-", + "biographical_information": [ + "Hochschuldozent und Professor fu\u0308r Betriebsanlagen an der Ingenieurhochschule / Technischen Hochschule Wismar (1972-92), Professor fu\u0308r Fabriksysteme und Materialflusstechnik an der Fakulta\u0308t fu\u0308r Maschinenbau und Schiffstechnik an der Universita\u0308t Rostock (1992-2005)" + ] + }, + { + "md5": "17ff131d26547e7b6183b22e967c9037", + "pid": "140793496", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140793496", + "numeration": "", + "preferred_name": "Spila, Otello", + "authorized_access_point": "Spila, Otello", + "biographical_information": [ + "Kameramann" + ] + }, + { + "md5": "cc294d7929ed9334a2873ddd9eb6384b", + "pid": "140807268", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140807268", + "numeration": "", + "preferred_name": "Pietrantozzi, Franco", + "authorized_access_point": "Pietrantozzi, Franco" + }, + { + "md5": "11296798d044400810f7412533345f04", + "pid": "140808337", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140808337", + "numeration": "", + "variant_name": [ + "Ma Su", + "Massu", + "Massoud", + "\u9a6c, \u82cf" + ], + "date_of_birth": "1981", + "preferred_name": "Ma, Su", + "authorized_access_point": "Ma, Su, 1981-" + }, + { + "md5": "62c9da69d35bf2f38d27aa0a245450e9", + "pid": "140818197", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140818197", + "numeration": "", + "date_of_birth": "1954", + "preferred_name": "Latzke, Maria E.", + "authorized_access_point": "Latzke, Maria E., 1954-" + }, + { + "md5": "3b235bd11fa95398b57876c614d1cc34", + "pid": "140835822", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140835822", + "numeration": "", + "date_of_birth": "1976", + "preferred_name": "Sinclair, Alexia", + "authorized_access_point": "Sinclair, Alexia, 1976-" + }, + { + "md5": "bf2455d2e9044c05fae2b5268a1e29b1", + "pid": "140838902", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140838902", + "numeration": "", + "date_of_birth": "1938", + "preferred_name": "Sauve\u0301, Lucie", + "authorized_access_point": "Sauve\u0301, Lucie, 1938-", + "biographical_information": [ + "Kanad. Erziehungswissenschaftlerin; Prof. titular, De\u0301p. d'E\u0301ducation et Pe\u0301dagogie, Univ. du Que\u0301bec a\u0300 Montre\u0301al; Beraterin fu\u0308r Umwelterziehung" + ] + }, + { + "md5": "ee3f33257a59d8fe8d8317d31a9e890e", + "pid": "140848363", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140848363", + "numeration": "", + "variant_name": [ + "Stock, Elfriede Gertrud Renate", + "Zastrow, Elfriede Gertrud Renate" + ], + "date_of_birth": "28.04.1928", + "preferred_name": "Stock, Renate", + "authorized_access_point": "Stock, Renate, 1928-" + }, + { + "md5": "e872ee61a0b54b45ba93f7e0bb2ce337", + "pid": "140849963", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140849963", + "numeration": "", + "preferred_name": "Margariti, Myrsini", + "authorized_access_point": "Margariti, Myrsini" + }, + { + "md5": "b4af047821ef2e6e626f4341b03d52ed", + "pid": "14085200X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/14085200X", + "numeration": "", + "variant_name": [ + "Jennex, Murray", + "Jennex, Murray Eugene" + ], + "date_of_birth": "1956", + "preferred_name": "Jennex, Murray E.", + "authorized_access_point": "Jennex, Murray E., 1956-", + "biographical_information": [ + "Pra\u0308sident der Foundation for Knowledge Management" + ] + }, + { + "md5": "37b5b7b24be2cb1e6a0995004e1d92a2", + "pid": "14085603X", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/14085603X", + "numeration": "", + "variant_name": [ + "Figarova, Sophia", + "Figarova, S. R.", + "Figarova, S." + ], + "preferred_name": "Figarova, Sophia R.", + "authorized_access_point": "Figarova, Sophia R." + }, + { + "md5": "c128d64e3a102680872483dd811fd1fb", + "pid": "140867147", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140867147", + "numeration": "", + "preferred_name": "Anken, Lars", + "authorized_access_point": "Anken, Lars" + }, + { + "md5": "c6ed4ab058cbfb22246029a97cdd32ee", + "pid": "140873899", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140873899", + "numeration": "", + "preferred_name": "Zimmermann, Gerhard", + "authorized_access_point": "Zimmermann, Gerhard", + "biographical_information": [ + "Zulassungsarbeit, Musik" + ] + }, + { + "md5": "0fd4f7ea12ea143ca142282b706fdbdb", + "pid": "140890335", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140890335", + "numeration": "", + "preferred_name": "Riedmann, Heinz", + "authorized_access_point": "Riedmann, Heinz", + "biographical_information": [ + "Dirigent, Chorleiter der Pfarrei Hl. Familie Mu\u0308nchen, 20. / 21. Jh.", + "Organist" + ] + }, + { + "md5": "e329b9353145cbddea05f98d41221bc1", + "pid": "140891420", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140891420", + "numeration": "", + "variant_name": [ + "Superchumbo" + ], + "date_of_birth": "1970", + "preferred_name": "Stephan, Tom", + "authorized_access_point": "Stephan, Tom, 1970-", + "biographical_information": [ + "Amerikan. Progressive House-Musiker; Gru\u0308nder des Musiklabels \"Superchumbo\"" + ] + }, + { + "md5": "8dd7e22e7b3ecd2ed4a8677254c09bee", + "pid": "140897933", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140897933", + "numeration": "", + "variant_name": [ + "Arctander, Aug." + ], + "date_of_birth": "1818", + "date_of_death": "1878", + "preferred_name": "Arctander, August Hjeronimus", + "authorized_access_point": "Arctander, August Hjeronimus, 1818-1878" + }, + { + "md5": "8fa6f7ac4ca245d1b21a63b915a01bcf", + "pid": "140913971", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140913971", + "numeration": "", + "preferred_name": "Culver, Carmen", + "authorized_access_point": "Culver, Carmen" + }, + { + "md5": "c45f4ad38d2719977825d469634551aa", + "pid": "140917675", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140917675", + "numeration": "", + "variant_name": [ + "Altmann, Johannes Heinrich", + "Altmann, Johannes Henricus" + ], + "preferred_name": "Altmann, Johann Heinrich", + "authorized_access_point": "Altmann, Johann Heinrich", + "biographical_information": [ + "P. L." + ] + }, + { + "md5": "8909934c0ee18b68247f6a04d42bcc52", + "pid": "140930531", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140930531", + "numeration": "", + "date_of_birth": "ca. Gegenwart", + "preferred_name": "Rubendari\u0301o", + "authorized_access_point": "Rubendari\u0301o, ca. Gegenwart" + }, + { + "md5": "adc944852ff3046552fbbb952ee2a8b3", + "pid": "140934081", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/140934081", + "numeration": "", + "variant_name": [ + "Erdmann, Thomas R.", + "Ross Erdmann, Thomas" + ], + "preferred_name": "Erdmann, Thomas Ross", + "authorized_access_point": "Erdmann, Thomas Ross", + "biographical_information": [ + "Director of the Elon University Symphony Orchestra; Professor of Music and Education at Elon University in North Carolina; Jazz ed. for the \"International Trumpet Guild Journal\"" + ] + }, + { + "md5": "a7db19af9656f6143ab48856424e3efa", + "pid": "141184531", + "gender": "female", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/141184531", + "numeration": "", + "date_of_birth": "21.07.1966", + "preferred_name": "McCarthy, Rebecca Lea", + "authorized_access_point": "McCarthy, Rebecca Lea, 1966-", + "biographical_information": [ + "Prof. of humanities, Kaplan Univ." + ] + }, + { + "md5": "1b1a6fd366c5aed85665e78f67635a99", + "pid": "141801689", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/141801689", + "numeration": "", + "preferred_name": "Pa\u0304rsa\u0304, Ma\u0304ni\u0304", + "authorized_access_point": "Pa\u0304rsa\u0304, Ma\u0304ni\u0304" + }, + { + "md5": "1a89f501b6a0e0020dfb33206ebc4b2e", + "pid": "142514926", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/142514926", + "numeration": "", + "date_of_birth": "1930", + "preferred_name": "Eguchi, Masahiro", + "authorized_access_point": "Eguchi, Masahiro, 1930-" + }, + { + "md5": "b258bd7df1cc016534781b1b52a72a9e", + "pid": "14275210X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/14275210X", + "numeration": "", + "date_of_birth": "1952", + "preferred_name": "Haas, Jean-Franc\u0327ois", + "authorized_access_point": "Haas, Jean-Franc\u0327ois, 1952-" + }, + { + "md5": "2b199d8f9300eb5b46b9530aca6855b3", + "pid": "142782629", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/142782629", + "numeration": "", + "preferred_name": "Markelis, Daiva", + "authorized_access_point": "Markelis, Daiva", + "biographical_information": [ + "associate professor of English at Eastern, Illinois University" + ] + }, + { + "md5": "8be0d1b1cb6be54137eefb2ec599c859", + "pid": "143130706", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/143130706", + "numeration": "", + "variant_name": [ + "Denef, A." + ], + "preferred_name": "Neve, Alex de", + "authorized_access_point": "Neve, Alex de" + }, + { + "md5": "c8de378ca4e8f49abb56c8366dbc7e12", + "pid": "143464000", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/143464000", + "numeration": "", + "date_of_birth": "02.12.1939", + "preferred_name": "McNeely, Patricia G.", + "authorized_access_point": "McNeely, Patricia G., 1939-", + "biographical_information": [ + "lehrte am College of Journalism and Mass Communication at the University of South Carolina" + ] + }, + { + "md5": "e3b8765dbcb2593ee4165a40852337fb", + "pid": "143585541", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/143585541", + "numeration": "", + "preferred_name": "Young, Vanessa", + "authorized_access_point": "Young, Vanessa" + }, + { + "md5": "a86c93a16ce5eea6137b77ff98a21b1e", + "pid": "16110522X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/16110522X", + "numeration": "", + "preferred_name": "Reynolds, Catherine", + "authorized_access_point": "Reynolds, Catherine", + "biographical_information": [ + "lecturer in the History of Art" + ] + }, + { + "md5": "52f750043428dbfe525cc1384fb9a14e", + "pid": "170064344", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/170064344", + "numeration": "", + "variant_name": [ + "Milanovski, Vlodzimez\u030c" + ], + "preferred_name": "Milanowski, Wlodzimierz", + "authorized_access_point": "Milanowski, Wlodzimierz" + }, + { + "md5": "98cff30b0a759c189879eba93eb3812a", + "pid": "170259196", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/170259196", + "numeration": "", + "preferred_name": "Wriglesworth, John L.", + "authorized_access_point": "Wriglesworth, John L.", + "biographical_information": [ + "Queen Mary College, London, England (1986)" + ] + }, + { + "md5": "4df1b088ef88afde3fbfc63dc5c31280", + "pid": "17027926X", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/17027926X", + "numeration": "", + "variant_name": [ + "Higham, Robin D. S.", + "Higham, Robin D.", + "Higham, Robin David Stewart" + ], + "date_of_birth": "20.06.1925", + "date_of_death": "27.08.2015", + "preferred_name": "Higham, Robin", + "authorized_access_point": "Higham, Robin, 1925-2015", + "biographical_information": [ + "Luftfahrt- und Milita\u0308rhistoriker; 1943-1947 Pilot und Flight Sergeant in der Canadian Royal Air Force in Europa und Asien (Burma Road); Studium an der University of New Hampshire, der Harvard University und Claremont Graduate School; 1954-1957 Instructor an der University of Massachusetts; Promotion, Harvard University, 1957; Assistant Professor an der University of North Carolina; ; 1963-1999 Professor of Military History an der Kansas State University; Gru\u0308nder der Sunflower University Press (1977-2005)" + ] + }, + { + "md5": "0f9887d0425f62cff456b2f306f29b75", + "pid": "170311104", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/170311104", + "numeration": "", + "preferred_name": "Onoe, Hisao", + "authorized_access_point": "Onoe, Hisao", + "biographical_information": [ + "Kyoto Univ. (1986)" + ] + }, + { + "md5": "17e126c9fea0eedeb7fe0e1e5bf1ad00", + "pid": "170594211", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/170594211", + "numeration": "", + "date_of_birth": "1938", + "preferred_name": "Palmer, John", + "authorized_access_point": "Palmer, John, 1938-", + "biographical_information": [ + "European ed. of \"The Guardian\" and Britain's most informed commentator on the European Community (1988)" + ] + }, + { + "md5": "455d93d32e4e55a3bd8fcbd7590b8557", + "pid": "170971325", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/170971325", + "numeration": "", + "variant_name": [ + "Parker, Ian" + ], + "preferred_name": "Parker, Ian C.", + "authorized_access_point": "Parker, Ian C.", + "biographical_information": [ + "Ta\u0308tig an der Univ. of Toronto" + ] + }, + { + "md5": "daa8a186e02f4626a8e87f1d5b0a687c", + "pid": "171302605", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/171302605", + "numeration": "", + "variant_name": [ + "Xinghe Wang", + "Xinghe, Wang" + ], + "preferred_name": "Wang, Xinghe", + "authorized_access_point": "Wang, Xinghe", + "biographical_information": [ + "Univ. of Missouri, Columbia, MO, USA (1994)" + ] + }, + { + "md5": "4b239aa37163cd2b607b8dba9404cd15", + "pid": "171484940", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/171484940", + "numeration": "", + "variant_name": [ + "Lemarbre, S." + ], + "preferred_name": "Lemarbre, Sylvain", + "authorized_access_point": "Lemarbre, Sylvain", + "biographical_information": [ + "E\u0301cole des Hautes E\u0301tudes Commerciales, Montreal (1996)" + ] + }, + { + "md5": "cf56432cfd54deb29ea341393d01e67c", + "pid": "171617525", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/171617525", + "numeration": "", + "preferred_name": "Senser, Robert A.", + "authorized_access_point": "Senser, Robert A.", + "biographical_information": [ + "U.S. Foreign Service (1997)" + ] + }, + { + "md5": "84eb587ec9e1deab2739b391a5a3eb40", + "pid": "171898966", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/171898966", + "numeration": "", + "preferred_name": "Gerardi, Dino", + "authorized_access_point": "Gerardi, Dino" + }, + { + "md5": "58cf08e80d34ed76160e9e3233f691ea", + "pid": "172030773", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/172030773", + "numeration": "", + "variant_name": [ + "Hayes, Ralph E.", + "Hayes, Ralph Eugene", + "Carter, Nick" + ], + "date_of_birth": "1927", + "preferred_name": "Hayes, Ralph", + "authorized_access_point": "Hayes, Ralph, 1927-", + "biographical_information": [ + "amerikan. Schriftsteller" + ] + }, + { + "md5": "2b25bd1c4821cfb95b466f2c9ebabeb6", + "pid": "172316480", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/172316480", + "numeration": "", + "variant_name": [ + "Parker, Gordon Barraclough" + ], + "date_of_birth": "1942", + "preferred_name": "Parker, Gordon", + "authorized_access_point": "Parker, Gordon, 1942-", + "biographical_information": [ + "Prof. fu\u0308r Psychiatrie" + ] + }, + { + "md5": "80f79efb5228ff1a4c7180bed55b6446", + "pid": "173047165", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/173047165", + "numeration": "", + "preferred_name": "Tennant, Margaret E.", + "authorized_access_point": "Tennant, Margaret E.", + "biographical_information": [ + "kanad. Schriftstellerin" + ] + }, + { + "md5": "79ec6183f989f8750d2a8a8b2b421bd0", + "pid": "173120016", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/173120016", + "numeration": "", + "date_of_birth": "1924", + "date_of_death": "2015", + "preferred_name": "Hashimoto, Yoshihiko", + "authorized_access_point": "Hashimoto, Yoshihiko, 1924-2015" + }, + { + "md5": "37f3773b1ffb247eb1b7714a90147797", + "pid": "174361009", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/174361009", + "numeration": "", + "date_of_birth": "1944", + "preferred_name": "Magalhaes, Teresa", + "authorized_access_point": "Magalhaes, Teresa, 1944-", + "biographical_information": [ + "Geb. In Lissabon" + ] + }, + { + "md5": "5be91d9718176169ad1b248c5271ceaf", + "pid": "178767875", + "gender": "male", + "qualifier": "", + "identifier": "http://d-nb.info/gnd/178767875", + "numeration": "", + "variant_name": [ + "Luchuanfanglang", + "Luchuan, Fanglang" + ], + "date_of_birth": "27.08.1931", + "preferred_name": "Togawa, Yoshio", + "authorized_access_point": "Togawa, Yoshio, 1931-" + } +] diff --git a/tests/data/aggnd_metadata.csv b/tests/data/aggnd_metadata.csv new file mode 100644 index 00000000..6322716a --- /dev/null +++ b/tests/data/aggnd_metadata.csv @@ -0,0 +1,497 @@ +2020-09-24 13:15:12.902312 2020-09-24 13:15:12.902318 01bed099-4f78-4311-9ef1-103c261c3355 {"md5": "762ecba15e63eb7a6348bf561d5c5a26", "pid": "1202813968", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1202813968", "numeration": "", "preferred_name": "Sousa, Lúcio", "authorized_access_point": "Sousa, Lúcio", "biographical_information": ["Lúcio Sousa is professor of anthropology at the Department of Social Sciences and Management at Universidade Aberta, Portugal, and a researcher at the Institute for the Study of Literature and Tradition (IELT-FCSH-UNL)."]} 1 +2020-09-24 13:15:14.420682 2020-09-24 13:15:14.420688 f5fa71fc-342e-4d93-95b5-baebabf6db1b {"md5": "37f3773b1ffb247eb1b7714a90147797", "pid": "174361009", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/174361009", "numeration": "", "date_of_birth": "1944", "preferred_name": "Magalhaes, Teresa", "authorized_access_point": "Magalhaes, Teresa, 1944-", "biographical_information": ["Geb. In Lissabon"]} 1 +2020-09-24 13:15:14.930719 2020-09-24 13:15:14.930725 04681022-c873-4735-a7f8-e2b9cf15b210 {"md5": "f0e2b6b1d25150a8d22f52c48e86cd20", "pid": "1079471162", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1079471162", "numeration": "", "date_of_birth": "1877", "date_of_death": "1943", "preferred_name": "Hollaus, Bartholomäus", "authorized_access_point": "Hollaus, Bartholomäus, 1877-1943", "biographical_information": ["1897 an der Akademie der Bildenden Künste München"]} 1 +2020-09-24 13:15:15.417388 2020-09-24 13:15:15.417394 b6249056-84f9-4621-8c93-202229627bd8 {"md5": "3c77fa5ca1c80bf007168f387a769c5d", "pid": "1079820728", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1079820728", "numeration": "", "variant_name": ["Blechinger, Alexander", "Blechinger, Alexander"], "date_of_birth": "1956", "preferred_name": "Blechinger, Alexander", "authorized_access_point": "Blechinger, Alexander, 1956-"} 1 +2020-09-24 13:15:16.156454 2020-09-24 13:15:16.156459 091261bb-0697-410b-9783-414025023f58 {"md5": "0ab4478ce764821191e2d7fba443fe5f", "pid": "1109931689", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1109931689", "numeration": "", "variant_name": ["Bibik, V. L."], "date_of_birth": "1970", "preferred_name": "Bibik, Vladislav Leonidovič", "authorized_access_point": "Bibik, Vladislav Leonidovič, 1970-"} 1 +2020-09-24 13:15:16.602108 2020-09-24 13:15:16.602113 8e7ee95e-ed8e-4139-8b66-bf4bbb1a4cf8 {"md5": "c9e4a956cb2c1ece880ac102d3245b70", "pid": "1057520837", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1057520837", "numeration": "", "date_of_birth": "1932", "preferred_name": "Cardoso, António", "authorized_access_point": "Cardoso, António, 1932-", "biographical_information": ["Kunsthistoriker", "geb. in Amarante; veröffentl. Lit. zur portug. Kunst u. Architektur."]} 1 +2020-09-24 13:15:21.977322 2020-09-24 13:15:21.977328 327652e8-1baa-4755-a674-644584d1fb75 {"md5": "7ad3908b98dda9e7874bf14677c40d58", "pid": "100068944", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/100068944", "numeration": "", "variant_name": ["Caorsin, Gulielmus", "Caoursin, William", "Caorsin, Guglielmo", "Caorsin, Gulielmo", "Guillaume, Caoursin", "Guilelmus, Caorsin", "William, Caoursin", "Caorsin, Guillaume", "Coarsin, Guillaume", "Coursin, Guillaume", "Caonersyn, Wylhelm", "Caonersin, Wilhelm", "Guilelmus, Caorsinus"], "date_of_birth": "1430", "date_of_death": "1501", "preferred_name": "Caoursin, Guillaume", "authorized_access_point": "Caoursin, Guillaume, 1430-1501", "biographical_information": ["Rhodiorum historia", "Geschichtsschreiber; Vizekanzler d. Johanniter-Ordens"]} 1 +2020-09-24 13:15:22.832871 2020-09-24 13:15:22.832875 c8e41580-1f35-41e0-804b-0fc85dd204d4 {"md5": "b66437b893fd24e42a5fd411e81ac1bf", "pid": "109790715", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/109790715", "numeration": "", "variant_name": ["François"], "preferred_name": "Doly, Guy", "authorized_access_point": "Doly, Guy"} 1 +2020-09-24 13:15:23.257245 2020-09-24 13:15:23.257251 db0c61b8-c91c-40ef-b6a7-5f56ae31886b {"md5": "10c984d9347380b40e97aa23fe93a408", "pid": "1055795316", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1055795316", "numeration": "", "variant_name": ["Halper, Ben-Sijjon", "Halper, Ben-Ṣiyyôn", "Halper, Benzion", "Halpern, Ben-Ṣijjōn", "Halpern, Ben-Ṣiyyôn", "Halper, B.", "הלפר, בן־ציון"], "date_of_birth": "1884", "date_of_death": "1924", "preferred_name": "Halper, Ben-Tsiyon", "authorized_access_point": "Halper, Ben-Tsiyon, 1884-1924", "biographical_information": ["Hebraist, Arabist und Editor"]} 1 +2020-09-24 13:15:23.714856 2020-09-24 13:15:23.714862 49a4edd6-0cb8-48c6-ba60-33f8bd4d35e7 {"md5": "b245edef685733bef9a7e735ec23a766", "pid": "123731062", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/123731062", "numeration": "", "date_of_birth": "1923", "preferred_name": "Krüger, Sabine", "authorized_access_point": "Krüger, Sabine, 1923-", "biographical_information": ["Dt. Sprachwissenschaftlerin"]} 1 +2020-09-24 13:15:24.864469 2020-09-24 13:15:24.864474 8c3b5977-e0ce-4a74-954c-9ea1e80bbf4b {"md5": "d1b6cd5b0ca383a5992ab18bc2953950", "pid": "118818805", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/118818805", "numeration": "", "variant_name": ["Richelet, Césare P.", "P. R. A.", "Richelet, Césare-Pierre", "Richelet, César Pierre", "Richelet, Peter", "Richelet, César-Pierre", "Richelet, P.", "Richelet, Pierre César"], "date_of_birth": "1626", "date_of_death": "1698", "preferred_name": "Richelet, Pierre", "authorized_access_point": "Richelet, Pierre, 1626-1698", "biographical_information": ["Franz. Linguist und Lexikograph; studierte 3 Jahre Rechtswissenschaft, war jedoch nicht als Anwalt o.ä. tätig"]} 1 +2020-09-24 13:15:26.615957 2020-09-24 13:15:26.615962 97de2d36-ff19-4e82-8549-1a99e198aa91 {"md5": "ebdeb599d459cb244a448b39ace32a70", "pid": "1172505020", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1172505020", "numeration": "", "variant_name": ["Jacq, Christian", "Jacq, Christian"], "date_of_birth": "1947", "preferred_name": "Jacq, Christian", "authorized_access_point": "Jacq, Christian, 1947-"} 1 +2020-09-24 13:15:27.575278 2020-09-24 13:15:27.575283 94da5d1e-0935-47ab-8d56-d4fe2a39e059 {"md5": "cfdd98296d150b946fded09e733eb822", "pid": "122616243", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/122616243", "numeration": "", "date_of_birth": "1970", "preferred_name": "Leitner, Marina", "authorized_access_point": "Leitner, Marina, 1970-", "biographical_information": ["Psychologin"]} 1 +2020-09-24 13:15:30.159527 2020-09-24 13:15:30.159532 0312d9b7-5d0f-45b8-aa8f-c1ecd56af979 {"md5": "7f3a763ade20e9e9f975dc116393d56e", "pid": "120175533", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/120175533", "numeration": "", "date_of_birth": "31.08.1964", "date_of_death": "05.08.2002", "preferred_name": "Strom, Swet-Patrik", "authorized_access_point": "Strom, Swet-Patrik, 1964-2002"} 1 +2020-09-24 13:15:30.674997 2020-09-24 13:15:30.675002 87e28a67-d48a-4b7a-8717-a7ed47611ad8 {"md5": "096451d9259a2fda6853972d7e3d50b9", "pid": "1159283095", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1159283095", "numeration": "", "variant_name": ["Lot, Fernan"], "preferred_name": "Lot, Fernand", "authorized_access_point": "Lot, Fernand"} 1 +2020-09-24 13:15:33.182454 2020-09-24 13:15:33.182459 b77e2ab4-8971-4302-b94b-c06ad405a573 {"md5": "491aef2b2f797eef03ddf355b867218e", "pid": "1126071935", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1126071935", "numeration": "", "variant_name": ["Jacob, Bernard Lortat"], "preferred_name": "Lortat-Jacob, Bernard", "authorized_access_point": "Lortat-Jacob, Bernard"} 1 +2020-09-24 13:15:34.547888 2020-09-24 13:15:34.547894 4d0471aa-ffa9-4e85-89da-3bdee19c3dd4 {"md5": "8ff2a26a7f7dae54b981597e7b211d1d", "pid": "1163061921", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1163061921", "numeration": "", "variant_name": ["Kranich, Johannes Engelbertus", "Kranich, Johannes Engelbert", "Kranich, Johann Engelhard", "Kranich, Joh. Engelhardus"], "preferred_name": "Kranich, Johann Engelbert", "authorized_access_point": "Kranich, Johann Engelbert", "biographical_information": ["Student in Marburg"]} 1 +2020-09-24 13:15:35.348055 2020-09-24 13:15:35.34806 c04527dc-8317-44fe-b13e-0eb09d7caa3a {"md5": "5bb23e7b4ffeb89ee0ffb774bdfcf4ae", "pid": "133362817", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/133362817", "numeration": "", "date_of_birth": "1944", "preferred_name": "Johnson, John", "authorized_access_point": "Johnson, John, 1944-", "biographical_information": ["President of Coach Boxing, Inc."]} 1 +2020-09-24 13:15:36.018384 2020-09-24 13:15:36.018389 9b646667-f028-4a2e-ba07-6875ca5f83a7 {"md5": "6d9ed4cf8765c78107982113e14ec59e", "pid": "135226082", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/135226082", "numeration": "", "variant_name": ["Gosling, John"], "preferred_name": "Mekon", "authorized_access_point": "Mekon"} 1 +2020-09-24 13:15:36.461293 2020-09-24 13:15:36.461298 253f9630-7501-4dee-9cdb-399883ac45f5 {"md5": "2f39dc70c28d09278a28f199971a4552", "pid": "1147167125", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1147167125", "numeration": "", "variant_name": ["Luc, Frère"], "date_of_birth": "1914", "date_of_death": "1996", "preferred_name": "Dochier, Luc", "authorized_access_point": "Dochier, Luc, 1914-1996", "biographical_information": ["1914-1996. Mönch in Tibhirine"]} 1 +2020-09-24 13:15:39.479107 2020-09-24 13:15:39.479112 978375ca-e2ec-4a34-84c0-ea4a894203a4 {"md5": "82ddd83f8633ada1a34798f480479484", "pid": "134321707", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/134321707", "numeration": "", "variant_name": ["Ayres, Reginald B.-", "Ayres, Reginald Barrett-"], "date_of_birth": "07.05.1920", "preferred_name": "Barrett-Ayres, Reginald", "authorized_access_point": "Barrett-Ayres, Reginald, 1920-"} 1 +2020-09-24 13:15:40.55896 2020-09-24 13:15:40.558965 39a0a5bd-6d78-423f-be83-312c583a707d {"md5": "9ac8da7e6abcb06bde8d3ee8aa7b9351", "pid": "136380638", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/136380638", "numeration": "", "date_of_birth": "16.09.1935", "preferred_name": "Winter, Bernd", "authorized_access_point": "Winter, Bernd, 1935-", "biographical_information": ["Promotion an der Universität Erlangen-Nürnberg 1970"]} 1 +2020-09-24 13:15:40.999938 2020-09-24 13:15:40.999944 eb9b725e-7142-466a-921b-9e571a053369 {"md5": "e073a7d38e8523f3920d05633d6f0f2d", "pid": "139094342", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139094342", "numeration": "", "date_of_birth": "1976", "preferred_name": "Kurig, Barbara", "authorized_access_point": "Kurig, Barbara, 1976-", "biographical_information": ["Diss. Universität Tübingen, Fakultät für Chemie und Pharmazie"]} 1 +2020-09-24 13:15:41.4017 2020-09-24 13:15:41.401704 642c3550-76ef-4c85-aac3-d93945c55a59 {"md5": "39f107436a4ea3e8f5e8c350aa955d8c", "pid": "1159214239", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1159214239", "numeration": "", "variant_name": ["Tkachev, V. N.", "Tkachev, Valentin Nikolaevich", "Tkačev, Valentin Nikolaevič"], "preferred_name": "Tkačev, Valentin N.", "authorized_access_point": "Tkačev, Valentin N."} 1 +2020-09-24 13:15:41.903294 2020-09-24 13:15:41.903299 a543d53d-ee00-40f1-b01e-60c7b0189523 {"md5": "805d62d3ebb10e5dde84b60f2294e48b", "pid": "139117091", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139117091", "numeration": "", "preferred_name": "Hölck, Benjamin", "authorized_access_point": "Hölck, Benjamin"} 1 +2020-09-24 13:15:42.351004 2020-09-24 13:15:42.35101 3f050639-505c-4782-9cfa-02c509d9fc0e {"md5": "68ae32a6f764f3e54b76443e0082ae94", "pid": "13912523X", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/13912523X", "numeration": "", "variant_name": ["Hollander, Pierre, d'"], "preferred_name": "D'Hollander, Pierre", "authorized_access_point": "D'Hollander, Pierre", "biographical_information": ["Bariton, 20. Jh."]} 1 +2020-09-24 13:15:42.842209 2020-09-24 13:15:42.842214 1fd7d840-2f61-43fe-a656-0140736513ec {"md5": "67d2dc7d6bfb9bf7a2ba9fdb6dacd103", "pid": "139128557", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139128557", "numeration": "", "variant_name": ["小和田哲男"], "date_of_birth": "1944", "preferred_name": "Owada, Tetsuo", "authorized_access_point": "Owada, Tetsuo, 1944-"} 1 +2020-09-24 13:15:43.929074 2020-09-24 13:15:43.92908 c3363026-24ee-4b9c-a445-e900ea4d3989 {"md5": "dbc9b3552288f8d7f62d788ee5d2006e", "pid": "139134816", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139134816", "numeration": "", "preferred_name": "Reich, Friedrich Wilhelm", "authorized_access_point": "Reich, Friedrich Wilhelm", "biographical_information": ["Bekehrter Jude"]} 1 +2020-09-24 13:15:44.367476 2020-09-24 13:15:44.367481 0dacfa6f-a883-4e69-b9f5-8cb05f884e6f {"md5": "34308dbad79648d4b4f2123e18d58d4f", "pid": "139142878", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139142878", "numeration": "", "variant_name": ["Hyejung, Yoon", "Hyejung Yoon"], "preferred_name": "Yoon, Hyejung", "authorized_access_point": "Yoon, Hyejung", "biographical_information": ["Tätig am Dep. of Computer Science and Engineering, Ewha Womans Univ., Seoul, South Korea"]} 1 +2020-09-24 13:15:44.859647 2020-09-24 13:15:44.859652 d50c18be-68e4-4c11-b449-c36bbe8cae63 {"md5": "72e92f980c9b3c8072efdef811653d63", "pid": "139173544", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139173544", "numeration": "", "date_of_birth": "1975", "preferred_name": "Feurstein, Christian", "authorized_access_point": "Feurstein, Christian, 1975-", "biographical_information": ["Leiter des Wirtschaftsarchivs Vorarlberg in Feldkirch (ab 2002)"]} 1 +2020-09-24 13:15:45.293208 2020-09-24 13:15:45.293213 a543d85e-2b0a-4103-b305-e4cfad1f59cc {"md5": "b1684a30cd8bcc5c0428f6dad3bd2aab", "pid": "139180060", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139180060", "numeration": "", "variant_name": ["Romanjuk, Ivan Mironovič", "Romanjuk, Ivan", "Romanjuk, Ivan M.", "Romanjuk, I. M."], "date_of_birth": "1962", "preferred_name": "Romanjuk, Ivan Myronovyč", "authorized_access_point": "Romanjuk, Ivan Myronovyč, 1962-", "biographical_information": ["Internet, Ukrain. Historiker, http://www.vspu.edu.ua/faculty/histor/history_ukr_tich.php"]} 1 +2020-09-24 13:15:45.689129 2020-09-24 13:15:45.689135 35870a54-60e3-4cfa-8e10-459b761f7768 {"md5": "54fc694944987b3802425ec663a5a813", "pid": "139196269", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139196269", "numeration": "", "date_of_birth": "1963", "preferred_name": "Oldorff, Sven", "authorized_access_point": "Oldorff, Sven, 1963-", "biographical_information": ["Dresden, Techn. Univ., Fak. Forst-, Geo- und Hydrowiss., Diplomarbeit, 1990"]} 1 +2020-09-24 13:15:46.146587 2020-09-24 13:15:46.146592 f427121e-2259-4a9a-8b0e-6d2624696c22 {"md5": "56c33ceb67f35443039bf151332ec294", "pid": "139204105", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139204105", "numeration": "", "date_of_birth": "1971", "preferred_name": "Grinštejn, Nana", "authorized_access_point": "Grinštejn, Nana, 1971-", "biographical_information": ["Russ. Dichterin"]} 1 +2020-09-24 13:15:47.193036 2020-09-24 13:15:47.193041 1e3066dd-5153-4054-b405-1e8a32dc45de {"md5": "7f5204f8ca3d0a0e0dc7b3000f47a2fc", "pid": "139209204", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139209204", "numeration": "", "preferred_name": "Douchy, Hervé", "authorized_access_point": "Douchy, Hervé"} 1 +2020-09-24 13:15:47.867873 2020-09-24 13:15:47.867878 c3b1efe4-2b26-4b83-ab7e-23ea4bfa42e2 {"md5": "81eecbdeb82bfb76a54a58e45c6b8a57", "pid": "115836346X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/115836346X", "numeration": "", "variant_name": ["Kuz'minych, Tat'jana Nikolaevna"], "preferred_name": "Kuz'minych, Tat'jana N.", "authorized_access_point": "Kuz'minych, Tat'jana N."} 1 +2020-09-24 13:15:48.446174 2020-09-24 13:15:48.446178 738b098f-f367-4347-a81c-6685d6befc6d {"md5": "6d99f55f3b3d38ac6b4784d78aba4bc0", "pid": "139238034", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139238034", "numeration": "", "date_of_birth": "1772", "date_of_death": "1839", "preferred_name": "Proskowetz, Anton", "authorized_access_point": "Proskowetz, Anton, 1772-1839"} 1 +2020-09-24 13:15:48.87493 2020-09-24 13:15:48.874935 14a7e78f-50e2-4a3d-9587-be9ac4acae9c {"md5": "750414ef73a04e44cf86b7a92aa7a53c", "pid": "139257012", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139257012", "numeration": "", "date_of_birth": "1963", "preferred_name": "Michailowa, Antonia", "authorized_access_point": "Michailowa, Antonia, 1963-", "biographical_information": ["Dresden, Techn. Univ., Fak. Bau-, Wasser- und Forstwesen, Diplomarbeit, 1989"]} 1 +2020-09-24 13:15:49.268578 2020-09-24 13:15:49.268583 467f69b0-7f11-435d-bca4-9213851fe25c {"md5": "fd6aa20a174760ccf17d03f4ae9a37cb", "pid": "139268456", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139268456", "numeration": "", "date_of_birth": "1955", "preferred_name": "Stuart, George Edwin", "authorized_access_point": "Stuart, George Edwin, 1955-"} 1 +2020-09-24 13:15:49.702706 2020-09-24 13:15:49.702711 de042464-aa28-4d8c-b6f9-10799d58d673 {"md5": "89a901d63db9275996b38cf03436951e", "pid": "139284575", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139284575", "numeration": "", "variant_name": ["Roth, Conrad", "Rothe, Konrad", "Rothe, Conrad"], "date_of_death": "1637", "preferred_name": "Roth, Konrad", "authorized_access_point": "Roth, Konrad, -1637", "biographical_information": ["Ratskonsulent; Ratsadvokat in Augsburg"]} 1 +2020-09-24 13:15:50.189204 2020-09-24 13:15:50.18921 e4df7b88-01a3-4d78-a4f2-4d2501cf1939 {"md5": "96f35cc8ea78854df884d3328fd5ce95", "pid": "139286160", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139286160", "numeration": "", "date_of_birth": "1976", "preferred_name": "Wiese, René", "authorized_access_point": "Wiese, René, 1976-", "biographical_information": ["Archivoberrat und Dezernatsleiter in der Abteilung Landesarchiv des Landesamtes für Kultur und Denkmalpflege Mecklenburg-Vorpommern in Schwerin, Mitglied der Historischen Kommission für Mecklenburg"]} 1 +2020-09-24 13:15:51.218432 2020-09-24 13:15:51.218437 23ce687c-46e7-4254-98ee-e5b7db33e46f {"md5": "04fdab1665476654c024e211ea485b21", "pid": "139286659", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139286659", "numeration": "", "date_of_birth": "1968", "preferred_name": "Irwin, Ruth", "authorized_access_point": "Irwin, Ruth, 1968-"} 1 +2020-09-24 13:15:51.620255 2020-09-24 13:15:51.62026 e088b7d8-c944-4858-bc2d-0839dba7292c {"md5": "a8f46725611416de25883d3036bd3cdf", "pid": "139289690", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139289690", "numeration": "", "variant_name": ["Albero, Claudio dall'"], "date_of_birth": "ca. Anfang 21. Jh.", "preferred_name": "Dall'Albero, Claudio", "authorized_access_point": "Dall'Albero, Claudio, ca. Anfang 21. Jh.", "biographical_information": ["Hrsg. der Massenzio-Gesamtausgabe"]} 1 +2020-09-24 13:15:52.109305 2020-09-24 13:15:52.109309 f70a49aa-efec-4231-a680-1e7b7ee7f40a {"md5": "b8ba038971b3c375d46870ca35d149d0", "pid": "139310991", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "Anhalt-Bernburg, Fürst", "identifier": "http://d-nb.info/gnd/139310991", "numeration": "V.", "date_of_death": "1410", "preferred_name": "Bernhard V. Anhalt-Bernburg, Fürst", "authorized_access_point": "Bernhard, V., Anhalt-Bernburg, Fürst, -1410", "biographical_information": ["Fürst von Anhalt-Bernburg"]} 1 +2020-09-24 13:15:52.56249 2020-09-24 13:15:52.562495 ee6cec63-5a68-4c1e-839c-71dab59e798d {"md5": "214435214c069b219e13dc3ae07410d5", "pid": "139317783", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139317783", "numeration": "", "date_of_birth": "1961", "preferred_name": "Bludschun, Uwe", "authorized_access_point": "Bludschun, Uwe, 1961-", "biographical_information": ["Dresden, Techn. Univ., Fak. Bau-, Wasser- und Forstwesen, Diplomarbeit, 1988"]} 1 +2020-09-24 13:15:52.99105 2020-09-24 13:15:52.991054 866d6979-01e0-43f8-a465-df0f5ed6afcb {"md5": "794b170b10290d229e1c73df64c71e09", "pid": "139323708", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139323708", "numeration": "", "variant_name": ["Stepaškin, Valentin A.", "Stepaškin, V. A.", "Stepaškin, Valentin", "Степашкин, Валентин Александрович"], "date_of_birth": "1956", "preferred_name": "Stepaškin, Valentin Aleksandrovič", "authorized_access_point": "Stepaškin, Valentin Aleksandrovič, 1956-"} 1 +2020-09-24 13:19:56.901556 2020-09-24 13:19:56.90156 f1df2a90-9f8c-4263-850c-fa00cc98fff2 {"md5": "ef2659a7aa496f041d217ef301c76a52", "pid": "1146540825", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1146540825", "numeration": "", "date_of_birth": "1939", "preferred_name": "Magerl, Wolfram", "authorized_access_point": "Magerl, Wolfram, 1939-"} 1 +2020-09-24 13:15:53.375825 2020-09-24 13:15:53.37583 b127f4b9-e363-41fe-a0c5-2a7c995feff8 {"md5": "7b5c6ac075baa61e182a2f640eca2028", "pid": "139334114", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139334114", "numeration": "", "preferred_name": "Khattab, Ahmed Aziz", "authorized_access_point": "Khattab, Ahmed Aziz", "biographical_information": ["aus Kairo - Ägypten; Habilitation an der Medizinischen Fakultät der Universität Kiel"]} 1 +2020-09-24 13:15:53.764714 2020-09-24 13:15:53.764718 f26c4b36-2dd0-4b04-ab57-f5433d9c2e6f {"md5": "10588d602db9eff04bd19e078b05a481", "pid": "1089339771", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1089339771", "numeration": "", "variant_name": ["Appelman, Jaco", "Appelman, Jacob Herre"], "preferred_name": "Appelman, Jaco H.", "authorized_access_point": "Appelman, Jaco H.", "biographical_information": ["Wirtschaftswissenschaftler", "Vollständiger Vorname: Jaco Herre"]} 1 +2020-09-24 13:15:55.576273 2020-09-24 13:15:55.576278 b5f932ff-ce0c-47f3-8995-c62d0d3d8f83 {"md5": "608f7899ebcc4cb1e687ef87791a9bf2", "pid": "1056159278", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1056159278", "numeration": "", "variant_name": ["Giusti, Giovanni", "Giusti, Giambattista", "Giusti, G.B."], "date_of_birth": "1758", "date_of_death": "1829", "preferred_name": "Giusti, Giovanni Battista", "authorized_access_point": "Giusti, Giovanni Battista, 1758-1829", "biographical_information": ["ital. Literat und Ingenieur", "Übersetzer"]} 1 +2020-09-24 13:15:56.652661 2020-09-24 13:15:56.652666 6122a4dc-9b27-4f91-8363-7adb368d0a21 {"md5": "67fede2ca5e69017ff5646314e7d8265", "pid": "1089511663", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1089511663", "numeration": "", "variant_name": ["Roja, Nicolás"], "preferred_name": "Rojas, Nicolás", "authorized_access_point": "Rojas, Nicolás", "biographical_information": ["Biologe"]} 1 +2020-09-24 13:15:57.093994 2020-09-24 13:15:57.093999 93d40bbc-d56c-4bb8-8ee5-434d2193f8cb {"md5": "ec4361014520273e3d6cf7f8d86efdc0", "pid": "132327147", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/132327147", "numeration": "", "preferred_name": "Ruff, Joshua", "authorized_access_point": "Ruff, Joshua", "biographical_information": ["Curator at the Long Island Museum of American Art, History and Carriages"]} 1 +2020-09-24 13:15:57.509322 2020-09-24 13:15:57.509328 d7fc2238-fe10-415e-84a0-a415ebab03da {"md5": "ec5f1221ff84e0bf4fcd35f194ed65fc", "pid": "1139789902", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1139789902", "numeration": "", "variant_name": ["Mignaburu-Berho, Magdalena E.", "Berho, Magdalena E. Mignaburu", "Mignaburu, Magdalena"], "date_of_birth": "1955", "preferred_name": "Mignaburu Berho, Magdalena E.", "authorized_access_point": "Mignaburu Berho, Magdalena E., 1955-"} 1 +2020-09-24 13:15:57.933503 2020-09-24 13:15:57.933508 60736cbd-8005-4f52-a6f3-b4aa8816d51d {"md5": "d71dfd29bd014d8addfb432838b3ed4e", "pid": "1146518064", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1146518064", "numeration": "", "variant_name": ["Jakkarāju Veṅkaṭakavi", "Veṃkaṭakavi, Jakkarāju"], "preferred_name": "Veṅkaṭakavi, Jakkarāju", "authorized_access_point": "Veṅkaṭakavi, Jakkarāju", "biographical_information": ["Ansetzung lt. Orientabt., TUUB, 27.04.2004"]} 1 +2020-09-24 13:15:58.36941 2020-09-24 13:15:58.369415 27ff11b4-a183-45b5-b058-5e4eef1065f8 {"md5": "1812db3f4cdb0a6c9d55b5b37afd9973", "pid": "1158249543", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1158249543", "numeration": "", "variant_name": ["LeTohic, Jacqueline", "LeTohic, Jacqueline P.-", "Proust, Jacqueline", "Tohic, Jacqueline P.- le", "Tohic, Jacqueline le"], "preferred_name": "Proust-LeTohic, Jacqueline", "authorized_access_point": "Proust-LeTohic, Jacqueline"} 1 +2020-09-24 13:15:59.134033 2020-09-24 13:15:59.134038 f33bad61-49a1-4611-9d3a-1a8de2bebfe1 {"md5": "e12d424773c6e45b86b245582662e7c4", "pid": "1032029374", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1032029374", "numeration": "", "date_of_birth": "19XX", "preferred_name": "Luard, Honey", "authorized_access_point": "Luard, Honey, 19XX-", "biographical_information": ["Head of publications and press at White Cube gallery in London (1992-); BA from the University of Manchester and an MA from the Courtauld Institute"]} 1 +2020-09-24 13:16:01.36089 2020-09-24 13:16:01.360895 85eeab3f-2b62-4684-b495-3dbc17222f5d {"md5": "91df1afc24a21823d3f24bcb2d145cb8", "pid": "1158559291", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1158559291", "numeration": "", "variant_name": ["Schwan, Wiltrud"], "preferred_name": "Brand, Wiltrud", "authorized_access_point": "Brand, Wiltrud"} 1 +2020-09-24 13:16:02.273233 2020-09-24 13:16:02.273238 fa9fd912-fb46-458e-af88-f80f30118530 {"md5": "80755a74ce8ddcdabbcdcc906999ce10", "pid": "103624163", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/103624163", "numeration": "", "variant_name": ["Nāğī, Hilāl", "Nāgī, Hilāl", "Nājī, Hilāl"], "preferred_name": "Nāǧī, Hilāl", "authorized_access_point": "Nāǧī, Hilāl"} 1 +2020-09-24 13:16:03.98049 2020-09-24 13:16:03.980495 9595e30d-d2d8-4756-9c3d-446384098b2f {"md5": "7929c81528fdb7ef18e4998111e97865", "pid": "139380027", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139380027", "numeration": "", "variant_name": ["Henschel, G. A. L.", "Henschelius, G. A."], "date_of_birth": "1806", "date_of_death": "1852", "preferred_name": "Henschel, G. A. Louis", "authorized_access_point": "Henschel, G. A. Louis, 1806-1852"} 1 +2020-09-24 13:16:05.177 2020-09-24 13:16:05.177005 db41d86c-272a-41bb-8bcd-502dd053cf9d {"md5": "718265d54b2c453d44083a13e5d429a3", "pid": "137858825", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/137858825", "numeration": "", "variant_name": ["Forster, Bill"], "date_of_birth": "1878", "preferred_name": "Breuer, Hermann", "authorized_access_point": "Breuer, Hermann, 1878-"} 1 +2020-09-24 13:16:05.616618 2020-09-24 13:16:05.616623 60947d2d-8b73-4671-9a40-3ca0193b1c59 {"md5": "6186a71dccdfabe434173f1134b8d75f", "pid": "1171152183", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1171152183", "numeration": "", "preferred_name": "Krausz, Barbara", "authorized_access_point": "Krausz, Barbara", "biographical_information": ["Dissertation Universität Stuttgart 2018, Fakultät Konstruktions-, Produktions- und Fahrzeugtechnik"]} 1 +2020-09-24 13:16:06.134492 2020-09-24 13:16:06.134497 62af023e-0985-4817-9018-e77a8ea34c8c {"md5": "9fc39e801ae3a0088e20f550685d7081", "pid": "1022552112", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1022552112", "numeration": "", "date_of_birth": "17.07.1968", "preferred_name": "Seftel, Joshua", "authorized_access_point": "Seftel, Joshua, 1968-"} 1 +2020-09-24 13:16:07.678342 2020-09-24 13:16:07.678348 5481826a-de19-4d72-a4aa-6fe62560d01a {"md5": "e49bbb7d495d25d62d2d6c1ddde19be9", "pid": "134851617", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/134851617", "numeration": "", "preferred_name": "Martin, Laura", "authorized_access_point": "Martin, Laura"} 1 +2020-09-24 13:16:08.092062 2020-09-24 13:16:08.092067 a72bc629-ad0e-40c6-a948-f03851fd0421 {"md5": "ad555c3f98672c33a24c53c24cdfbdd8", "pid": "108951431X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/108951431X", "numeration": "", "date_of_birth": "1916", "date_of_death": "2001", "preferred_name": "Koch, Howard W.", "authorized_access_point": "Koch, Howard W., 1916-2001", "biographical_information": ["Filmproduzent, Filmregisseur"]} 1 +2020-09-24 13:16:09.939584 2020-09-24 13:16:09.93959 cdbfc20a-95fd-4153-b1e6-92424802d0b3 {"md5": "a1e90bc43c74fcd660b20a440e138502", "pid": "1146703015", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1146703015", "numeration": "", "date_of_birth": "1948", "preferred_name": "Owens, Elizabeth", "authorized_access_point": "Owens, Elizabeth, 1948-"} 1 +2020-09-24 13:16:11.176327 2020-09-24 13:16:11.176332 6299e353-fc6f-4d6d-8746-1a98e30760bc {"md5": "ec4289912e46e42d4109c93fd8ab79bf", "pid": "1035018888", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1035018888", "numeration": "", "date_of_birth": "1937", "preferred_name": "Richter, Werner", "authorized_access_point": "Richter, Werner, 1937-", "biographical_information": ["Diss., Universität Köln, 1969"]} 1 +2020-09-24 13:16:12.012443 2020-09-24 13:16:12.012449 85338a5e-bf78-4028-9ff7-36894e87094f {"md5": "fa13e7657b35de812403c1edfae5044e", "pid": "1026199441", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1026199441", "numeration": "", "variant_name": ["Joseph, Branden W."], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Joseph, Branden Wayne", "authorized_access_point": "Joseph, Branden Wayne, ca. 20. Jh.", "biographical_information": ["Frank Gallipoli Professor of Modern and Contemporary Art and Director of Art Humanities, Columbia University, New York, Department of Art History and Archaeology (2006-); Ph.D. 1999"]} 1 +2020-09-24 13:16:13.141779 2020-09-24 13:16:13.141785 c98725aa-8adf-457e-9062-f20fae7d421b {"md5": "1bea86540f92dc4be35e75e18f545ed4", "pid": "136017282", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/136017282", "numeration": "", "preferred_name": "Dietrich, Peter", "authorized_access_point": "Dietrich, Peter", "biographical_information": ["Diss. Hamburg 2006, Erziehungswissenschaften, aus Weißenborn"]} 1 +2020-09-24 13:16:13.653092 2020-09-24 13:16:13.653098 ba235e4f-b975-47d9-8edf-6ca3c2ce4ced {"md5": "9b91fd03fc0254223e7d73627d042c2f", "pid": "137769032", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/137769032", "numeration": "", "preferred_name": "Schmitt, Karl", "authorized_access_point": "Schmitt, Karl", "biographical_information": ["Reiseführer"]} 1 +2020-09-24 13:16:14.175393 2020-09-24 13:16:14.175398 270d35d8-bc29-4d9f-b859-b4f790932169 {"md5": "76f768eb66245e404d3585074a230d12", "pid": "134550412", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/134550412", "numeration": "", "date_of_birth": "19XX", "preferred_name": "Walter, Peter", "authorized_access_point": "Walter, Peter, 19XX-"} 1 +2020-09-24 13:16:14.640324 2020-09-24 13:16:14.64033 356850ec-2eba-4ebf-b0f5-579b6da2ddf5 {"md5": "968ed7ac9dbca64084c6a10a52bd1e77", "pid": "134619102", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/134619102", "numeration": "", "date_of_birth": "1928", "preferred_name": "Zech, Carlferdinand", "authorized_access_point": "Zech, Carlferdinand, 1928-"} 1 +2020-09-24 13:16:15.047261 2020-09-24 13:16:15.047267 059cac9f-d1c4-4781-ab48-35a4a2dc815d {"md5": "8dfc24e47648749f9cb76bc725413ced", "pid": "120498464", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/120498464", "numeration": "", "date_of_birth": "1953", "preferred_name": "Frisch, Christine", "authorized_access_point": "Frisch, Christine, 1953-", "biographical_information": ["Sonderschul-Pädagogin"]} 1 +2020-09-24 13:16:16.150687 2020-09-24 13:16:16.150692 4bccc615-70a6-4c5c-ac46-e742732b50c7 {"md5": "d6722ad1d896744dd8b088c48d2523f1", "pid": "134563166", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/134563166", "numeration": "", "date_of_birth": "10.11.1939", "date_of_death": "01.02.2014", "preferred_name": "Zacher, Peter", "authorized_access_point": "Zacher, Peter, 1939-2014", "biographical_information": ["Musikkritiker u. Kommunalpolitiker; ab 1960 in Dresden."]} 1 +2020-09-24 13:16:16.649507 2020-09-24 13:16:16.649512 a3547181-efcd-4afb-ae24-8a30786c91e5 {"md5": "4f717662463af4a698ad2b6476ff71fe", "pid": "12981752X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/12981752X", "numeration": "", "date_of_birth": "1943", "date_of_death": "2018", "preferred_name": "Jurjevics, Juris", "authorized_access_point": "Jurjevics, Juris, 1943-2018", "biographical_information": ["Amerikan. Verleger; Schriftsteller"]} 1 +2020-09-24 13:16:17.710243 2020-09-24 13:16:17.710248 77c10d61-9170-4468-95f4-de6f91069bf3 {"md5": "e707fc08ce3b98cf4cd6c1c3d0ef6413", "pid": "130556939", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/130556939", "numeration": "", "date_of_birth": "1968", "preferred_name": "Krüger, Olaf", "authorized_access_point": "Krüger, Olaf, 1968-", "biographical_information": ["Philosoph und Sozialwissenschaftler, Fachgebiet: Wirtschafts- und Verkehrsgeschichte; Dipl.-Kaufmann"]} 1 +2020-09-24 13:16:18.148628 2020-09-24 13:16:18.148633 855a8e51-6891-44fc-a0b7-0e3b561dda8d {"md5": "86f4529749947369975b5e67b0940702", "pid": "139350101", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139350101", "numeration": "", "variant_name": ["Rodius, Henemannus"], "preferred_name": "Rode, Henemann", "authorized_access_point": "Rode, Henemann", "biographical_information": ["Verfasser eines Panegyrikons"]} 1 +2020-09-24 13:16:18.573638 2020-09-24 13:16:18.573642 2e71b7a9-9be1-4e2a-8dae-ee6e88e3d001 {"md5": "2d1fbe5f0a1f40c6c73e0e25ef5fdd22", "pid": "139355820", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139355820", "numeration": "", "date_of_birth": "1833", "date_of_death": "1893", "preferred_name": "Wiedhase, Heinrich Johann", "authorized_access_point": "Wiedhase, Heinrich Johann, 1833-1893"} 1 +2020-09-24 13:16:18.957358 2020-09-24 13:16:18.957364 c8efefa8-0cfd-410b-a923-c1250d95f114 {"md5": "461ce7f8d05e066c7cd25aea2087f8d9", "pid": "139361405", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139361405", "numeration": "", "date_of_birth": "1954", "preferred_name": "Gaeremynck, Veerle", "authorized_access_point": "Gaeremynck, Veerle, 1954-"} 1 +2020-09-24 13:16:19.383634 2020-09-24 13:16:19.383639 5e8129e1-8c95-45e4-b1d6-e0180d68d6ed {"md5": "e96034f8b13b3d17935448df70e426f8", "pid": "139376119", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139376119", "numeration": "", "variant_name": ["Nguyen, M. L."], "preferred_name": "Nguyen, Minh-Long", "authorized_access_point": "Nguyen, Minh-Long"} 1 +2020-09-24 13:16:19.817265 2020-09-24 13:16:19.81727 9f33dc0f-0326-41c6-b106-4c86a756d105 {"md5": "091daf1bd0007d7949b99aaf6375395c", "pid": "13938233X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/13938233X", "numeration": "", "date_of_birth": "14.06.1883", "date_of_death": "24.12.1936", "preferred_name": "Ratte, Ida", "authorized_access_point": "Ratte, Ida, 1883-1936", "biographical_information": ["Dt. Heimatschriftstellerin in Fredeburg "]} 1 +2020-09-24 13:16:20.229143 2020-09-24 13:16:20.229149 3dba63d4-8c16-42d6-830b-f1cc68a60bdc {"md5": "829dbb143c7b0a3d836d18abcfcd99f7", "pid": "139383050", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139383050", "numeration": "", "preferred_name": "Kloth, Andreas", "authorized_access_point": "Kloth, Andreas"} 1 +2020-09-24 13:16:20.652845 2020-09-24 13:16:20.65285 fc63ea9f-9fcc-4446-aa96-6c73c4223272 {"md5": "da7e97949b7f191fe109ad3d0eeac286", "pid": "1079304231", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1079304231", "numeration": "", "variant_name": ["Efrussi, Tatiana Aleksandrovna"], "date_of_birth": "1988", "preferred_name": "Efrussi, Tatiana", "authorized_access_point": "Efrussi, Tatiana, 1988-"} 1 +2020-09-24 13:16:21.054249 2020-09-24 13:16:21.054254 c877a6cb-51ce-4587-b604-2b587bd1cc83 {"md5": "1982899be88fe5a4243f63feec0df020", "pid": "1084358085", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://d-nb.info/gnd/1084358085", "numeration": "", "variant_name": ["Wagner, Richard", "Wagner, Richard", "Wagner, Richard", "Wagner, Richard"], "date_of_birth": "1813", "date_of_death": "1883", "preferred_name": "Wagner, Richard", "authorized_access_point": "Wagner, Richard, 1813-1883", "biographical_information": ["Titel bei Hunt: Siegfried (O Siegfreid! Dein war ich von je)"]} 1 +2020-09-24 13:16:21.497914 2020-09-24 13:16:21.497919 a5c66298-1b4d-4de6-8019-9aa57b38b7d1 {"md5": "e60b5c0294e12440e2685e1882b572cd", "pid": "1098168984", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1098168984", "numeration": "", "variant_name": ["Lappe, J. H. A.", "Lappe, Johann", "Lappe, Heinrich", "Lappe, August"], "date_of_birth": "ca. 1824", "preferred_name": "Lappe, Johann Heinrich August", "authorized_access_point": "Lappe, Johann Heinrich August, ca. 1824"} 1 +2020-09-24 13:16:22.497736 2020-09-24 13:16:22.49774 95fad05b-d68e-40e3-ad19-9aa5800bf0a1 {"md5": "10fbbc4e888d5e38db53f338a64e0056", "pid": "1146337116", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1146337116", "numeration": "", "variant_name": ["Carpentier, Louis-Laurent", "Carpentier, Laurent"], "date_of_birth": "1968", "preferred_name": "Laurent", "authorized_access_point": "Laurent, 1968-", "biographical_information": ["belg. Comiczeichner und Colorist"]} 1 +2020-09-24 13:16:23.61985 2020-09-24 13:16:23.619854 45db3ce5-dda8-47e0-8baf-4619bf685514 {"md5": "a6ccffa355cde9dc0e0cd7954733a83e", "pid": "139418598", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139418598", "numeration": "", "preferred_name": "Wang, Chonggang", "authorized_access_point": "Wang, Chonggang", "biographical_information": ["NEC Laboratories America, Princeton, NJ"]} 1 +2020-09-24 13:16:24.038731 2020-09-24 13:16:24.038736 5c795727-5238-461e-9241-02ca224bd4b1 {"md5": "cf6bfdbaf0be6a393e231ec1508f7ca7", "pid": "139422102", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139422102", "numeration": "", "variant_name": ["Georgoulas, Stratos"], "date_of_birth": "20./21. Jh.", "preferred_name": "Geōrgulas, Stratos", "authorized_access_point": "Geōrgulas, Stratos, 20./21. Jh."} 1 +2020-09-24 13:16:24.878502 2020-09-24 13:16:24.878507 53259341-8ab2-4dbd-97f7-a1a5ef6293e5 {"md5": "3d910ca839198b48acb52efa11e62c64", "pid": "13943237X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/13943237X", "numeration": "", "variant_name": ["Sköld, Beatrice Christensen"], "date_of_birth": "1941", "preferred_name": "Christensen Sköld, Beatrice", "authorized_access_point": "Christensen Sköld, Beatrice, 1941-"} 1 +2020-09-24 13:16:26.030185 2020-09-24 13:16:26.030191 5d5888a9-dc4a-4653-909c-a91a173b54ea {"md5": "a7a0dfe39de6de43f1b95301eaa6f9c2", "pid": "139476091", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139476091", "numeration": "", "date_of_birth": "1983", "preferred_name": "Metzele, Verena", "authorized_access_point": "Metzele, Verena, 1983-"} 1 +2020-09-24 13:16:26.771593 2020-09-24 13:16:26.771598 3e440c37-c118-41c8-b45f-c1d5a7ad644c {"md5": "141cc5353cdc50f53756785d461f284e", "pid": "139480056", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139480056", "numeration": "", "variant_name": ["Hillel, F."], "date_of_birth": "1865", "preferred_name": "Hillel, Feivel", "authorized_access_point": "Hillel, Feivel, 1865-"} 1 +2020-09-24 13:16:27.246094 2020-09-24 13:16:27.246098 b8cae0e2-652f-495c-abbd-01426e730686 {"md5": "ade763ef38a874bb5ab20b73aa4fc9be", "pid": "1187368121", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1187368121", "numeration": "", "date_of_birth": "1970", "preferred_name": "Tóth, Szilárd Tibor", "authorized_access_point": "Tóth, Szilárd Tibor, 1970-"} 1 +2020-09-24 13:16:27.667478 2020-09-24 13:16:27.667483 eb013efe-7cd0-4680-9277-18df95921ad9 {"md5": "1b1e9154f5f62cb6d9ec9346f780fd2d", "pid": "1146809913", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1146809913", "numeration": "", "variant_name": ["Teodorčik, K. F.", "Teodorčik, Kazimir Francevič"], "date_of_birth": "1891", "preferred_name": "Teodorčik, Kazimir F.", "authorized_access_point": "Teodorčik, Kazimir F., 1891-"} 1 +2020-09-24 13:16:28.324627 2020-09-24 13:16:28.324632 740265e5-34f3-4d22-8e6e-37a587590da9 {"md5": "28fab2128f76ec1edc1dff9ec7a31afd", "pid": "139494626", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139494626", "numeration": "", "date_of_birth": "1984", "preferred_name": "Kenner, Alessandra", "authorized_access_point": "Kenner, Alessandra, 1984-", "biographical_information": ["M.A. Philosophische Fak. an der Universität Erlangen-Nürnberg"]} 1 +2020-09-24 13:16:28.727248 2020-09-24 13:16:28.727252 1a15bd57-feef-407a-98a8-88a99fdc1300 {"md5": "06889dc3576016108d3ae847acfecd78", "pid": "139499571", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139499571", "numeration": "", "preferred_name": "Mandewirth, Sue", "authorized_access_point": "Mandewirth, Sue"} 1 +2020-09-24 13:16:29.149487 2020-09-24 13:16:29.149492 2b5cfdfb-3525-4b10-afb3-cd43224b296e {"md5": "10b55d42ac2f54f7f5dbcb90390ffa15", "pid": "139503072", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139503072", "numeration": "", "date_of_birth": "1864", "date_of_death": "1926", "preferred_name": "Klingatsch, Adolf", "authorized_access_point": "Klingatsch, Adolf, 1864-1926"} 1 +2020-09-24 13:20:40.350469 2020-09-24 13:20:40.350474 cae2068b-f2fc-492e-8fb3-97c88b5a3f1d {"md5": "152be73f0389e379d08b97df62397039", "pid": "140546391", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140546391", "numeration": "", "date_of_birth": "1976", "preferred_name": "Barniske, Anna-Magdalena", "authorized_access_point": "Barniske, Anna-Magdalena, 1976-"} 1 +2020-09-24 13:16:29.581157 2020-09-24 13:16:29.581162 f8b88961-7d64-43a3-97ce-6b80da23b906 {"md5": "7102411769e884a7e6f89a91ad2143ae", "pid": "139512950", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139512950", "numeration": "", "date_of_birth": "1859", "date_of_death": "1935", "preferred_name": "Ruhstrat, Franz", "authorized_access_point": "Ruhstrat, Franz, 1859-1935", "biographical_information": ["oldenburgischer Staatsminister"]} 1 +2020-09-24 13:16:30.070302 2020-09-24 13:16:30.070307 35ec1f5e-225b-464f-a420-7a3f8bcac414 {"md5": "9e98d4175f79a3121c76702bd2cee7aa", "pid": "139535489", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139535489", "numeration": "", "date_of_birth": "1979", "preferred_name": "Preuß, Anja", "authorized_access_point": "Preuß, Anja, 1979-", "biographical_information": ["Diss. Fachbereich Pharmazie, Univ. Marburg"]} 1 +2020-09-24 13:16:30.563174 2020-09-24 13:16:30.563179 4c65bef5-b14d-4b80-a18e-6f4dc978f773 {"md5": "ebef1a894f6b138e0692c3f62fa81a53", "pid": "139538461", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139538461", "numeration": "", "date_of_birth": "XX.XX.1806", "date_of_death": "28.04.1871", "preferred_name": "Trainer, Philipp", "authorized_access_point": "Trainer, Philipp, 1806-1871", "biographical_information": ["Dt. evang. Pfarrer aus Hilchenbach (Kreis Siegen-Wittgenstein)"]} 1 +2020-09-24 13:16:30.961482 2020-09-24 13:16:30.961486 39830f16-17a2-4a5d-b332-fffcc4810e4a {"md5": "149dc8578db4ee9c681a15e426b507a1", "pid": "139542043", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139542043", "numeration": "", "date_of_birth": "1968", "preferred_name": "Finke, Timo", "authorized_access_point": "Finke, Timo, 1968-"} 1 +2020-09-24 13:16:31.761118 2020-09-24 13:16:31.761123 468e6435-86a1-41d4-9251-be7586d87cf5 {"md5": "09210cfef674119d5a9e2dafe58a9cd1", "pid": "13954402X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/13954402X", "numeration": "", "date_of_birth": "1977", "preferred_name": "Nowak, Jacek", "authorized_access_point": "Nowak, Jacek, 1977-"} 1 +2020-09-24 13:16:32.191724 2020-09-24 13:16:32.191729 7dfb5362-92a1-4ac1-9479-f036f709c406 {"md5": "e1631c62fea3f3679d9e4ca988f2d4c4", "pid": "139549498", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139549498", "numeration": "", "variant_name": ["Hinkel, Franz Adolf Reinhold"], "date_of_birth": "14.01.1900", "preferred_name": "Hinkel, Reinhold", "authorized_access_point": "Hinkel, Reinhold, 1900-"} 1 +2020-09-24 13:16:32.977874 2020-09-24 13:16:32.977879 8ebebdfb-1360-45b2-ad8b-250829ebcba8 {"md5": "edbea60ba41458c2f59cf9ee28ac6a3e", "pid": "139555803", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139555803", "numeration": "", "variant_name": ["Zhiyong Yang", "Zhiyong, Yang"], "preferred_name": "Yang, Zhiyong", "authorized_access_point": "Yang, Zhiyong"} 1 +2020-09-24 13:16:33.374795 2020-09-24 13:16:33.3748 d3dc2827-f521-4756-b605-c85a3d200cb0 {"md5": "302d0cb2c93a6ad1e08b7d82c8299c06", "pid": "139571736", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139571736", "numeration": "", "date_of_birth": "12.09.1939", "preferred_name": "Jandl, Adolf", "authorized_access_point": "Jandl, Adolf, 1939-"} 1 +2020-09-24 13:16:33.796942 2020-09-24 13:16:33.796947 93a8b4b2-bd17-4fca-814f-7fdcebd8248f {"md5": "f7317ce1a55dc2c8e8bdda56e2cad6e4", "pid": "139572309", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139572309", "numeration": "", "variant_name": ["Kealy, Sean Patrick", "Kealy, Seán P."], "date_of_birth": "29.03.1937", "preferred_name": "Kealy, Sean P.", "authorized_access_point": "Kealy, Sean P., 1937-", "biographical_information": ["Prof. of philosophy and religion, Kenyatta Univ., Nairobi, Kenya; prof. of Biblical Studies an der Duquesne Univ., Pittsburgh, Pa."]} 1 +2020-09-24 13:16:34.306543 2020-09-24 13:16:34.306548 4e954393-ebb5-4c3a-80e4-8db4be8656c6 {"md5": "501016cde501cc7cc072d1038d947cae", "pid": "139612483", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139612483", "numeration": "", "date_of_birth": "1965", "preferred_name": "Merkel, Beate", "authorized_access_point": "Merkel, Beate, 1965-", "biographical_information": ["Diss. Fachbereich Medizin"]} 1 +2020-09-24 13:16:34.702125 2020-09-24 13:16:34.70213 e959a315-43c5-4691-b0c8-26b45cae0bba {"md5": "6a8be7a7c493a9b0d9593cd4fadfe542", "pid": "139621156", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139621156", "numeration": "", "variant_name": ["Salis, Johannes von"], "date_of_birth": "1546", "date_of_death": "1624", "preferred_name": "Salis, Johann von", "authorized_access_point": "Salis, Johann von, 1546-1624", "biographical_information": ["Montanunternehmer"]} 1 +2020-09-24 13:16:35.213335 2020-09-24 13:16:35.21334 3271ab26-c49e-4c49-b074-bf3abfe9da0b {"md5": "27aa810bde529c3c363f996fe73dd21b", "pid": "139621652", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139621652", "numeration": "", "date_of_birth": "1973", "preferred_name": "Sohst, Wiebke", "authorized_access_point": "Sohst, Wiebke, 1973-", "biographical_information": ["ist in der Kundenservice-Steuerung eines großen Unternehmens tätig; lebt im Siebengebirge bei Bonn und auf der Halbinsel Eiderstedt in Nordfriesland"]} 1 +2020-09-24 13:16:35.656394 2020-09-24 13:16:35.656399 b902e830-96a7-4ae1-88c9-eda8443858c4 {"md5": "4c05dd379ef6145d079e4b4096b13238", "pid": "139622675", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139622675", "numeration": "", "date_of_birth": "1971", "preferred_name": "Schwandt, Michael", "authorized_access_point": "Schwandt, Michael, 1971-", "biographical_information": ["Publikationen zu kritischer Theorie, Antisemitismus und Gedenkstättenpädagogik"]} 1 +2020-09-24 13:16:36.308455 2020-09-24 13:16:36.30846 95922ad4-57fa-4a96-bb0e-cdaea1274238 {"md5": "78cc232d527aa9cb7cb001f81136c744", "pid": "139626417", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139626417", "numeration": "", "date_of_birth": "1968", "preferred_name": "Bernheimer, Andrew", "authorized_access_point": "Bernheimer, Andrew, 1968-", "biographical_information": ["US-Amerikan. Architekt"]} 1 +2020-09-24 13:16:37.083153 2020-09-24 13:16:37.083158 0db408ed-1c66-4f70-86b0-768c7c022f3e {"md5": "e92de74cc0d4d9cc0d17d62bee4daa06", "pid": "13962693X", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/13962693X", "numeration": "", "date_of_birth": "24.06.1944", "preferred_name": "Goetz, Arturo", "authorized_access_point": "Goetz, Arturo, 1944-", "biographical_information": ["Argentin. Filmschauspieler"]} 1 +2020-09-24 13:16:37.915567 2020-09-24 13:16:37.915572 ebde7cbb-b0ea-4c2f-9d61-40794003caba {"md5": "a456fd53b6c37777c12cc48190664889", "pid": "139630147", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139630147", "numeration": "", "date_of_birth": "1979", "preferred_name": "Dubbini, Rachele", "authorized_access_point": "Dubbini, Rachele, 1979-"} 1 +2020-09-24 13:16:38.66627 2020-09-24 13:16:38.666277 f6c13168-6996-4c8b-b8e4-266e60ace798 {"md5": "3026a9131ca3d5c766fca843840f828c", "pid": "1173303146", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1173303146", "numeration": "", "date_of_birth": "1960", "preferred_name": "Lavold, Bente", "authorized_access_point": "Lavold, Bente, 1960-", "biographical_information": ["Mitarbeiterin der norwegischen Nationalbibliothek"]} 1 +2020-09-24 13:16:40.102983 2020-09-24 13:16:40.102988 9a27620e-e345-45d7-811e-c11688d43cd1 {"md5": "c8e094460855dc52055a3dc033443828", "pid": "1143635876", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1143635876", "numeration": "", "preferred_name": "Ranganathan, Thiagu", "authorized_access_point": "Ranganathan, Thiagu"} 1 +2020-09-24 13:16:40.560537 2020-09-24 13:16:40.560542 975f4f6b-c762-4c4e-b83a-0ae19119486a {"md5": "53bbf335ee2c5f91691d3dc80a2b45bf", "pid": "1147618305", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1147618305", "numeration": "", "variant_name": ["Rohling, E. J."], "preferred_name": "Rohling, Eelco J.", "authorized_access_point": "Rohling, Eelco J."} 1 +2020-09-24 13:16:41.066229 2020-09-24 13:16:41.066234 53f6fe2b-36c4-41e6-b024-8f73f36e6a5e {"md5": "70518223069c01a8484572e1be6ab0ac", "pid": "1104279754", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1104279754", "numeration": "", "variant_name": ["Yang Rui", "杨, 蕤", "楊蕤", "楊, 蕤"], "date_of_birth": "1975", "preferred_name": "Yang, Rui", "authorized_access_point": "Yang, Rui, 1975-"} 1 +2020-09-24 13:16:41.854449 2020-09-24 13:16:41.854454 2e1b72b2-d37a-4186-ab36-4f839d2a8c1d {"md5": "0a0ba802436df3a338acc5d60269f1b8", "pid": "1020513020", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1020513020", "numeration": "", "preferred_name": "Neaum, Michael", "authorized_access_point": "Neaum, Michael", "biographical_information": ["Engl. Arrangeur und Komponist; musikal. Begleiter, 1972-2007 regulärer Begleiter des Cantamus Girl's Choir; Gesangscoach"]} 1 +2020-09-24 13:16:42.751062 2020-09-24 13:16:42.751067 71248da1-5ce7-4304-9e4c-36bfc7f23e98 {"md5": "bf9ba824bb109db736fb7674e71a12e5", "pid": "1025155637", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1025155637", "numeration": "", "variant_name": ["Wen, Bin Lim", "Wen Bin Lim"], "preferred_name": "Lim, Wen Bin", "authorized_access_point": "Lim, Wen Bin"} 1 +2020-09-24 13:16:43.195416 2020-09-24 13:16:43.195421 195e156d-2be3-4479-bccd-6de07c9f92cf {"md5": "b1f7c4016b4632f5f778963b5c70b4dd", "pid": "1081682752", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1081682752", "numeration": "", "preferred_name": "Pulipaka, Ganapathi", "authorized_access_point": "Pulipaka, Ganapathi"} 1 +2020-09-24 13:16:43.634805 2020-09-24 13:16:43.63481 d81aa29b-3905-4f26-a404-2dc33794768a {"md5": "bea991afd211f217c6bbdc72ed1ffbc8", "pid": "1081429097", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1081429097", "numeration": "", "variant_name": ["Unwirth, Gregorius", "Unwird, Gregor", "Unwird, Gregorius", "Unwirdt, Gregor"], "date_of_birth": "1542", "date_of_death": "1601", "preferred_name": "Unwirth, Gregor", "authorized_access_point": "Unwirth, Gregor, 1542-1601"} 1 +2020-09-24 13:16:45.554368 2020-09-24 13:16:45.554373 295f9172-18ad-4629-9184-98d0f7eace26 {"md5": "bb7b4458561518906faaddfe61adc329", "pid": "1095234463", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "Familie : 1703- : Heubisch", "identifier": "http://d-nb.info/gnd/1095234463", "numeration": "", "preferred_name": "Löhlein Familie : 1703- : Heubisch", "authorized_access_point": "Löhlein, Familie : 1703- : Heubisch", "biographical_information": ["Müllerfamilie, seit 1703 in Heubisch ansässig, später auch im Coburger und Neustädter Gebiet; Nachkommen teilweise als Pfarrer, Musiker und Komponisten bekannt"]} 1 +2020-09-24 13:16:46.715706 2020-09-24 13:16:46.715711 47ba7c94-14e9-4549-8b68-940ebf826dd2 {"md5": "67a7bb812988ee602c669153258c13d7", "pid": "1102915556", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1102915556", "numeration": "", "variant_name": ["Delius, Frederick"], "date_of_birth": "1862", "date_of_death": "1934", "preferred_name": "Delius, Frederick", "authorized_access_point": "Delius, Frederick, 1862-1934"} 1 +2020-09-24 13:16:47.657192 2020-09-24 13:16:47.657197 559e23ef-c192-4666-b478-652f0dafc8e8 {"md5": "330de1cb3f32f3beb57b68122d6c4b8a", "pid": "1177717379", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1177717379", "numeration": "", "variant_name": ["Davies, John Michael"], "date_of_birth": "1942", "preferred_name": "Davies, John", "authorized_access_point": "Davies, John, 1942-"} 1 +2020-09-24 13:16:49.447408 2020-09-24 13:16:49.447413 d59a5ee0-6b74-426e-addc-e974fe264f90 {"md5": "47a01a92a8eeb7faaf0c03fd30a2173f", "pid": "1139311719", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1139311719", "numeration": "", "variant_name": ["Ingólfsdóttir, Auður H."], "date_of_birth": "1970", "preferred_name": "Auður H. Ingólfsdóttir", "authorized_access_point": "Auður H. Ingólfsdóttir, 1970-", "biographical_information": ["BA (International studies, University of Washington, Seattle), post graduate diploma (Professional journalism, University of Iceland), MA (International relations, Fletcher School of Law and Diplomacy, Tufts University, Boston), PhD (Universität Lappland, Rovaniemi, 2016), Assistant Professor an der Universität Bifröst (Island)"]} 1 +2020-09-24 13:16:49.892429 2020-09-24 13:16:49.892435 c610b7fd-b3ea-4ed2-a6e5-37339987e584 {"md5": "72192567d852b3ae2d7b17ce2ad7b731", "pid": "1140075810", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1140075810", "numeration": "", "preferred_name": "Bayer, Timo", "authorized_access_point": "Bayer, Timo", "biographical_information": ["Wissenschaftl. Mitarbeiter am DFG-Projekt Richard Kleine, Lehrstuhl für Systemat. Theologie, Institut für Kathol. Theologie, Universität des Saarlandes"]} 1 +2020-09-24 13:16:50.33526 2020-09-24 13:16:50.335265 5bf80fa4-2264-4d70-a004-8049ae381dce {"md5": "bb38cf7dccfc842c1532972d4d41646e", "pid": "1140557696", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1140557696", "numeration": "", "variant_name": ["Schimitzek, Friedrich Wilhelm"], "date_of_birth": "12.01.1892", "preferred_name": "Schimitzek, Friedrich", "authorized_access_point": "Schimitzek, Friedrich, 1892-"} 1 +2020-09-24 13:16:50.749538 2020-09-24 13:16:50.749543 c671b7bf-2ddd-47e6-9d77-be92027bcacd {"md5": "59c555549444970c52d7e1df94238f45", "pid": "1117731855", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1117731855", "numeration": "", "preferred_name": "Leahy, Tamara", "authorized_access_point": "Leahy, Tamara", "biographical_information": ["Chied of Staff, Military and Defence Studies Program, Australian Command and Staff College ; 2011 BA of Law, Australian National UNiversity"]} 1 +2020-09-24 13:16:51.147108 2020-09-24 13:16:51.147112 5dad0b86-c8a9-4c62-8600-3ef997cafc94 {"md5": "3707049dd511750596217bae14ffefa0", "pid": "1143266722", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1143266722", "numeration": "", "variant_name": ["Richter, Regina"], "date_of_birth": "12.01.1954", "date_of_death": "22.10.2017", "preferred_name": "Gorjewa, Regina", "authorized_access_point": "Gorjewa, Regina, 1954-2017"} 1 +2020-09-24 13:16:51.847192 2020-09-24 13:16:51.847197 735eba08-ec50-4f0c-a050-ef7f9628013d {"md5": "722c4af6c8b3e0023ac0772a2445716d", "pid": "1148667989", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1148667989", "numeration": "", "variant_name": ["Schriver, Randall", "Schriver, Randy"], "preferred_name": "Schriver, Randall G.", "authorized_access_point": "Schriver, Randall G.", "biographical_information": ["Beziehungen Taiwan-USA, Beziehungen USA-Asien, Verteidigungs-/Sicherheitspolitik"]} 1 +2020-09-24 13:16:52.557071 2020-09-24 13:16:52.557075 eceb20bb-c88b-4126-9e57-61fdf806dcda {"md5": "5edf38a6f64d5646587bb30f891b9496", "pid": "1158574614", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1158574614", "numeration": "", "variant_name": ["Chernyshova, Nina Vasylivna", "Černyšova, Nina Vasylivna"], "preferred_name": "Černyšova, Nina V.", "authorized_access_point": "Černyšova, Nina V."} 1 +2020-09-24 13:16:53.892441 2020-09-24 13:16:53.892446 b2d41cec-d8f8-4e4d-a325-8302f384289d {"md5": "92346f9bafb2fb3e438219ea29c864bd", "pid": "1154802817", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1154802817", "numeration": "", "variant_name": ["Fischer, Jan Benedikt"], "preferred_name": "Fischer, Jan-Benedikt", "authorized_access_point": "Fischer, Jan-Benedikt"} 1 +2020-09-24 13:16:54.490798 2020-09-24 13:16:54.490803 7e436d5b-72c4-47f7-8109-4a6266b5cca7 {"md5": "84eb587ec9e1deab2739b391a5a3eb40", "pid": "171898966", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/171898966", "numeration": "", "preferred_name": "Gerardi, Dino", "authorized_access_point": "Gerardi, Dino"} 1 +2020-09-24 13:16:55.175873 2020-09-24 13:16:55.175878 d62b1216-5cd9-41d1-820e-1808c4f1237e {"md5": "f2dbd2ea4d2d8263e2fed24a67db1318", "pid": "1165269503", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1165269503", "numeration": "", "variant_name": ["Birch, Suzanne E. Pilaar"], "preferred_name": "Pilaar Birch, Suzanne E.", "authorized_access_point": "Pilaar Birch, Suzanne E."} 1 +2020-09-24 13:16:55.633596 2020-09-24 13:16:55.633601 e0df27ec-3644-4b53-bd29-e099405a1445 {"md5": "ca739763982a68585cbb0a5bcc9a0b77", "pid": "1165187388", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1165187388", "numeration": "", "variant_name": ["Malik, Randa Abdel"], "preferred_name": "Abdel Malik, Randa", "authorized_access_point": "Abdel Malik, Randa", "biographical_information": ["Diss. Fachbereich Biochemie, Chemie und Pharmazie an der Univ. Frankfurt am Main (2018)"]} 1 +2020-09-24 13:16:56.060172 2020-09-24 13:16:56.060178 fe4deea1-17ea-4a0d-a18f-f58499ef3715 {"md5": "82812d44925f8ace557427a2ed101be2", "pid": "1165547821", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1165547821", "numeration": "", "preferred_name": "Beß, Christoph von", "authorized_access_point": "Beß, Christoph von", "biographical_information": ["aus schlesischem Adel; 1614 im Collegium illustre zu Tübingen"]} 1 +2020-09-24 13:16:57.065126 2020-09-24 13:16:57.065131 ce41a51a-0a37-4a71-ba67-6c2cf505ef25 {"md5": "cc9760a653a66e7a591d62579af772c0", "pid": "1168178509", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1168178509", "numeration": "", "variant_name": ["Coca, Juana Gamero de"], "date_of_birth": "1959", "date_of_death": "2017", "preferred_name": "Gamero de Coca, Juana", "authorized_access_point": "Gamero de Coca, Juana, 1959-2017"} 1 +2020-09-24 13:16:57.769703 2020-09-24 13:16:57.769707 d1fe4452-da04-49b8-abbc-52a1fdee026d {"md5": "07e8adb85d913c09f240b3d594b74a98", "pid": "1050328639", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1050328639", "numeration": "", "preferred_name": "Adams, Seonaidh", "authorized_access_point": "Adams, Seonaidh", "biographical_information": ["Gälisch-Lehrer"]} 1 +2020-09-24 13:16:58.200967 2020-09-24 13:16:58.200972 f1d36dfc-5caa-4d53-9851-15adda35a0e0 {"md5": "82ca63a6c8e5e12972ca1ed770662033", "pid": "132272105", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/132272105", "numeration": "", "preferred_name": "Matthews, Gelien", "authorized_access_point": "Matthews, Gelien", "biographical_information": ["Caribbean Nazarene College, Trinidad and Tobago"]} 1 +2020-09-24 13:16:59.353432 2020-09-24 13:16:59.353437 55e77507-21e5-4931-af4a-3adab801abf3 {"md5": "4db702e2072fb02d70a76ad4b55fe270", "pid": "1193659566", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1193659566", "numeration": "", "preferred_name": "Montesinos, Jesús", "authorized_access_point": "Montesinos, Jesús"} 1 +2020-09-24 13:16:59.844033 2020-09-24 13:16:59.844038 6652f3a8-05da-4103-9657-4f42829a0eae {"md5": "fd719d9040d70c2be965947b2e79a23f", "pid": "137960344", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/137960344", "numeration": "", "variant_name": ["Quintana, María Esther", "Quintana M., María Esther"], "preferred_name": "Quintana Millamoto, María Esther", "authorized_access_point": "Quintana Millamoto, María Esther", "biographical_information": ["Uruguay. Hispanistin; lebt und Unterrichtet in die USA"]} 1 +2020-09-24 13:17:00.972873 2020-09-24 13:17:00.972878 ffbc3182-daba-4b66-8906-1f818c7655f5 {"md5": "511af7b3abc4b76810bbe713f0dbae3e", "pid": "1201779243", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1201779243", "numeration": "", "variant_name": ["Ufer, Jörg", "Ufer, Jörg R.", "Dr. Nordschleife"], "preferred_name": "Ufer, Jörg-Richard", "authorized_access_point": "Ufer, Jörg-Richard", "biographical_information": ["Schreibt Bücher über die Autorennen am Nürburgring"]} 1 +2020-09-24 13:17:01.408122 2020-09-24 13:17:01.408127 284f81c4-b00c-40b3-9972-536f9ea3ca91 {"md5": "0d9fb45252991ef5eb14c57b5698853d", "pid": "1210233460", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1210233460", "numeration": "", "date_of_birth": "1896", "preferred_name": "Illig, Hermann", "authorized_access_point": "Illig, Hermann, 1896-"} 1 +2020-09-24 13:17:01.835316 2020-09-24 13:17:01.835321 0406725f-e480-4c5f-a836-744050f2681a {"md5": "281640b05309441de45c5740b768272b", "pid": "115845760X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/115845760X", "numeration": "", "variant_name": ["Kashnecky, Alexandre"], "preferred_name": "Kašickij, Aleksandr", "authorized_access_point": "Kašickij, Aleksandr"} 1 +2020-09-24 13:17:02.263821 2020-09-24 13:17:02.263826 3934d74c-c24c-4f92-93f3-7612f2614bec {"md5": "b0ecc18c3454ccd9cd7f500434fb9baa", "pid": "115909358X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/115909358X", "numeration": "", "variant_name": ["Vilhelm Hertug af Glyksborg", "Vilhelm Hertug af Glyksborg"], "preferred_name": "Wilhelm Herzog von Schleswig-Holstein-Sonderburg-Gluecksburg", "authorized_access_point": "Wilhelm Herzog von Schleswig-Holstein-Sonderburg-Gluecksburg"} 1 +2020-09-24 13:17:03.040596 2020-09-24 13:17:03.040601 27bca793-8df3-48ca-bb30-a9db81b75a1e {"md5": "291ede082d812b8d8512a1245d78186b", "pid": "1061016382", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1061016382", "numeration": "", "date_of_birth": "1854", "date_of_death": "1945", "preferred_name": "Cohen, Louis", "authorized_access_point": "Cohen, Louis, 1854-1945", "biographical_information": ["Engl. Journalist, Schriftsteller,Diamantenhändler und Makler"]} 1 +2020-09-24 13:17:03.528482 2020-09-24 13:17:03.528488 4e87f709-5eca-4858-b2b5-55fb98207d01 {"md5": "b258bd7df1cc016534781b1b52a72a9e", "pid": "14275210X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/14275210X", "numeration": "", "date_of_birth": "1952", "preferred_name": "Haas, Jean-François", "authorized_access_point": "Haas, Jean-François, 1952-"} 1 +2020-09-24 13:17:05.227417 2020-09-24 13:17:05.227422 157f6141-7914-45c2-97c5-0e6e6be5720e {"md5": "fb6647a10a57725af0974ff813644dfc", "pid": "117948682X", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/117948682X", "numeration": "", "date_of_birth": "1962", "preferred_name": "Sperka, Jerzy", "authorized_access_point": "Sperka, Jerzy, 1962-"} 1 +2020-09-24 13:17:06.048853 2020-09-24 13:17:06.048858 1f7219b3-ebe4-4723-b593-df86b40bb708 {"md5": "8502bb7e9d570f8a8e2fc7495e2c1c2c", "pid": "1032305649", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1032305649", "numeration": "", "variant_name": ["Czechowicz, Gabrjel"], "date_of_birth": "02.10.1876", "date_of_death": "22.01.1938", "preferred_name": "Czechowicz, Gabriel", "authorized_access_point": "Czechowicz, Gabriel, 1876-1938", "biographical_information": ["Poln. Jurist; Ökonom; Politiker; von 1926 bis 1928 Finanzminister in Polen"]} 1 +2020-09-24 13:17:07.430592 2020-09-24 13:17:07.430598 3b651a3d-e0cc-4404-89f5-b73e75143ad5 {"md5": "b44fe1306fa3b4eb161d52c6ecc88225", "pid": "1063814340", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1063814340", "numeration": "", "date_of_birth": "1910", "date_of_death": "1997", "preferred_name": "Bielawski, Józef", "authorized_access_point": "Bielawski, Józef, 1910-1997", "biographical_information": ["Arabist, Wissenschaftler, Übersetzer Jura Universität Kraków, Orientalistik Ankara, Professor Universität Warszawa, Mitglied Akademie der Wissenschaften Irak"]} 1 +2020-09-24 13:17:08.479805 2020-09-24 13:17:08.479811 35f9acdd-ec02-4f23-ad7a-48bc287f5ea3 {"md5": "415e4780ebd18495d35294d7702382d8", "pid": "117143553", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/117143553", "numeration": "", "variant_name": ["Prus, Marian Morelovski de", "Morelowski, Marian"], "date_of_birth": "02.03.1884", "date_of_death": "25.07.1963", "preferred_name": "Morelovski de Prus, Marian", "authorized_access_point": "Morelovski de Prus, Marian, 1884-1963"} 1 +2020-09-24 13:17:09.405334 2020-09-24 13:17:09.405339 a40cd979-5eae-4189-a6a9-060cb4273d17 {"md5": "22e66a9581ad3ffc2674250aa4009179", "pid": "1038798124", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1038798124", "numeration": "", "date_of_birth": "1952", "preferred_name": "Madryas, Cezary", "authorized_access_point": "Madryas, Cezary, 1952-"} 1 +2020-09-24 13:17:10.94908 2020-09-24 13:17:10.949086 398d8250-9404-4af0-92ba-a1b01cdc74f6 {"md5": "e3723bcfe45b09b134ba83d6dced2d62", "pid": "1055200525", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1055200525", "numeration": "", "date_of_birth": "1777", "date_of_death": "1825", "preferred_name": "Hallager, Laurents", "authorized_access_point": "Hallager, Laurents, 1777-1825"} 1 +2020-09-24 13:17:11.526402 2020-09-24 13:17:11.526408 dd7d4194-45e5-4960-9859-b95a81164c37 {"md5": "0f991fbad9a172bb87c6981a8a61cc17", "pid": "127283447", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/127283447", "numeration": "", "date_of_birth": "1926", "preferred_name": "Zbierski, Andrzej", "authorized_access_point": "Zbierski, Andrzej, 1926-"} 1 +2020-09-24 13:17:12.512215 2020-09-24 13:17:12.51222 1737bf28-4114-4888-9851-a82bdfe7389f {"md5": "ac4065fe03432c39f67f43d9a5d06855", "pid": "1131218620", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1131218620", "numeration": "", "date_of_birth": "07.08.1941", "date_of_death": "10.08.1991", "preferred_name": "Wróblewski, Jerzy", "authorized_access_point": "Wróblewski, Jerzy, 1941-1991", "biographical_information": ["Polski rysownik i autor komiksów"]} 1 +2020-09-24 13:17:13.077708 2020-09-24 13:17:13.077713 292e8220-74ef-43f5-b460-f6c153b32f60 {"md5": "52f750043428dbfe525cc1384fb9a14e", "pid": "170064344", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/170064344", "numeration": "", "variant_name": ["Milanovski, Vlodzimež"], "preferred_name": "Milanowski, Wlodzimierz", "authorized_access_point": "Milanowski, Wlodzimierz"} 1 +2020-09-24 13:17:14.774191 2020-09-24 13:17:14.774196 41567c16-3bfb-4fca-8d8a-be4de888d0b6 {"md5": "63c264546cd1e65b7f91a9e90507451a", "pid": "1153744600", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1153744600", "numeration": "", "variant_name": ["Kruppé, Jerzy Józef", "Czajka"], "date_of_birth": "1931", "preferred_name": "Kruppé, Jerzy", "authorized_access_point": "Kruppé, Jerzy, 1931-"} 1 +2020-09-24 13:17:17.314823 2020-09-24 13:17:17.314828 f8863a63-ffa8-456d-965e-7a2243b3feaf {"md5": "7690418a951a71208fbafb7db2ef0e21", "pid": "1079732772", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1079732772", "numeration": "", "date_of_birth": "1878", "preferred_name": "Krennitz, Franz", "authorized_access_point": "Krennitz, Franz, 1878-", "biographical_information": ["1909 an der Akademie der Bildenden Künste München"]} 1 +2020-09-24 13:17:17.815854 2020-09-24 13:17:17.815859 4ce6ddb6-0afa-4611-9836-8ec71d35114d {"md5": "0ee411d97b6263f0a0a88bf5af9b5722", "pid": "1131199715", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1131199715", "numeration": "", "date_of_birth": "1982", "preferred_name": "Shandilya, Smita", "authorized_access_point": "Shandilya, Smita, 1982-", "biographical_information": ["Arbeitet am Sagar Institute of Research Technology & Science, India"]} 1 +2020-09-24 13:17:19.412671 2020-09-24 13:17:19.412676 7418f902-bc81-4cfd-926e-fa28a916c2df {"md5": "cc6f1e659e35c994f24bb06ce50ea86f", "pid": "1157699162", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1157699162", "numeration": "", "preferred_name": "Mercker, G.", "authorized_access_point": "Mercker, G."} 1 +2020-09-24 13:17:20.223885 2020-09-24 13:17:20.22389 c7b77cc8-5834-49da-872a-b32f37a61d94 {"md5": "1569f7414a58070139eeb9c9c492b0b5", "pid": "1169953743", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1169953743", "numeration": "", "date_of_birth": "06.09.1828", "date_of_death": "01.03.1883", "preferred_name": "Schlichter, Christian", "authorized_access_point": "Schlichter, Christian, 1828-1883", "biographical_information": ["1882-1883 Erster Bürgermeister von Wiesbaden"]} 1 +2020-09-24 13:17:22.59068 2020-09-24 13:17:22.590685 5c88c7e4-4dc9-4460-8acc-c7395e2a36bb {"md5": "4e85a34257ffe6f2775637fcec53f4ef", "pid": "12864852X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/12864852X", "numeration": "", "date_of_birth": "1954", "preferred_name": "Schüßlburner, Josef", "authorized_access_point": "Schüßlburner, Josef, 1954-", "biographical_information": ["Regierungsdirektor; Studium der Rechtswissenschaften"]} 1 +2020-09-24 13:17:23.021545 2020-09-24 13:17:23.021549 e7344267-3938-458d-8c7b-95b5c143a882 {"md5": "5c45c3777da3ee07bf59e66aa7e8ee12", "pid": "137111223", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/137111223", "numeration": "", "variant_name": ["Woyna, Benedictus"], "date_of_death": "1615", "preferred_name": "Wojna, Benedyct", "authorized_access_point": "Wojna, Benedyct, -1615"} 1 +2020-09-24 13:17:23.731379 2020-09-24 13:17:23.731383 9a690460-83e8-44f9-bd20-034aedbd72d5 {"md5": "4c9e1f55a166db1ebc88df5b0b109df8", "pid": "107738338X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/107738338X", "numeration": "", "preferred_name": "Sibears, Daniel M.", "authorized_access_point": "Sibears, Daniel M."} 1 +2020-09-24 13:17:26.699238 2020-09-24 13:17:26.699243 6c968757-207e-4795-a377-c21130fce158 {"md5": "5be9d5afddedacd3e209fa41a7dfad04", "pid": "1055348328", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1055348328", "numeration": "", "variant_name": ["Lavoix, Henri Michel", "Lavoix, H.", "Lavoix, Michel Henri", "Lavoix, Henri-Michel"], "date_of_birth": "19.01.1820", "date_of_death": "23.10.1892", "preferred_name": "Lavoix, Henri", "authorized_access_point": "Lavoix, Henri, 1820-1892", "biographical_information": ["Conservateur au Département des médailles et antiques de la Bibliothèque Nationale, Paris. Critique dramatique et musical à l'\\"Illustration\\" sous le pseudonyme de Savigny"]} 1 +2020-09-24 13:17:28.111273 2020-09-24 13:17:28.111278 8c0017b0-6eec-465f-b2eb-e65bae40400c {"md5": "8dd6299229797b5112db48e65e7db80b", "pid": "1158387253", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1158387253", "numeration": "", "variant_name": ["Lapšin, Viktor", "Lapšin, Viktor Michajlovič"], "preferred_name": "Lapšin, Viktor M.", "authorized_access_point": "Lapšin, Viktor M."} 1 +2020-09-24 13:17:28.500918 2020-09-24 13:17:28.500925 f5df9aa0-3353-4ca4-a6d0-fff3f2019f82 {"md5": "62cad52d781341129d3d0ff6354157fc", "pid": "1158577125", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1158577125", "numeration": "", "variant_name": ["Cao, Xuân Mỹ", "Mỹ, Cao Xuân"], "preferred_name": "Cao-xuân-Mỹ", "authorized_access_point": "Cao-xuân-Mỹ"} 1 +2020-09-24 13:17:28.928828 2020-09-24 13:17:28.928833 41cb1b1d-6deb-44d7-99ba-55e5250f1387 {"md5": "512ec33759b7e857f4fcd12aee31a0c6", "pid": "132490846", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/132490846", "numeration": "", "preferred_name": "Peters, Christian", "authorized_access_point": "Peters, Christian"} 1 +2020-09-24 13:17:29.322405 2020-09-24 13:17:29.32241 3cfd50df-135c-4657-91da-9c5e97a28d5b {"md5": "5109ce4f95ac5de7a0583acdebe9e2b2", "pid": "11947428X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/11947428X", "numeration": "", "date_of_birth": "1720", "date_of_death": "1791", "preferred_name": "Sagramoso, Michele Enrico di", "authorized_access_point": "Sagramoso, Michele Enrico di, 1720-1791", "biographical_information": ["Ital. Adeliger"]} 1 +2020-09-24 13:17:29.732604 2020-09-24 13:17:29.732608 dbda0385-39d0-4080-aeae-8f5ccb3c7215 {"md5": "e13d7c26dfaa55c2c1bfb7a83c554546", "pid": "13905216X", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/13905216X", "numeration": "", "date_of_birth": "1947", "preferred_name": "Schneider, Helmut", "authorized_access_point": "Schneider, Helmut, 1947-", "biographical_information": ["Associate Dean of Research and Graduate Programs, E. J. Ourso College of Business, Louisiana State University", "Promotion Berlin, Freie Univ. 1978"]} 1 +2020-09-24 13:17:30.17046 2020-09-24 13:17:30.170466 6cef8d98-c633-424d-a2b8-59511d087a39 {"md5": "716237d75d6083fae9e0f7fe3613b48f", "pid": "134845870", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/134845870", "numeration": "", "preferred_name": "Walter, Albert", "authorized_access_point": "Walter, Albert"} 1 +2020-09-24 13:17:30.591965 2020-09-24 13:17:30.59197 e919c378-6abe-4af6-a05c-99ce11e6d5c3 {"md5": "82f35b0dde6be50bc79403710a74f0b9", "pid": "120759241", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/120759241", "numeration": "", "date_of_birth": "1971", "preferred_name": "Busch, Sylvia", "authorized_access_point": "Busch, Sylvia, 1971-", "biographical_information": ["Juristin"]} 1 +2020-09-24 13:17:31.403118 2020-09-24 13:17:31.403123 8df04bae-9782-4718-969c-894d20e2597b {"md5": "bd1f02a253c177f551c8ab154b489054", "pid": "134624149", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/134624149", "numeration": "", "preferred_name": "Wiedemann, Herbert", "authorized_access_point": "Wiedemann, Herbert", "biographical_information": ["1983 Promotion in Musikpädagogik. Seit 1988 Professor für Musikpädagogik an d. Univ. der Künste in Berlin"]} 1 +2020-09-24 13:17:32.223404 2020-09-24 13:17:32.223409 1c9ab868-07c9-4b17-81b5-b51d2e1a7eca {"md5": "2105dd9c28fc4cb428e07fbdf20fb5f6", "pid": "139649263", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139649263", "numeration": "", "date_of_birth": "1936", "preferred_name": "Goeßler, Jürgen", "authorized_access_point": "Goeßler, Jürgen, 1936-", "biographical_information": ["Dresden, Techn. Univ., Fak. Bau-, Wasser- und Forstwesen, Diplomarbeit, 1978"]} 1 +2020-09-24 13:17:32.70719 2020-09-24 13:17:32.707194 eabcc624-931f-478f-8e3f-9d9426e96c17 {"md5": "7795e5f6ec3d00075f7591f18b7abb2f", "pid": "1089267177", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1089267177", "numeration": "", "variant_name": ["Schimmel, Nikolaus"], "preferred_name": "Schimmel, Nikolaus W.", "authorized_access_point": "Schimmel, Nikolaus W.", "biographical_information": ["Klavierbauer, Deutschland"]} 1 +2020-09-24 13:17:41.545331 2020-09-24 13:17:41.545337 458905e0-fe54-4a84-8548-44ab9178349e {"md5": "6c909106fc0e4440eecec63b0f6b8cb6", "pid": "13976674X", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/13976674X", "numeration": "", "variant_name": ["Müller, Ludger Josef"], "date_of_birth": "1910", "preferred_name": "Müller, Ludger", "authorized_access_point": "Müller, Ludger, 1910-", "biographical_information": ["Münster, Med. Diss., 1936"]} 1 +2020-09-24 13:17:33.720906 2020-09-24 13:17:33.720911 97c0aada-b7f1-4df1-b47e-bd7426baae99 {"md5": "ee0819ecc3cf4f8bee4eaaf417034303", "pid": "139654526", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139654526", "numeration": "", "variant_name": ["Mattig, Heinrich von der"], "date_of_birth": "1827", "date_of_death": "07.07.1898", "preferred_name": "Wallmann, Heinrich", "authorized_access_point": "Wallmann, Heinrich, 1827-1898", "biographical_information": ["Oberösterreichischer Arzt, auch Lyriker und Mundartdichter; 1862: Dr. der Medizin u. Chirurgie, Magister der Geburtshilfe, k.k. Oberfeldarzt, Docent an der k.k. Universität zu Wien, emeritierter Prosector der k.k. med.-chir. Josefs-Akademie"]} 1 +2020-09-24 13:17:34.114805 2020-09-24 13:17:34.11481 381fb758-759d-496a-902e-97a55fbabc0d {"md5": "d2a19039606ae09f05ed81f489d83aec", "pid": "139655395", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139655395", "numeration": "", "variant_name": ["Dong, Ling Han", "Dong Ling Han"], "preferred_name": "Han, Dong Ling", "authorized_access_point": "Han, Dong Ling", "biographical_information": ["Tätig am Dep. of Industrial and Systems Engineering, National Univ. of Singapore"]} 1 +2020-09-24 13:17:34.511119 2020-09-24 13:17:34.511124 4c223499-eaed-498f-ac96-f0bab999778a {"md5": "d5623d8426398e663d85750f15423b80", "pid": "139659382", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139659382", "numeration": "", "date_of_birth": "1959", "preferred_name": "Bär, Frank", "authorized_access_point": "Bär, Frank, 1959-", "biographical_information": ["Dresden, Techn. Univ., Fak. Forst-, Geo- und Hydrowiss., Diss, 2009"]} 1 +2020-09-24 13:17:34.931996 2020-09-24 13:17:34.932 5ed26412-c5a4-470a-90fa-92d1cd5e820f {"md5": "19659f51f688b577014719c4f2b0af31", "pid": "139668136", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "Familie", "identifier": "http://d-nb.info/gnd/139668136", "numeration": "", "preferred_name": "Watty Familie", "authorized_access_point": "Watty, Familie", "biographical_information": ["Hamburger Familie mit Nebenlinien in Rheinland-Westfalen, Mexiko u. d. USA"]} 1 +2020-09-24 13:17:36.111684 2020-09-24 13:17:36.111689 aea202da-13f4-4cf9-8ddf-0529a411a3bc {"md5": "313088cc5520188e94831057c2d5622a", "pid": "139695125", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "language": ["jpn", "chi"], "qualifier": "", "identifier": "http://d-nb.info/gnd/139695125", "numeration": "", "preferred_name": "Nakajima, Shō", "authorized_access_point": "Nakajima, Shō", "biographical_information": ["Japan. Mongolist"]} 1 +2020-09-24 13:17:36.590968 2020-09-24 13:17:36.590973 e55eada9-c088-48d1-b82b-dba6c8614818 {"md5": "e4a9fb193ef37edef3614ab88f1216a9", "pid": "139705104", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139705104", "numeration": "", "date_of_birth": "1954", "preferred_name": "Birka, Hubertus", "authorized_access_point": "Birka, Hubertus, 1954-", "biographical_information": ["Dresden, Techn. Univ., Fak. Bau-, Wasser- und Forstwesen, Diplomarbeit, 1976"]} 1 +2020-09-24 13:17:37.107815 2020-09-24 13:17:37.10782 3c81a5e7-0d9f-4a1e-83cc-287e1a0aa3b3 {"md5": "4d45187f2b2f12569684f5816c08d617", "pid": "139708162", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139708162", "numeration": "", "date_of_birth": "21.11.1870", "date_of_death": "07.08.1944", "preferred_name": "Hopf, Friedrich Eugen", "authorized_access_point": "Hopf, Friedrich Eugen, 1870-1944", "biographical_information": ["dt. Dermatologe und Kommunalpolitiker, eröffnete 1898 eine private Hautklinik in Dresden; 1901-1911 Vorsitzender der Ortsgruppe Dresden des Alldeutschen Verbandes; 1903-1911 Stadtverordneter in Dresden"]} 1 +2020-09-24 13:17:37.81707 2020-09-24 13:17:37.817074 b30a3e12-3937-4b73-ac97-5c15f92cef57 {"md5": "8a77f82dd8cc2de061f431657449e426", "pid": "139708669", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139708669", "numeration": "", "date_of_birth": "XX.XX.1671", "date_of_death": "20.07.1743", "preferred_name": "Jacobi, Adam", "authorized_access_point": "Jacobi, Adam, 1671-1743", "biographical_information": ["dt. Baumeister und Ratsmaurermeister, an Bauarbeiten an Leipziger Kirchen beteiligt, 1733 beim Umbau des Leipziger Rathauses erwähnt"]} 1 +2020-09-24 13:17:38.199692 2020-09-24 13:17:38.199697 106eec88-6c89-40cb-a67f-52e38b74a0c3 {"md5": "72e127aef5ecea904ec03882c346c31f", "pid": "13971166X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/13971166X", "numeration": "", "date_of_birth": "1644", "date_of_death": "1691", "preferred_name": "Hinlopen, Gerard", "authorized_access_point": "Hinlopen, Gerard, 1644-1691"} 1 +2020-09-24 13:17:38.657275 2020-09-24 13:17:38.65728 26f78900-bbe2-4cab-9dbf-731059d7ecd5 {"md5": "b03d7f7e439693c264c0521f31dfa288", "pid": "139717676", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139717676", "numeration": "", "preferred_name": "Lee, Thomas H.", "authorized_access_point": "Lee, Thomas H."} 1 +2020-09-24 13:17:39.100997 2020-09-24 13:17:39.101001 b8dfb577-1c25-45fc-9fe7-16f372e2e25c {"md5": "915ba125eb71934046dcb28919b5af0f", "pid": "139719156", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139719156", "numeration": "", "date_of_birth": "1962", "preferred_name": "Canţâru, Grigore", "authorized_access_point": "Canţâru, Grigore, 1962-", "biographical_information": ["Philologe"]} 1 +2020-09-24 13:17:39.593471 2020-09-24 13:17:39.593476 97d386fa-7285-4400-a953-085f20c68635 {"md5": "d516ef0dd4f5f73b42ad44f3a0c0d990", "pid": "139733256", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139733256", "numeration": "", "preferred_name": "Fritz, Martin", "authorized_access_point": "Fritz, Martin", "biographical_information": ["Promotion an der Ludwig-Maximilians-Univ. München (1990)"]} 1 +2020-09-24 13:17:39.999431 2020-09-24 13:17:39.999436 b988a580-62fd-4f78-8b13-c106af548a58 {"md5": "a6fc7de553e340149e44658a23a1209c", "pid": "139734325", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139734325", "numeration": "", "preferred_name": "Stolte, Dirk", "authorized_access_point": "Stolte, Dirk"} 1 +2020-09-24 13:17:40.433136 2020-09-24 13:17:40.433141 3827da5c-8ec9-4f1e-8f73-590ed80eaa59 {"md5": "e154f082bcebb8b7cbd3b99dbc6d3a05", "pid": "139746927", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139746927", "numeration": "", "variant_name": ["Metzger, Joseph"], "date_of_birth": "ca. 16. Jh.", "preferred_name": "Metzker, Joseph", "authorized_access_point": "Metzker, Joseph, ca. 16. Jh.", "biographical_information": ["Goldschmied und Grafiker, zwischen 1565 und 1583 in Görlitz nachweisbar"]} 1 +2020-09-24 13:17:40.838157 2020-09-24 13:17:40.838162 a4a55b48-c973-4920-92fd-627e8a39c285 {"md5": "5133c40f5c77178f09f22bc5cc7f2395", "pid": "139751661", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139751661", "numeration": "", "preferred_name": "Golas, Lisa", "authorized_access_point": "Golas, Lisa"} 1 +2020-09-24 13:17:42.115519 2020-09-24 13:17:42.115525 639db655-df22-44e6-b849-edf31959ffe3 {"md5": "1be133866bdfb3d2e875db6358a72874", "pid": "139769366", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139769366", "numeration": "", "variant_name": ["Abraham, Ernst A."], "date_of_birth": "1906", "preferred_name": "Abraham, Ernst August", "authorized_access_point": "Abraham, Ernst August, 1906-", "biographical_information": ["Dipl.-Volkswirt"]} 1 +2020-09-24 13:17:42.819874 2020-09-24 13:17:42.819879 e28877c8-d67f-48d8-9f0d-33e1f8e9bb93 {"md5": "fed811e362b5337b7c82e4be45c2d814", "pid": "139772103", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139772103", "numeration": "", "date_of_birth": "1908", "preferred_name": "Strunz, Josef", "authorized_access_point": "Strunz, Josef, 1908-"} 1 +2020-09-24 13:17:43.24231 2020-09-24 13:17:43.242315 c6b8272c-a484-4212-9026-12aef1eb02df {"md5": "68e5fe6f9405b539e2c54f1cdecd8b70", "pid": "139774807", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "Familie", "identifier": "http://d-nb.info/gnd/139774807", "numeration": "", "date_of_birth": "ca. 13. Jh.", "preferred_name": "Gützkow Familie", "authorized_access_point": "Gützkow, Familie, ca. 13. Jh.-", "biographical_information": ["Grafen von Gützkow; pommersches Grafengeschlecht"]} 1 +2020-09-24 13:17:43.76593 2020-09-24 13:17:43.765935 4af96d9f-e294-4c73-bdd9-cc63311b5f24 {"md5": "cb549f0fe4f7c98f7331dde0a98ef9ad", "pid": "139794204", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139794204", "numeration": "", "date_of_birth": "1949", "preferred_name": "Hansen, Svein Bendik", "authorized_access_point": "Hansen, Svein Bendik, 1949-"} 1 +2020-09-24 13:17:44.156175 2020-09-24 13:17:44.15618 7222523d-a369-487b-b314-97b9052067e4 {"md5": "af198047ec64a048c1b6af936b255734", "pid": "139796282", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139796282", "numeration": "", "preferred_name": "Cappello, Silvia", "authorized_access_point": "Cappello, Silvia", "biographical_information": ["PhD in English studies"]} 1 +2020-09-24 13:17:44.578132 2020-09-24 13:17:44.578138 724cd4f8-e2ee-4b26-8f66-c23be2e69ca5 {"md5": "ff88e2c729531830bcbd08f977415fba", "pid": "139822542", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139822542", "numeration": "", "variant_name": ["Summerer, Carolin"], "date_of_birth": "1982", "preferred_name": "Hinkmann, Carolin", "authorized_access_point": "Hinkmann, Carolin, 1982-", "biographical_information": ["Diss. Medizinische Fakaltät an der Universität Erlangen-Nürnberg"]} 1 +2020-09-24 13:17:45.044596 2020-09-24 13:17:45.044601 0048d237-2062-49d5-ab5b-150f6e4ed5b2 {"md5": "a382aec31e9df29da4883479cf8f3dc8", "pid": "13983043X", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/13983043X", "numeration": "", "date_of_birth": "19.11.1926", "date_of_death": "08.02.2000", "preferred_name": "Ritsch, Felicitas", "authorized_access_point": "Ritsch, Felicitas, 1926-2000"} 1 +2020-09-24 13:17:45.457502 2020-09-24 13:17:45.457507 c449fbf1-57f6-4b30-b19b-3050e810933c {"md5": "f4287b3ed481c94840ad305d73d4b42b", "pid": "103807349", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/103807349", "numeration": "", "date_of_birth": "1917", "date_of_death": "1985", "preferred_name": "Yardumian, Richard", "authorized_access_point": "Yardumian, Richard, 1917-1985"} 1 +2020-09-24 13:17:45.89488 2020-09-24 13:17:45.894885 f5089e50-9d9c-4448-9b86-d42421c7796c {"md5": "a640f1ce451068ce07b4f2d6b1b67963", "pid": "139856072", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139856072", "numeration": "", "date_of_birth": "1973", "preferred_name": "Popp, Julius", "authorized_access_point": "Popp, Julius, 1973-"} 1 +2020-09-24 13:17:46.654655 2020-09-24 13:17:46.65466 f214f236-1ec1-42d2-bb26-1d7152e38b2e {"md5": "3324f7a61ebbdfcf5168e5f433c425cf", "pid": "103843914", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/103843914", "numeration": "", "variant_name": ["Laub, Wasa"], "date_of_birth": "1857", "date_of_death": "1911", "preferred_name": "Laub, Váša", "authorized_access_point": "Laub, Váša, 1857-1911"} 1 +2020-09-24 13:17:47.073148 2020-09-24 13:17:47.073153 57b398ba-21c4-43e6-807c-086ae850c06d {"md5": "442e3f9b125652f85b2a374d652a8880", "pid": "13986072X", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/13986072X", "numeration": "", "date_of_birth": "1962", "preferred_name": "Lee, Vivian P. Y.", "authorized_access_point": "Lee, Vivian P. Y., 1962-", "biographical_information": ["Univ. of Hong Kong"]} 1 +2020-09-24 13:17:47.871117 2020-09-24 13:17:47.871122 367d1272-69e9-43ed-9784-7c538d1468dc {"md5": "280d0a03ab350a4d1de11ddea53f3fe4", "pid": "139862269", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139862269", "numeration": "", "date_of_birth": "ca. ", "date_of_death": "19. Jh.", "preferred_name": "Schifferdecker, Eduard", "authorized_access_point": "Schifferdecker, Eduard, ca. -19. Jh.", "biographical_information": ["Bierbrauer"]} 1 +2020-09-24 13:17:48.292844 2020-09-24 13:17:48.29285 0496b133-9ce4-4fb0-ba9f-c4f7ae9e1e69 {"md5": "21890ab8ece8a57e159942b5bc4c2a4c", "pid": "139863249", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139863249", "numeration": "", "date_of_birth": "ca. ", "date_of_death": "20. Jh.", "preferred_name": "Dreizehner, Wilhelm", "authorized_access_point": "Dreizehner, Wilhelm, ca. -20. Jh.", "biographical_information": ["Schiffsbaumeister"]} 1 +2020-09-24 13:17:48.791826 2020-09-24 13:17:48.791831 dbf761bf-637b-4f8a-ac49-50925a0799c0 {"md5": "fc0b9df6033e2659841522ecd6670bb4", "pid": "139863915", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139863915", "numeration": "", "date_of_birth": "09.05.1939", "date_of_death": "07.01.2014", "preferred_name": "Lauer, David D.", "authorized_access_point": "Lauer, David D., 1939-2014", "biographical_information": ["Dt. Bildhauer"]} 1 +2020-09-24 13:17:49.568052 2020-09-24 13:17:49.568056 8262d66a-d59b-45df-a021-2a7846ce8fe8 {"md5": "f7ca51cd15f1ecef0f2c15094de86236", "pid": "139875484", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139875484", "numeration": "", "variant_name": ["Yu-Hwa, Huang"], "date_of_birth": "12.02.1979", "preferred_name": "Huang, Yu-Hwa", "authorized_access_point": "Huang, Yu-Hwa, 1979-", "biographical_information": ["Diss. Universität Würzburg, Fakultät für Biologie"]} 1 +2020-09-24 13:17:50.368029 2020-09-24 13:17:50.368034 7a9156f5-62f8-492f-bd0d-dc7b7cc619a7 {"md5": "e67ca3c19140743bb202cdd595b8986a", "pid": "139879994", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139879994", "numeration": "", "variant_name": ["Schuster, Kristin"], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Horstmann, Kristin", "authorized_access_point": "Horstmann, Kristin, ca. 20. Jh."} 1 +2020-09-24 13:20:51.389159 2020-09-24 13:20:51.389164 0c270e96-ec14-495f-876b-fa1ae2cdd389 {"md5": "2f3ec155e67a8c61dd738d97dcb5979c", "pid": "116144131X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/116144131X", "numeration": "", "date_of_birth": "1981", "preferred_name": "Reznick, Graham", "authorized_access_point": "Reznick, Graham, 1981-"} 1 +2020-09-24 13:17:50.803781 2020-09-24 13:17:50.803786 f338ce49-1260-47da-80ac-f6d8df901825 {"md5": "eb3d32606993b6b205c13b822383bf40", "pid": "139887741", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139887741", "numeration": "", "date_of_birth": "1979", "preferred_name": "Becker, Swetlana", "authorized_access_point": "Becker, Swetlana, 1979-", "biographical_information": ["Diss. Universität Erlangen-Nürnberg, Medizinische Fakultät"]} 1 +2020-09-24 13:17:51.230634 2020-09-24 13:17:51.230639 0442e332-7ef4-42a3-83b9-9714b7cb2dbc {"md5": "ca67dff7e764431a165194dfaf2259ef", "pid": "139889345", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139889345", "numeration": "", "variant_name": ["Fraser, Helen Beatrice", "Fraser, Helen B."], "preferred_name": "Fraser, Helen", "authorized_access_point": "Fraser, Helen", "biographical_information": ["Schwerpunkte u.a. Phonetik, Phonologie, Psycholinguistik, Geschichte und Philosophie der Linguistik, Englisch in Australien"]} 1 +2020-09-24 13:17:51.659389 2020-09-24 13:17:51.659395 761de3e1-3133-4344-b9d4-bd5769af5760 {"md5": "bf92d7b71f030d1b020296ad5d0a1d2f", "pid": "139894535", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139894535", "numeration": "", "variant_name": ["Ebner, Stephan"], "date_of_birth": "1983", "preferred_name": "Ebner, Stephan M.", "authorized_access_point": "Ebner, Stephan M., 1983-", "biographical_information": ["Seelstrang & Partner mbB, München"]} 1 +2020-09-24 13:17:52.071081 2020-09-24 13:17:52.071086 b62691a3-59a3-4051-b0aa-abe4d71f2f47 {"md5": "17da790e21d39c8dbefbcf3513b83167", "pid": "139894977", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139894977", "numeration": "", "preferred_name": "Leunen, Nico", "authorized_access_point": "Leunen, Nico"} 1 +2020-09-24 13:17:53.593634 2020-09-24 13:17:53.59364 a180447d-86c2-49af-93b4-641f018a488a {"md5": "4b3cfe55b311bb9d05b90e875d9c9353", "pid": "127205233", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "Gräfin von", "identifier": "http://d-nb.info/gnd/127205233", "numeration": "", "variant_name": ["Dürniz, Gertrud von", "Dürniz, Gertrud P.-", "Podewils, Gertrudis", "Podevils-Dürniz, Gertrudis"], "preferred_name": "Podewils-Dürniz, Gertrud Gräfin von", "authorized_access_point": "Podewils-Dürniz, Gertrud, Gräfin von"} 1 +2020-09-24 13:17:54.088813 2020-09-24 13:17:54.088818 931bc7d1-9f9b-4c54-8a8a-67afffdc3508 {"md5": "b7331d51c739267e9a2ac20943403f69", "pid": "10432063X", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/10432063X", "numeration": "", "variant_name": ["Seidel, Martin, der Jüngere", "Seidel, Martinus", "Seydel, Martin", "Seydel, Martinus"], "date_of_birth": "1594", "date_of_death": "22.12.1664", "preferred_name": "Seidel, Martin", "authorized_access_point": "Seidel, Martin, 1594-1664", "biographical_information": ["Dt. ev. Theologe; 1611 Schüler in Grimma 1630 ordiniert und Pastor in Knauthain bei Leipzig"]} 1 +2020-09-24 13:17:54.55524 2020-09-24 13:17:54.555245 f7fe0c5f-e0e0-46d0-afb9-48309b3ae230 {"md5": "be5dad240ad4a0bc1e1c629cedbd4f64", "pid": "1146583117", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1146583117", "numeration": "", "variant_name": ["Bessonova, A. M.", "Bessonova, Anastasija Michajlovna"], "date_of_birth": "1917", "date_of_death": "2001", "preferred_name": "Bessonova, Anastasija M.", "authorized_access_point": "Bessonova, Anastasija M., 1917-2001"} 1 +2020-09-24 13:17:55.042776 2020-09-24 13:17:55.042781 4f626244-89ca-460c-aa3f-4f3a0bf59feb {"md5": "eba806728367ac7e8a3e5e5671575e3c", "pid": "117125184X", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/117125184X", "numeration": "", "preferred_name": "Büker, Gundula", "authorized_access_point": "Büker, Gundula"} 1 +2020-09-24 13:17:56.862254 2020-09-24 13:17:56.86226 7718e1c1-23e5-4bdc-931c-06845f8bdf80 {"md5": "fa6e9a909fe660d3ab0716735f7d2349", "pid": "1159284946", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1159284946", "numeration": "", "variant_name": ["Bibiléichvili, Tsissana", "Bibileischwili, Tsisana", "Bibileishvili, Tsisana"], "preferred_name": "Bibileišvili, C̕isana", "authorized_access_point": "Bibileišvili, C̕isana"} 1 +2020-09-24 13:17:57.693225 2020-09-24 13:17:57.693231 2b1c56f2-c98c-46c6-9414-fda327e52124 {"md5": "e9b80c626e0c78c6a194b1ded69ab09e", "pid": "1047508257", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1047508257", "numeration": "", "preferred_name": "Prapanna, Vandana", "authorized_access_point": "Prapanna, Vandana"} 1 +2020-09-24 13:17:58.880015 2020-09-24 13:17:58.88002 523c80c1-f4dd-409c-8992-e3390911eb2f {"md5": "0726c0e603a2952ed2396fc2ce5e27b3", "pid": "1089778236", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1089778236", "numeration": "", "date_of_birth": "1965", "preferred_name": "Krammer, Gerhard", "authorized_access_point": "Krammer, Gerhard, 1965-"} 1 +2020-09-24 13:18:00.076399 2020-09-24 13:18:00.076404 541ee361-66cc-40ad-8556-fed50d0b003a {"md5": "0d7677ad009b2327a69bb919b5bc7998", "pid": "1090111223", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1090111223", "numeration": "", "date_of_birth": "1951", "preferred_name": "Dewdney, Christopher", "authorized_access_point": "Dewdney, Christopher, 1951-"} 1 +2020-09-24 13:18:00.986029 2020-09-24 13:18:00.986034 72ec14de-9861-4a5f-82be-60f460e432db {"md5": "a348b0d3c04f7d78d8c5b5093cd549b6", "pid": "127307427", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/127307427", "numeration": "", "preferred_name": "Henriot, Jean-Claude", "authorized_access_point": "Henriot, Jean-Claude"} 1 +2020-09-24 13:18:02.028567 2020-09-24 13:18:02.028572 c483b150-5a26-4802-b2b3-ac35deafaaca {"md5": "eeea15cd5b3dde6ec2d27db9938b0cef", "pid": "130677299", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/130677299", "numeration": "", "variant_name": ["Ming-Yuet, Kee"], "date_of_birth": "1952", "preferred_name": "Kee Ming-Yuet", "authorized_access_point": "Kee Ming-Yuet, 1952-", "biographical_information": ["Malaysische Sammlerin von Chinesischem Porzellan und Privatdozentin"]} 1 +2020-09-24 13:18:03.368524 2020-09-24 13:18:03.368529 571566d6-f615-4304-8835-ca9b3cd64e4c {"md5": "a9851b5281fedc7d24da238b627392a3", "pid": "1077608101", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1077608101", "numeration": "", "date_of_birth": "1956", "preferred_name": "Stöppler, Thomas", "authorized_access_point": "Stöppler, Thomas, 1956-", "biographical_information": ["Studiendirektor, ist Landesvorsitzender des europaweit größten Fachverbandes im Behindertenbereich: Verband Sonderpädagogik e.V. Baden-Württemberg (vds). Nach langjähriger Tätigkeit als Sonderpädagoge und Schulleiter mit den Förderschwerpunkten Verhalten und Lernen sowie im Lehrerbildungsbereich ist er derzeit Leiter des Staatlichen Seminars für Didaktik und Lehrerbildung, Abteilung Sonderschulen in Stuttgart."]} 1 +2020-09-24 13:21:21.865274 2020-09-24 13:21:21.86528 91775646-ee13-44d3-ae67-9b74709e5824 {"md5": "8fa6f7ac4ca245d1b21a63b915a01bcf", "pid": "140913971", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140913971", "numeration": "", "preferred_name": "Culver, Carmen", "authorized_access_point": "Culver, Carmen"} 1 +2020-09-24 13:18:03.829783 2020-09-24 13:18:03.829788 10dc4e4a-b731-4470-bb35-bf5a782c5238 {"md5": "ca4580b7014bc148063e1a1412eb5aaa", "pid": "1116459507", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1116459507", "numeration": "", "variant_name": ["Schulze, Claudia"], "date_of_birth": "1982", "preferred_name": "Ehrlich, Claudia", "authorized_access_point": "Ehrlich, Claudia, 1982-", "biographical_information": ["Beruf: Ärztin"]} 1 +2020-09-24 13:18:04.24578 2020-09-24 13:18:04.245785 1bdeb7e0-6a88-470d-a7f2-6f1e0c0e730d {"md5": "1afb2e21e16ffb061fbc12cea356df2d", "pid": "1120815401", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1120815401", "numeration": "", "variant_name": ["Stradner, Michael"], "preferred_name": "Stradner, Michael Alexander", "authorized_access_point": "Stradner, Michael Alexander", "biographical_information": ["Promotion an der Rheinisch-Westfälischen Technischen Hochschule Aachen, Fakultät für Wirtschaftswissenschaften, 2016"]} 1 +2020-09-24 13:18:08.828227 2020-09-24 13:18:08.828232 48900a66-c4e0-40c8-b037-090db3b72fb3 {"md5": "e0705c938f183d45b120d094bca16ae5", "pid": "1089682018", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1089682018", "numeration": "", "preferred_name": "Schmid, Franziska Sibylle", "authorized_access_point": "Schmid, Franziska Sibylle", "biographical_information": ["Umweltwissenschaftlerin"]} 1 +2020-09-24 13:18:10.937626 2020-09-24 13:18:10.937632 549aeb26-04c4-437e-a6fc-fb323b5db3ea {"md5": "f9cce0013e0b0760dfb6340367c8e190", "pid": "1046083678", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1046083678", "numeration": "", "date_of_birth": "1843", "date_of_death": "1932", "preferred_name": "Welti, Oswald", "authorized_access_point": "Welti, Oswald, 1843-1932", "biographical_information": ["Schweizer Drucker und Fotograf"]} 1 +2020-09-24 13:18:12.508654 2020-09-24 13:18:12.508659 7472c54e-d3b8-4ce6-b72a-a89250cadf30 {"md5": "e8d6cbb7859e8adbec83a5073f9753d9", "pid": "139939415", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139939415", "numeration": "", "date_of_birth": "1975", "preferred_name": "Wilzeck, Andreas", "authorized_access_point": "Wilzeck, Andreas, 1975-", "biographical_information": ["Diss. Fakultät Elektrotechnik und Informatik an der Universität Hannover"]} 1 +2020-09-24 13:18:12.933561 2020-09-24 13:18:12.933566 51a016b8-40d1-402a-a9fa-27d0c1e06ed9 {"md5": "221606b5ab1bf736c3c916d7c75a4ad3", "pid": "139942920", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139942920", "numeration": "", "date_of_birth": "1978", "preferred_name": "Lehmann, Ingo", "authorized_access_point": "Lehmann, Ingo, 1978-", "biographical_information": ["Freier Autor und Redakteur bei einer Film- und Fernsehproduktionsfirma"]} 1 +2020-09-24 13:18:13.390253 2020-09-24 13:18:13.390257 5d108f86-d808-4da9-9a39-c966ff6872fd {"md5": "ce8dbfd6eb497b999ba3cbd62e879ca1", "pid": "139946144", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139946144", "numeration": "", "date_of_birth": "1569", "date_of_death": "1637", "preferred_name": "Rüffer, Balthasar", "authorized_access_point": "Rüffer, Balthasar, 1569-1637", "biographical_information": ["Dt. Kaufmann, Ratsherr in Schweinfurt, Reichsvogt"]} 1 +2020-09-24 13:18:14.043115 2020-09-24 13:18:14.04312 384388a2-c940-4cd4-8854-3d2963db5fd5 {"md5": "5745e28b3c23f9a0e8a87f80a87ca3a7", "pid": "139952179", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139952179", "numeration": "", "variant_name": ["Hoang, Tri"], "date_of_birth": "20.01.1977", "preferred_name": "Hoang, Minh Tri", "authorized_access_point": "Hoang, Minh Tri, 1977-", "biographical_information": ["Diss. Fachbereich Biochemie, Chemie und Pharmazie"]} 1 +2020-09-24 13:18:14.577954 2020-09-24 13:18:14.57796 faf8ea90-bbf4-4c45-811f-3ed986391ade {"md5": "6d6e2305aefb0e3e9b0459e507c565a9", "pid": "139961968", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139961968", "numeration": "", "variant_name": ["De León, Facundo Ponce", "León, Facundo Ponce de"], "date_of_birth": "1978", "preferred_name": "Ponce de León, Facundo", "authorized_access_point": "Ponce de León, Facundo, 1978-", "biographical_information": ["Uruguay. Philosoph, Kommunikationswissenschaftler, Journalist"]} 1 +2020-09-24 13:18:16.514455 2020-09-24 13:18:16.51446 fca3beab-f0b9-49b5-a241-d2ba9f0e09c8 {"md5": "33453d24f800918a3e5e7e2390e46331", "pid": "139972625", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139972625", "numeration": "", "variant_name": ["Otto, Gretel Martina"], "date_of_birth": "1936", "preferred_name": "Otto, Martina", "authorized_access_point": "Otto, Martina, 1936-"} 1 +2020-09-24 13:18:17.160216 2020-09-24 13:18:17.160222 56517741-8642-4491-a67e-5e02b0318925 {"md5": "27326d372ba525afe070505113def7dd", "pid": "139974199", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/139974199", "numeration": "", "preferred_name": "Brunner, Dominik", "authorized_access_point": "Brunner, Dominik", "biographical_information": ["Diss. Stuttgart 2009, Fakultät Konstruktions-, Produktions- und Fahrzeugtechnik"]} 1 +2020-09-24 13:18:18.67818 2020-09-24 13:18:18.678185 77d3e38f-713b-4dea-b638-71a7326c9260 {"md5": "bad02944a6690aa9445fb36e964703c1", "pid": "140031936", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140031936", "numeration": "", "date_of_birth": "1982", "preferred_name": "Voß, Carolin", "authorized_access_point": "Voß, Carolin, 1982-", "biographical_information": ["Diss. Technische Universität München, Fakultät für Medizin"]} 1 +2020-09-24 13:18:19.115763 2020-09-24 13:18:19.115768 572ca7cc-570a-4f0d-8172-d670fc32beec {"md5": "542514c1746905eac801150639a44236", "pid": "140058699", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140058699", "numeration": "", "date_of_death": "1943", "preferred_name": "Plotnarek, Franz", "authorized_access_point": "Plotnarek, Franz, -1943", "biographical_information": ["1943 von den Nazis hingerichtet"]} 1 +2020-09-24 13:18:19.616775 2020-09-24 13:18:19.61678 7fbcaf43-51ca-49c8-9202-f44e3f874651 {"md5": "bec27ccd4768640bb9a0514ad92fbb7f", "pid": "140091319", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140091319", "numeration": "", "variant_name": ["Göbel, Christof Stefan"], "date_of_birth": "1966", "preferred_name": "Göbel, Christof", "authorized_access_point": "Göbel, Christof, 1966-", "biographical_information": ["Aachen, Techn. Hochsch., Doktor der Ingenieurwiss., 2002"]} 1 +2020-09-24 13:18:20.081657 2020-09-24 13:18:20.081663 3d7b9655-c0e2-4f35-93ae-5265af3ee54e {"md5": "b786266f9b8d1bf755fba221816684a4", "pid": "14010657X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/14010657X", "numeration": "", "date_of_birth": "12.09.1936", "preferred_name": "Rahim, Habib-ur", "authorized_access_point": "Rahim, Habib-ur, 1936-", "biographical_information": ["lebt in Deutschland"]} 1 +2020-09-24 13:18:20.791406 2020-09-24 13:18:20.791411 7a24b6f7-3fa4-4a70-82a0-7ee2de92a5f0 {"md5": "0782a839cd1a24a50e2d56d6158ec19b", "pid": "1159046239", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1159046239", "numeration": "", "variant_name": ["Mönnich, Günther"], "preferred_name": "Mönnich, Günter", "authorized_access_point": "Mönnich, Günter"} 1 +2020-09-24 13:18:21.200235 2020-09-24 13:18:21.20024 21b1f48d-7e95-46f1-b11d-4b67eee8a526 {"md5": "9acda17684347a7514b9b5ac7fdeee78", "pid": "140115889", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140115889", "numeration": "", "date_of_birth": "1977", "preferred_name": "Gerards, Marco", "authorized_access_point": "Gerards, Marco, 1977-"} 1 +2020-09-24 13:18:21.674192 2020-09-24 13:18:21.674197 facbecde-b2ed-48af-9b21-f824be3965d3 {"md5": "daf7dda1298b0139d9873c212fdbe47e", "pid": "140122494", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140122494", "numeration": "", "date_of_birth": "1977", "preferred_name": "Bons, Iris", "authorized_access_point": "Bons, Iris, 1977-"} 1 +2020-09-24 13:18:22.108115 2020-09-24 13:18:22.10812 d228a0bb-46a8-4a28-9932-9e84682535b9 {"md5": "f7a2151181b95ee4cedfa916f29ce48a", "pid": "140129510", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140129510", "numeration": "", "variant_name": ["Matsen, Brad"], "date_of_birth": "1944", "preferred_name": "Matsen, Bradford", "authorized_access_point": "Matsen, Bradford, 1944-"} 1 +2020-09-24 13:18:23.062823 2020-09-24 13:18:23.062828 4cc68c7e-104c-4959-9a6f-1a9b81eeb312 {"md5": "c9158038fb88a93e4fe4f21b267be3db", "pid": "140132872", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140132872", "numeration": "", "preferred_name": "Schöftner, Sandra", "authorized_access_point": "Schöftner, Sandra", "biographical_information": ["Sankt Pölten, Fachhochschul-Diplomstudiengang Medienmanagement, Dipl.-Arb., 2009"]} 1 +2020-09-24 13:18:23.579767 2020-09-24 13:18:23.579772 f889b66b-3b80-4c21-b8f1-efb16d229ce8 {"md5": "3602a54b21effa27b9fbfc8cd9b12f83", "pid": "140142622", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140142622", "numeration": "", "variant_name": ["Lapadula, Mario"], "date_of_birth": "07.07.1951", "preferred_name": "Lapadula, Mario H.", "authorized_access_point": "Lapadula, Mario H., 1951-", "biographical_information": ["Argentin. Schriftsteller"]} 1 +2020-09-24 13:18:24.264647 2020-09-24 13:18:24.264652 d316b232-d362-4561-8eb5-a77f60677e64 {"md5": "a7db19af9656f6143ab48856424e3efa", "pid": "141184531", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/141184531", "numeration": "", "date_of_birth": "21.07.1966", "preferred_name": "McCarthy, Rebecca Lea", "authorized_access_point": "McCarthy, Rebecca Lea, 1966-", "biographical_information": ["Prof. of humanities, Kaplan Univ."]} 1 +2020-09-24 13:18:25.330211 2020-09-24 13:18:25.330217 0faf4285-11c4-4753-bc62-8d57a840ebd0 {"md5": "2a22e7846e4c446001b9dd429e46d8f6", "pid": "106068375X", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://d-nb.info/gnd/106068375X", "numeration": "", "preferred_name": "Stras, Laurie", "authorized_access_point": "Stras, Laurie"} 1 +2020-09-24 13:18:26.267313 2020-09-24 13:18:26.267318 58df659d-aaa7-4c14-a4e7-2ebf9d1027be {"md5": "7a2c72a20504d3bab42ecbd41c9bc0cf", "pid": "1147141754", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1147141754", "numeration": "", "variant_name": ["Gandhi, Nighat"], "preferred_name": "Gandhi, Nighat M.", "authorized_access_point": "Gandhi, Nighat M.", "biographical_information": ["Writer & professional mental health counselor; spent her formative yrs. in Dhaka and Karachi; studied in USA; presently resides in Allahabad & writes for Indian and Pakistani newspapers"]} 1 +2020-09-24 13:18:28.631886 2020-09-24 13:18:28.631891 c4544677-eef0-4097-9685-47f53ece0075 {"md5": "17e126c9fea0eedeb7fe0e1e5bf1ad00", "pid": "170594211", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/170594211", "numeration": "", "date_of_birth": "1938", "preferred_name": "Palmer, John", "authorized_access_point": "Palmer, John, 1938-", "biographical_information": ["European ed. of \\"The Guardian\\" and Britain's most informed commentator on the European Community (1988)"]} 1 +2020-09-24 13:18:29.454368 2020-09-24 13:18:29.454373 c17c29ca-004a-4996-890e-c094af6a8055 {"md5": "4bf0d31dbefe9303ca935505bcffba0d", "pid": "131915401", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/131915401", "numeration": "", "variant_name": ["Hulme, D."], "date_of_birth": "1952", "preferred_name": "Hulme, David", "authorized_access_point": "Hulme, David, 1952-", "biographical_information": ["Professor für Entwicklungsstudien an der Universität von Manchester", "Prof. of Development Studies; Inst. for Development Policy and Management, Univ. Manchester, UK; dir., Chronic Poverty Res. Ctr.; BA MA Cambridge, PhD JCU Queensland; res. interests: rural dev. pol. and plan.; poverty reduction strategies; finance for the poor; sociol. of dev.; role of community orgs. and NGOs; evaluation of tech. asst.; environ. mgmt.; public sector reform; country experience: Bangladesh, Belize, Hungary, India, Indonesia, Kenya, Malawi, Malaysia, Mexico, Nepal, Nigeria, Papua New Guinea, Solomon Islands, Sri Lanka, Tanzania, Uganda, Zimbabwe. Soziologe"]} 1 +2020-09-24 13:18:30.489142 2020-09-24 13:18:30.489147 045d6963-d724-4afa-9a90-80ea1bb1e885 {"md5": "a76b62467cfeffb2968e6cd3b044a0da", "pid": "136999271", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/136999271", "numeration": "", "date_of_birth": "1981", "preferred_name": "Walter, Hanna", "authorized_access_point": "Walter, Hanna, 1981-", "biographical_information": ["Diss. Medizinische Fakultät der Univ. Tübingen"]} 1 +2020-09-24 13:18:33.191483 2020-09-24 13:18:33.191488 b3105300-d780-412b-a324-fdb5c0c7ca55 {"md5": "131a143cef2cad93a61ef14305f10503", "pid": "14016815X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/14016815X", "numeration": "", "date_of_birth": "1982", "preferred_name": "Simon, Corinna Nora", "authorized_access_point": "Simon, Corinna Nora, 1982-", "biographical_information": ["Diss. Fachbereich Medizin, Univ. Marburg"]} 1 +2020-09-24 13:18:33.609095 2020-09-24 13:18:33.6091 c382ee26-f785-45ed-966e-52cbf646b86d {"md5": "e0aecce8569de20534bfc58ae7157dd8", "pid": "140169016", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140169016", "numeration": "", "preferred_name": "Harrison, Roger", "authorized_access_point": "Harrison, Roger", "biographical_information": ["Tätig bei Proctor & Gamble; tätig am Dep. of Industrial Administration, Yale Univ."]} 1 +2020-09-24 13:18:34.0342 2020-09-24 13:18:34.034205 fd655b0e-2a1d-4b85-9872-11bbd97072da {"md5": "d343695d67bfcb71335e8d82f82704f9", "pid": "140199535", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140199535", "numeration": "", "variant_name": ["Won, Jun Lee", "Won Jun Lee"], "preferred_name": "Lee, Won Jun", "authorized_access_point": "Lee, Won Jun", "biographical_information": ["Tätig als Prof. of MIS at SKKU Business School, Sungkyunkwan Univ., Seoul, South Korea"]} 1 +2020-09-24 13:18:34.443378 2020-09-24 13:18:34.443382 c8376ea3-65d3-4c1c-ae6f-627f04ad7b36 {"md5": "6663d8b91a2730f471226a9e04d8e995", "pid": "140234381", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140234381", "numeration": "", "date_of_birth": "1955", "preferred_name": "Schöneich, Martin", "authorized_access_point": "Schöneich, Martin, 1955-", "biographical_information": ["Dt. Bildhauer"]} 1 +2020-09-24 13:18:34.980103 2020-09-24 13:18:34.980111 39b734c1-5e0d-4dd3-a728-e08fcf6e3b3f {"md5": "f33685f52da9bd897d81a64ae8a37287", "pid": "140248609", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140248609", "numeration": "", "date_of_birth": "1937", "preferred_name": "Rieger, Wolfgang", "authorized_access_point": "Rieger, Wolfgang, 1937-"} 1 +2020-09-24 13:18:35.394405 2020-09-24 13:18:35.39441 19f1248e-6c58-46be-9876-2bb133a22d1e {"md5": "2f58c556a2531fd43b74edf0cd42b04e", "pid": "140259015", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140259015", "numeration": "", "variant_name": ["Calatayud Pérez, Emilio", "Pérez, Emilio Calatayud", "Calatayud-Pérez, Emilio"], "date_of_birth": "1955", "preferred_name": "Calatayud, Emilio", "authorized_access_point": "Calatayud, Emilio, 1955-"} 1 +2020-09-24 13:18:35.88854 2020-09-24 13:18:35.888545 2d2524bf-c544-4acc-932d-e83a9f857c1e {"md5": "ff92cf92cdb645d8429d556a25009358", "pid": "1089227736", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1089227736", "numeration": "", "date_of_birth": "20. Jht.", "preferred_name": "Müller-Starck, Gerhard", "authorized_access_point": "Müller-Starck, Gerhard, 20. Jht.", "biographical_information": ["Forstwissenschaftler, Deutschland, Schweiz"]} 1 +2020-09-24 13:18:36.319846 2020-09-24 13:18:36.319851 3fe8ff30-bfb4-4cf8-bc40-6e97019c71e2 {"md5": "87d930255d1ff7f99a3ed23eb92eae67", "pid": "140285776", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140285776", "numeration": "", "variant_name": ["Rodrigues de Sousa, Mário José", "De Sousa, Mário José Rodrigues"], "date_of_birth": "21.03.1971", "preferred_name": "Sousa, Mário José Rodrigues de", "authorized_access_point": "Sousa, Mário José Rodrigues de, 1971-", "biographical_information": ["Priester in Faro, Diözese do Algarve ; Priesterweihe 1996"]} 1 +2020-09-24 13:18:36.726761 2020-09-24 13:18:36.726766 29c03a89-2700-4710-9c27-e8dd9105f166 {"md5": "b10bfd5f11f3eb73425419e0d0d65261", "pid": "140306412", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140306412", "numeration": "", "date_of_birth": "1956", "preferred_name": "Dragović, Ljubomir", "authorized_access_point": "Dragović, Ljubomir, 1956-", "biographical_information": ["Kroat. Schriftsteller, geb. in Sonković, lebt in Sonković und Banja Luka"]} 1 +2020-09-24 13:18:37.481632 2020-09-24 13:18:37.481637 dc32494d-9836-49ab-a094-9a12c78c82aa {"md5": "1599a3b5c99ea92ec6e150f50214b9ca", "pid": "140322140", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140322140", "numeration": "", "date_of_birth": "10.07.1965", "preferred_name": "Schmiedel, Erwin", "authorized_access_point": "Schmiedel, Erwin, 1965-", "biographical_information": ["Österr. Bariton und Schriftsteller"]} 1 +2020-09-24 13:18:37.982721 2020-09-24 13:18:37.982727 2156b8be-b828-42af-9f9c-4c861828e562 {"md5": "6feb5f5dcf24d991d0f9dd19571742f2", "pid": "140322213", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "language": ["per"], "qualifier": "", "identifier": "http://d-nb.info/gnd/140322213", "numeration": "", "variant_name": ["Hayati, A. A."], "date_of_birth": "1974", "preferred_name": "Ḥayātī, ʿAlī-ʿAbās", "authorized_access_point": "Ḥayātī, ʿAlī-ʿAbās, 1974-"} 1 +2020-09-24 13:18:38.43162 2020-09-24 13:18:38.431625 1a61370f-e2e0-4680-82c2-84595b83b2c9 {"md5": "679b4d77d16a74a9f344272c423e71a9", "pid": "1195625049", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1195625049", "numeration": "", "date_of_birth": "1977", "preferred_name": "Galanopoulos, Philippe", "authorized_access_point": "Galanopoulos, Philippe, 1977-"} 1 +2020-09-24 13:18:39.727752 2020-09-24 13:18:39.727758 7e0d25db-1a20-4bc7-aef8-d769a8b11201 {"md5": "d8f9b609da42cd395f1a4c4852c7f44d", "pid": "140327126", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140327126", "numeration": "", "variant_name": ["Zander, J."], "date_of_birth": "1937", "preferred_name": "Zander, Jan", "authorized_access_point": "Zander, Jan, 1937-"} 1 +2020-09-24 13:18:40.204266 2020-09-24 13:18:40.204271 662695d1-4a8f-4cfa-83d1-2eb81ad48511 {"md5": "8b21be817f052b8a1d6b17276fb00111", "pid": "140327606", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140327606", "numeration": "", "variant_name": ["Rossignol, Nicolas Mayer-"], "date_of_birth": "1968?", "preferred_name": "Mayer-Rossignol, Nicolas", "authorized_access_point": "Mayer-Rossignol, Nicolas, 1968?-", "biographical_information": ["Franz. Ingenieur beim Corps des Mines"]} 1 +2020-09-24 13:18:40.601734 2020-09-24 13:18:40.60174 532afeba-a3de-4ded-99c6-596fe873899e {"md5": "2e56a4cd11314ee370261b6a6e3752c2", "pid": "140338683", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140338683", "numeration": "", "date_of_birth": "ca. um 1800", "preferred_name": "Rousset, S.", "authorized_access_point": "Rousset, S., ca. um 1800", "biographical_information": ["Franz. Jurist"]} 1 +2020-09-24 13:18:41.070651 2020-09-24 13:18:41.070656 9b885c21-a08b-4c6e-ad18-d87a816b1e65 {"md5": "28ea4e4d2f340629bddf2d26fb31ab46", "pid": "140345833", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140345833", "numeration": "", "preferred_name": "Passarge, Friedrich August", "authorized_access_point": "Passarge, Friedrich August"} 1 +2020-09-24 13:18:41.478167 2020-09-24 13:18:41.478172 3d755bb6-221c-435f-bf8b-e67f4b7dc2e7 {"md5": "8803775e66e8991e741d5b0e6181dafe", "pid": "140345884", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140345884", "numeration": "", "date_of_birth": "14.04.1969", "preferred_name": "Kirchmann, Helmut", "authorized_access_point": "Kirchmann, Helmut, 1969-", "biographical_information": ["Diss. Fachbereich Sozial- und Verhaltenswissenschaften"]} 1 +2020-09-24 13:18:42.103322 2020-09-24 13:18:42.103328 19a9a88c-7df8-4a5e-8c3f-28482def70b0 {"md5": "fc5998d0ee70b64587b5cfbaef234429", "pid": "140351493", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140351493", "numeration": "", "variant_name": ["Jevseeva, Ludmila Ivanovna", "Evseeva, Ljudmila"], "date_of_birth": "14.08.1913", "date_of_death": "28.01.1980", "preferred_name": "Jevsejeva, Ludmila", "authorized_access_point": "Jevsejeva, Ludmila, 1913-1980", "biographical_information": ["Esperantistin"]} 1 +2020-09-24 13:18:42.58524 2020-09-24 13:18:42.585245 9f6abb4a-8c01-4fe7-aecd-4c796c6cdd71 {"md5": "dc995830146180dfdfc82f1db51d85c5", "pid": "131898922", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/131898922", "numeration": "", "date_of_birth": "1968", "preferred_name": "Moskowitz, Marina", "authorized_access_point": "Moskowitz, Marina, 1968-", "biographical_information": ["Tätig am Department of History, Univ. of Glasgow"]} 1 +2020-09-24 13:18:46.55319 2020-09-24 13:18:46.553195 fc6346b7-7a99-4922-a9e6-0f08bd2b4418 {"md5": "254ec9221069bed42c8856827070bd2c", "pid": "1096172224", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1096172224", "numeration": "", "variant_name": ["Juteau Lee, Danielle", "Lee, Danielle Juteau"], "date_of_birth": "1942", "preferred_name": "Juteau, Danielle", "authorized_access_point": "Juteau, Danielle, 1942-", "biographical_information": ["Professeure émérité au Département de sociologie de l'Université de Montréal (2015)"]} 1 +2020-09-24 13:18:47.313669 2020-09-24 13:18:47.313674 e4eb29f9-03f7-44d9-babb-758ed74d9721 {"md5": "2f22225cebfd120c722182d504533f15", "pid": "117490555", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/117490555", "numeration": "", "date_of_birth": "1845", "date_of_death": "1906", "preferred_name": "Spiess, Bernhard", "authorized_access_point": "Spiess, Bernhard, 1845-1906"} 1 +2020-09-24 13:18:48.365437 2020-09-24 13:18:48.365442 b0feac2a-4355-4a65-be63-e5cd99883c1f {"md5": "228beaa56e340bdb945d0425445b879b", "pid": "1192403959", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1192403959", "numeration": "", "variant_name": ["Maister, David", "Maister, David Hilton"], "date_of_birth": "1947", "preferred_name": "Maister, David H.", "authorized_access_point": "Maister, David H., 1947-", "biographical_information": ["formerly a Harvard Business School professor, consults to professional service firms worldwide"]} 1 +2020-09-24 13:18:50.528073 2020-09-24 13:18:50.528079 b60122af-5c2c-4604-b507-3fbe84ef7b4e {"md5": "b984a9c6cd8dc290475b1ed5cbc57946", "pid": "1089160305", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1089160305", "numeration": "", "variant_name": ["Ruggles, Richard", "Ruggles, Richard Irwin", "Ruggles, Dick"], "date_of_birth": "1923", "date_of_death": "2008", "preferred_name": "Ruggles, Richard I.", "authorized_access_point": "Ruggles, Richard I., 1923-2008", "biographical_information": ["Geograph"]} 1 +2020-09-24 13:18:50.931352 2020-09-24 13:18:50.931357 a6f07e24-9865-411e-97ce-5c78f0e6368f {"md5": "f2579d5156eba80453c215a12965a1fe", "pid": "1146794703", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1146794703", "numeration": "", "date_of_birth": "1922", "preferred_name": "Fregly, Bert", "authorized_access_point": "Fregly, Bert, 1922-"} 1 +2020-09-24 13:18:51.805349 2020-09-24 13:18:51.805353 d2562fc1-adf5-4f1c-a8a3-2534c82fc7a3 {"md5": "63a015b142f8058ebec8e147a44d0cfa", "pid": "1190648008", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1190648008", "numeration": "", "preferred_name": "Osborne, Paul", "authorized_access_point": "Osborne, Paul", "biographical_information": ["trainiert u.a. Hunde für ihren Einsatz bei der Feuerwehr"]} 1 +2020-09-24 13:18:53.497405 2020-09-24 13:18:53.497411 da697898-6a42-4a2b-82c7-da904b42ac37 {"md5": "1bc8acd35f83ae800a364182a59c3904", "pid": "1061268225", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1061268225", "numeration": "", "preferred_name": "Chiarini, Claude", "authorized_access_point": "Chiarini, Claude"} 1 +2020-09-24 13:18:54.573785 2020-09-24 13:18:54.573789 94ce9b55-ccbf-4ff3-9d2c-c4166e2ea0b2 {"md5": "8476904da048760f6dde4a5884d0a8fe", "pid": "1145486533", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1145486533", "numeration": "", "date_of_birth": "1890", "preferred_name": "Noeldeke, Alexander", "authorized_access_point": "Noeldeke, Alexander, 1890-", "biographical_information": ["(geb. in Karlsruhe i.B.)"]} 1 +2020-09-24 13:18:58.774416 2020-09-24 13:18:58.774421 6b14b9ee-2b17-4fb6-ac56-9a2da48295da {"md5": "abf329c6d7938807a854ab8ed66fd735", "pid": "1044044519", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://d-nb.info/gnd/1044044519", "numeration": "", "preferred_name": "Rose, Adrian P.", "authorized_access_point": "Rose, Adrian P."} 1 +2020-09-24 13:19:00.586373 2020-09-24 13:19:00.586378 ac4d7d28-79f3-4d0d-851f-19c2e359e00f {"md5": "25f35dadfecaf6183b4270979a8f0b53", "pid": "1088070116", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "Zwifaltensis", "identifier": "http://d-nb.info/gnd/1088070116", "numeration": "", "preferred_name": "Bertholdus Zwifaltensis", "authorized_access_point": "Bertholdus, Zwifaltensis"} 1 +2020-09-24 13:19:01.118455 2020-09-24 13:19:01.11846 4ea71172-caa9-4be2-991e-fdb0eba6a9c9 {"md5": "28e92be35cff840b6c91eaed8ca8e30f", "pid": "1211775216", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1211775216", "numeration": "", "date_of_birth": "1783", "date_of_death": "1835", "preferred_name": "Potter, Richard", "authorized_access_point": "Potter, Richard, 1783-1835"} 1 +2020-09-24 13:19:01.859013 2020-09-24 13:19:01.859017 d9f4c391-d302-468e-8f78-a65bfc77a720 {"md5": "0a62e45a5b7cd95be3a2ee4a6aad682c", "pid": "127772553", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/127772553", "numeration": "", "variant_name": ["Knippenberg, Josef"], "preferred_name": "Knippenberg, J.", "authorized_access_point": "Knippenberg, J."} 1 +2020-09-24 13:19:02.319934 2020-09-24 13:19:02.319939 f8fb22a3-050e-4856-ad7c-df50e1433882 {"md5": "80f79efb5228ff1a4c7180bed55b6446", "pid": "173047165", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/173047165", "numeration": "", "preferred_name": "Tennant, Margaret E.", "authorized_access_point": "Tennant, Margaret E.", "biographical_information": ["kanad. Schriftstellerin"]} 1 +2020-09-24 13:19:03.856494 2020-09-24 13:19:03.856499 a4da7023-3fdf-4b2f-b890-ac6ccab3ff19 {"md5": "f98b1b4bdc7bac2b1be65532912ebe69", "pid": "1079981993", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1079981993", "numeration": "", "variant_name": ["Artl, G."], "preferred_name": "Artl, Gerhard", "authorized_access_point": "Artl, Gerhard"} 1 +2020-09-24 13:19:05.204263 2020-09-24 13:19:05.204269 f28e3906-81ba-46e0-a9df-88df2d4e657b {"md5": "ed4b656a63dd549fc5fa59883e0fd098", "pid": "1120736277", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1120736277", "numeration": "", "preferred_name": "Mirzaei, Nazli", "authorized_access_point": "Mirzaei, Nazli", "biographical_information": ["Dissertation, Medizinische Fakultät, Ludwig-Maximilians-Universität München, 2016"]} 1 +2020-09-24 13:19:06.082364 2020-09-24 13:19:06.082369 6cc25ad9-b3f1-491d-99a8-b4d54af388c0 {"md5": "54c2bbe61b0bd549210ddc923823c5df", "pid": "1158794118", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1158794118", "numeration": "", "variant_name": ["Smith"], "preferred_name": "Smith, Sophia", "authorized_access_point": "Smith, Sophia"} 1 +2020-09-24 13:19:40.557746 2020-09-24 13:19:40.557751 52cded0a-dfb0-4ef9-9e4f-ae250e6694c3 {"md5": "5125a5265bbb12e1192fd3c640b847a4", "pid": "116947195", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/116947195", "numeration": "", "variant_name": ["Lerchenfeld Brennberg, Alfons von", "Brennberg, Alfons von Lerchenfeld-"], "date_of_birth": "1838", "date_of_death": "1904", "preferred_name": "Lerchenfeld-Brennberg, Alfons von", "authorized_access_point": "Lerchenfeld-Brennberg, Alfons von, 1838-1904"} 1 +2020-09-24 13:19:07.258714 2020-09-24 13:19:07.25872 7f0aa282-b921-4438-816b-eba7f4a0074b {"md5": "8b0dd073535f0c5c6747aef74febfd0a", "pid": "123952425", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/123952425", "numeration": "", "variant_name": ["Helbich, Wolfgang", "Helbich, Wolfgang Johannes", "Helbich-Lehmkuhl, Wolfgang", "Helbich-Lehmkuhl, Wolfgang J.", "Helbich-Lehmkuhl, Wolfgang Johannes"], "date_of_birth": "1935", "preferred_name": "Helbich, Wolfgang J.", "authorized_access_point": "Helbich, Wolfgang J., 1935-", "biographical_information": ["Dt. Historiker; Prof. für Neuere Geschichte mit bes. Berücks. der Geschichte Nordamerikas an der Ruhr-Universität Bochum; Initiator einer Sammlung von Briefen deutscher Auswanderer"]} 1 +2020-09-24 13:19:08.346249 2020-09-24 13:19:08.346255 c28551cd-18ab-4e02-8376-a03dd62b0a71 {"md5": "4790f6a016cdc1aa575f94d4602e2773", "pid": "111263638", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/111263638", "numeration": "", "variant_name": ["Bārinto, Aguneshu"], "date_of_birth": "23.10.1922", "date_of_death": "24.10.2008", "preferred_name": "Bálint, Ágnes", "authorized_access_point": "Bálint, Ágnes, 1922-2008", "biographical_information": ["Ungar. Kinder- und Drehbuchautorin"]} 1 +2020-09-24 13:19:08.905198 2020-09-24 13:19:08.905203 5a8ab12f-f0eb-485b-b404-aed73c4d39fe {"md5": "04c62f14a0b9dc3deb5107699fb09967", "pid": "127845925", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/127845925", "numeration": "", "preferred_name": "Siemens, Martin", "authorized_access_point": "Siemens, Martin"} 1 +2020-09-24 13:19:09.853624 2020-09-24 13:19:09.85363 2952d48f-be90-4eda-aa2e-bfde26898667 {"md5": "a8042bf103c964305a71622c874e2f06", "pid": "127857214", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/127857214", "numeration": "", "date_of_birth": "1896", "preferred_name": "Uloth, Robert", "authorized_access_point": "Uloth, Robert, 1896-"} 1 +2020-09-24 13:19:11.241648 2020-09-24 13:19:11.241653 128785f5-53df-4994-bb4c-ebd2fbefa9c5 {"md5": "90d0d51102389810993f81ac6f275e95", "pid": "112912388X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/112912388X", "numeration": "", "date_of_birth": "1955", "preferred_name": "Charendoff, Susan", "authorized_access_point": "Charendoff, Susan, 1955-", "biographical_information": ["She holds a LL.B. from Osgoode Hall Law School and a B.A. from York University. She is currently the Director, Civil Policy and Programs Branch, Court Services Division in the (Ontario) Ministry of Attorney General"]} 1 +2020-09-24 13:19:11.80396 2020-09-24 13:19:11.803965 3cd82f0d-91a0-4d9f-bdd9-61b17379234d {"md5": "5d7e7bf204b036038c853a2a80057b42", "pid": "107495839X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/107495839X", "numeration": "", "variant_name": ["Turner, R. J. W."], "preferred_name": "Turner, Robert J. W.", "authorized_access_point": "Turner, Robert J. W."} 1 +2020-09-24 13:19:13.244648 2020-09-24 13:19:13.244653 d4631b15-f912-405f-8d3e-08cc81325871 {"md5": "4df1b088ef88afde3fbfc63dc5c31280", "pid": "17027926X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/17027926X", "numeration": "", "variant_name": ["Higham, Robin D. S.", "Higham, Robin D.", "Higham, Robin David Stewart"], "date_of_birth": "20.06.1925", "date_of_death": "27.08.2015", "preferred_name": "Higham, Robin", "authorized_access_point": "Higham, Robin, 1925-2015", "biographical_information": ["Luftfahrt- und Militärhistoriker; 1943-1947 Pilot und Flight Sergeant in der Canadian Royal Air Force in Europa und Asien (Burma Road); Studium an der University of New Hampshire, der Harvard University und Claremont Graduate School; 1954-1957 Instructor an der University of Massachusetts; Promotion, Harvard University, 1957; Assistant Professor an der University of North Carolina; ; 1963-1999 Professor of Military History an der Kansas State University; Gründer der Sunflower University Press (1977-2005)"]} 1 +2020-09-24 13:19:14.91335 2020-09-24 13:19:14.913355 8deb0eb1-4f48-475d-a5c5-b27cbe4b2d8e {"md5": "bf2455d2e9044c05fae2b5268a1e29b1", "pid": "140838902", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140838902", "numeration": "", "date_of_birth": "1938", "preferred_name": "Sauvé, Lucie", "authorized_access_point": "Sauvé, Lucie, 1938-", "biographical_information": ["Kanad. Erziehungswissenschaftlerin; Prof. titular, Dép. d'Éducation et Pédagogie, Univ. du Québec à Montréal; Beraterin für Umwelterziehung"]} 1 +2020-09-24 13:19:16.564311 2020-09-24 13:19:16.564316 a2aa601f-8348-4eda-a691-a514c82d5cb5 {"md5": "42a99ab24d49e60da508bc34a7f5880b", "pid": "1089283814", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1089283814", "numeration": "", "variant_name": ["Margaryan, Alfred A."], "date_of_birth": "20. Jht.", "preferred_name": "Margaryan, Alfred", "authorized_access_point": "Margaryan, Alfred, 20. Jht.", "biographical_information": ["Chemiker"]} 1 +2020-09-24 13:19:17.019247 2020-09-24 13:19:17.019252 9d376ef6-b28b-4424-9681-cf95fed70d2a {"md5": "138f9b88a1e89c8427758808ba33595b", "pid": "1176847597", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1176847597", "numeration": "", "variant_name": ["Dick, Benjamin Kerry"], "date_of_birth": "23.11.1955", "date_of_death": "27.03.2017", "preferred_name": "Dick, Beau", "authorized_access_point": "Dick, Beau, 1955-2017", "biographical_information": ["Kanadischer indigener Maskenschnitzer, Bildhauer, Maler, Galerist und Aktivist"]} 1 +2020-09-24 13:19:17.949535 2020-09-24 13:19:17.949541 ff1307e5-b944-43fd-99a1-dd48d55046df {"md5": "3ae0038c3681eb478f74668e9d94ff26", "pid": "1213248760", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1213248760", "numeration": "", "date_of_birth": "1936", "date_of_death": "2012", "preferred_name": "Bär, Horst", "authorized_access_point": "Bär, Horst, 1936-2012"} 1 +2020-09-24 13:19:18.942551 2020-09-24 13:19:18.942557 7bc89b74-64d0-4a71-a41f-6e5f2dd47fb0 {"md5": "eaedd7779d02b5dca2e20352a382ad39", "pid": "1126067296", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1126067296", "numeration": "", "preferred_name": "Corcelli, John", "authorized_access_point": "Corcelli, John", "biographical_information": ["Zum 100. Jahrestag des Untergangs der Titanic produzierte er eine Dokumentation über die Musiker, die dort spielten, mit dem Titel \\"Hartley's Violin\\""]} 1 +2020-09-24 13:19:23.968797 2020-09-24 13:19:23.968803 9fb05565-1637-4269-813a-ee1ab1d5cdef {"md5": "0196bf8b4bcb9da0c9bd1b1290981ea3", "pid": "1158376529", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1158376529", "numeration": "", "variant_name": ["Iskandarian, Alexander H.", "Iskandarjan, Aleksandr G."], "preferred_name": "Iskandarean, Alek'sandr H.", "authorized_access_point": "Iskandarean, Alek'sandr H."} 1 +2020-09-24 13:19:24.9138 2020-09-24 13:19:24.913806 a923a431-fb6f-439b-9d3e-5013c69d172f {"md5": "2e0f9b8184cb9bd76103e9ed1bc67d75", "pid": "1159252289", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1159252289", "numeration": "", "variant_name": ["Shkundin, G. D.", "Škundin, Grigorij Davidovič"], "preferred_name": "Škundin, Grigorij D.", "authorized_access_point": "Škundin, Grigorij D."} 1 +2020-09-24 13:19:25.3549 2020-09-24 13:19:25.354906 7f8a8af2-6494-4d67-aa2c-f8bd582ce275 {"md5": "fec1e02ef35e57b8ca103c349279a4a5", "pid": "1203731949", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1203731949", "numeration": "", "variant_name": ["Latyševa, Tatʹjana V.", "Latyševa, Tatʹjana", "Latyševa, T. V.", "Latyševa, T.", "Латышева Татьяна Васильевна"], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Latyševa, Tatʹjana Vasilʹevna", "authorized_access_point": "Latyševa, Tatʹjana Vasilʹevna, ca. 20./21. Jh."} 1 +2020-09-24 13:19:26.63706 2020-09-24 13:19:26.637065 b45779a6-1b90-470d-aad2-a218a3758b9a {"md5": "a86c93a16ce5eea6137b77ff98a21b1e", "pid": "16110522X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/16110522X", "numeration": "", "preferred_name": "Reynolds, Catherine", "authorized_access_point": "Reynolds, Catherine", "biographical_information": ["lecturer in the History of Art"]} 1 +2020-09-24 13:19:30.390682 2020-09-24 13:19:30.390686 81d12b0a-bda8-44e6-a774-b670196e8530 {"md5": "4b239aa37163cd2b607b8dba9404cd15", "pid": "171484940", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/171484940", "numeration": "", "variant_name": ["Lemarbre, S."], "preferred_name": "Lemarbre, Sylvain", "authorized_access_point": "Lemarbre, Sylvain", "biographical_information": ["École des Hautes Études Commerciales, Montreal (1996)"]} 1 +2020-09-24 13:19:31.6434 2020-09-24 13:19:31.643405 1d9dfd73-b9b8-41ad-8f4e-d27277d75ad8 {"md5": "8584c87f092be9289893453640eda812", "pid": "108964194X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/108964194X", "numeration": "", "date_of_birth": "18. Jht.", "preferred_name": "Mischel, Johann Alexander", "authorized_access_point": "Mischel, Johann Alexander, 18. Jht.", "biographical_information": ["Mediziner, Uebersetzer"]} 1 +2020-09-24 13:19:33.472205 2020-09-24 13:19:33.47221 525bac2e-db58-45fd-ad11-e1d1c72e8410 {"md5": "f182aac2f9f82dc0df8ca94d0a95d3aa", "pid": "115832599", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/115832599", "numeration": "", "date_of_birth": "1965", "preferred_name": "Olschinka, Ernst Georg", "authorized_access_point": "Olschinka, Ernst Georg, 1965-", "biographical_information": ["Diss. Medizinische Fakultät"]} 1 +2020-09-24 13:19:33.918749 2020-09-24 13:19:33.918754 5ad3089b-38dd-4eea-b39d-82920d2ad72d {"md5": "283abf2ada86724c42d778f2dcbf80f5", "pid": "128244224", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/128244224", "numeration": "", "preferred_name": "Neuhöfer, Paul", "authorized_access_point": "Neuhöfer, Paul"} 1 +2020-09-24 13:19:34.366502 2020-09-24 13:19:34.366507 f2543612-d733-4034-a0b1-4fbf818c05b4 {"md5": "91ec76e90cb3dd7c3e3e0d2936c6c03a", "pid": "1048228142", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1048228142", "numeration": "", "preferred_name": "Beaudet, Flavie", "authorized_access_point": "Beaudet, Flavie", "biographical_information": ["Maîtrise en sciences pastorales; formatrice et coordonnatrice des stages pastoraux au Centre de Formation en Pastorale et de Spiritualité et également chargée d'enseignement aux facultés de Théologie et des Sciences humaines (2013)"]} 1 +2020-09-24 13:19:35.265723 2020-09-24 13:19:35.265728 7ce563ff-9145-4c64-a704-29bbf59a6898 {"md5": "8d2b1eb2499aa158b104a5f850a3369a", "pid": "116348747", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/116348747", "numeration": "", "date_of_birth": "1822", "date_of_death": "1882", "preferred_name": "Haase, Rudolf", "authorized_access_point": "Haase, Rudolf, 1822-1882"} 1 +2020-09-24 13:19:35.689205 2020-09-24 13:19:35.68921 15ab0765-87f1-47ea-b919-d3738fcbf4b3 {"md5": "51ef4efa07ca2b058384b8b50108cc24", "pid": "116361816", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/116361816", "numeration": "", "date_of_birth": "1883", "date_of_death": "1944", "preferred_name": "Haemmerli, Theodor", "authorized_access_point": "Haemmerli, Theodor, 1883-1944"} 1 +2020-09-24 13:19:36.105247 2020-09-24 13:19:36.105253 f5fb228f-3e5e-49fa-906f-8e583396c325 {"md5": "2631079693ed89121a2d7660b524f7ee", "pid": "128275022", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/128275022", "numeration": "", "preferred_name": "Reckling, Karl-Heinz", "authorized_access_point": "Reckling, Karl-Heinz", "biographical_information": ["stellv. Stadtbezirksschulrat für Polytechnik und Berufsbildung"]} 1 +2020-09-24 13:19:36.504431 2020-09-24 13:19:36.504436 fecc0c6b-f1d4-4fc1-8b28-e87a59c9d1e4 {"md5": "caf383736384d398769a1b69f561ab38", "pid": "1129898709", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1129898709", "numeration": "", "date_of_birth": "1962", "preferred_name": "Rao, Pratima V.", "authorized_access_point": "Rao, Pratima V., 1962-", "biographical_information": ["she holds degrees in economics, sociology, and law"]} 1 +2020-09-24 13:19:36.92508 2020-09-24 13:19:36.925085 06c5451c-59c0-48db-a492-9cacfdead4f5 {"md5": "9868cc8c7f0952653149425747333111", "pid": "130859842", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/130859842", "numeration": "", "date_of_birth": "1929", "preferred_name": "Fischer, Max", "authorized_access_point": "Fischer, Max, 1929-", "biographical_information": ["Dt. Entomologe"]} 1 +2020-09-24 13:19:38.081959 2020-09-24 13:19:38.081964 976189d8-7b31-4631-91d8-c43ae584c15e {"md5": "d9679ca9d14f4662e9c50fd128d65d37", "pid": "106136769X", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/106136769X", "numeration": "", "preferred_name": "Renaud, Christian", "authorized_access_point": "Renaud, Christian"} 1 +2020-09-24 13:19:38.735706 2020-09-24 13:19:38.735712 e42b9e0b-757c-4e6c-8c12-6e8d4afe21b8 {"md5": "8664c2448cefca7143447d76c81ebb90", "pid": "1114895318", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1114895318", "numeration": "", "preferred_name": "Gros, Sabine", "authorized_access_point": "Gros, Sabine"} 1 +2020-09-24 13:19:39.755853 2020-09-24 13:19:39.755858 9ecad17b-1eb3-46aa-95d9-6a2f5ac09ab6 {"md5": "3559e8e057db8ac5ec312d693c6c0d6f", "pid": "134781821", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/134781821", "numeration": "", "variant_name": ["Raid, K."], "date_of_birth": "04.03.1921", "date_of_death": "21.01.2005", "preferred_name": "Raid, Kaljo", "authorized_access_point": "Raid, Kaljo, 1921-2005", "biographical_information": ["Pastor der Estnischen Baptistengemeinde in Toronto"]} 1 +2020-09-24 13:19:40.162466 2020-09-24 13:19:40.162471 4388748b-a2d4-4a54-a8dd-e0d001f3ab16 {"md5": "360a6eacd1af555a9ea3c7c91481ec80", "pid": "116830565", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/116830565", "numeration": "", "preferred_name": "Greig, David", "authorized_access_point": "Greig, David"} 1 +2020-09-24 13:19:56.172053 2020-09-24 13:19:56.172058 c518f0bb-a704-49bc-a52b-d357af4e8d1a {"md5": "35665f5930697c8ddbc003b24845c248", "pid": "117628026", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/117628026", "numeration": "", "preferred_name": "Tiselius, Gustaf", "authorized_access_point": "Tiselius, Gustaf"} 1 +2020-09-24 13:19:41.624909 2020-09-24 13:19:41.624914 877b15df-35d2-4f79-9655-bd4a40722dcf {"md5": "16b530a38de0d80bd4901306cd152744", "pid": "1146539355", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1146539355", "numeration": "", "preferred_name": "Breidbach, Michael", "authorized_access_point": "Breidbach, Michael", "biographical_information": ["Physiker", "geb. in Leverkusen, Diss. Köln 2004"]} 1 +2020-09-24 13:19:42.021794 2020-09-24 13:19:42.021799 61160980-bdc8-45f2-b5ec-9241c10cd821 {"md5": "9e4784e5cd4f58b9c5684fe7b3246038", "pid": "1159213550", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1159213550", "numeration": "", "variant_name": ["Maksimova, Vera", "Maksimova, Vera Anatolʹevna"], "preferred_name": "Maksimova, Vera A.", "authorized_access_point": "Maksimova, Vera A."} 1 +2020-09-24 13:19:43.569493 2020-09-24 13:19:43.569498 f746eea1-474a-4e03-b527-4fad191278b7 {"md5": "8be0d1b1cb6be54137eefb2ec599c859", "pid": "143130706", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/143130706", "numeration": "", "variant_name": ["Denef, A."], "preferred_name": "Neve, Alex de", "authorized_access_point": "Neve, Alex de"} 1 +2020-09-24 13:19:44.480985 2020-09-24 13:19:44.48099 659d7d5d-edb1-4a40-b944-2917dffd5c55 {"md5": "fa882e735a81b776e3f10c43ed6fe0f2", "pid": "11879356X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "Ägypten, König", "identifier": "http://d-nb.info/gnd/11879356X", "numeration": "II.", "variant_name": ["Ptolemaios, Philadelphos", "Ptolemaios, Philadelphos", "Ptolemaeus, Philadelphus, Rex", "Ptolemaeus, Epistolographus", "Ptolemaeus, Ägypten, König"], "date_of_death": "v246", "preferred_name": "Ptolemaios II. Ägypten, König", "authorized_access_point": "Ptolemaios, II., Ägypten, König, -v246"} 1 +2020-09-24 13:19:44.984702 2020-09-24 13:19:44.984707 3528d660-b0a6-45e0-8d48-ccf23eddb657 {"md5": "acd17215da9454ce2296b909bbfa6342", "pid": "1083848275", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "language": ["ita"], "qualifier": "", "identifier": "http://d-nb.info/gnd/1083848275", "numeration": "", "date_of_birth": "1812", "date_of_death": "1884", "preferred_name": "Maggiore, Giacomo", "authorized_access_point": "Maggiore, Giacomo, 1812-1884"} 1 +2020-09-24 13:19:46.279518 2020-09-24 13:19:46.279523 2dbdf703-8931-4e03-8d10-71959d2c22be {"md5": "8a5ac47f14676ff21a0a6e6fb38e5277", "pid": "1145880231", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1145880231", "numeration": "", "date_of_birth": "1947", "preferred_name": "Tirichter, Monika", "authorized_access_point": "Tirichter, Monika, 1947-"} 1 +2020-09-24 13:19:47.465712 2020-09-24 13:19:47.465717 ed369dd6-2d5e-4b88-8231-339af9d81481 {"md5": "e69ef373b362a8bbf7e44a9c26b3bcf0", "pid": "1056601809", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1056601809", "numeration": "", "variant_name": ["Lemus Romero, Samuel Bernardo"], "preferred_name": "Lemus, Samuel Bernardo", "authorized_access_point": "Lemus, Samuel Bernardo", "biographical_information": ["Journalist, Chronist, Dichter"]} 1 +2020-09-24 13:19:48.228719 2020-09-24 13:19:48.228724 58e181e2-214f-40ba-9176-bb4ec646f9a6 {"md5": "9dad0468b09a44999222443cf64f57a6", "pid": "1157297676", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1157297676", "numeration": "", "variant_name": ["Glenn, Lynda D."], "preferred_name": "Dixon Glenn, Lynda", "authorized_access_point": "Dixon Glenn, Lynda"} 1 +2020-09-24 13:19:48.693153 2020-09-24 13:19:48.693159 6009ff12-19cd-46d1-a97c-7b363bab96c6 {"md5": "5d565518b11dbccdc2f02a31cea7114b", "pid": "1157146929", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1157146929", "numeration": "", "variant_name": ["Lopez-Pellicer, José A.", "Pellicer, José A. Lopez"], "preferred_name": "Lopez Pellicer, José A.", "authorized_access_point": "Lopez Pellicer, José A."} 1 +2020-09-24 13:19:50.283812 2020-09-24 13:19:50.283816 cecc8100-ce32-445a-bac7-6ded3104b06b {"md5": "513197f868e6e904fc1e82734f13e40a", "pid": "117155608", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://d-nb.info/gnd/117155608", "numeration": "", "date_of_birth": "1860", "date_of_death": "1946", "preferred_name": "Loesch, Ernst", "authorized_access_point": "Loesch, Ernst, 1860-1946", "biographical_information": ["Dt. Maler und Schriftsteller"]} 1 +2020-09-24 13:19:51.216587 2020-09-24 13:19:51.216592 28dbad4f-66c4-43a6-85d0-d05b8bc3fa78 {"md5": "528c419ff229662a18507f2cf0dbdd8d", "pid": "117186430", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/117186430", "numeration": "", "variant_name": ["Buttersack, Felix Friedrich", "Buttersack, Felix von"], "date_of_birth": "1833", "date_of_death": "1890", "preferred_name": "Buttersack, Felix", "authorized_access_point": "Buttersack, Felix, 1833-1890", "biographical_information": ["Tübingen (Wirkungsort)"]} 1 +2020-09-24 13:19:51.699864 2020-09-24 13:19:51.699869 c1203d9e-41ed-42a5-9a3b-cb3f9595e8d8 {"md5": "be3d4731ecf9bc68c2eec6188aa4fb88", "pid": "12833794X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/12833794X", "numeration": "", "variant_name": ["Erman, E."], "preferred_name": "Erman, Elise", "authorized_access_point": "Erman, Elise"} 1 +2020-09-24 13:19:52.704748 2020-09-24 13:19:52.704753 17f9b2e6-cd18-4131-9393-f9bbcd5bdd88 {"md5": "3f3ccc317e9b227890b7cea1d8fa020d", "pid": "117291307", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/117291307", "numeration": "", "preferred_name": "Umbreit, Franz Robert", "authorized_access_point": "Umbreit, Franz Robert"} 1 +2020-09-24 13:19:53.113544 2020-09-24 13:19:53.113549 9f912edb-45b5-489b-bc5d-9ceb5efd33b8 {"md5": "42ba151614c6f7149eb5632dc7d019d6", "pid": "1081209488", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1081209488", "numeration": "", "date_of_birth": "1954", "preferred_name": "Wiener, Daniel", "authorized_access_point": "Wiener, Daniel, 1954-"} 1 +2020-09-24 13:19:53.996157 2020-09-24 13:19:53.996162 692f7e21-fac7-4c4e-b073-44cb4f28d98e {"md5": "084130632c2df47a29f3ceac639c8ec6", "pid": "1146538235", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1146538235", "numeration": "", "preferred_name": "Selig, Joachim", "authorized_access_point": "Selig, Joachim", "biographical_information": ["Wirtschaftswissenschaftler", "Ulm, Universität: Fak. für Mathematik und Wirtschaftswissenschaften / Abt. Optimierung und Operations Research (Diplomarbeit 2003)"]} 1 +2020-09-24 13:19:54.97359 2020-09-24 13:19:54.973595 0e259e04-c512-43a5-b499-bda99a5796f1 {"md5": "aa38f966d2dcf23a2e4529cb24f873dd", "pid": "117471178", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/117471178", "numeration": "", "preferred_name": "Severeanu, George", "authorized_access_point": "Severeanu, George"} 1 +2020-09-24 13:19:55.369219 2020-09-24 13:19:55.369224 434331bb-38d4-4228-b1ae-bc32f99fed99 {"md5": "455d93d32e4e55a3bd8fcbd7590b8557", "pid": "170971325", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/170971325", "numeration": "", "variant_name": ["Parker, Ian"], "preferred_name": "Parker, Ian C.", "authorized_access_point": "Parker, Ian C.", "biographical_information": ["Tätig an der Univ. of Toronto"]} 1 +2020-09-24 13:19:58.639127 2020-09-24 13:19:58.639132 fffe196e-446f-4749-9c5e-2d935ff6a166 {"md5": "0925057361b370ff8bb347c095358ae7", "pid": "120539544X", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/120539544X", "numeration": "", "variant_name": ["Cadwaladr, Margaret I."], "date_of_birth": "1949", "preferred_name": "Cadwaladr, Margaret", "authorized_access_point": "Cadwaladr, Margaret, 1949-"} 1 +2020-09-24 13:19:59.396137 2020-09-24 13:19:59.396141 4e2ab9a2-7937-47d8-81d6-23e031a1dce8 {"md5": "4dfb5cd3c38800abef274260f13ea390", "pid": "1089477015", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1089477015", "numeration": "", "variant_name": ["Junius Redivivus", "Redivivus, Junius", "Bridges Adams, William"], "date_of_birth": "1797", "date_of_death": "1872", "preferred_name": "Adams, William Bridges", "authorized_access_point": "Adams, William Bridges, 1797-1872"} 1 +2020-09-24 13:20:00.989085 2020-09-24 13:20:00.98909 2abc11ff-8379-49ee-b2b7-871260ec6c6e {"md5": "17752c04a3d843f76f6b4600a601fa32", "pid": "118842218", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/118842218", "numeration": "", "date_of_birth": "1899", "date_of_death": "1952", "preferred_name": "Sieler, Maria", "authorized_access_point": "Sieler, Maria, 1899-1952", "biographical_information": ["\\"Mystikerin\\" aus d. Steiermark m. Privatoffenbarungen"]} 1 +2020-09-24 13:20:01.452465 2020-09-24 13:20:01.45247 deb78ab2-5f6d-413a-a25e-36c0c3ba170c {"md5": "84ff48a325df6c0b17423468da12cc46", "pid": "118865900", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/118865900", "numeration": "", "variant_name": ["Levy, Hermann", "Levi, H."], "date_of_birth": "07.11.1839", "date_of_death": "13.05.1900", "preferred_name": "Levi, Hermann", "authorized_access_point": "Levi, Hermann, 1839-1900"} 1 +2020-09-24 13:20:02.679751 2020-09-24 13:20:02.679756 25060034-ba23-47c3-b4cf-752722a5e109 {"md5": "a763a987779582eaa55ecf4359f7a56d", "pid": "118908642", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/118908642", "numeration": "", "preferred_name": "Palacio, Carlos", "authorized_access_point": "Palacio, Carlos", "biographical_information": ["20.Jh."]} 1 +2020-09-24 13:20:03.160506 2020-09-24 13:20:03.160511 5544fa62-0389-46b4-bd23-dcebffacb5e1 {"md5": "d4d94bffd28a48c0ec3af8a20c8162cd", "pid": "118995316", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/118995316", "numeration": "", "variant_name": ["Sheils Makowski, Brigid"], "date_of_birth": "1937", "preferred_name": "Makowski, Brigid S.", "authorized_access_point": "Makowski, Brigid S., 1937-", "biographical_information": ["Nordir. Revolutionärin"]} 1 +2020-09-24 13:20:03.598718 2020-09-24 13:20:03.598723 6c1c9580-f66f-435a-a70b-7935ef6f1875 {"md5": "fde3a862b93ab09ec4e21512c9613c5a", "pid": "128438185", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/128438185", "numeration": "", "variant_name": ["Graichen, Patrick R."], "date_of_birth": "1972", "preferred_name": "Graichen, Patrick", "authorized_access_point": "Graichen, Patrick, 1972-"} 1 +2020-09-24 13:20:04.082271 2020-09-24 13:20:04.082276 f2d86f26-1006-49ca-8e31-75741b855548 {"md5": "e3b8765dbcb2593ee4165a40852337fb", "pid": "143585541", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/143585541", "numeration": "", "preferred_name": "Young, Vanessa", "authorized_access_point": "Young, Vanessa"} 1 +2020-09-24 13:20:06.103793 2020-09-24 13:20:06.103799 ffd997dc-9450-4ac9-b9ae-eb1a746639cf {"md5": "ef6c08d483e0fdc47732881efb112943", "pid": "119552914", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/119552914", "numeration": "", "date_of_birth": "1875", "date_of_death": "1949", "preferred_name": "Schiavazzi, Piero", "authorized_access_point": "Schiavazzi, Piero, 1875-1949"} 1 +2020-09-24 13:20:07.398113 2020-09-24 13:20:07.398119 cd72039d-0fc6-4a40-b8d8-7c84e4ed37c7 {"md5": "392d735319cb9a05740a0472421fab94", "pid": "11982387X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/11982387X", "numeration": "", "variant_name": ["Schottelius, Johannes"], "preferred_name": "Schottel, Johannes", "authorized_access_point": "Schottel, Johannes", "biographical_information": ["Beitr. im VD-16"]} 1 +2020-09-24 13:20:08.104897 2020-09-24 13:20:08.104901 685bd5d9-09de-4109-9b3c-d04e5aed3323 {"md5": "26640e0ebad699a484ada71b72be5e7e", "pid": "120284952", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/120284952", "numeration": "", "variant_name": ["Dierich, Johannes Urban"], "date_of_birth": "1651", "date_of_death": "1691", "preferred_name": "Dierich, Johann Urban", "authorized_access_point": "Dierich, Johann Urban, 1651-1691", "biographical_information": ["Handelsmann in Leipzig"]} 1 +2020-09-24 13:20:08.558299 2020-09-24 13:20:08.558305 900f8ab0-e64a-48cb-97e7-607e7179a217 {"md5": "0197af059043a5e787ac9f8905758dda", "pid": "120343525", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/120343525", "numeration": "", "date_of_birth": "1968", "preferred_name": "Holtmann, Bernhard", "authorized_access_point": "Holtmann, Bernhard, 1968-", "biographical_information": ["Diss. Inst. für pharmazeutische Chemie"]} 1 +2020-09-24 13:20:09.252689 2020-09-24 13:20:09.252695 13bda532-3e4f-4f88-b364-084b8c0a844a {"md5": "c9021e19bcae6e2658f25c4f8e35a969", "pid": "1077501706", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1077501706", "numeration": "", "preferred_name": "Gunnlaugson, Olen", "authorized_access_point": "Gunnlaugson, Olen"} 1 +2020-09-24 13:20:10.332532 2020-09-24 13:20:10.332538 0f02e844-b719-4577-aae5-6827ba0c74b0 {"md5": "9aab7750173030bf78e37cb4b3e6b8b4", "pid": "1019500344", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1019500344", "numeration": "", "preferred_name": "Routon, Kenneth", "authorized_access_point": "Routon, Kenneth", "biographical_information": ["Ass. professor of cultural anthropology at the Univ. of New Orleans"]} 1 +2020-09-24 13:20:11.60179 2020-09-24 13:20:11.601796 5ea38d11-6924-40d4-b388-9811925d8690 {"md5": "ff5dadb36c47e546eab3620ee1c75131", "pid": "1059925583", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1059925583", "numeration": "", "date_of_birth": "1981", "preferred_name": "Pedraglio, Francesco", "authorized_access_point": "Pedraglio, Francesco, 1981-"} 1 +2020-09-24 13:20:13.169208 2020-09-24 13:20:13.169213 eb9d491a-5b54-4404-bf11-0052ba0242b8 {"md5": "f718e81212f53d7e2b34e8e19f8ee807", "pid": "1178017486", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1178017486", "numeration": "", "variant_name": ["Hjarl Petersen, Jane"], "preferred_name": "Petersen, Jane Hjarl", "authorized_access_point": "Petersen, Jane Hjarl"} 1 +2020-09-24 13:20:14.251121 2020-09-24 13:20:14.251126 ce1451cb-036a-49ea-8f38-2bf90428eef4 {"md5": "496e01922874458b7a6080408f501f36", "pid": "1207474568", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1207474568", "numeration": "", "variant_name": ["Kuehl, Sheila James"], "date_of_birth": "1941", "preferred_name": "Kuehl, Sheila", "authorized_access_point": "Kuehl, Sheila, 1941-"} 1 +2020-09-24 13:20:14.727106 2020-09-24 13:20:14.727111 9d7ff88f-8ae4-457b-b8dc-061b87133d62 {"md5": "cf8301da8f0742b83d324f9fc270a395", "pid": "107441148X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/107441148X", "numeration": "", "variant_name": ["Diaz, Janet Winecoff", "Winecoff Diaz, Janet"], "preferred_name": "Diaz, Janet", "authorized_access_point": "Diaz, Janet"} 1 +2020-09-24 13:20:15.829598 2020-09-24 13:20:15.829604 3c7ca6e7-6fbc-465b-b194-8e061bb01988 {"md5": "ec677172780b175361f8571c58e1be60", "pid": "1054143951", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1054143951", "numeration": "", "variant_name": ["Lamberton, Charles"], "date_of_birth": "1876", "date_of_death": "1960", "preferred_name": "Lamberton, C.", "authorized_access_point": "Lamberton, C., 1876-1960"} 1 +2020-09-24 13:20:16.933348 2020-09-24 13:20:16.933353 58cfb7fa-478a-47f5-93cb-2f8a9ea08a3d {"md5": "ed6f707944253d7e7d5a84959fbb0cf9", "pid": "120917661", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/120917661", "numeration": "", "date_of_birth": "1960", "preferred_name": "Jakob, Gerd", "authorized_access_point": "Jakob, Gerd, 1960-", "biographical_information": ["Diss. Fachbereich Elektrotechnik"]} 1 +2020-09-24 13:20:17.316266 2020-09-24 13:20:17.316281 0494e450-3957-4218-8392-a946b94f6480 {"md5": "d26f837d37aae440eb117affb3ed6b85", "pid": "115832961X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/115832961X", "numeration": "", "variant_name": ["Moiseev, Petr Pavlovič"], "preferred_name": "Moiseev, Petr P.", "authorized_access_point": "Moiseev, Petr P."} 1 +2020-09-24 13:20:17.699882 2020-09-24 13:20:17.699887 62fe8070-9ebf-444d-aa21-17478ae53482 {"md5": "a657f7817cfd8d352ae07c23f858fd7a", "pid": "1183967802", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1183967802", "numeration": "", "preferred_name": "Douglas, Claire", "authorized_access_point": "Douglas, Claire"} 1 +2020-09-24 13:20:19.412124 2020-09-24 13:20:19.412129 85541821-5c69-4eae-ab5c-7bf222ad9227 {"md5": "30d3eeb9758812f3fc3435b41dcff9f9", "pid": "140655387", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140655387", "numeration": "", "variant_name": ["Jacobs, Johannes", "Magnus, Jac. Johs. Carl"], "date_of_birth": "19.08.1812", "date_of_death": "XX.XX.1879", "preferred_name": "Magnus, Jacob Johannes Carl", "authorized_access_point": "Magnus, Jacob Johannes Carl, 1812-1879"} 1 +2020-09-24 13:20:20.599953 2020-09-24 13:20:20.599958 d96f8249-cc12-4cad-88cd-97c905633dc7 {"md5": "c77c1319c2a59a18e5c6e826db3eaf2f", "pid": "120554682", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/120554682", "numeration": "", "date_of_birth": "1970", "preferred_name": "Lange, Bastian", "authorized_access_point": "Lange, Bastian, 1970-", "biographical_information": ["tätig am Leibniz-Institut for Regional Geography, Leipzig, Germany; Schwerpunkte: Kreativwirtschaft, Governancefragen, Innovationsprozesse, Raumentwicklung"]} 1 +2020-09-24 13:20:21.668629 2020-09-24 13:20:21.668634 c6c8fc62-1f25-4cee-b5bf-cc7f3375f12e {"md5": "b36c43adc73116132c7f245c63c179c4", "pid": "121163393", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/121163393", "numeration": "", "variant_name": ["Donato, Francesco Saverio"], "date_of_birth": "1734", "date_of_death": "1796", "preferred_name": "Lillo, Saverio", "authorized_access_point": "Lillo, Saverio, 1734-1796", "biographical_information": ["Ital. Maler"]} 1 +2020-09-24 13:20:22.083143 2020-09-24 13:20:22.083149 dd24f9eb-80da-4cf1-a2d3-73842e3ffa9f {"md5": "2b25bd1c4821cfb95b466f2c9ebabeb6", "pid": "172316480", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/172316480", "numeration": "", "variant_name": ["Parker, Gordon Barraclough"], "date_of_birth": "1942", "preferred_name": "Parker, Gordon", "authorized_access_point": "Parker, Gordon, 1942-", "biographical_information": ["Prof. für Psychiatrie"]} 1 +2020-09-24 13:20:23.015759 2020-09-24 13:20:23.015764 83fe1859-d081-4944-8ed0-91be62b0ea58 {"md5": "ba455d9ef5b5a242e24d45778d51ca03", "pid": "1057339253", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1057339253", "numeration": "", "preferred_name": "Hernández Torres, Santiago", "authorized_access_point": "Hernández Torres, Santiago", "biographical_information": ["Co-Autor von \\"El espacio industrial en Gran Canaria\\", Las Palmas de Gran Canaria 1997"]} 1 +2020-09-24 13:20:23.466794 2020-09-24 13:20:23.466799 4496aa23-81e4-43aa-8456-69f3c894a932 {"md5": "aad0be77a50a74103b60e888b44c1bb7", "pid": "121310582", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "Familie", "identifier": "http://d-nb.info/gnd/121310582", "numeration": "", "preferred_name": "Bułhak Familie", "authorized_access_point": "Bułhak, Familie", "biographical_information": ["Poln. Adelsfamilie"]} 1 +2020-09-24 13:20:25.446983 2020-09-24 13:20:25.446989 b0eac35c-b962-4374-aec5-4c6ecbcab816 {"md5": "e839b3f178a07bd006ea52f4390d1ea9", "pid": "121717194", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/121717194", "numeration": "", "date_of_birth": "1949", "preferred_name": "Köpcke, Bettina", "authorized_access_point": "Köpcke, Bettina, 1949-", "biographical_information": ["Ärztin (El Salvador, Mittelamerika)"]} 1 +2020-09-24 13:20:26.316844 2020-09-24 13:20:26.316849 3142b986-91b5-4835-9f7a-49fe96aa6239 {"md5": "5a1cb752ab5219eb7b3eaeab41189a41", "pid": "1088049001", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "Damascenus", "identifier": "http://d-nb.info/gnd/1088049001", "numeration": "", "variant_name": ["Leontius, Damascenus"], "preferred_name": "Leontius Damascenus", "authorized_access_point": "Leontius, Damascenus"} 1 +2020-09-24 13:20:27.098909 2020-09-24 13:20:27.098915 aba1f07a-1051-4ec1-a10c-10d24de9ed8f {"md5": "ee6a76b83f10c237f8fb29ff969d6311", "pid": "1158360819", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1158360819", "numeration": "", "variant_name": ["Nazarov, Ķambarali"], "preferred_name": "Nazarov, Ķambarali N.", "authorized_access_point": "Nazarov, Ķambarali N."} 1 +2020-09-24 13:20:27.677894 2020-09-24 13:20:27.6779 ccc3ea70-df89-43e0-82a9-3c9895aaff08 {"md5": "3a79aed88827dc6129660a9b352a7d2e", "pid": "121808173", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/121808173", "numeration": "", "variant_name": ["Schönbeck, Johannes"], "preferred_name": "Schönbeck, Johann", "authorized_access_point": "Schönbeck, Johann", "biographical_information": ["Pastor"]} 1 +2020-09-24 13:20:28.088859 2020-09-24 13:20:28.088864 41a36122-5dbb-45ad-b813-a6a3f9cef7c8 {"md5": "905a20126c86e1c182dbb46814f82080", "pid": "140416919", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140416919", "numeration": "", "preferred_name": "Kern, Alexander", "authorized_access_point": "Kern, Alexander", "biographical_information": ["Magister, tätig am Institut für Unternehmensführung, WU Wien; Schwerpunkte: Unternehmensführung, Controlling und Beratung"]} 1 +2020-09-24 13:20:28.582348 2020-09-24 13:20:28.582353 2658ef90-2074-4c1e-8cef-103e32dc8c8b {"md5": "fb9bed7288e79a030591e38ad7e72af8", "pid": "140419799", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140419799", "numeration": "", "date_of_birth": "1955", "preferred_name": "Amendt, Christiane", "authorized_access_point": "Amendt, Christiane, 1955-", "biographical_information": ["Grund- und Hauptschullehrerin; Tätigkeit in der Förderung von LRS-Kindern"]} 1 +2020-09-24 13:20:29.374154 2020-09-24 13:20:29.374159 9400cbb5-de6a-4b5b-b512-136f23aa98ce {"md5": "dc6e2dc0bf858d6c54e83c11e70e33e2", "pid": "140424873", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140424873", "numeration": "", "date_of_birth": "1972", "preferred_name": "Stampone, Giuseppe", "authorized_access_point": "Stampone, Giuseppe, 1972-"} 1 +2020-09-24 13:20:30.207691 2020-09-24 13:20:30.207697 ca9b95c3-57d4-47c3-a1a2-9a593c86fc1c {"md5": "668a96be2966322ca836da435136b066", "pid": "1084011735", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1084011735", "numeration": "", "variant_name": ["Schäufelein, Hans Leonhard", "Schäufelein, Hans Leonhard", "Schäufelein, Hans Leonhard", "Schäufelein, Hans Leonhard", "Schäufelein, Hans Leonhard", "Schäufelein, Hans Leonhard"], "date_of_birth": "1480", "date_of_death": "1540", "preferred_name": "Schäufelein, Hans Leonhard", "authorized_access_point": "Schäufelein, Hans Leonhard, 1480-1540"} 1 +2020-09-24 13:20:30.689507 2020-09-24 13:20:30.689513 d003686a-c609-4fc0-8140-0ecf5b9e37f4 {"md5": "7cf1fc70e6a346bddf10121b6536b16b", "pid": "1095794957", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1095794957", "numeration": "", "preferred_name": "Bols, Mike", "authorized_access_point": "Bols, Mike"} 1 +2020-09-24 13:20:31.179077 2020-09-24 13:20:31.179083 b81c4bb9-df7f-4c2e-bcf1-b1a04d103f90 {"md5": "78f84ea49f9916f265acea1ba52bb18b", "pid": "1100576819", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1100576819", "numeration": "", "date_of_birth": "09.10.1877", "date_of_death": "15.06.1952", "preferred_name": "Cisar, Wenzel", "authorized_access_point": "Cisar, Wenzel, 1877-1952"} 1 +2020-09-24 13:20:33.844163 2020-09-24 13:20:33.844169 b96b6fdf-25bc-41f1-9458-2f87e6e96cfc {"md5": "576a713b178451d0eaa13e82e5b5ca34", "pid": "1147127794", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1147127794", "numeration": "", "variant_name": ["Nārāyaṇadeva, Gajapati", "Nārāyaṇa"], "preferred_name": "Nārāyaṇadeva", "authorized_access_point": "Nārāyaṇadeva", "biographical_information": ["King Gajapati Nārāyaṇadeva of Parlakimidi in Orissa; learnt music from Kaviratna Puruṣottama and the result of his study is embodied in his work Saṅgītanārāyaṇa"]} 1 +2020-09-24 13:20:35.318642 2020-09-24 13:20:35.318648 07fe7a7c-d9c7-4ed5-928f-97ebf1061d9a {"md5": "d54545ed8cabe44d5238e7d8cd691d1a", "pid": "14046090X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/14046090X", "numeration": "", "date_of_birth": "1981", "preferred_name": "Allermann, Lars", "authorized_access_point": "Allermann, Lars, 1981-", "biographical_information": ["Diss. Technische Universität Kaiserslautern, Fachbereich Mathematik"]} 1 +2020-09-24 13:20:36.057162 2020-09-24 13:20:36.057168 ed92ea52-b164-41ea-8401-25b44cc52ce0 {"md5": "98b5fa018cdf3fe74c2cd17cc5e20fa5", "pid": "140469923", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140469923", "numeration": "", "date_of_birth": "1992", "preferred_name": "Kornek, Christian", "authorized_access_point": "Kornek, Christian, 1992-"} 1 +2020-09-24 13:20:36.483771 2020-09-24 13:20:36.483776 ecba7fe9-ab7e-4bc4-a9e0-55942a0b5a54 {"md5": "ceffdb82bf4d5ba1bf71d9afe8539e5d", "pid": "140489096", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140489096", "numeration": "", "variant_name": ["Hampel, Georg", "Hampel, G.", "Schorsch", "Big Brother George"], "date_of_birth": "1953", "preferred_name": "Hampel, Schorsch", "authorized_access_point": "Hampel, Schorsch, 1953-"} 1 +2020-09-24 13:20:36.916041 2020-09-24 13:20:36.916047 15fee2f0-a551-43ec-9646-d32c9c9479db {"md5": "11b18fd0ca4656042c3432436bdc3689", "pid": "140490841", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140490841", "numeration": "", "date_of_birth": "1975", "preferred_name": "Burdinski, Michael", "authorized_access_point": "Burdinski, Michael, 1975-", "biographical_information": ["Fachanwalt für Bau- und Architektenrecht", "hat am 20.02.2009 an d. Univ. Mannheim promoviert"]} 1 +2020-09-24 13:20:37.362007 2020-09-24 13:20:37.362012 83f4a3fc-9528-43dc-9513-abb51d2cab89 {"md5": "0cf27bba948fbcbf3f467aea7a3ecf89", "pid": "140499024", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140499024", "numeration": "", "date_of_birth": "1980", "preferred_name": "Marković, Ana", "authorized_access_point": "Marković, Ana, 1980-", "biographical_information": ["Diss. Fachbereich Verfahrenstechnik"]} 1 +2020-09-24 13:20:37.850126 2020-09-24 13:20:37.850132 abd4badb-3250-47bd-a74d-126f24c0f158 {"md5": "7a57054e94d9caabb8d3aae236102469", "pid": "140500634", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140500634", "numeration": "", "preferred_name": "Tabeau, Ewa", "authorized_access_point": "Tabeau, Ewa", "biographical_information": ["Studium der Statistik und Ökonometrie"]} 1 +2020-09-24 13:20:38.665284 2020-09-24 13:20:38.665291 eb4d3214-74d5-46ff-b6de-6ae454a623b2 {"md5": "8bb72e0ff43c83d26b46f2b5a1b10d72", "pid": "140521720", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140521720", "numeration": "", "variant_name": ["Wei, Chen", "Wei Chen"], "preferred_name": "Chen, Wei", "authorized_access_point": "Chen, Wei", "biographical_information": ["Tätig an der School of Hotel & Tourism Management at Hong Kong Polytechnic Univ."]} 1 +2020-09-24 13:20:39.10669 2020-09-24 13:20:39.106695 f6aea755-597b-4921-a40b-294a3551992b {"md5": "39805d7cdac94367fab01d7eb55f6f97", "pid": "140533257", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140533257", "numeration": "", "variant_name": ["Guillé, Álvaro Mata"], "preferred_name": "Mata Guillé, Álvaro", "authorized_access_point": "Mata Guillé, Álvaro", "biographical_information": ["Costarican. Dichter und Erzähler; Direktor der Theater- und Tanztruppe Baco"]} 1 +2020-09-24 13:20:39.494438 2020-09-24 13:20:39.494443 bdb884ea-c3c0-4af7-82dd-c0cc8f7713fb {"md5": "d41c810e54affaf8a15389668d5b8ee5", "pid": "140540830", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140540830", "numeration": "", "preferred_name": "Große, C.", "authorized_access_point": "Große, C."} 1 +2020-09-24 13:20:39.931281 2020-09-24 13:20:39.931287 08cd1f3a-9461-4fda-8b63-1304e7cacc95 {"md5": "8384f3f8b6ef013ade9da7689b803011", "pid": "140543503", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140543503", "numeration": "", "variant_name": ["Bezdieka, Thomas Franz"], "preferred_name": "Bezděka, Tomáš František", "authorized_access_point": "Bezděka, Tomáš František", "biographical_information": ["Rats-Syndicus von Hradischtie"]} 1 +2020-09-24 13:20:40.86474 2020-09-24 13:20:40.864745 7edc496a-6a1a-4de9-8f8f-4c4b70719caf {"md5": "d332027ce38ffd1f88a6935c15ba87a8", "pid": "122244958", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/122244958", "numeration": "", "variant_name": ["Reno, Kym"], "date_of_birth": "1940", "preferred_name": "Tschauder, Gunter", "authorized_access_point": "Tschauder, Gunter, 1940-", "biographical_information": ["Völklingen (Wirkungsort); Dt. Schriftsteller, Manager sowie Verkaufs- und Managementtrainer"]} 1 +2020-09-24 13:20:41.324143 2020-09-24 13:20:41.324149 e2fb0a25-73e2-4347-91d2-801a56bc9482 {"md5": "7d84077de38ccbda6571fd3b5034404d", "pid": "14055260X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/14055260X", "numeration": "", "variant_name": ["Schob, Fritz Klaus"], "date_of_birth": "1933", "preferred_name": "Schob, Klaus", "authorized_access_point": "Schob, Klaus, 1933-"} 1 +2020-09-24 13:20:41.744805 2020-09-24 13:20:41.744811 48b2085c-dc60-4069-94f3-c87a432004bf {"md5": "b3b26852bfae46826fc3390fcbb2f455", "pid": "140553533", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140553533", "numeration": "", "date_of_birth": "1590", "date_of_death": "1655", "preferred_name": "Vernazza, Livia", "authorized_access_point": "Vernazza, Livia, 1590-1655", "biographical_information": ["Ehefrau von Giovanni de' Medici (1567-1621)"]} 1 +2020-09-24 13:20:42.565912 2020-09-24 13:20:42.565918 51a6e16a-20cc-4c3c-9437-d206d1251191 {"md5": "99b235a04c9f991b56d21086c316c918", "pid": "140564306", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140564306", "numeration": "", "variant_name": ["Thang, Nguyen", "Nguyen, Thang"], "preferred_name": "Nguyen Thang", "authorized_access_point": "Nguyen Thang", "biographical_information": ["Tätig am Centre for Analysis and Forecasting, Vietnam Academy of Social Sciences, Hanoi, Vietnam"]} 1 +2020-09-24 13:20:42.970448 2020-09-24 13:20:42.970459 60f79ec4-b514-45ff-86a3-7b6808cdae12 {"md5": "2fc66e85c64498c48bbbc4e0a7c61994", "pid": "140564853", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140564853", "numeration": "", "variant_name": ["Patroczki ab Patronow, Kazimierz", "Patroczki Patronow, Kazimierz ab", "Patronow Patroczki, Kazimierz ab", "Patroczki de Patronow, Kazimierz", "Patroczki Patronow, Kazimierz de", "Patronow Patroczki, Kazimierz de", "Patrocki de Patronow, Casimirus", "Patrocki Patronow, Casimirus de", "Patronow Patrocki, Casimirus de", "Patrocki von Patronow, Kasimir", "Patrocki Patronow, Kasimir von", "Patrocki, Casimirus", "Patrocki, Kasimir", "Patronow, Kazimierz", "Patronow, Casimirus", "Patronow, Kasimir"], "preferred_name": "Patrocki, Kazimierz", "authorized_access_point": "Patrocki, Kazimierz", "biographical_information": ["Dekan von Ostrzeszow (Schildberg) in Polen"]} 1 +2020-09-24 13:20:43.455925 2020-09-24 13:20:43.45593 d21a85e0-fc7b-4e31-9a2f-3c330a5e4ed4 {"md5": "d8cfca116dd7db9bf1dac59f81ea3620", "pid": "140580204", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140580204", "numeration": "", "date_of_birth": "1979", "preferred_name": "Gast, Ronald", "authorized_access_point": "Gast, Ronald, 1979-", "biographical_information": ["Diss. Fachbereich Chemie und Pharmazie"]} 1 +2020-09-24 13:20:43.954046 2020-09-24 13:20:43.954052 c2095ad6-4961-4c95-a7a3-254d3def83cd {"md5": "45a8909eb6a138c0fdd173e9ebff2495", "pid": "140605304", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140605304", "numeration": "", "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Deppisch, Nico", "authorized_access_point": "Deppisch, Nico, ca. 20./21. Jh.", "biographical_information": ["E-Bassist"]} 1 +2020-09-24 13:20:44.386921 2020-09-24 13:20:44.386926 6a6b35f5-c1d9-43d6-a0f2-0ac3d1f0674f {"md5": "9d52f2347befa3a9354916e8643e7d83", "pid": "140609873", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140609873", "numeration": "", "variant_name": ["Štejman, I.", "Šteimanis, Josifs", "Štejman, I. A.", "Štejman, Iosif A.", "Štejman, Iosif"], "date_of_birth": "1923", "preferred_name": "Šteimans, Josifs", "authorized_access_point": "Šteimans, Josifs, 1923-", "biographical_information": ["Lett. Historiker; 1952-2007 Dozent an der Hochschule in Dünaburg"]} 1 +2020-09-24 13:20:44.864276 2020-09-24 13:20:44.864282 c6ac9be5-aa12-4a94-b237-a36236d31479 {"md5": "e7ae704699fbaa0b8d8bb8d8ce825e8f", "pid": "140623388", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140623388", "numeration": "", "preferred_name": "Graham, Harriet", "authorized_access_point": "Graham, Harriet"} 1 +2020-09-24 13:20:45.267483 2020-09-24 13:20:45.267489 3615142c-1ff7-4b07-b099-e49f8c4a5dae {"md5": "97f419b1c75ba39206bf40078076d196", "pid": "122546016", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/122546016", "numeration": "", "variant_name": ["Hein, Malte Probst-"], "date_of_birth": "1970", "preferred_name": "Probst-Hein, Malte", "authorized_access_point": "Probst-Hein, Malte, 1970-", "biographical_information": ["Diss. Fachbereich Maschinenbau"]} 1 +2020-09-24 13:20:45.67262 2020-09-24 13:20:45.672626 11a31401-4066-479a-ba83-80397138a8f6 {"md5": "958ebbb985f4dcb0a1f93a56316ee5d6", "pid": "122564405", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/122564405", "numeration": "", "date_of_birth": "1968", "preferred_name": "Schmitt, Christian", "authorized_access_point": "Schmitt, Christian, 1968-", "biographical_information": ["Diss. Wirtschaftswissenschaften"]} 1 +2020-09-24 13:20:46.086352 2020-09-24 13:20:46.086358 02b14a98-0a2e-4a12-87a1-dd6c0dcabae9 {"md5": "cb58f6b6ce27a8e2982719652adb8b77", "pid": "1051412552", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1051412552", "numeration": "", "variant_name": ["Serventy, Dominic", "Serventy, Dominic L.", "Serventy, D. L."], "date_of_birth": "1904", "date_of_death": "1988", "preferred_name": "Serventy, Dominic Louis", "authorized_access_point": "Serventy, Dominic Louis, 1904-1988", "biographical_information": ["Vollständiger Vorname: Dominic Louis"]} 1 +2020-09-24 13:20:47.343219 2020-09-24 13:20:47.343224 f4774606-099e-40b6-bc70-c939a030fc28 {"md5": "90f9119b424fcd28ce8a6073b1c1dcab", "pid": "1148669892", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1148669892", "numeration": "", "variant_name": ["Ionesco, Dina", "Ionesco, Dina"], "preferred_name": "Ionesco, Dina", "authorized_access_point": "Ionesco, Dina"} 1 +2020-09-24 13:20:47.793907 2020-09-24 13:20:47.793911 113638e4-3a60-4408-9f67-0fa8c6e729bc {"md5": "3fce9af2a94fa7dc7f985d660fbcb327", "pid": "1146844743", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1146844743", "numeration": "", "preferred_name": "Fundinger, Andreas", "authorized_access_point": "Fundinger, Andreas", "biographical_information": ["Geologe"]} 1 +2020-09-24 13:20:48.560015 2020-09-24 13:20:48.56002 13c63a2e-5e9f-4bbd-93fe-86ab6464533f {"md5": "3c2b0cc10945edc373c5f59970d36637", "pid": "1208406337", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1208406337", "numeration": "", "date_of_birth": "17.04.1944", "preferred_name": "Edwards, Olwen", "authorized_access_point": "Edwards, Olwen, 1944-"} 1 +2020-09-24 13:20:51.836464 2020-09-24 13:20:51.836473 1a0cd69a-4f4e-43da-a472-bd2516e6df2e {"md5": "b7686dc3a50a50f1b80060366500c040", "pid": "1140439618", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1140439618", "numeration": "", "date_of_birth": "1982", "preferred_name": "Hinojos, Mario", "authorized_access_point": "Hinojos, Mario, 1982-"} 1 +2020-09-24 13:20:53.096906 2020-09-24 13:20:53.096912 6e50fc45-6e61-46e2-9e74-415849cd1df1 {"md5": "32bdc814078cde97fbd08403f46d47c3", "pid": "12307374X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/12307374X", "numeration": "", "date_of_death": "1580", "preferred_name": "Massa, Baldassare de", "authorized_access_point": "Massa, Baldassare de, -1580"} 1 +2020-09-24 13:20:53.560564 2020-09-24 13:20:53.56057 7ed47eca-9ee4-41b7-8ce5-91dc061de6b0 {"md5": "0ad2939c92e3304cd1ec51c5fb43d803", "pid": "140330720", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140330720", "numeration": "", "variant_name": ["Oliva Ordóñez, Emilio", "Ordóñez, Emilio Oliva"], "date_of_birth": "1949", "preferred_name": "Oliva, Emilio", "authorized_access_point": "Oliva, Emilio, 1949-"} 1 +2020-09-24 13:20:53.977474 2020-09-24 13:20:53.977479 10144e9f-4e42-418d-b55e-d6c90f6f31ad {"md5": "947d3890d3b78ad51f4a3bc24233239f", "pid": "123090598", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/123090598", "numeration": "", "date_of_birth": "1942", "preferred_name": "Nievergelt, Dieter", "authorized_access_point": "Nievergelt, Dieter, 1942-"} 1 +2020-09-24 13:20:55.489287 2020-09-24 13:20:55.489293 7d541a12-0f44-46f3-aff8-6ee5cb8b4db4 {"md5": "ee28bb45bb3027f7808c237149653f12", "pid": "123541328", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/123541328", "numeration": "", "date_of_birth": "1975", "preferred_name": "Möllmann, Helge", "authorized_access_point": "Möllmann, Helge, 1975-", "biographical_information": ["Diss. Medizinische Fakultät"]} 1 +2020-09-24 13:20:55.915014 2020-09-24 13:20:55.915019 42882695-36ef-4794-849b-f6fe7adf3e95 {"md5": "081e9371edba0d7b22ef0c229237c5b4", "pid": "123571693", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/123571693", "numeration": "", "variant_name": ["Willenberg, Holger Sven"], "date_of_birth": "1969", "preferred_name": "Willenberg, Holger", "authorized_access_point": "Willenberg, Holger, 1969-", "biographical_information": ["Diss. Fachbereich Endokrinologie", "Habil.-Schr. Innere Medizin"]} 1 +2020-09-24 13:20:56.989195 2020-09-24 13:20:56.989201 bf51a0af-4678-4d9a-b7a9-b575de17ad92 {"md5": "a67ef66f1e2971d668c35c96c2387f30", "pid": "140779035", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140779035", "numeration": "", "date_of_birth": "1945", "preferred_name": "Dietrich, Dagmar", "authorized_access_point": "Dietrich, Dagmar, 1945-", "biographical_information": ["Publikationen zur Bau- und Kunstgeschichte Bayerns"]} 1 +2020-09-24 13:20:58.122253 2020-09-24 13:20:58.122259 b8e60a8c-3153-40ef-b44e-49acefdc0e38 {"md5": "0c4ed751dc1040165b745b2a2d59fdb3", "pid": "133999912", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/133999912", "numeration": "", "variant_name": ["Batissier, L.", "Batissier, Yves Louis Joseph", "Batissier, Yves-Louis-Joseph"], "date_of_birth": "1813", "date_of_death": "1882", "preferred_name": "Batissier, Louis", "authorized_access_point": "Batissier, Louis, 1813-1882", "biographical_information": ["Inspecteur de monuments historiques de l'Allier. - Chargé de mission en Grèce, Syrie et Asie Mineure. - Vice-consul de France à Suez"]} 1 +2020-09-24 13:20:59.333875 2020-09-24 13:20:59.333881 7ac0e219-1dd8-4e04-80c4-f8100049ed52 {"md5": "ecdde060f56ccb4a5f6e8780db53dc84", "pid": "1183812086", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1183812086", "numeration": "", "preferred_name": "Müller, Joachim", "authorized_access_point": "Müller, Joachim"} 1 +2020-09-24 13:21:00.365339 2020-09-24 13:21:00.365345 b3eb99d9-f4e6-4e15-870d-db7421718c0e {"md5": "16a1317ab42fc4fd5eb88fc03b97ba75", "pid": "128887249", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/128887249", "numeration": "", "variant_name": ["Jin-Ah Ahn", "Ahn, Jin-Ah"], "date_of_birth": "1969", "preferred_name": "An, Chin-a", "authorized_access_point": "An, Chin-a, 1969-", "biographical_information": ["Korean. Komponistin"]} 1 +2020-09-24 13:21:00.801939 2020-09-24 13:21:00.801946 bd0c93f8-6396-44a9-82c9-64126ae02262 {"md5": "14e588a5f196e9adb5e003c6cb9acca7", "pid": "12377795X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/12377795X", "numeration": "", "date_of_birth": "1971", "preferred_name": "Keil, Markus", "authorized_access_point": "Keil, Markus, 1971-", "biographical_information": ["Diss., Mathematisch-Naturwissenschaftliche Fakultäten (Physik)"]} 1 +2020-09-24 13:21:01.905917 2020-09-24 13:21:01.905921 766e0ad9-7397-4daf-90d5-fb81bd716d11 {"md5": "7fd5461118be1acedd552ced220b8feb", "pid": "140657975", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140657975", "numeration": "", "preferred_name": "Lampe, Timo", "authorized_access_point": "Lampe, Timo"} 1 +2020-09-24 13:21:02.367084 2020-09-24 13:21:02.36709 8378cd1d-375b-4822-84d0-7ac7f28167d1 {"md5": "c522b508c398fc9edcae81d6d91ed926", "pid": "140665927", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140665927", "numeration": "", "variant_name": ["Meining, Wong", "Meiling Wong"], "preferred_name": "Wong, Meiling", "authorized_access_point": "Wong, Meiling", "biographical_information": ["Tätig am Dep. of Industrial Engineering and Management, National Chinyi Univ. of Technology, Taipin, Taiwan; tätig am Dep. of Industrial Engineering and Enterprise Information, Tunghai Univ., Taichung, China"]} 1 +2020-09-24 13:21:02.789728 2020-09-24 13:21:02.789733 cd43f4f3-66a9-41c2-93ac-b944bac78d3c {"md5": "73722748c1cce8bf332b88a617b7135e", "pid": "123954940", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/123954940", "numeration": "", "date_of_birth": "1956", "date_of_death": "1994", "preferred_name": "Rákos, Petr", "authorized_access_point": "Rákos, Petr, 1956-1994", "biographical_information": ["Tschech. Schriftsteller"]} 1 +2020-09-24 13:21:03.588309 2020-09-24 13:21:03.588315 2d9b3b28-082f-4dbb-bbb7-98c08ada3f58 {"md5": "1231084887f967db7a5d148b21a164a9", "pid": "140671153", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140671153", "numeration": "", "date_of_birth": "1973", "preferred_name": "Körner, Sarah", "authorized_access_point": "Körner, Sarah, 1973-"} 1 +2020-09-24 13:21:04.025965 2020-09-24 13:21:04.025971 2f9b8273-6510-4d96-b96e-da17c822231a {"md5": "ea9f67cef4eb6da6e6875042ec85f5c5", "pid": "140680829", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140680829", "numeration": "", "variant_name": ["Zemachson, Simon", "Zemachson, S."], "date_of_birth": "1870", "date_of_death": "1928", "preferred_name": "Zemachson, Sholom Zvi", "authorized_access_point": "Zemachson, Sholom Zvi, 1870-1928", "biographical_information": ["Jüd. Kantor und Komponist"]} 1 +2020-09-24 13:21:04.474333 2020-09-24 13:21:04.47434 ef988449-dd71-4c91-970f-a4ea7653d394 {"md5": "17d6c74a4f72af59f00169d7bb026201", "pid": "140699562", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140699562", "numeration": "", "variant_name": ["Klemp, Wilhelm Rudolf"], "date_of_birth": "1908", "preferred_name": "Klemp, Wilhelm", "authorized_access_point": "Klemp, Wilhelm, 1908-"} 1 +2020-09-24 13:21:04.910029 2020-09-24 13:21:04.910035 3e05c984-1de3-4212-b170-c107061998a4 {"md5": "3a63c2d91a1d62e99d1b34697bef81ca", "pid": "140703063", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140703063", "numeration": "", "preferred_name": "Krings, Fabian", "authorized_access_point": "Krings, Fabian", "biographical_information": ["Leitet seit 2010 den German Desk bei DLA Pieper in Wien"]} 1 +2020-09-24 13:21:05.52484 2020-09-24 13:21:05.524846 374a7519-b4ad-47d5-b7ff-94783f0b44e1 {"md5": "63b903640db32406491ee83782e98640", "pid": "140707921", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140707921", "numeration": "", "date_of_birth": "04.06.1970", "preferred_name": "Wulf, Detlef", "authorized_access_point": "Wulf, Detlef, 1970-"} 1 +2020-09-24 13:21:06.006194 2020-09-24 13:21:06.0062 9017e074-1c59-4acf-9ddf-591c48d11b37 {"md5": "1f12b61e40f8d2228f71ba15132515fd", "pid": "14071393X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/14071393X", "numeration": "", "date_of_birth": "25.05.1978", "preferred_name": "Alhussein, Mustafa", "authorized_access_point": "Alhussein, Mustafa, 1978-"} 1 +2020-09-24 13:21:07.163861 2020-09-24 13:21:07.163867 a861947d-ea50-44a9-8013-fe7f57c8f3b6 {"md5": "cd859550b0386d07fb4601a571db437a", "pid": "1197921923", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1197921923", "numeration": "", "date_of_birth": "1971", "preferred_name": "Krieg, Sebastian", "authorized_access_point": "Krieg, Sebastian, 1971-", "biographical_information": ["engagiert im lokalen Bündnis gegen Rechtsextremismus Eisenach, in der Thüringenvernetzung von Bündnissen und Initiativen gegen rechts und in den Programmbeirat des Thüringer Landesprogramms denkbunt"]} 1 +2020-09-24 13:21:07.733773 2020-09-24 13:21:07.733779 b91571d7-ce3a-4f0f-8f6b-9b61046a3e1e {"md5": "2b565d8caa11e3f795729286b75f03b9", "pid": "140723269", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "Crespi", "identifier": "http://d-nb.info/gnd/140723269", "numeration": "", "variant_name": ["Lleonard, Crespi", "Crespi, Leonardo", "Crespi, Lleonard", "Crespi, Leonart"], "preferred_name": "Leonardo Crespi", "authorized_access_point": "Leonardo, Crespi"} 1 +2020-09-24 13:21:08.164848 2020-09-24 13:21:08.164853 f062e0f8-d350-4769-97f8-d4ef03ad2ec9 {"md5": "e6c068fe2a01a957f2a5e0a4b03b7660", "pid": "140724656", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140724656", "numeration": "", "variant_name": ["Flórez, José Gabriel Aguirre"], "preferred_name": "Aguirre Flórez, José Gabriel", "authorized_access_point": "Aguirre Flórez, José Gabriel", "biographical_information": ["Kolumbian. Wirtschaftsprüfer und Finanzexperte"]} 1 +2020-09-24 13:21:08.606948 2020-09-24 13:21:08.606954 19195bee-45dc-4dca-966e-641cdc7238e5 {"md5": "0bec0ed770a0d93368d6ae2667ac6136", "pid": "140730834", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140730834", "numeration": "", "variant_name": ["Hyunnam, Kim", "Hyunnam Kim"], "preferred_name": "Kim, Hyunnam", "authorized_access_point": "Kim, Hyunnam"} 1 +2020-09-24 13:21:09.116943 2020-09-24 13:21:09.116948 5597ff46-e809-4d70-b26b-830b855b75b5 {"md5": "6d34f9c03f94b74dd4a2b1f889cfb5e2", "pid": "140741623", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140741623", "numeration": "", "variant_name": ["Hoffmann, Moritz Julius"], "date_of_birth": "1981", "preferred_name": "Hoffmann, Moritz", "authorized_access_point": "Hoffmann, Moritz, 1981-", "biographical_information": ["Diss. Medizinische Fakultät an der Universität Göttingen"]} 1 +2020-09-24 13:21:09.557119 2020-09-24 13:21:09.557125 96b8e9b4-dfa5-4092-bc92-6f4a882138c7 {"md5": "76e1e499ade80606c17634f2e77e139b", "pid": "140749195", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140749195", "numeration": "", "date_of_birth": "1972", "preferred_name": "Biefeld, Jörg", "authorized_access_point": "Biefeld, Jörg, 1972-", "biographical_information": ["Diss. Fachbereich Sozialwissenschaften, Medien und Sport der Univ. Mainz"]} 1 +2020-09-24 13:21:09.962192 2020-09-24 13:21:09.962198 82c96876-e147-490b-aa55-0f7758a602ab {"md5": "3991f8cf485d65a37804f838e66e323f", "pid": "140751149", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140751149", "numeration": "", "date_of_birth": "1886", "date_of_death": "1953", "preferred_name": "Boecker, Eduard", "authorized_access_point": "Boecker, Eduard, 1886-1953"} 1 +2020-09-24 13:21:10.393008 2020-09-24 13:21:10.393014 497c5683-5814-41f2-b8bb-618a3b259aa7 {"md5": "7173fa2d5c5a2d4a05eb22593e0f6837", "pid": "124271057", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/124271057", "numeration": "", "date_of_birth": "1929", "preferred_name": "Echevarría, Fernando", "authorized_access_point": "Echevarría, Fernando, 1929-", "biographical_information": ["Portug. Lyriker"]} 1 +2020-09-24 13:21:11.21279 2020-09-24 13:21:11.212796 38938b81-18df-4cd5-bc1e-73161a5763e0 {"md5": "b3a1d1555ffe16ee329d0dbed573d278", "pid": "140764097", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140764097", "numeration": "", "date_of_birth": "1976", "preferred_name": "Hirschler, Sandra", "authorized_access_point": "Hirschler, Sandra, 1976-", "biographical_information": ["Diss. Fachbereich Sozialwissenschaften, Medien und Sport, Inst. für Erziehungswissenschaften"]} 1 +2020-09-24 13:21:11.630085 2020-09-24 13:21:11.63009 2d9df9cd-c90d-4f89-a457-ca7092375494 {"md5": "2d26d9344fd443f964e7aaa54e4e7a91", "pid": "140764143", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140764143", "numeration": "", "date_of_birth": "10.02.1938", "preferred_name": "Siegel, Manfred", "authorized_access_point": "Siegel, Manfred, 1938-"} 1 +2020-09-24 13:21:12.061072 2020-09-24 13:21:12.061078 672115dc-dad8-48ba-a3d7-74038e2aa924 {"md5": "811f243526ab7578024f46bc675405df", "pid": "124368913", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/124368913", "numeration": "", "date_of_birth": "1973", "preferred_name": "Voß, Stefanie", "authorized_access_point": "Voß, Stefanie, 1973-", "biographical_information": ["Diss. Medizinische Fakultät"]} 1 +2020-09-24 13:21:12.459963 2020-09-24 13:21:12.459968 6e843187-9e54-4187-9e6b-057d6482bfd0 {"md5": "f97e4b54f095c8e1257327f53622bb95", "pid": "140791434", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140791434", "numeration": "", "variant_name": ["Helbing, K.", "Helbing, K. W.", "Helbing, Kurt W."], "date_of_birth": "20.10.1939", "preferred_name": "Helbing, Kurt", "authorized_access_point": "Helbing, Kurt, 1939-", "biographical_information": ["Hochschuldozent und Professor für Betriebsanlagen an der Ingenieurhochschule / Technischen Hochschule Wismar (1972-92), Professor für Fabriksysteme und Materialflusstechnik an der Fakultät für Maschinenbau und Schiffstechnik an der Universität Rostock (1992-2005)"]} 1 +2020-09-24 13:21:12.887903 2020-09-24 13:21:12.887909 69f4f2fe-c881-4dd8-bda6-efc8c794639c {"md5": "17ff131d26547e7b6183b22e967c9037", "pid": "140793496", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140793496", "numeration": "", "preferred_name": "Spila, Otello", "authorized_access_point": "Spila, Otello", "biographical_information": ["Kameramann"]} 1 +2020-09-24 13:21:13.282903 2020-09-24 13:21:13.282909 766a7b2c-0e22-40ff-84ff-b808331abbf9 {"md5": "4a3efad80d4b9900c91fb9eee493f658", "pid": "124384196", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/124384196", "numeration": "", "date_of_birth": "1917", "date_of_death": "1995", "preferred_name": "Holtrop, Jan", "authorized_access_point": "Holtrop, Jan, 1917-1995", "biographical_information": ["Niederländ. Maler"]} 1 +2020-09-24 13:21:13.688897 2020-09-24 13:21:13.688903 5f2dd23e-8198-45fb-b7a3-2ca05c7ab69c {"md5": "cc294d7929ed9334a2873ddd9eb6384b", "pid": "140807268", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140807268", "numeration": "", "preferred_name": "Pietrantozzi, Franco", "authorized_access_point": "Pietrantozzi, Franco"} 1 +2020-09-24 13:21:14.097988 2020-09-24 13:21:14.097995 94fc7875-ee5c-403f-a8c2-044077665f84 {"md5": "11296798d044400810f7412533345f04", "pid": "140808337", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140808337", "numeration": "", "variant_name": ["Ma Su", "Massu", "Massoud", "马, 苏"], "date_of_birth": "1981", "preferred_name": "Ma, Su", "authorized_access_point": "Ma, Su, 1981-"} 1 +2020-09-24 13:21:14.626941 2020-09-24 13:21:14.626946 a1524bac-d783-441b-b149-9143d4baa067 {"md5": "62c9da69d35bf2f38d27aa0a245450e9", "pid": "140818197", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140818197", "numeration": "", "date_of_birth": "1954", "preferred_name": "Latzke, Maria E.", "authorized_access_point": "Latzke, Maria E., 1954-"} 1 +2020-09-24 13:21:15.029131 2020-09-24 13:21:15.029137 d94ac58b-9853-480f-b915-c77f16ca3a20 {"md5": "b4e8ea2ca0d79eafddcd37c15c023ecc", "pid": "1158385439", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1158385439", "numeration": "", "variant_name": ["Wood, Derek"], "preferred_name": "Wood, Derek R. W.", "authorized_access_point": "Wood, Derek R. W."} 1 +2020-09-24 13:21:15.438124 2020-09-24 13:21:15.43813 512793e0-ba47-411e-befa-f85268bca1a7 {"md5": "869ad7f8051e27f428abf89aa39da192", "pid": "124521134", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/124521134", "numeration": "", "date_of_birth": "1968", "preferred_name": "Röschner, Christoph Georg", "authorized_access_point": "Röschner, Christoph Georg, 1968-", "biographical_information": ["Diss. Fachbereich Medizin"]} 1 +2020-09-24 13:21:16.225852 2020-09-24 13:21:16.225857 7ebff12f-9ce6-4dee-94ca-a6a7a8216017 {"md5": "3b235bd11fa95398b57876c614d1cc34", "pid": "140835822", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140835822", "numeration": "", "date_of_birth": "1976", "preferred_name": "Sinclair, Alexia", "authorized_access_point": "Sinclair, Alexia, 1976-"} 1 +2020-09-24 13:21:16.639455 2020-09-24 13:21:16.639461 c007620c-4f60-4933-8715-d94a1af41ab9 {"md5": "ee3f33257a59d8fe8d8317d31a9e890e", "pid": "140848363", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140848363", "numeration": "", "variant_name": ["Stock, Elfriede Gertrud Renate", "Zastrow, Elfriede Gertrud Renate"], "date_of_birth": "28.04.1928", "preferred_name": "Stock, Renate", "authorized_access_point": "Stock, Renate, 1928-"} 1 +2020-09-24 13:21:17.069966 2020-09-24 13:21:17.069972 5642494e-9073-4994-851b-a126fa2f247d {"md5": "e872ee61a0b54b45ba93f7e0bb2ce337", "pid": "140849963", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140849963", "numeration": "", "preferred_name": "Margariti, Myrsini", "authorized_access_point": "Margariti, Myrsini"} 1 +2020-09-24 13:21:17.540059 2020-09-24 13:21:17.540065 2deaaa53-e1b1-478c-a962-92146c30f86c {"md5": "b4af047821ef2e6e626f4341b03d52ed", "pid": "14085200X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/14085200X", "numeration": "", "variant_name": ["Jennex, Murray", "Jennex, Murray Eugene"], "date_of_birth": "1956", "preferred_name": "Jennex, Murray E.", "authorized_access_point": "Jennex, Murray E., 1956-", "biographical_information": ["Präsident der Foundation for Knowledge Management"]} 1 +2020-09-24 13:21:18.381431 2020-09-24 13:21:18.381437 7fe22cc4-ad2f-4110-9d0e-85c69e580259 {"md5": "37b5b7b24be2cb1e6a0995004e1d92a2", "pid": "14085603X", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/14085603X", "numeration": "", "variant_name": ["Figarova, Sophia", "Figarova, S. R.", "Figarova, S."], "preferred_name": "Figarova, Sophia R.", "authorized_access_point": "Figarova, Sophia R."} 1 +2020-09-24 13:21:19.584306 2020-09-24 13:21:19.584311 8956c401-0e6a-4bee-8cbb-c2c8a5e66178 {"md5": "c128d64e3a102680872483dd811fd1fb", "pid": "140867147", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140867147", "numeration": "", "preferred_name": "Anken, Lars", "authorized_access_point": "Anken, Lars"} 1 +2020-09-24 13:21:19.995896 2020-09-24 13:21:19.995902 3744151d-076c-4306-92a4-b16f65129e1e {"md5": "c6ed4ab058cbfb22246029a97cdd32ee", "pid": "140873899", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140873899", "numeration": "", "preferred_name": "Zimmermann, Gerhard", "authorized_access_point": "Zimmermann, Gerhard", "biographical_information": ["Zulassungsarbeit, Musik"]} 1 +2020-09-24 13:21:20.438502 2020-09-24 13:21:20.43851 f19de1b2-e453-4fe4-8752-8e47523c1d5c {"md5": "0fd4f7ea12ea143ca142282b706fdbdb", "pid": "140890335", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140890335", "numeration": "", "preferred_name": "Riedmann, Heinz", "authorized_access_point": "Riedmann, Heinz", "biographical_information": ["Dirigent, Chorleiter der Pfarrei Hl. Familie München, 20. / 21. Jh.", "Organist"]} 1 +2020-09-24 13:21:20.887104 2020-09-24 13:21:20.887109 69104e13-b332-4962-bc89-6eb9d9358a3f {"md5": "e329b9353145cbddea05f98d41221bc1", "pid": "140891420", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140891420", "numeration": "", "variant_name": ["Superchumbo"], "date_of_birth": "1970", "preferred_name": "Stephan, Tom", "authorized_access_point": "Stephan, Tom, 1970-", "biographical_information": ["Amerikan. Progressive House-Musiker; Gründer des Musiklabels \\"Superchumbo\\""]} 1 +2020-09-24 13:21:21.30447 2020-09-24 13:21:21.304476 21d2bf22-10d1-4be6-9679-5efa31451a6c {"md5": "8dd7e22e7b3ecd2ed4a8677254c09bee", "pid": "140897933", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140897933", "numeration": "", "variant_name": ["Arctander, Aug."], "date_of_birth": "1818", "date_of_death": "1878", "preferred_name": "Arctander, August Hjeronimus", "authorized_access_point": "Arctander, August Hjeronimus, 1818-1878"} 1 +2020-09-24 13:21:22.267106 2020-09-24 13:21:22.267112 7126a983-cd59-4b66-b60a-45e1a6ad5438 {"md5": "c45f4ad38d2719977825d469634551aa", "pid": "140917675", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140917675", "numeration": "", "variant_name": ["Altmann, Johannes Heinrich", "Altmann, Johannes Henricus"], "preferred_name": "Altmann, Johann Heinrich", "authorized_access_point": "Altmann, Johann Heinrich", "biographical_information": ["P. L."]} 1 +2020-09-24 13:21:22.71983 2020-09-24 13:21:22.719836 dcfb42d1-03c8-4edd-94f8-f3a516eef64a {"md5": "8909934c0ee18b68247f6a04d42bcc52", "pid": "140930531", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140930531", "numeration": "", "date_of_birth": "ca. Gegenwart", "preferred_name": "Rubendarío", "authorized_access_point": "Rubendarío, ca. Gegenwart"} 1 +2020-09-24 13:21:23.13662 2020-09-24 13:21:23.136626 4c70c9de-b74c-4845-9a6d-cf4a83d4acc2 {"md5": "adc944852ff3046552fbbb952ee2a8b3", "pid": "140934081", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/140934081", "numeration": "", "variant_name": ["Erdmann, Thomas R.", "Ross Erdmann, Thomas"], "preferred_name": "Erdmann, Thomas Ross", "authorized_access_point": "Erdmann, Thomas Ross", "biographical_information": ["Director of the Elon University Symphony Orchestra; Professor of Music and Education at Elon University in North Carolina; Jazz ed. for the \\"International Trumpet Guild Journal\\""]} 1 +2020-09-24 13:21:23.872384 2020-09-24 13:21:23.872389 083f9961-d1e2-496b-855f-9c08b5b1cfdc {"md5": "ae22184f0d7a3545f9dbb13cfb71c616", "pid": "1184634262", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1184634262", "numeration": "", "preferred_name": "Omari, Ehsan", "authorized_access_point": "Omari, Ehsan"} 1 +2020-09-24 13:21:24.311796 2020-09-24 13:21:24.311801 3149ce14-7df7-467d-83ca-5f86d6428907 {"md5": "c8de378ca4e8f49abb56c8366dbc7e12", "pid": "143464000", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/143464000", "numeration": "", "date_of_birth": "02.12.1939", "preferred_name": "McNeely, Patricia G.", "authorized_access_point": "McNeely, Patricia G., 1939-", "biographical_information": ["lehrte am College of Journalism and Mass Communication at the University of South Carolina"]} 1 +2020-09-24 13:21:24.863666 2020-09-24 13:21:24.863671 12e59774-9f32-439e-aedd-aa613e36126d {"md5": "3c0f0492a1ab4b17ee15dad4dbd7d1d9", "pid": "1183057687", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1183057687", "numeration": "", "preferred_name": "Meyer, Susanna", "authorized_access_point": "Meyer, Susanna"} 1 +2020-09-24 13:21:25.6257 2020-09-24 13:21:25.625706 674ab10f-3031-4596-aa19-bdfdbed688b9 {"md5": "3907ab2f083f0296f60671385027b0f2", "pid": "125037988", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/125037988", "numeration": "", "date_of_birth": "1908", "preferred_name": "Halperin, Natalie", "authorized_access_point": "Halperin, Natalie, 1908-"} 1 +2020-09-24 13:21:26.329662 2020-09-24 13:21:26.329668 3c5c2956-3263-4618-a07d-b8cc0edbf789 {"md5": "bca0ee2974fde3049e8546b85750558e", "pid": "1011449145", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1011449145", "numeration": "", "date_of_birth": "1971", "preferred_name": "Kay, Tamara", "authorized_access_point": "Kay, Tamara, 1971-"} 1 +2020-09-24 13:21:27.128277 2020-09-24 13:21:27.128283 06f631df-1dbb-4168-8bd5-43bb8e310719 {"md5": "cf56432cfd54deb29ea341393d01e67c", "pid": "171617525", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/171617525", "numeration": "", "preferred_name": "Senser, Robert A.", "authorized_access_point": "Senser, Robert A.", "biographical_information": ["U.S. Foreign Service (1997)"]} 1 +2020-09-24 13:21:27.556303 2020-09-24 13:21:27.556309 2a53d283-b5d0-4bdc-bf3a-dd22bdad549b {"md5": "6236b3c4885da27853b56c7ae4ee2e79", "pid": "104999227X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/104999227X", "numeration": "", "variant_name": ["Lee, Bernon P."], "preferred_name": "Lee, Bernon", "authorized_access_point": "Lee, Bernon", "biographical_information": ["Dept. of Biblical and Theological Studies, Bethel Univ., Minn. (2013)"]} 1 +2020-09-24 13:21:27.976165 2020-09-24 13:21:27.976171 dc742c30-a859-4653-986b-048822202a31 {"md5": "ad72a1d31a0a02607d29beb114ae89eb", "pid": "13902185X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/13902185X", "numeration": "", "preferred_name": "Priftis, Kostas N.", "authorized_access_point": "Priftis, Kostas N."} 1 +2020-09-24 13:21:28.836993 2020-09-24 13:21:28.836998 5fa8cb46-81f3-4f4c-9a75-36b32760a497 {"md5": "1b1a6fd366c5aed85665e78f67635a99", "pid": "141801689", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/141801689", "numeration": "", "preferred_name": "Pārsā, Mānī", "authorized_access_point": "Pārsā, Mānī"} 1 +2020-09-24 13:21:29.252492 2020-09-24 13:21:29.252498 58f3b518-3ab2-43d3-8dcd-f87592bce66b {"md5": "9bfc73569cac3453dc8632b467c36fb0", "pid": "1064724876", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1064724876", "numeration": "", "preferred_name": "Saul, Matthew", "authorized_access_point": "Saul, Matthew", "biographical_information": ["PhD, University of Sheffield, 2009. Post-doctoral research fellow on the European Research Council (ERC) funded MultiRights project, University of Oslo, Norway, February 2013-. Lecturer in law, Durham Universtiy, 2008-2013"]} 1 +2020-09-24 13:21:30.35631 2020-09-24 13:21:30.356316 34924b37-f1a1-42c1-afc1-696b9ba48629 {"md5": "cbab371bacc4aa71b546cad6bcf87062", "pid": "1211358380", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1211358380", "numeration": "", "preferred_name": "Kölling, Mario", "authorized_access_point": "Kölling, Mario"} 1 +2020-09-24 13:21:31.183722 2020-09-24 13:21:31.183728 922c236e-2dcf-45a0-85c8-cff90c2ec80d {"md5": "6dde74877c66aa59bffc0bd09183ab67", "pid": "1089252579", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1089252579", "numeration": "", "variant_name": ["Utley, Jaspar David", "Utley, Jasper"], "preferred_name": "Utley, David Jaspar", "authorized_access_point": "Utley, David Jaspar", "biographical_information": ["Schriftsteller, Namibia"]} 1 +2020-09-24 13:21:31.742719 2020-09-24 13:21:31.742725 f4d95f3f-bec7-4c08-9fa6-a01febb533bb {"md5": "eff6a3573efb31a49548b87cb96a7ea6", "pid": "1089693907", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1089693907", "numeration": "", "variant_name": ["Zhao, Vincent", "Chiu, Vincent", "Chiu, Man-cheuk", "Chao, Wen-jar", "Zhao, Zhuo", "Zhao Wen Zhou", "Chuk, Vincent Chiu Man", "Chiu, Man Cheuk", "Zhao, Wenzuo Vincent", "Zhao, Wenzhou", "Zhao, Wen Zhou", "赵文卓", "趙文卓", "赵卓"], "date_of_birth": "1972", "preferred_name": "Zhao, Wenzhuo", "authorized_access_point": "Zhao, Wenzhuo, 1972-", "biographical_information": ["Schauspieler, Wushu-Kämpfer"]} 1 +2020-09-24 13:21:32.255547 2020-09-24 13:21:32.255552 f5263c4d-89f7-4b41-aed7-e232d8149b05 {"md5": "2b199d8f9300eb5b46b9530aca6855b3", "pid": "142782629", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/142782629", "numeration": "", "preferred_name": "Markelis, Daiva", "authorized_access_point": "Markelis, Daiva", "biographical_information": ["associate professor of English at Eastern, Illinois University"]} 1 +2020-09-24 13:21:32.73195 2020-09-24 13:21:32.731955 f90754af-6027-4800-9982-f3cc45400b87 {"md5": "daa8a186e02f4626a8e87f1d5b0a687c", "pid": "171302605", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/171302605", "numeration": "", "variant_name": ["Xinghe Wang", "Xinghe, Wang"], "preferred_name": "Wang, Xinghe", "authorized_access_point": "Wang, Xinghe", "biographical_information": ["Univ. of Missouri, Columbia, MO, USA (1994)"]} 1 +2020-09-24 13:21:33.140882 2020-09-24 13:21:33.140889 faba243c-a401-46e0-aa11-d7bfa73c4e0b {"md5": "58cf08e80d34ed76160e9e3233f691ea", "pid": "172030773", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/172030773", "numeration": "", "variant_name": ["Hayes, Ralph E.", "Hayes, Ralph Eugene", "Carter, Nick"], "date_of_birth": "1927", "preferred_name": "Hayes, Ralph", "authorized_access_point": "Hayes, Ralph, 1927-", "biographical_information": ["amerikan. Schriftsteller"]} 1 +2020-09-24 13:21:33.924695 2020-09-24 13:21:33.9247 cb61076c-c51a-4df4-8bdc-bc377445fb94 {"md5": "b830fa754446fb3ca901eb30ebe0d5de", "pid": "1061744094", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1061744094", "numeration": "", "variant_name": ["Boszat, Ingrid"], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Broszat, Ingrid", "authorized_access_point": "Broszat, Ingrid, ca. 20. Jh."} 1 +2020-09-24 13:21:34.325722 2020-09-24 13:21:34.325727 0cebd68d-b1d9-4eb0-bc19-ff507b45d3f9 {"md5": "7e395f5f505ab0ee8caf5f8c19a1c392", "pid": "1139400851", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1139400851", "numeration": "", "date_of_birth": "1966", "preferred_name": "Lapp, Axel", "authorized_access_point": "Lapp, Axel, 1966-"} 1 +2020-09-24 13:21:35.895955 2020-09-24 13:21:35.895959 2dd8f666-1772-40f7-8396-e87618572a92 {"md5": "5d135a5d4e1e3645d95e012454b7c15b", "pid": "128174889", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/128174889", "numeration": "", "preferred_name": "Lindblad, Waldemar", "authorized_access_point": "Lindblad, Waldemar"} 1 +2020-09-24 13:21:37.346703 2020-09-24 13:21:37.346708 1dc68a2a-dac1-4ce2-9cb8-ccc62346e022 {"md5": "b5188a0706f0fc7450f52c881e3a8712", "pid": "125666632", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/125666632", "numeration": "", "preferred_name": "Preisler, Peter", "authorized_access_point": "Preisler, Peter"} 1 +2020-09-24 13:21:38.379095 2020-09-24 13:21:38.3791 0293dbce-6c3f-4862-bf7d-75c5590c65e4 {"md5": "34d60194de3c382083e6a85c09be9add", "pid": "125668465", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/125668465", "numeration": "", "preferred_name": "Kretzschmar, Serge", "authorized_access_point": "Kretzschmar, Serge"} 1 +2020-09-24 13:21:39.19698 2020-09-24 13:21:39.196984 697e2561-8710-4d4b-a5fd-20c6c14b1e63 {"md5": "92bee5f1616d1d2a625b8768f749f1e9", "pid": "1190043440", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1190043440", "numeration": "", "date_of_birth": "1984", "preferred_name": "Lovec, Marko", "authorized_access_point": "Lovec, Marko, 1984-"} 1 +2020-09-24 13:21:39.592921 2020-09-24 13:21:39.592926 6b43a90a-e258-4f51-9625-c05e09e37b40 {"md5": "84efb83e3bd94810529b2674db242e5b", "pid": "1120533260", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1120533260", "numeration": "", "preferred_name": "Grellety, Rémi", "authorized_access_point": "Grellety, Rémi"} 1 +2020-09-24 13:21:41.179458 2020-09-24 13:21:41.179464 39217e7f-192f-4331-ae85-74e448f7b99d {"md5": "c5c975f304b41fd12f1c29d4b8aa2a55", "pid": "1157766730", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1157766730", "numeration": "", "preferred_name": "Pallavicinus, Sfortia", "authorized_access_point": "Pallavicinus, Sfortia"} 1 +2020-09-24 13:21:42.09081 2020-09-24 13:21:42.090815 9421ea25-d4e4-4635-bb98-bb3813469dde {"md5": "803b674fbad7dca548cc371706e336f1", "pid": "1200420071", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1200420071", "numeration": "", "preferred_name": "Hosseini, Atosa", "authorized_access_point": "Hosseini, Atosa"} 1 +2020-09-24 13:21:42.853603 2020-09-24 13:21:42.853608 d826d5f6-360f-4e30-90ef-3401d8947dee {"md5": "0f9887d0425f62cff456b2f306f29b75", "pid": "170311104", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/170311104", "numeration": "", "preferred_name": "Onoe, Hisao", "authorized_access_point": "Onoe, Hisao", "biographical_information": ["Kyoto Univ. (1986)"]} 1 +2020-09-24 13:21:43.265239 2020-09-24 13:21:43.265244 8aa5c922-37c2-4465-9f16-420e1795ea30 {"md5": "e7f90ad0ce8f547d1e97c46a6475135d", "pid": "129097632", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/129097632", "numeration": "", "date_of_birth": "1856", "date_of_death": "1934", "preferred_name": "Barnett, Jackson", "authorized_access_point": "Barnett, Jackson, 1856-1934", "biographical_information": ["Creek-Indianer, reich durch Ölfunde auf seinem Land"]} 1 +2020-09-24 13:21:43.69484 2020-09-24 13:21:43.694844 662662bd-b8c1-477f-b270-e399daf72a57 {"md5": "0a1b0087fbee13aa9ec64140bbd653a8", "pid": "115168127X", "gender": "female", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/115168127X", "numeration": "", "variant_name": ["Mann, Christiane"], "preferred_name": "Wurdel, Christiane", "authorized_access_point": "Wurdel, Christiane"} 1 +2020-09-24 13:21:44.091397 2020-09-24 13:21:44.091403 20c136a0-56ca-4cd0-abbe-19ed1987b4c5 {"md5": "79ec6183f989f8750d2a8a8b2b421bd0", "pid": "173120016", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/173120016", "numeration": "", "date_of_birth": "1924", "date_of_death": "2015", "preferred_name": "Hashimoto, Yoshihiko", "authorized_access_point": "Hashimoto, Yoshihiko, 1924-2015"} 1 +2020-09-24 13:21:45.44038 2020-09-24 13:21:45.440384 b3165df2-e76c-4769-8b24-5c77f200d4d9 {"md5": "753d545313d2880aed9f204fe09f345d", "pid": "119464942", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/119464942", "numeration": "", "variant_name": ["Solsberi, Garrison E.", "Solsberi, Garrison", "Salisbury, Garrison E.", "Salisbury, Harrison Evans", "Salisbury, Harrison"], "date_of_birth": "14.11.1908", "date_of_death": "05.07.1993", "preferred_name": "Salisbury, Harrison E.", "authorized_access_point": "Salisbury, Harrison E., 1908-1993", "biographical_information": ["Amerikan. Journalist"]} 1 +2020-09-24 13:21:46.502272 2020-09-24 13:21:46.502278 caded1d2-baf7-4899-a831-825068894791 {"md5": "5b60980719a76d132db0fa938d7ec0b6", "pid": "119499363", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/119499363", "numeration": "", "date_of_birth": "1914", "date_of_death": "1994", "preferred_name": "Cullen, Gordon", "authorized_access_point": "Cullen, Gordon, 1914-1994", "biographical_information": ["Engl. Architekt u. Städtebauer", "Architekt, Grossbritannien"]} 1 +2020-09-24 13:21:48.081463 2020-09-24 13:21:48.081469 4808cf46-81ca-4ed3-9202-be7e227391b3 {"md5": "3614c5bc7a32dedabd1fcd0474237161", "pid": "1051286786", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1051286786", "numeration": "", "variant_name": ["Normann, Reinhard v.", "Von Normann, Reinhard"], "date_of_birth": "1938", "preferred_name": "Normann, Reinhard von", "authorized_access_point": "Normann, Reinhard von, 1938-", "biographical_information": ["Dipl.-Kaufmann, Verf. von Ratgebern, Sachbüchern und Nachschlagewerken"]} 1 +2020-09-24 13:21:49.203682 2020-09-24 13:21:49.203687 bb476279-21c8-46cd-8c6a-291ca8e07552 {"md5": "5f16984881d953ef5a0c30726686e70f", "pid": "1055753001", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1055753001", "numeration": "", "variant_name": ["Mayer, Arno Joseph"], "date_of_birth": "1926", "preferred_name": "Mayer, Arno J.", "authorized_access_point": "Mayer, Arno J., 1926-", "biographical_information": ["Holocaust-Überlebender (1940 in die USA)", "Princeton University (2008)", "Prof. Emeritus of European History"]} 1 +2020-09-24 13:21:49.929859 2020-09-24 13:21:49.929864 e27e3c04-fd78-4902-a531-28895873792d {"md5": "502094d5ff15184c48e91929d20bdfe6", "pid": "1145375154", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1145375154", "numeration": "", "date_of_birth": "1931", "preferred_name": "Echard, William E.", "authorized_access_point": "Echard, William E., 1931-"} 1 +2020-09-24 13:21:50.939184 2020-09-24 13:21:50.939189 4b9db985-cc04-4cac-bc47-94ff4e21201c {"md5": "ce68b132283cf4aa6ccb8c348d482264", "pid": "124715311", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/124715311", "numeration": "", "variant_name": ["Kaplan, R. B."], "date_of_birth": "20.09.1929", "preferred_name": "Kaplan, Robert B.", "authorized_access_point": "Kaplan, Robert B., 1929-", "biographical_information": ["Amerikan. Linguist"]} 1 +2020-09-24 13:21:52.136804 2020-09-24 13:21:52.136809 f22d34b8-9379-4836-9d81-d26fb715c17b {"md5": "1297a9ac7c657b1da37924ebaf073235", "pid": "130124648", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/130124648", "numeration": "", "variant_name": ["Ihori, T."], "date_of_birth": "1952", "preferred_name": "Ihori, Toshihiro", "authorized_access_point": "Ihori, Toshihiro, 1952-", "biographical_information": ["National Gradual Institite for Policy Studies, Minato-ku, Tokyo", "Department of Economics, Metropolitan University, Tokyo", "Graduate School of Economics, University of Tokyo"]} 1 +2020-09-24 13:21:53.303778 2020-09-24 13:21:53.303784 ecc6b34b-ea6f-4f71-a8b2-580d7664d93f {"md5": "729386c8d735892e2e666ffee4715fd2", "pid": "12473409X", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/12473409X", "numeration": "", "variant_name": ["Pestieau, Pierre Marie", "Pestieau, P.", "Pestiau, Pierre", "Pestieau, Pierre M.", "Pesteau, Pierre"], "date_of_birth": "10.09.1943", "preferred_name": "Pestieau, Pierre", "authorized_access_point": "Pestieau, Pierre, 1943-", "biographical_information": ["TSE, Belgien", "Tätig am CREPP, HEC-Management School, University of Liège", "Belgischer Wirtschaftswissenschaftler, auch in den USA und Großbritannien tätig"]} 1 +2020-09-24 13:21:54.430338 2020-09-24 13:21:54.430343 97afea65-7a01-4150-91ab-373209deecb7 {"md5": "c4060d087cb88d8ef8f4940248bf0e8e", "pid": "119310808X", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/119310808X", "numeration": "", "preferred_name": "Zehetner, Michael", "authorized_access_point": "Zehetner, Michael"} 1 +2020-09-24 13:21:55.17738 2020-09-24 13:21:55.177385 f28cb48a-91d0-4f15-be3a-20f0fb24f14e {"md5": "8b2e14faa3c6218a884124efbcb0634d", "pid": "1166620131", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1166620131", "numeration": "", "date_of_birth": "1947", "preferred_name": "Smith, Christopher", "authorized_access_point": "Smith, Christopher, 1947-"} 1 +2020-09-24 13:21:55.649873 2020-09-24 13:21:55.649878 9e10c4cd-150b-482c-96ef-65400380e774 {"md5": "1a89f501b6a0e0020dfb33206ebc4b2e", "pid": "142514926", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/142514926", "numeration": "", "date_of_birth": "1930", "preferred_name": "Eguchi, Masahiro", "authorized_access_point": "Eguchi, Masahiro, 1930-"} 1 +2020-09-24 13:21:57.06053 2020-09-24 13:21:57.060535 4e0c67f0-ce80-49b6-a53f-5effb06a8617 {"md5": "0d9d4f3fcf3f753859b17d3e3cdb0211", "pid": "126712158", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/126712158", "numeration": "", "preferred_name": "Behnke, H.", "authorized_access_point": "Behnke, H."} 1 +2020-09-24 13:21:58.608967 2020-09-24 13:21:58.608972 218fd55d-484a-43e5-a70a-de5786a4b26f {"md5": "6b604b1db74722e527e47844cf9bef6b", "pid": "12688790X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/12688790X", "numeration": "", "date_of_birth": "1889", "date_of_death": "1962", "preferred_name": "Péquignot, Eugène", "authorized_access_point": "Péquignot, Eugène, 1889-1962"} 1 +2020-09-24 13:21:59.3543 2020-09-24 13:21:59.354306 231aa1ce-3209-4915-baa7-ed1c39f52dd1 {"md5": "bdaa6624a7c49a7c6669729daedb0629", "pid": "1057324841", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1057324841", "numeration": "", "variant_name": ["Ballivián Roxas, Vicente de", "Ballivián y Rojas, Vicente de", "Ballivián y Roxas, Vicente de", "Roxas, Vicente de Ballivián y"], "date_of_birth": "1810", "date_of_death": "1891", "preferred_name": "Ballivián Rojas, Vicente de", "authorized_access_point": "Ballivián Rojas, Vicente de, 1810-1891", "biographical_information": ["Historiker u. Diplomat"]} 1 +2020-09-24 13:21:59.767908 2020-09-24 13:21:59.767913 04db236b-c57c-4fb7-b2a8-f08bfbc52325 {"md5": "5be91d9718176169ad1b248c5271ceaf", "pid": "178767875", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/178767875", "numeration": "", "variant_name": ["Luchuanfanglang", "Luchuan, Fanglang"], "date_of_birth": "27.08.1931", "preferred_name": "Togawa, Yoshio", "authorized_access_point": "Togawa, Yoshio, 1931-"} 1 +2020-09-24 13:22:00.550708 2020-09-24 13:22:00.550714 2590af66-bb34-40dc-9c70-8013ff624a2e {"md5": "98cff30b0a759c189879eba93eb3812a", "pid": "170259196", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/170259196", "numeration": "", "preferred_name": "Wriglesworth, John L.", "authorized_access_point": "Wriglesworth, John L.", "biographical_information": ["Queen Mary College, London, England (1986)"]} 1 +2020-09-24 13:22:00.998802 2020-09-24 13:22:00.998807 b7952e50-5c8e-4066-ba73-3c23e669a159 {"md5": "fe92512059b1b15f6abceb7ffcd08042", "pid": "1035656221", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1035656221", "numeration": "", "variant_name": ["Komiya Kōzō", "小宮曠三"], "date_of_birth": "1917", "date_of_death": "1995", "preferred_name": "Komiya, Kōzō", "authorized_access_point": "Komiya, Kōzō, 1917-1995"} 1 +2020-09-24 13:22:01.4133 2020-09-24 13:22:01.413306 27a40ed6-690e-4d24-8b16-69fcc0681c73 {"md5": "aea8bf50499476ec528964dea55609a0", "pid": "1197826912", "gender": "male", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/1197826912", "numeration": "", "preferred_name": "Vonderfour, C. F.", "authorized_access_point": "Vonderfour, C. F."} 1 +2020-09-24 13:22:02.318116 2020-09-24 13:22:02.318122 a001a5e1-1515-4eb6-afe5-6a7dca63adf2 {"md5": "d485471e49d632e32b5a40dd2f18d8ec", "pid": "12742508X", "$schema": "https://mef.rero.ch/schemas/gnd/gnd-person-v0.0.1.json", "qualifier": "", "identifier": "http://d-nb.info/gnd/12742508X", "numeration": "", "preferred_name": "Bogsrud, Thorvald", "authorized_access_point": "Bogsrud, Thorvald"} 1 diff --git a/tests/data/aggnd_pidstore.csv b/tests/data/aggnd_pidstore.csv new file mode 100644 index 00000000..6ff30cf7 --- /dev/null +++ b/tests/data/aggnd_pidstore.csv @@ -0,0 +1,497 @@ +2020-09-24 13:15:12.891947 2020-09-24 13:15:12.891953 gnd 1202813968 R rec 01bed099-4f78-4311-9ef1-103c261c3355 +2020-09-24 13:15:14.413171 2020-09-24 13:15:14.413177 gnd 174361009 R rec f5fa71fc-342e-4d93-95b5-baebabf6db1b +2020-09-24 13:15:14.921936 2020-09-24 13:15:14.921942 gnd 1079471162 R rec 04681022-c873-4735-a7f8-e2b9cf15b210 +2020-09-24 13:15:15.409057 2020-09-24 13:15:15.409062 gnd 1079820728 R rec b6249056-84f9-4621-8c93-202229627bd8 +2020-09-24 13:15:16.149024 2020-09-24 13:15:16.149029 gnd 1109931689 R rec 091261bb-0697-410b-9783-414025023f58 +2020-09-24 13:15:16.593432 2020-09-24 13:15:16.593438 gnd 1057520837 R rec 8e7ee95e-ed8e-4139-8b66-bf4bbb1a4cf8 +2020-09-24 13:15:21.969377 2020-09-24 13:15:21.969382 gnd 100068944 R rec 327652e8-1baa-4755-a674-644584d1fb75 +2020-09-24 13:15:22.826304 2020-09-24 13:15:22.82631 gnd 109790715 R rec c8e41580-1f35-41e0-804b-0fc85dd204d4 +2020-09-24 13:15:23.248452 2020-09-24 13:15:23.248458 gnd 1055795316 R rec db0c61b8-c91c-40ef-b6a7-5f56ae31886b +2020-09-24 13:15:23.707867 2020-09-24 13:15:23.707872 gnd 123731062 R rec 49a4edd6-0cb8-48c6-ba60-33f8bd4d35e7 +2020-09-24 13:15:24.856036 2020-09-24 13:15:24.856041 gnd 118818805 R rec 8c3b5977-e0ce-4a74-954c-9ea1e80bbf4b +2020-09-24 13:15:26.609331 2020-09-24 13:15:26.609337 gnd 1172505020 R rec 97de2d36-ff19-4e82-8549-1a99e198aa91 +2020-09-24 13:15:27.569364 2020-09-24 13:15:27.56937 gnd 122616243 R rec 94da5d1e-0935-47ab-8d56-d4fe2a39e059 +2020-09-24 13:15:30.152317 2020-09-24 13:15:30.152323 gnd 120175533 R rec 0312d9b7-5d0f-45b8-aa8f-c1ecd56af979 +2020-09-24 13:15:30.668746 2020-09-24 13:15:30.668751 gnd 1159283095 R rec 87e28a67-d48a-4b7a-8717-a7ed47611ad8 +2020-09-24 13:15:33.175875 2020-09-24 13:15:33.175881 gnd 1126071935 R rec b77e2ab4-8971-4302-b94b-c06ad405a573 +2020-09-24 13:15:34.529183 2020-09-24 13:15:34.52919 gnd 1163061921 R rec 4d0471aa-ffa9-4e85-89da-3bdee19c3dd4 +2020-09-24 13:15:35.341281 2020-09-24 13:15:35.341287 gnd 133362817 R rec c04527dc-8317-44fe-b13e-0eb09d7caa3a +2020-09-24 13:15:36.01055 2020-09-24 13:15:36.010556 gnd 135226082 R rec 9b646667-f028-4a2e-ba07-6875ca5f83a7 +2020-09-24 13:15:36.452574 2020-09-24 13:15:36.452579 gnd 1147167125 R rec 253f9630-7501-4dee-9cdb-399883ac45f5 +2020-09-24 13:15:39.471517 2020-09-24 13:15:39.471522 gnd 134321707 R rec 978375ca-e2ec-4a34-84c0-ea4a894203a4 +2020-09-24 13:15:40.55094 2020-09-24 13:15:40.550945 gnd 136380638 R rec 39a0a5bd-6d78-423f-be83-312c583a707d +2020-09-24 13:15:40.992469 2020-09-24 13:15:40.992474 gnd 139094342 R rec eb9b725e-7142-466a-921b-9e571a053369 +2020-09-24 13:15:41.393758 2020-09-24 13:15:41.393763 gnd 1159214239 R rec 642c3550-76ef-4c85-aac3-d93945c55a59 +2020-09-24 13:15:41.896718 2020-09-24 13:15:41.896723 gnd 139117091 R rec a543d53d-ee00-40f1-b01e-60c7b0189523 +2020-09-24 13:15:42.343207 2020-09-24 13:15:42.343213 gnd 13912523X R rec 3f050639-505c-4782-9cfa-02c509d9fc0e +2020-09-24 13:15:42.834291 2020-09-24 13:15:42.834297 gnd 139128557 R rec 1fd7d840-2f61-43fe-a656-0140736513ec +2020-09-24 13:15:43.921508 2020-09-24 13:15:43.921513 gnd 139134816 R rec c3363026-24ee-4b9c-a445-e900ea4d3989 +2020-09-24 13:15:44.357489 2020-09-24 13:15:44.357495 gnd 139142878 R rec 0dacfa6f-a883-4e69-b9f5-8cb05f884e6f +2020-09-24 13:15:44.852588 2020-09-24 13:15:44.852594 gnd 139173544 R rec d50c18be-68e4-4c11-b449-c36bbe8cae63 +2020-09-24 13:15:45.286011 2020-09-24 13:15:45.286017 gnd 139180060 R rec a543d85e-2b0a-4103-b305-e4cfad1f59cc +2020-09-24 13:15:45.682337 2020-09-24 13:15:45.682343 gnd 139196269 R rec 35870a54-60e3-4cfa-8e10-459b761f7768 +2020-09-24 13:15:46.139366 2020-09-24 13:15:46.139371 gnd 139204105 R rec f427121e-2259-4a9a-8b0e-6d2624696c22 +2020-09-24 13:15:47.185904 2020-09-24 13:15:47.18591 gnd 139209204 R rec 1e3066dd-5153-4054-b405-1e8a32dc45de +2020-09-24 13:15:47.860213 2020-09-24 13:15:47.860218 gnd 115836346X R rec c3b1efe4-2b26-4b83-ab7e-23ea4bfa42e2 +2020-09-24 13:15:48.439332 2020-09-24 13:15:48.439338 gnd 139238034 R rec 738b098f-f367-4347-a81c-6685d6befc6d +2020-09-24 13:15:48.867755 2020-09-24 13:15:48.867761 gnd 139257012 R rec 14a7e78f-50e2-4a3d-9587-be9ac4acae9c +2020-09-24 13:15:49.259843 2020-09-24 13:15:49.259848 gnd 139268456 R rec 467f69b0-7f11-435d-bca4-9213851fe25c +2020-09-24 13:15:49.695118 2020-09-24 13:15:49.695124 gnd 139284575 R rec de042464-aa28-4d8c-b6f9-10799d58d673 +2020-09-24 13:15:50.181901 2020-09-24 13:15:50.181907 gnd 139286160 R rec e4df7b88-01a3-4d78-a4f2-4d2501cf1939 +2020-09-24 13:15:51.211983 2020-09-24 13:15:51.211988 gnd 139286659 R rec 23ce687c-46e7-4254-98ee-e5b7db33e46f +2020-09-24 13:15:51.61217 2020-09-24 13:15:51.612176 gnd 139289690 R rec e088b7d8-c944-4858-bc2d-0839dba7292c +2020-09-24 13:15:52.102199 2020-09-24 13:15:52.102205 gnd 139310991 R rec f70a49aa-efec-4231-a680-1e7b7ee7f40a +2020-09-24 13:15:52.554266 2020-09-24 13:15:52.554272 gnd 139317783 R rec ee6cec63-5a68-4c1e-839c-71dab59e798d +2020-09-24 13:15:52.984035 2020-09-24 13:15:52.984041 gnd 139323708 R rec 866d6979-01e0-43f8-a465-df0f5ed6afcb +2020-09-24 13:15:53.368253 2020-09-24 13:15:53.368259 gnd 139334114 R rec b127f4b9-e363-41fe-a0c5-2a7c995feff8 +2020-09-24 13:15:53.757896 2020-09-24 13:15:53.757901 gnd 1089339771 R rec f26c4b36-2dd0-4b04-ab57-f5433d9c2e6f +2020-09-24 13:15:55.56913 2020-09-24 13:15:55.569136 gnd 1056159278 R rec b5f932ff-ce0c-47f3-8995-c62d0d3d8f83 +2020-09-24 13:15:56.645625 2020-09-24 13:15:56.64563 gnd 1089511663 R rec 6122a4dc-9b27-4f91-8363-7adb368d0a21 +2020-09-24 13:15:57.086965 2020-09-24 13:15:57.08697 gnd 132327147 R rec 93d40bbc-d56c-4bb8-8ee5-434d2193f8cb +2020-09-24 13:15:57.501866 2020-09-24 13:15:57.501872 gnd 1139789902 R rec d7fc2238-fe10-415e-84a0-a415ebab03da +2020-09-24 13:15:57.92713 2020-09-24 13:15:57.927136 gnd 1146518064 R rec 60736cbd-8005-4f52-a6f3-b4aa8816d51d +2020-09-24 13:15:58.361992 2020-09-24 13:15:58.361997 gnd 1158249543 R rec 27ff11b4-a183-45b5-b058-5e4eef1065f8 +2020-09-24 13:15:59.126003 2020-09-24 13:15:59.126009 gnd 1032029374 R rec f33bad61-49a1-4611-9d3a-1a8de2bebfe1 +2020-09-24 13:16:01.353987 2020-09-24 13:16:01.353993 gnd 1158559291 R rec 85eeab3f-2b62-4684-b495-3dbc17222f5d +2020-09-24 13:16:02.266215 2020-09-24 13:16:02.266222 gnd 103624163 R rec fa9fd912-fb46-458e-af88-f80f30118530 +2020-09-24 13:16:03.97321 2020-09-24 13:16:03.973216 gnd 139380027 R rec 9595e30d-d2d8-4756-9c3d-446384098b2f +2020-09-24 13:16:05.169764 2020-09-24 13:16:05.16977 gnd 137858825 R rec db41d86c-272a-41bb-8bcd-502dd053cf9d +2020-09-24 13:16:05.609507 2020-09-24 13:16:05.609513 gnd 1171152183 R rec 60947d2d-8b73-4671-9a40-3ca0193b1c59 +2020-09-24 13:16:06.127113 2020-09-24 13:16:06.127118 gnd 1022552112 R rec 62af023e-0985-4817-9018-e77a8ea34c8c +2020-09-24 13:16:07.670661 2020-09-24 13:16:07.670667 gnd 134851617 R rec 5481826a-de19-4d72-a4aa-6fe62560d01a +2020-09-24 13:16:08.084887 2020-09-24 13:16:08.084892 gnd 108951431X R rec a72bc629-ad0e-40c6-a948-f03851fd0421 +2020-09-24 13:16:09.932423 2020-09-24 13:16:09.932429 gnd 1146703015 R rec cdbfc20a-95fd-4153-b1e6-92424802d0b3 +2020-09-24 13:16:11.168587 2020-09-24 13:16:11.168592 gnd 1035018888 R rec 6299e353-fc6f-4d6d-8746-1a98e30760bc +2020-09-24 13:16:12.005506 2020-09-24 13:16:12.005512 gnd 1026199441 R rec 85338a5e-bf78-4028-9ff7-36894e87094f +2020-09-24 13:16:13.132397 2020-09-24 13:16:13.132402 gnd 136017282 R rec c98725aa-8adf-457e-9062-f20fae7d421b +2020-09-24 13:16:13.644175 2020-09-24 13:16:13.64418 gnd 137769032 R rec ba235e4f-b975-47d9-8edf-6ca3c2ce4ced +2020-09-24 13:16:14.168262 2020-09-24 13:16:14.168267 gnd 134550412 R rec 270d35d8-bc29-4d9f-b859-b4f790932169 +2020-09-24 13:16:14.62862 2020-09-24 13:16:14.628626 gnd 134619102 R rec 356850ec-2eba-4ebf-b0f5-579b6da2ddf5 +2020-09-24 13:16:15.038932 2020-09-24 13:16:15.038938 gnd 120498464 R rec 059cac9f-d1c4-4781-ab48-35a4a2dc815d +2020-09-24 13:16:16.143154 2020-09-24 13:16:16.14316 gnd 134563166 R rec 4bccc615-70a6-4c5c-ac46-e742732b50c7 +2020-09-24 13:16:16.641406 2020-09-24 13:16:16.641412 gnd 12981752X R rec a3547181-efcd-4afb-ae24-8a30786c91e5 +2020-09-24 13:16:17.702864 2020-09-24 13:16:17.702869 gnd 130556939 R rec 77c10d61-9170-4468-95f4-de6f91069bf3 +2020-09-24 13:16:18.142174 2020-09-24 13:16:18.14218 gnd 139350101 R rec 855a8e51-6891-44fc-a0b7-0e3b561dda8d +2020-09-24 13:16:18.567862 2020-09-24 13:16:18.567867 gnd 139355820 R rec 2e71b7a9-9be1-4e2a-8dae-ee6e88e3d001 +2020-09-24 13:16:18.949051 2020-09-24 13:16:18.949059 gnd 139361405 R rec c8efefa8-0cfd-410b-a923-c1250d95f114 +2020-09-24 13:16:19.376249 2020-09-24 13:16:19.376255 gnd 139376119 R rec 5e8129e1-8c95-45e4-b1d6-e0180d68d6ed +2020-09-24 13:16:19.810602 2020-09-24 13:16:19.810608 gnd 13938233X R rec 9f33dc0f-0326-41c6-b106-4c86a756d105 +2020-09-24 13:16:20.220512 2020-09-24 13:16:20.220518 gnd 139383050 R rec 3dba63d4-8c16-42d6-830b-f1cc68a60bdc +2020-09-24 13:16:20.646391 2020-09-24 13:16:20.646396 gnd 1079304231 R rec fc63ea9f-9fcc-4446-aa96-6c73c4223272 +2020-09-24 13:16:21.047423 2020-09-24 13:16:21.047429 gnd 1084358085 R rec c877a6cb-51ce-4587-b604-2b587bd1cc83 +2020-09-24 13:16:21.491703 2020-09-24 13:16:21.491709 gnd 1098168984 R rec a5c66298-1b4d-4de6-8019-9aa57b38b7d1 +2020-09-24 13:16:22.491263 2020-09-24 13:16:22.491269 gnd 1146337116 R rec 95fad05b-d68e-40e3-ad19-9aa5800bf0a1 +2020-09-24 13:16:23.613057 2020-09-24 13:16:23.613062 gnd 139418598 R rec 45db3ce5-dda8-47e0-8baf-4619bf685514 +2020-09-24 13:16:24.032028 2020-09-24 13:16:24.032034 gnd 139422102 R rec 5c795727-5238-461e-9241-02ca224bd4b1 +2020-09-24 13:16:24.871942 2020-09-24 13:16:24.871948 gnd 13943237X R rec 53259341-8ab2-4dbd-97f7-a1a5ef6293e5 +2020-09-24 13:16:26.021965 2020-09-24 13:16:26.02197 gnd 139476091 R rec 5d5888a9-dc4a-4653-909c-a91a173b54ea +2020-09-24 13:16:26.763936 2020-09-24 13:16:26.763942 gnd 139480056 R rec 3e440c37-c118-41c8-b45f-c1d5a7ad644c +2020-09-24 13:16:27.239674 2020-09-24 13:16:27.23968 gnd 1187368121 R rec b8cae0e2-652f-495c-abbd-01426e730686 +2020-09-24 13:16:27.660967 2020-09-24 13:16:27.660972 gnd 1146809913 R rec eb013efe-7cd0-4680-9277-18df95921ad9 +2020-09-24 13:16:28.317409 2020-09-24 13:16:28.317415 gnd 139494626 R rec 740265e5-34f3-4d22-8e6e-37a587590da9 +2020-09-24 13:16:28.719531 2020-09-24 13:16:28.719537 gnd 139499571 R rec 1a15bd57-feef-407a-98a8-88a99fdc1300 +2020-09-24 13:16:29.141957 2020-09-24 13:16:29.141963 gnd 139503072 R rec 2b5cfdfb-3525-4b10-afb3-cd43224b296e +2020-09-24 13:16:29.573243 2020-09-24 13:16:29.57325 gnd 139512950 R rec f8b88961-7d64-43a3-97ce-6b80da23b906 +2020-09-24 13:16:30.06225 2020-09-24 13:16:30.062255 gnd 139535489 R rec 35ec1f5e-225b-464f-a420-7a3f8bcac414 +2020-09-24 13:16:30.555544 2020-09-24 13:16:30.55555 gnd 139538461 R rec 4c65bef5-b14d-4b80-a18e-6f4dc978f773 +2020-09-24 13:16:30.95432 2020-09-24 13:16:30.954326 gnd 139542043 R rec 39830f16-17a2-4a5d-b332-fffcc4810e4a +2020-09-24 13:16:31.753247 2020-09-24 13:16:31.753253 gnd 13954402X R rec 468e6435-86a1-41d4-9251-be7586d87cf5 +2020-09-24 13:16:32.185633 2020-09-24 13:16:32.185638 gnd 139549498 R rec 7dfb5362-92a1-4ac1-9479-f036f709c406 +2020-09-24 13:16:32.971191 2020-09-24 13:16:32.971197 gnd 139555803 R rec 8ebebdfb-1360-45b2-ad8b-250829ebcba8 +2020-09-24 13:16:33.367744 2020-09-24 13:16:33.367751 gnd 139571736 R rec d3dc2827-f521-4756-b605-c85a3d200cb0 +2020-09-24 13:16:33.790314 2020-09-24 13:16:33.79032 gnd 139572309 R rec 93a8b4b2-bd17-4fca-814f-7fdcebd8248f +2020-09-24 13:16:34.299546 2020-09-24 13:16:34.299551 gnd 139612483 R rec 4e954393-ebb5-4c3a-80e4-8db4be8656c6 +2020-09-24 13:16:34.695426 2020-09-24 13:16:34.695432 gnd 139621156 R rec e959a315-43c5-4691-b0c8-26b45cae0bba +2020-09-24 13:16:35.206761 2020-09-24 13:16:35.206767 gnd 139621652 R rec 3271ab26-c49e-4c49-b074-bf3abfe9da0b +2020-09-24 13:16:35.649218 2020-09-24 13:16:35.649224 gnd 139622675 R rec b902e830-96a7-4ae1-88c9-eda8443858c4 +2020-09-24 13:16:36.300807 2020-09-24 13:16:36.300813 gnd 139626417 R rec 95922ad4-57fa-4a96-bb0e-cdaea1274238 +2020-09-24 13:16:37.076068 2020-09-24 13:16:37.076073 gnd 13962693X R rec 0db408ed-1c66-4f70-86b0-768c7c022f3e +2020-09-24 13:16:37.908997 2020-09-24 13:16:37.909002 gnd 139630147 R rec ebde7cbb-b0ea-4c2f-9d61-40794003caba +2020-09-24 13:16:38.652142 2020-09-24 13:16:38.652148 gnd 1173303146 R rec f6c13168-6996-4c8b-b8e4-266e60ace798 +2020-09-24 13:16:40.0967 2020-09-24 13:16:40.096705 gnd 1143635876 R rec 9a27620e-e345-45d7-811e-c11688d43cd1 +2020-09-24 13:16:40.553302 2020-09-24 13:16:40.553308 gnd 1147618305 R rec 975f4f6b-c762-4c4e-b83a-0ae19119486a +2020-09-24 13:16:41.05794 2020-09-24 13:16:41.057946 gnd 1104279754 R rec 53f6fe2b-36c4-41e6-b024-8f73f36e6a5e +2020-09-24 13:16:41.847747 2020-09-24 13:16:41.847753 gnd 1020513020 R rec 2e1b72b2-d37a-4186-ab36-4f839d2a8c1d +2020-09-24 13:16:42.744415 2020-09-24 13:16:42.74442 gnd 1025155637 R rec 71248da1-5ce7-4304-9e4c-36bfc7f23e98 +2020-09-24 13:16:43.189412 2020-09-24 13:16:43.189418 gnd 1081682752 R rec 195e156d-2be3-4479-bccd-6de07c9f92cf +2020-09-24 13:16:43.628224 2020-09-24 13:16:43.62823 gnd 1081429097 R rec d81aa29b-3905-4f26-a404-2dc33794768a +2020-09-24 13:16:45.547073 2020-09-24 13:16:45.547078 gnd 1095234463 R rec 295f9172-18ad-4629-9184-98d0f7eace26 +2020-09-24 13:16:46.709496 2020-09-24 13:16:46.709502 gnd 1102915556 R rec 47ba7c94-14e9-4549-8b68-940ebf826dd2 +2020-09-24 13:16:47.650249 2020-09-24 13:16:47.650255 gnd 1177717379 R rec 559e23ef-c192-4666-b478-652f0dafc8e8 +2020-09-24 13:16:49.440755 2020-09-24 13:16:49.44076 gnd 1139311719 R rec d59a5ee0-6b74-426e-addc-e974fe264f90 +2020-09-24 13:16:49.885453 2020-09-24 13:16:49.885459 gnd 1140075810 R rec c610b7fd-b3ea-4ed2-a6e5-37339987e584 +2020-09-24 13:16:50.32876 2020-09-24 13:16:50.328765 gnd 1140557696 R rec 5bf80fa4-2264-4d70-a004-8049ae381dce +2020-09-24 13:16:50.743994 2020-09-24 13:16:50.744 gnd 1117731855 R rec c671b7bf-2ddd-47e6-9d77-be92027bcacd +2020-09-24 13:16:51.140087 2020-09-24 13:16:51.140092 gnd 1143266722 R rec 5dad0b86-c8a9-4c62-8600-3ef997cafc94 +2020-09-24 13:16:51.840105 2020-09-24 13:16:51.84011 gnd 1148667989 R rec 735eba08-ec50-4f0c-a050-ef7f9628013d +2020-09-24 13:16:52.549981 2020-09-24 13:16:52.549987 gnd 1158574614 R rec eceb20bb-c88b-4126-9e57-61fdf806dcda +2020-09-24 13:16:53.88675 2020-09-24 13:16:53.886756 gnd 1154802817 R rec b2d41cec-d8f8-4e4d-a325-8302f384289d +2020-09-24 13:16:54.484079 2020-09-24 13:16:54.484084 gnd 171898966 R rec 7e436d5b-72c4-47f7-8109-4a6266b5cca7 +2020-09-24 13:16:55.169202 2020-09-24 13:16:55.169208 gnd 1165269503 R rec d62b1216-5cd9-41d1-820e-1808c4f1237e +2020-09-24 13:16:55.627714 2020-09-24 13:16:55.627719 gnd 1165187388 R rec e0df27ec-3644-4b53-bd29-e099405a1445 +2020-09-24 13:16:56.03749 2020-09-24 13:16:56.037496 gnd 1165547821 R rec fe4deea1-17ea-4a0d-a18f-f58499ef3715 +2020-09-24 13:16:57.038322 2020-09-24 13:16:57.038328 gnd 1168178509 R rec ce41a51a-0a37-4a71-ba67-6c2cf505ef25 +2020-09-24 13:16:57.76297 2020-09-24 13:16:57.762975 gnd 1050328639 R rec d1fe4452-da04-49b8-abbc-52a1fdee026d +2020-09-24 13:16:58.193344 2020-09-24 13:16:58.193349 gnd 132272105 R rec f1d36dfc-5caa-4d53-9851-15adda35a0e0 +2020-09-24 13:16:59.346955 2020-09-24 13:16:59.34696 gnd 1193659566 R rec 55e77507-21e5-4931-af4a-3adab801abf3 +2020-09-24 13:16:59.836441 2020-09-24 13:16:59.836447 gnd 137960344 R rec 6652f3a8-05da-4103-9657-4f42829a0eae +2020-09-24 13:17:00.965912 2020-09-24 13:17:00.965918 gnd 1201779243 R rec ffbc3182-daba-4b66-8906-1f818c7655f5 +2020-09-24 13:17:01.401278 2020-09-24 13:17:01.401284 gnd 1210233460 R rec 284f81c4-b00c-40b3-9972-536f9ea3ca91 +2020-09-24 13:17:01.827718 2020-09-24 13:17:01.827724 gnd 115845760X R rec 0406725f-e480-4c5f-a836-744050f2681a +2020-09-24 13:17:02.25586 2020-09-24 13:17:02.255866 gnd 115909358X R rec 3934d74c-c24c-4f92-93f3-7612f2614bec +2020-09-24 13:17:03.033098 2020-09-24 13:17:03.033104 gnd 1061016382 R rec 27bca793-8df3-48ca-bb30-a9db81b75a1e +2020-09-24 13:17:03.520963 2020-09-24 13:17:03.520968 gnd 14275210X R rec 4e87f709-5eca-4858-b2b5-55fb98207d01 +2020-09-24 13:17:05.219016 2020-09-24 13:17:05.219021 gnd 117948682X R rec 157f6141-7914-45c2-97c5-0e6e6be5720e +2020-09-24 13:17:06.040703 2020-09-24 13:17:06.040708 gnd 1032305649 R rec 1f7219b3-ebe4-4723-b593-df86b40bb708 +2020-09-24 13:17:07.423388 2020-09-24 13:17:07.423394 gnd 1063814340 R rec 3b651a3d-e0cc-4404-89f5-b73e75143ad5 +2020-09-24 13:17:08.47284 2020-09-24 13:17:08.472846 gnd 117143553 R rec 35f9acdd-ec02-4f23-ad7a-48bc287f5ea3 +2020-09-24 13:17:09.398117 2020-09-24 13:17:09.398123 gnd 1038798124 R rec a40cd979-5eae-4189-a6a9-060cb4273d17 +2020-09-24 13:17:10.94181 2020-09-24 13:17:10.941816 gnd 1055200525 R rec 398d8250-9404-4af0-92ba-a1b01cdc74f6 +2020-09-24 13:17:11.514628 2020-09-24 13:17:11.514634 gnd 127283447 R rec dd7d4194-45e5-4960-9859-b95a81164c37 +2020-09-24 13:17:12.505043 2020-09-24 13:17:12.505049 gnd 1131218620 R rec 1737bf28-4114-4888-9851-a82bdfe7389f +2020-09-24 13:17:13.071424 2020-09-24 13:17:13.07143 gnd 170064344 R rec 292e8220-74ef-43f5-b460-f6c153b32f60 +2020-09-24 13:17:14.767388 2020-09-24 13:17:14.767394 gnd 1153744600 R rec 41567c16-3bfb-4fca-8d8a-be4de888d0b6 +2020-09-24 13:17:17.30619 2020-09-24 13:17:17.306195 gnd 1079732772 R rec f8863a63-ffa8-456d-965e-7a2243b3feaf +2020-09-24 13:17:17.809709 2020-09-24 13:17:17.809715 gnd 1131199715 R rec 4ce6ddb6-0afa-4611-9836-8ec71d35114d +2020-09-24 13:17:19.405168 2020-09-24 13:17:19.405174 gnd 1157699162 R rec 7418f902-bc81-4cfd-926e-fa28a916c2df +2020-09-24 13:17:20.215992 2020-09-24 13:17:20.215998 gnd 1169953743 R rec c7b77cc8-5834-49da-872a-b32f37a61d94 +2020-09-24 13:17:22.584008 2020-09-24 13:17:22.584014 gnd 12864852X R rec 5c88c7e4-4dc9-4460-8acc-c7395e2a36bb +2020-09-24 13:17:23.01411 2020-09-24 13:17:23.014115 gnd 137111223 R rec e7344267-3938-458d-8c7b-95b5c143a882 +2020-09-24 13:17:23.723921 2020-09-24 13:17:23.723927 gnd 107738338X R rec 9a690460-83e8-44f9-bd20-034aedbd72d5 +2020-09-24 13:17:26.691816 2020-09-24 13:17:26.691821 gnd 1055348328 R rec 6c968757-207e-4795-a377-c21130fce158 +2020-09-24 13:17:28.104731 2020-09-24 13:17:28.104737 gnd 1158387253 R rec 8c0017b0-6eec-465f-b2eb-e65bae40400c +2020-09-24 13:17:28.493757 2020-09-24 13:17:28.493763 gnd 1158577125 R rec f5df9aa0-3353-4ca4-a6d0-fff3f2019f82 +2020-09-24 13:17:28.920967 2020-09-24 13:17:28.920973 gnd 132490846 R rec 41cb1b1d-6deb-44d7-99ba-55e5250f1387 +2020-09-24 13:17:29.315598 2020-09-24 13:17:29.315603 gnd 11947428X R rec 3cfd50df-135c-4657-91da-9c5e97a28d5b +2020-09-24 13:17:29.726024 2020-09-24 13:17:29.72603 gnd 13905216X R rec dbda0385-39d0-4080-aeae-8f5ccb3c7215 +2020-09-24 13:17:30.163933 2020-09-24 13:17:30.163938 gnd 134845870 R rec 6cef8d98-c633-424d-a2b8-59511d087a39 +2020-09-24 13:17:30.583219 2020-09-24 13:17:30.583225 gnd 120759241 R rec e919c378-6abe-4af6-a05c-99ce11e6d5c3 +2020-09-24 13:17:31.396741 2020-09-24 13:17:31.396747 gnd 134624149 R rec 8df04bae-9782-4718-969c-894d20e2597b +2020-09-24 13:17:32.215908 2020-09-24 13:17:32.215914 gnd 139649263 R rec 1c9ab868-07c9-4b17-81b5-b51d2e1a7eca +2020-09-24 13:17:32.699941 2020-09-24 13:17:32.699947 gnd 1089267177 R rec eabcc624-931f-478f-8e3f-9d9426e96c17 +2020-09-24 13:17:33.714854 2020-09-24 13:17:33.71486 gnd 139654526 R rec 97c0aada-b7f1-4df1-b47e-bd7426baae99 +2020-09-24 13:17:34.108013 2020-09-24 13:17:34.108018 gnd 139655395 R rec 381fb758-759d-496a-902e-97a55fbabc0d +2020-09-24 13:17:34.503241 2020-09-24 13:17:34.503246 gnd 139659382 R rec 4c223499-eaed-498f-ac96-f0bab999778a +2020-09-24 13:17:34.925897 2020-09-24 13:17:34.925903 gnd 139668136 R rec 5ed26412-c5a4-470a-90fa-92d1cd5e820f +2020-09-24 13:17:36.103849 2020-09-24 13:17:36.103855 gnd 139695125 R rec aea202da-13f4-4cf9-8ddf-0529a411a3bc +2020-09-24 13:17:36.582864 2020-09-24 13:17:36.58287 gnd 139705104 R rec e55eada9-c088-48d1-b82b-dba6c8614818 +2020-09-24 13:17:37.101514 2020-09-24 13:17:37.10152 gnd 139708162 R rec 3c81a5e7-0d9f-4a1e-83cc-287e1a0aa3b3 +2020-09-24 13:17:37.809847 2020-09-24 13:17:37.809853 gnd 139708669 R rec b30a3e12-3937-4b73-ac97-5c15f92cef57 +2020-09-24 13:17:38.193514 2020-09-24 13:17:38.193519 gnd 13971166X R rec 106eec88-6c89-40cb-a67f-52e38b74a0c3 +2020-09-24 13:17:38.63372 2020-09-24 13:17:38.633726 gnd 139717676 R rec 26f78900-bbe2-4cab-9dbf-731059d7ecd5 +2020-09-24 13:17:39.092984 2020-09-24 13:17:39.09299 gnd 139719156 R rec b8dfb577-1c25-45fc-9fe7-16f372e2e25c +2020-09-24 13:17:39.58653 2020-09-24 13:17:39.586536 gnd 139733256 R rec 97d386fa-7285-4400-a953-085f20c68635 +2020-09-24 13:17:39.992219 2020-09-24 13:17:39.992225 gnd 139734325 R rec b988a580-62fd-4f78-8b13-c106af548a58 +2020-09-24 13:17:40.424634 2020-09-24 13:17:40.42464 gnd 139746927 R rec 3827da5c-8ec9-4f1e-8f73-590ed80eaa59 +2020-09-24 13:17:40.831507 2020-09-24 13:17:40.831513 gnd 139751661 R rec a4a55b48-c973-4920-92fd-627e8a39c285 +2020-09-24 13:17:41.527864 2020-09-24 13:17:41.52787 gnd 13976674X R rec 458905e0-fe54-4a84-8548-44ab9178349e +2020-09-24 13:17:42.107985 2020-09-24 13:17:42.107991 gnd 139769366 R rec 639db655-df22-44e6-b849-edf31959ffe3 +2020-09-24 13:17:42.813626 2020-09-24 13:17:42.813632 gnd 139772103 R rec e28877c8-d67f-48d8-9f0d-33e1f8e9bb93 +2020-09-24 13:17:43.236716 2020-09-24 13:17:43.236721 gnd 139774807 R rec c6b8272c-a484-4212-9026-12aef1eb02df +2020-09-24 13:17:43.759727 2020-09-24 13:17:43.759733 gnd 139794204 R rec 4af96d9f-e294-4c73-bdd9-cc63311b5f24 +2020-09-24 13:17:44.150421 2020-09-24 13:17:44.150426 gnd 139796282 R rec 7222523d-a369-487b-b314-97b9052067e4 +2020-09-24 13:17:44.56723 2020-09-24 13:17:44.567236 gnd 139822542 R rec 724cd4f8-e2ee-4b26-8f66-c23be2e69ca5 +2020-09-24 13:17:45.038145 2020-09-24 13:17:45.038151 gnd 13983043X R rec 0048d237-2062-49d5-ab5b-150f6e4ed5b2 +2020-09-24 13:17:45.451083 2020-09-24 13:17:45.451089 gnd 103807349 R rec c449fbf1-57f6-4b30-b19b-3050e810933c +2020-09-24 13:17:45.887523 2020-09-24 13:17:45.887529 gnd 139856072 R rec f5089e50-9d9c-4448-9b86-d42421c7796c +2020-09-24 13:17:46.647103 2020-09-24 13:17:46.647109 gnd 103843914 R rec f214f236-1ec1-42d2-bb26-1d7152e38b2e +2020-09-24 13:17:47.066449 2020-09-24 13:17:47.066455 gnd 13986072X R rec 57b398ba-21c4-43e6-807c-086ae850c06d +2020-09-24 13:17:47.863712 2020-09-24 13:17:47.863718 gnd 139862269 R rec 367d1272-69e9-43ed-9784-7c538d1468dc +2020-09-24 13:17:48.285074 2020-09-24 13:17:48.28508 gnd 139863249 R rec 0496b133-9ce4-4fb0-ba9f-c4f7ae9e1e69 +2020-09-24 13:17:48.785223 2020-09-24 13:17:48.785229 gnd 139863915 R rec dbf761bf-637b-4f8a-ac49-50925a0799c0 +2020-09-24 13:17:49.561544 2020-09-24 13:17:49.56155 gnd 139875484 R rec 8262d66a-d59b-45df-a021-2a7846ce8fe8 +2020-09-24 13:17:50.361317 2020-09-24 13:17:50.361323 gnd 139879994 R rec 7a9156f5-62f8-492f-bd0d-dc7b7cc619a7 +2020-09-24 13:17:50.796297 2020-09-24 13:17:50.796302 gnd 139887741 R rec f338ce49-1260-47da-80ac-f6d8df901825 +2020-09-24 13:17:51.224246 2020-09-24 13:17:51.224252 gnd 139889345 R rec 0442e332-7ef4-42a3-83b9-9714b7cb2dbc +2020-09-24 13:17:51.652417 2020-09-24 13:17:51.652423 gnd 139894535 R rec 761de3e1-3133-4344-b9d4-bd5769af5760 +2020-09-24 13:17:52.065185 2020-09-24 13:17:52.06519 gnd 139894977 R rec b62691a3-59a3-4051-b0aa-abe4d71f2f47 +2020-09-24 13:17:53.587383 2020-09-24 13:17:53.587389 gnd 127205233 R rec a180447d-86c2-49af-93b4-641f018a488a +2020-09-24 13:17:54.082501 2020-09-24 13:17:54.082506 gnd 10432063X R rec 931bc7d1-9f9b-4c54-8a8a-67afffdc3508 +2020-09-24 13:17:54.548425 2020-09-24 13:17:54.548431 gnd 1146583117 R rec f7fe0c5f-e0e0-46d0-afb9-48309b3ae230 +2020-09-24 13:17:55.035667 2020-09-24 13:17:55.035673 gnd 117125184X R rec 4f626244-89ca-460c-aa3f-4f3a0bf59feb +2020-09-24 13:17:56.854807 2020-09-24 13:17:56.854813 gnd 1159284946 R rec 7718e1c1-23e5-4bdc-931c-06845f8bdf80 +2020-09-24 13:17:57.686842 2020-09-24 13:17:57.686848 gnd 1047508257 R rec 2b1c56f2-c98c-46c6-9414-fda327e52124 +2020-09-24 13:17:58.872873 2020-09-24 13:17:58.872879 gnd 1089778236 R rec 523c80c1-f4dd-409c-8992-e3390911eb2f +2020-09-24 13:18:00.07005 2020-09-24 13:18:00.070055 gnd 1090111223 R rec 541ee361-66cc-40ad-8556-fed50d0b003a +2020-09-24 13:18:00.978653 2020-09-24 13:18:00.978659 gnd 127307427 R rec 72ec14de-9861-4a5f-82be-60f460e432db +2020-09-24 13:18:02.021763 2020-09-24 13:18:02.021769 gnd 130677299 R rec c483b150-5a26-4802-b2b3-ac35deafaaca +2020-09-24 13:18:03.359568 2020-09-24 13:18:03.359574 gnd 1077608101 R rec 571566d6-f615-4304-8835-ca9b3cd64e4c +2020-09-24 13:18:03.822805 2020-09-24 13:18:03.822811 gnd 1116459507 R rec 10dc4e4a-b731-4470-bb35-bf5a782c5238 +2020-09-24 13:18:04.238757 2020-09-24 13:18:04.238763 gnd 1120815401 R rec 1bdeb7e0-6a88-470d-a7f2-6f1e0c0e730d +2020-09-24 13:18:08.821217 2020-09-24 13:18:08.821222 gnd 1089682018 R rec 48900a66-c4e0-40c8-b037-090db3b72fb3 +2020-09-24 13:18:10.927111 2020-09-24 13:18:10.927117 gnd 1046083678 R rec 549aeb26-04c4-437e-a6fc-fb323b5db3ea +2020-09-24 13:18:12.501567 2020-09-24 13:18:12.501572 gnd 139939415 R rec 7472c54e-d3b8-4ce6-b72a-a89250cadf30 +2020-09-24 13:18:12.927128 2020-09-24 13:18:12.927134 gnd 139942920 R rec 51a016b8-40d1-402a-a9fa-27d0c1e06ed9 +2020-09-24 13:18:13.383906 2020-09-24 13:18:13.383912 gnd 139946144 R rec 5d108f86-d808-4da9-9a39-c966ff6872fd +2020-09-24 13:18:14.037169 2020-09-24 13:18:14.037175 gnd 139952179 R rec 384388a2-c940-4cd4-8854-3d2963db5fd5 +2020-09-24 13:18:14.567248 2020-09-24 13:18:14.567253 gnd 139961968 R rec faf8ea90-bbf4-4c45-811f-3ed986391ade +2020-09-24 13:18:16.507691 2020-09-24 13:18:16.507697 gnd 139972625 R rec fca3beab-f0b9-49b5-a241-d2ba9f0e09c8 +2020-09-24 13:18:17.152936 2020-09-24 13:18:17.152942 gnd 139974199 R rec 56517741-8642-4491-a67e-5e02b0318925 +2020-09-24 13:18:18.671587 2020-09-24 13:18:18.671593 gnd 140031936 R rec 77d3e38f-713b-4dea-b638-71a7326c9260 +2020-09-24 13:18:19.10927 2020-09-24 13:18:19.109276 gnd 140058699 R rec 572ca7cc-570a-4f0d-8172-d670fc32beec +2020-09-24 13:18:19.6101 2020-09-24 13:18:19.610106 gnd 140091319 R rec 7fbcaf43-51ca-49c8-9202-f44e3f874651 +2020-09-24 13:18:20.075316 2020-09-24 13:18:20.075321 gnd 14010657X R rec 3d7b9655-c0e2-4f35-93ae-5265af3ee54e +2020-09-24 13:18:20.784879 2020-09-24 13:18:20.784885 gnd 1159046239 R rec 7a24b6f7-3fa4-4a70-82a0-7ee2de92a5f0 +2020-09-24 13:18:21.190431 2020-09-24 13:18:21.190437 gnd 140115889 R rec 21b1f48d-7e95-46f1-b11d-4b67eee8a526 +2020-09-24 13:18:21.667151 2020-09-24 13:18:21.667157 gnd 140122494 R rec facbecde-b2ed-48af-9b21-f824be3965d3 +2020-09-24 13:18:22.101044 2020-09-24 13:18:22.10105 gnd 140129510 R rec d228a0bb-46a8-4a28-9932-9e84682535b9 +2020-09-24 13:18:23.055335 2020-09-24 13:18:23.055343 gnd 140132872 R rec 4cc68c7e-104c-4959-9a6f-1a9b81eeb312 +2020-09-24 13:18:23.573227 2020-09-24 13:18:23.573233 gnd 140142622 R rec f889b66b-3b80-4c21-b8f1-efb16d229ce8 +2020-09-24 13:18:24.257386 2020-09-24 13:18:24.257391 gnd 141184531 R rec d316b232-d362-4561-8eb5-a77f60677e64 +2020-09-24 13:18:25.321459 2020-09-24 13:18:25.321466 gnd 106068375X R rec 0faf4285-11c4-4753-bc62-8d57a840ebd0 +2020-09-24 13:18:26.259773 2020-09-24 13:18:26.259779 gnd 1147141754 R rec 58df659d-aaa7-4c14-a4e7-2ebf9d1027be +2020-09-24 13:18:28.624605 2020-09-24 13:18:28.624611 gnd 170594211 R rec c4544677-eef0-4097-9685-47f53ece0075 +2020-09-24 13:18:29.447125 2020-09-24 13:18:29.447131 gnd 131915401 R rec c17c29ca-004a-4996-890e-c094af6a8055 +2020-09-24 13:18:30.480938 2020-09-24 13:18:30.480944 gnd 136999271 R rec 045d6963-d724-4afa-9a90-80ea1bb1e885 +2020-09-24 13:18:33.184331 2020-09-24 13:18:33.184337 gnd 14016815X R rec b3105300-d780-412b-a324-fdb5c0c7ca55 +2020-09-24 13:18:33.601517 2020-09-24 13:18:33.601523 gnd 140169016 R rec c382ee26-f785-45ed-966e-52cbf646b86d +2020-09-24 13:18:34.027362 2020-09-24 13:18:34.027368 gnd 140199535 R rec fd655b0e-2a1d-4b85-9872-11bbd97072da +2020-09-24 13:18:34.436461 2020-09-24 13:18:34.436467 gnd 140234381 R rec c8376ea3-65d3-4c1c-ae6f-627f04ad7b36 +2020-09-24 13:18:34.973181 2020-09-24 13:18:34.973186 gnd 140248609 R rec 39b734c1-5e0d-4dd3-a728-e08fcf6e3b3f +2020-09-24 13:18:35.387628 2020-09-24 13:18:35.387633 gnd 140259015 R rec 19f1248e-6c58-46be-9876-2bb133a22d1e +2020-09-24 13:18:35.881158 2020-09-24 13:18:35.881164 gnd 1089227736 R rec 2d2524bf-c544-4acc-932d-e83a9f857c1e +2020-09-24 13:18:36.31293 2020-09-24 13:18:36.312936 gnd 140285776 R rec 3fe8ff30-bfb4-4cf8-bc40-6e97019c71e2 +2020-09-24 13:18:36.720039 2020-09-24 13:18:36.720044 gnd 140306412 R rec 29c03a89-2700-4710-9c27-e8dd9105f166 +2020-09-24 13:18:37.475228 2020-09-24 13:18:37.475233 gnd 140322140 R rec dc32494d-9836-49ab-a094-9a12c78c82aa +2020-09-24 13:18:37.975415 2020-09-24 13:18:37.975421 gnd 140322213 R rec 2156b8be-b828-42af-9f9c-4c861828e562 +2020-09-24 13:18:38.422578 2020-09-24 13:18:38.422589 gnd 1195625049 R rec 1a61370f-e2e0-4680-82c2-84595b83b2c9 +2020-09-24 13:18:39.720405 2020-09-24 13:18:39.720411 gnd 140327126 R rec 7e0d25db-1a20-4bc7-aef8-d769a8b11201 +2020-09-24 13:18:40.1979 2020-09-24 13:18:40.197906 gnd 140327606 R rec 662695d1-4a8f-4cfa-83d1-2eb81ad48511 +2020-09-24 13:18:40.594938 2020-09-24 13:18:40.594943 gnd 140338683 R rec 532afeba-a3de-4ded-99c6-596fe873899e +2020-09-24 13:18:41.063507 2020-09-24 13:18:41.063513 gnd 140345833 R rec 9b885c21-a08b-4c6e-ad18-d87a816b1e65 +2020-09-24 13:18:41.471279 2020-09-24 13:18:41.471284 gnd 140345884 R rec 3d755bb6-221c-435f-bf8b-e67f4b7dc2e7 +2020-09-24 13:18:42.096782 2020-09-24 13:18:42.096788 gnd 140351493 R rec 19a9a88c-7df8-4a5e-8c3f-28482def70b0 +2020-09-24 13:18:42.578957 2020-09-24 13:18:42.578962 gnd 131898922 R rec 9f6abb4a-8c01-4fe7-aecd-4c796c6cdd71 +2020-09-24 13:18:46.545588 2020-09-24 13:18:46.545594 gnd 1096172224 R rec fc6346b7-7a99-4922-a9e6-0f08bd2b4418 +2020-09-24 13:18:47.306748 2020-09-24 13:18:47.306754 gnd 117490555 R rec e4eb29f9-03f7-44d9-babb-758ed74d9721 +2020-09-24 13:18:48.357694 2020-09-24 13:18:48.357699 gnd 1192403959 R rec b0feac2a-4355-4a65-be63-e5cd99883c1f +2020-09-24 13:18:50.519615 2020-09-24 13:18:50.519621 gnd 1089160305 R rec b60122af-5c2c-4604-b507-3fbe84ef7b4e +2020-09-24 13:18:50.923403 2020-09-24 13:18:50.923408 gnd 1146794703 R rec a6f07e24-9865-411e-97ce-5c78f0e6368f +2020-09-24 13:18:51.797595 2020-09-24 13:18:51.797601 gnd 1190648008 R rec d2562fc1-adf5-4f1c-a8a3-2534c82fc7a3 +2020-09-24 13:18:53.490783 2020-09-24 13:18:53.490788 gnd 1061268225 R rec da697898-6a42-4a2b-82c7-da904b42ac37 +2020-09-24 13:18:54.566691 2020-09-24 13:18:54.566697 gnd 1145486533 R rec 94ce9b55-ccbf-4ff3-9d2c-c4166e2ea0b2 +2020-09-24 13:18:58.767299 2020-09-24 13:18:58.767304 gnd 1044044519 R rec 6b14b9ee-2b17-4fb6-ac56-9a2da48295da +2020-09-24 13:19:00.579547 2020-09-24 13:19:00.579553 gnd 1088070116 R rec ac4d7d28-79f3-4d0d-851f-19c2e359e00f +2020-09-24 13:19:01.111624 2020-09-24 13:19:01.11163 gnd 1211775216 R rec 4ea71172-caa9-4be2-991e-fdb0eba6a9c9 +2020-09-24 13:19:01.852928 2020-09-24 13:19:01.852934 gnd 127772553 R rec d9f4c391-d302-468e-8f78-a65bfc77a720 +2020-09-24 13:19:02.312885 2020-09-24 13:19:02.312891 gnd 173047165 R rec f8fb22a3-050e-4856-ad7c-df50e1433882 +2020-09-24 13:19:03.849032 2020-09-24 13:19:03.849038 gnd 1079981993 R rec a4da7023-3fdf-4b2f-b890-ac6ccab3ff19 +2020-09-24 13:19:05.197243 2020-09-24 13:19:05.197249 gnd 1120736277 R rec f28e3906-81ba-46e0-a9df-88df2d4e657b +2020-09-24 13:19:06.074836 2020-09-24 13:19:06.074842 gnd 1158794118 R rec 6cc25ad9-b3f1-491d-99a8-b4d54af388c0 +2020-09-24 13:19:07.250777 2020-09-24 13:19:07.250783 gnd 123952425 R rec 7f0aa282-b921-4438-816b-eba7f4a0074b +2020-09-24 13:19:08.338085 2020-09-24 13:19:08.338091 gnd 111263638 R rec c28551cd-18ab-4e02-8376-a03dd62b0a71 +2020-09-24 13:19:08.898626 2020-09-24 13:19:08.898631 gnd 127845925 R rec 5a8ab12f-f0eb-485b-b404-aed73c4d39fe +2020-09-24 13:19:09.846986 2020-09-24 13:19:09.846992 gnd 127857214 R rec 2952d48f-be90-4eda-aa2e-bfde26898667 +2020-09-24 13:19:11.23421 2020-09-24 13:19:11.234215 gnd 112912388X R rec 128785f5-53df-4994-bb4c-ebd2fbefa9c5 +2020-09-24 13:19:11.796735 2020-09-24 13:19:11.796741 gnd 107495839X R rec 3cd82f0d-91a0-4d9f-bdd9-61b17379234d +2020-09-24 13:19:13.238238 2020-09-24 13:19:13.238243 gnd 17027926X R rec d4631b15-f912-405f-8d3e-08cc81325871 +2020-09-24 13:19:14.906375 2020-09-24 13:19:14.906381 gnd 140838902 R rec 8deb0eb1-4f48-475d-a5c5-b27cbe4b2d8e +2020-09-24 13:19:16.556975 2020-09-24 13:19:16.556981 gnd 1089283814 R rec a2aa601f-8348-4eda-a691-a514c82d5cb5 +2020-09-24 13:19:17.012207 2020-09-24 13:19:17.012213 gnd 1176847597 R rec 9d376ef6-b28b-4424-9681-cf95fed70d2a +2020-09-24 13:19:17.942215 2020-09-24 13:19:17.942221 gnd 1213248760 R rec ff1307e5-b944-43fd-99a1-dd48d55046df +2020-09-24 13:19:18.934673 2020-09-24 13:19:18.934679 gnd 1126067296 R rec 7bc89b74-64d0-4a71-a41f-6e5f2dd47fb0 +2020-09-24 13:19:23.961723 2020-09-24 13:19:23.961729 gnd 1158376529 R rec 9fb05565-1637-4269-813a-ee1ab1d5cdef +2020-09-24 13:19:24.906214 2020-09-24 13:19:24.906219 gnd 1159252289 R rec a923a431-fb6f-439b-9d3e-5013c69d172f +2020-09-24 13:19:25.348135 2020-09-24 13:19:25.34814 gnd 1203731949 R rec 7f8a8af2-6494-4d67-aa2c-f8bd582ce275 +2020-09-24 13:19:26.631268 2020-09-24 13:19:26.631274 gnd 16110522X R rec b45779a6-1b90-470d-aad2-a218a3758b9a +2020-09-24 13:19:30.382792 2020-09-24 13:19:30.382798 gnd 171484940 R rec 81d12b0a-bda8-44e6-a774-b670196e8530 +2020-09-24 13:19:31.637533 2020-09-24 13:19:31.637539 gnd 108964194X R rec 1d9dfd73-b9b8-41ad-8f4e-d27277d75ad8 +2020-09-24 13:19:33.464782 2020-09-24 13:19:33.464788 gnd 115832599 R rec 525bac2e-db58-45fd-ad11-e1d1c72e8410 +2020-09-24 13:19:33.91162 2020-09-24 13:19:33.911626 gnd 128244224 R rec 5ad3089b-38dd-4eea-b39d-82920d2ad72d +2020-09-24 13:19:34.359347 2020-09-24 13:19:34.359353 gnd 1048228142 R rec f2543612-d733-4034-a0b1-4fbf818c05b4 +2020-09-24 13:19:35.258369 2020-09-24 13:19:35.258374 gnd 116348747 R rec 7ce563ff-9145-4c64-a704-29bbf59a6898 +2020-09-24 13:19:35.682789 2020-09-24 13:19:35.682794 gnd 116361816 R rec 15ab0765-87f1-47ea-b919-d3738fcbf4b3 +2020-09-24 13:19:36.096342 2020-09-24 13:19:36.096348 gnd 128275022 R rec f5fb228f-3e5e-49fa-906f-8e583396c325 +2020-09-24 13:19:36.498001 2020-09-24 13:19:36.498007 gnd 1129898709 R rec fecc0c6b-f1d4-4fc1-8b28-e87a59c9d1e4 +2020-09-24 13:19:36.918007 2020-09-24 13:19:36.918012 gnd 130859842 R rec 06c5451c-59c0-48db-a492-9cacfdead4f5 +2020-09-24 13:19:38.074872 2020-09-24 13:19:38.074878 gnd 106136769X R rec 976189d8-7b31-4631-91d8-c43ae584c15e +2020-09-24 13:19:38.725841 2020-09-24 13:19:38.725847 gnd 1114895318 R rec e42b9e0b-757c-4e6c-8c12-6e8d4afe21b8 +2020-09-24 13:19:39.749216 2020-09-24 13:19:39.749222 gnd 134781821 R rec 9ecad17b-1eb3-46aa-95d9-6a2f5ac09ab6 +2020-09-24 13:19:40.156607 2020-09-24 13:19:40.156613 gnd 116830565 R rec 4388748b-a2d4-4a54-a8dd-e0d001f3ab16 +2020-09-24 13:19:40.548673 2020-09-24 13:19:40.548679 gnd 116947195 R rec 52cded0a-dfb0-4ef9-9e4f-ae250e6694c3 +2020-09-24 13:19:41.618005 2020-09-24 13:19:41.61801 gnd 1146539355 R rec 877b15df-35d2-4f79-9655-bd4a40722dcf +2020-09-24 13:19:42.015059 2020-09-24 13:19:42.015065 gnd 1159213550 R rec 61160980-bdc8-45f2-b5ec-9241c10cd821 +2020-09-24 13:19:43.562618 2020-09-24 13:19:43.562624 gnd 143130706 R rec f746eea1-474a-4e03-b527-4fad191278b7 +2020-09-24 13:19:44.473268 2020-09-24 13:19:44.473274 gnd 11879356X R rec 659d7d5d-edb1-4a40-b944-2917dffd5c55 +2020-09-24 13:19:44.977493 2020-09-24 13:19:44.977498 gnd 1083848275 R rec 3528d660-b0a6-45e0-8d48-ccf23eddb657 +2020-09-24 13:19:46.273249 2020-09-24 13:19:46.273254 gnd 1145880231 R rec 2dbdf703-8931-4e03-8d10-71959d2c22be +2020-09-24 13:19:47.45905 2020-09-24 13:19:47.459055 gnd 1056601809 R rec ed369dd6-2d5e-4b88-8231-339af9d81481 +2020-09-24 13:19:48.222038 2020-09-24 13:19:48.222043 gnd 1157297676 R rec 58e181e2-214f-40ba-9176-bb4ec646f9a6 +2020-09-24 13:19:48.686908 2020-09-24 13:19:48.686913 gnd 1157146929 R rec 6009ff12-19cd-46d1-a97c-7b363bab96c6 +2020-09-24 13:19:50.277485 2020-09-24 13:19:50.277491 gnd 117155608 R rec cecc8100-ce32-445a-bac7-6ded3104b06b +2020-09-24 13:19:51.20906 2020-09-24 13:19:51.209066 gnd 117186430 R rec 28dbad4f-66c4-43a6-85d0-d05b8bc3fa78 +2020-09-24 13:19:51.692533 2020-09-24 13:19:51.692539 gnd 12833794X R rec c1203d9e-41ed-42a5-9a3b-cb3f9595e8d8 +2020-09-24 13:19:52.69876 2020-09-24 13:19:52.698765 gnd 117291307 R rec 17f9b2e6-cd18-4131-9393-f9bbcd5bdd88 +2020-09-24 13:19:53.107345 2020-09-24 13:19:53.107351 gnd 1081209488 R rec 9f912edb-45b5-489b-bc5d-9ceb5efd33b8 +2020-09-24 13:19:53.98916 2020-09-24 13:19:53.989165 gnd 1146538235 R rec 692f7e21-fac7-4c4e-b073-44cb4f28d98e +2020-09-24 13:19:54.965838 2020-09-24 13:19:54.965843 gnd 117471178 R rec 0e259e04-c512-43a5-b499-bda99a5796f1 +2020-09-24 13:19:55.362722 2020-09-24 13:19:55.362728 gnd 170971325 R rec 434331bb-38d4-4228-b1ae-bc32f99fed99 +2020-09-24 13:19:56.16417 2020-09-24 13:19:56.164176 gnd 117628026 R rec c518f0bb-a704-49bc-a52b-d357af4e8d1a +2020-09-24 13:19:56.895375 2020-09-24 13:19:56.895381 gnd 1146540825 R rec f1df2a90-9f8c-4263-850c-fa00cc98fff2 +2020-09-24 13:19:58.630688 2020-09-24 13:19:58.630694 gnd 120539544X R rec fffe196e-446f-4749-9c5e-2d935ff6a166 +2020-09-24 13:19:59.389423 2020-09-24 13:19:59.389428 gnd 1089477015 R rec 4e2ab9a2-7937-47d8-81d6-23e031a1dce8 +2020-09-24 13:20:00.982625 2020-09-24 13:20:00.982631 gnd 118842218 R rec 2abc11ff-8379-49ee-b2b7-871260ec6c6e +2020-09-24 13:20:01.445333 2020-09-24 13:20:01.445339 gnd 118865900 R rec deb78ab2-5f6d-413a-a25e-36c0c3ba170c +2020-09-24 13:20:02.673035 2020-09-24 13:20:02.673041 gnd 118908642 R rec 25060034-ba23-47c3-b4cf-752722a5e109 +2020-09-24 13:20:03.154355 2020-09-24 13:20:03.15436 gnd 118995316 R rec 5544fa62-0389-46b4-bd23-dcebffacb5e1 +2020-09-24 13:20:03.592449 2020-09-24 13:20:03.592455 gnd 128438185 R rec 6c1c9580-f66f-435a-a70b-7935ef6f1875 +2020-09-24 13:20:04.07499 2020-09-24 13:20:04.074996 gnd 143585541 R rec f2d86f26-1006-49ca-8e31-75741b855548 +2020-09-24 13:20:06.095934 2020-09-24 13:20:06.09594 gnd 119552914 R rec ffd997dc-9450-4ac9-b9ae-eb1a746639cf +2020-09-24 13:20:07.389682 2020-09-24 13:20:07.389688 gnd 11982387X R rec cd72039d-0fc6-4a40-b8d8-7c84e4ed37c7 +2020-09-24 13:20:08.094979 2020-09-24 13:20:08.094985 gnd 120284952 R rec 685bd5d9-09de-4109-9b3c-d04e5aed3323 +2020-09-24 13:20:08.534336 2020-09-24 13:20:08.534342 gnd 120343525 R rec 900f8ab0-e64a-48cb-97e7-607e7179a217 +2020-09-24 13:20:09.244814 2020-09-24 13:20:09.244819 gnd 1077501706 R rec 13bda532-3e4f-4f88-b364-084b8c0a844a +2020-09-24 13:20:10.326376 2020-09-24 13:20:10.326382 gnd 1019500344 R rec 0f02e844-b719-4577-aae5-6827ba0c74b0 +2020-09-24 13:20:11.595393 2020-09-24 13:20:11.595399 gnd 1059925583 R rec 5ea38d11-6924-40d4-b388-9811925d8690 +2020-09-24 13:20:13.162437 2020-09-24 13:20:13.162442 gnd 1178017486 R rec eb9d491a-5b54-4404-bf11-0052ba0242b8 +2020-09-24 13:20:14.243521 2020-09-24 13:20:14.243526 gnd 1207474568 R rec ce1451cb-036a-49ea-8f38-2bf90428eef4 +2020-09-24 13:20:14.718967 2020-09-24 13:20:14.718972 gnd 107441148X R rec 9d7ff88f-8ae4-457b-b8dc-061b87133d62 +2020-09-24 13:20:15.823096 2020-09-24 13:20:15.823101 gnd 1054143951 R rec 3c7ca6e7-6fbc-465b-b194-8e061bb01988 +2020-09-24 13:20:16.92671 2020-09-24 13:20:16.926716 gnd 120917661 R rec 58cfb7fa-478a-47f5-93cb-2f8a9ea08a3d +2020-09-24 13:20:17.308285 2020-09-24 13:20:17.308291 gnd 115832961X R rec 0494e450-3957-4218-8392-a946b94f6480 +2020-09-24 13:20:17.692697 2020-09-24 13:20:17.692703 gnd 1183967802 R rec 62fe8070-9ebf-444d-aa21-17478ae53482 +2020-09-24 13:20:19.405608 2020-09-24 13:20:19.405613 gnd 140655387 R rec 85541821-5c69-4eae-ab5c-7bf222ad9227 +2020-09-24 13:20:20.593759 2020-09-24 13:20:20.593765 gnd 120554682 R rec d96f8249-cc12-4cad-88cd-97c905633dc7 +2020-09-24 13:20:21.662194 2020-09-24 13:20:21.6622 gnd 121163393 R rec c6c8fc62-1f25-4cee-b5bf-cc7f3375f12e +2020-09-24 13:20:22.077007 2020-09-24 13:20:22.077013 gnd 172316480 R rec dd24f9eb-80da-4cf1-a2d3-73842e3ffa9f +2020-09-24 13:20:23.009475 2020-09-24 13:20:23.00948 gnd 1057339253 R rec 83fe1859-d081-4944-8ed0-91be62b0ea58 +2020-09-24 13:20:23.457688 2020-09-24 13:20:23.457694 gnd 121310582 R rec 4496aa23-81e4-43aa-8456-69f3c894a932 +2020-09-24 13:20:25.429289 2020-09-24 13:20:25.429295 gnd 121717194 R rec b0eac35c-b962-4374-aec5-4c6ecbcab816 +2020-09-24 13:20:26.308853 2020-09-24 13:20:26.308859 gnd 1088049001 R rec 3142b986-91b5-4835-9f7a-49fe96aa6239 +2020-09-24 13:20:27.089558 2020-09-24 13:20:27.089564 gnd 1158360819 R rec aba1f07a-1051-4ec1-a10c-10d24de9ed8f +2020-09-24 13:20:27.66976 2020-09-24 13:20:27.669766 gnd 121808173 R rec ccc3ea70-df89-43e0-82a9-3c9895aaff08 +2020-09-24 13:20:28.082738 2020-09-24 13:20:28.082744 gnd 140416919 R rec 41a36122-5dbb-45ad-b813-a6a3f9cef7c8 +2020-09-24 13:20:28.575324 2020-09-24 13:20:28.57533 gnd 140419799 R rec 2658ef90-2074-4c1e-8cef-103e32dc8c8b +2020-09-24 13:20:29.365147 2020-09-24 13:20:29.365153 gnd 140424873 R rec 9400cbb5-de6a-4b5b-b512-136f23aa98ce +2020-09-24 13:20:30.19921 2020-09-24 13:20:30.199215 gnd 1084011735 R rec ca9b95c3-57d4-47c3-a1a2-9a593c86fc1c +2020-09-24 13:20:30.682264 2020-09-24 13:20:30.682269 gnd 1095794957 R rec d003686a-c609-4fc0-8140-0ecf5b9e37f4 +2020-09-24 13:20:31.169718 2020-09-24 13:20:31.169723 gnd 1100576819 R rec b81c4bb9-df7f-4c2e-bcf1-b1a04d103f90 +2020-09-24 13:20:33.835374 2020-09-24 13:20:33.83538 gnd 1147127794 R rec b96b6fdf-25bc-41f1-9458-2f87e6e96cfc +2020-09-24 13:20:35.30974 2020-09-24 13:20:35.309746 gnd 14046090X R rec 07fe7a7c-d9c7-4ed5-928f-97ebf1061d9a +2020-09-24 13:20:36.050198 2020-09-24 13:20:36.050204 gnd 140469923 R rec ed92ea52-b164-41ea-8401-25b44cc52ce0 +2020-09-24 13:20:36.476409 2020-09-24 13:20:36.476415 gnd 140489096 R rec ecba7fe9-ab7e-4bc4-a9e0-55942a0b5a54 +2020-09-24 13:20:36.907956 2020-09-24 13:20:36.907961 gnd 140490841 R rec 15fee2f0-a551-43ec-9646-d32c9c9479db +2020-09-24 13:20:37.354397 2020-09-24 13:20:37.354402 gnd 140499024 R rec 83f4a3fc-9528-43dc-9513-abb51d2cab89 +2020-09-24 13:20:37.842263 2020-09-24 13:20:37.842269 gnd 140500634 R rec abd4badb-3250-47bd-a74d-126f24c0f158 +2020-09-24 13:20:38.647345 2020-09-24 13:20:38.647351 gnd 140521720 R rec eb4d3214-74d5-46ff-b6de-6ae454a623b2 +2020-09-24 13:20:39.09861 2020-09-24 13:20:39.098616 gnd 140533257 R rec f6aea755-597b-4921-a40b-294a3551992b +2020-09-24 13:20:39.487612 2020-09-24 13:20:39.487618 gnd 140540830 R rec bdb884ea-c3c0-4af7-82dd-c0cc8f7713fb +2020-09-24 13:20:39.923622 2020-09-24 13:20:39.923628 gnd 140543503 R rec 08cd1f3a-9461-4fda-8b63-1304e7cacc95 +2020-09-24 13:20:40.343446 2020-09-24 13:20:40.343451 gnd 140546391 R rec cae2068b-f2fc-492e-8fb3-97c88b5a3f1d +2020-09-24 13:20:40.856229 2020-09-24 13:20:40.856235 gnd 122244958 R rec 7edc496a-6a1a-4de9-8f8f-4c4b70719caf +2020-09-24 13:20:41.31636 2020-09-24 13:20:41.316365 gnd 14055260X R rec e2fb0a25-73e2-4347-91d2-801a56bc9482 +2020-09-24 13:20:41.735995 2020-09-24 13:20:41.736001 gnd 140553533 R rec 48b2085c-dc60-4069-94f3-c87a432004bf +2020-09-24 13:20:42.557411 2020-09-24 13:20:42.557417 gnd 140564306 R rec 51a6e16a-20cc-4c3c-9437-d206d1251191 +2020-09-24 13:20:42.961603 2020-09-24 13:20:42.961609 gnd 140564853 R rec 60f79ec4-b514-45ff-86a3-7b6808cdae12 +2020-09-24 13:20:43.446601 2020-09-24 13:20:43.446607 gnd 140580204 R rec d21a85e0-fc7b-4e31-9a2f-3c330a5e4ed4 +2020-09-24 13:20:43.944544 2020-09-24 13:20:43.944552 gnd 140605304 R rec c2095ad6-4961-4c95-a7a3-254d3def83cd +2020-09-24 13:20:44.378292 2020-09-24 13:20:44.378298 gnd 140609873 R rec 6a6b35f5-c1d9-43d6-a0f2-0ac3d1f0674f +2020-09-24 13:20:44.856668 2020-09-24 13:20:44.856674 gnd 140623388 R rec c6ac9be5-aa12-4a94-b237-a36236d31479 +2020-09-24 13:20:45.258088 2020-09-24 13:20:45.258094 gnd 122546016 R rec 3615142c-1ff7-4b07-b099-e49f8c4a5dae +2020-09-24 13:20:45.663561 2020-09-24 13:20:45.663566 gnd 122564405 R rec 11a31401-4066-479a-ba83-80397138a8f6 +2020-09-24 13:20:46.076632 2020-09-24 13:20:46.076637 gnd 1051412552 R rec 02b14a98-0a2e-4a12-87a1-dd6c0dcabae9 +2020-09-24 13:20:47.333501 2020-09-24 13:20:47.333507 gnd 1148669892 R rec f4774606-099e-40b6-bc70-c939a030fc28 +2020-09-24 13:20:47.786753 2020-09-24 13:20:47.786758 gnd 1146844743 R rec 113638e4-3a60-4408-9f67-0fa8c6e729bc +2020-09-24 13:20:48.552824 2020-09-24 13:20:48.55283 gnd 1208406337 R rec 13c63a2e-5e9f-4bbd-93fe-86ab6464533f +2020-09-24 13:20:51.379295 2020-09-24 13:20:51.379301 gnd 116144131X R rec 0c270e96-ec14-495f-876b-fa1ae2cdd389 +2020-09-24 13:20:51.827634 2020-09-24 13:20:51.82764 gnd 1140439618 R rec 1a0cd69a-4f4e-43da-a472-bd2516e6df2e +2020-09-24 13:20:53.086506 2020-09-24 13:20:53.086512 gnd 12307374X R rec 6e50fc45-6e61-46e2-9e74-415849cd1df1 +2020-09-24 13:20:53.5501 2020-09-24 13:20:53.550106 gnd 140330720 R rec 7ed47eca-9ee4-41b7-8ce5-91dc061de6b0 +2020-09-24 13:20:53.96925 2020-09-24 13:20:53.969255 gnd 123090598 R rec 10144e9f-4e42-418d-b55e-d6c90f6f31ad +2020-09-24 13:20:55.479939 2020-09-24 13:20:55.479945 gnd 123541328 R rec 7d541a12-0f44-46f3-aff8-6ee5cb8b4db4 +2020-09-24 13:20:55.904909 2020-09-24 13:20:55.904915 gnd 123571693 R rec 42882695-36ef-4794-849b-f6fe7adf3e95 +2020-09-24 13:20:56.979636 2020-09-24 13:20:56.979643 gnd 140779035 R rec bf51a0af-4678-4d9a-b7a9-b575de17ad92 +2020-09-24 13:20:58.114806 2020-09-24 13:20:58.114812 gnd 133999912 R rec b8e60a8c-3153-40ef-b44e-49acefdc0e38 +2020-09-24 13:20:59.324536 2020-09-24 13:20:59.324542 gnd 1183812086 R rec 7ac0e219-1dd8-4e04-80c4-f8100049ed52 +2020-09-24 13:21:00.356521 2020-09-24 13:21:00.356527 gnd 128887249 R rec b3eb99d9-f4e6-4e15-870d-db7421718c0e +2020-09-24 13:21:00.7929 2020-09-24 13:21:00.792906 gnd 12377795X R rec bd0c93f8-6396-44a9-82c9-64126ae02262 +2020-09-24 13:21:01.899015 2020-09-24 13:21:01.899021 gnd 140657975 R rec 766e0ad9-7397-4daf-90d5-fb81bd716d11 +2020-09-24 13:21:02.35744 2020-09-24 13:21:02.357449 gnd 140665927 R rec 8378cd1d-375b-4822-84d0-7ac7f28167d1 +2020-09-24 13:21:02.779983 2020-09-24 13:21:02.779988 gnd 123954940 R rec cd43f4f3-66a9-41c2-93ac-b944bac78d3c +2020-09-24 13:21:03.578848 2020-09-24 13:21:03.578854 gnd 140671153 R rec 2d9b3b28-082f-4dbb-bbb7-98c08ada3f58 +2020-09-24 13:21:04.016936 2020-09-24 13:21:04.016941 gnd 140680829 R rec 2f9b8273-6510-4d96-b96e-da17c822231a +2020-09-24 13:21:04.464955 2020-09-24 13:21:04.464961 gnd 140699562 R rec ef988449-dd71-4c91-970f-a4ea7653d394 +2020-09-24 13:21:04.900891 2020-09-24 13:21:04.900897 gnd 140703063 R rec 3e05c984-1de3-4212-b170-c107061998a4 +2020-09-24 13:21:05.515907 2020-09-24 13:21:05.515913 gnd 140707921 R rec 374a7519-b4ad-47d5-b7ff-94783f0b44e1 +2020-09-24 13:21:05.997666 2020-09-24 13:21:05.997672 gnd 14071393X R rec 9017e074-1c59-4acf-9ddf-591c48d11b37 +2020-09-24 13:21:07.153132 2020-09-24 13:21:07.153138 gnd 1197921923 R rec a861947d-ea50-44a9-8013-fe7f57c8f3b6 +2020-09-24 13:21:07.724646 2020-09-24 13:21:07.724652 gnd 140723269 R rec b91571d7-ce3a-4f0f-8f6b-9b61046a3e1e +2020-09-24 13:21:08.155642 2020-09-24 13:21:08.155648 gnd 140724656 R rec f062e0f8-d350-4769-97f8-d4ef03ad2ec9 +2020-09-24 13:21:08.564639 2020-09-24 13:21:08.564646 gnd 140730834 R rec 19195bee-45dc-4dca-966e-641cdc7238e5 +2020-09-24 13:21:09.109726 2020-09-24 13:21:09.109732 gnd 140741623 R rec 5597ff46-e809-4d70-b26b-830b855b75b5 +2020-09-24 13:21:09.547812 2020-09-24 13:21:09.547818 gnd 140749195 R rec 96b8e9b4-dfa5-4092-bc92-6f4a882138c7 +2020-09-24 13:21:09.954577 2020-09-24 13:21:09.954583 gnd 140751149 R rec 82c96876-e147-490b-aa55-0f7758a602ab +2020-09-24 13:21:10.384895 2020-09-24 13:21:10.384901 gnd 124271057 R rec 497c5683-5814-41f2-b8bb-618a3b259aa7 +2020-09-24 13:21:11.203083 2020-09-24 13:21:11.203089 gnd 140764097 R rec 38938b81-18df-4cd5-bc1e-73161a5763e0 +2020-09-24 13:21:11.621539 2020-09-24 13:21:11.621545 gnd 140764143 R rec 2d9df9cd-c90d-4f89-a457-ca7092375494 +2020-09-24 13:21:12.05239 2020-09-24 13:21:12.052396 gnd 124368913 R rec 672115dc-dad8-48ba-a3d7-74038e2aa924 +2020-09-24 13:21:12.452212 2020-09-24 13:21:12.452217 gnd 140791434 R rec 6e843187-9e54-4187-9e6b-057d6482bfd0 +2020-09-24 13:21:12.880056 2020-09-24 13:21:12.880062 gnd 140793496 R rec 69f4f2fe-c881-4dd8-bda6-efc8c794639c +2020-09-24 13:21:13.274096 2020-09-24 13:21:13.274103 gnd 124384196 R rec 766a7b2c-0e22-40ff-84ff-b808331abbf9 +2020-09-24 13:21:13.681393 2020-09-24 13:21:13.681399 gnd 140807268 R rec 5f2dd23e-8198-45fb-b7a3-2ca05c7ab69c +2020-09-24 13:21:14.089736 2020-09-24 13:21:14.089743 gnd 140808337 R rec 94fc7875-ee5c-403f-a8c2-044077665f84 +2020-09-24 13:21:14.616219 2020-09-24 13:21:14.616224 gnd 140818197 R rec a1524bac-d783-441b-b149-9143d4baa067 +2020-09-24 13:21:15.019676 2020-09-24 13:21:15.019682 gnd 1158385439 R rec d94ac58b-9853-480f-b915-c77f16ca3a20 +2020-09-24 13:21:15.429285 2020-09-24 13:21:15.429291 gnd 124521134 R rec 512793e0-ba47-411e-befa-f85268bca1a7 +2020-09-24 13:21:16.216235 2020-09-24 13:21:16.21624 gnd 140835822 R rec 7ebff12f-9ce6-4dee-94ca-a6a7a8216017 +2020-09-24 13:21:16.629555 2020-09-24 13:21:16.629561 gnd 140848363 R rec c007620c-4f60-4933-8715-d94a1af41ab9 +2020-09-24 13:21:17.059786 2020-09-24 13:21:17.059792 gnd 140849963 R rec 5642494e-9073-4994-851b-a126fa2f247d +2020-09-24 13:21:17.530329 2020-09-24 13:21:17.530335 gnd 14085200X R rec 2deaaa53-e1b1-478c-a962-92146c30f86c +2020-09-24 13:21:18.372594 2020-09-24 13:21:18.3726 gnd 14085603X R rec 7fe22cc4-ad2f-4110-9d0e-85c69e580259 +2020-09-24 13:21:19.574948 2020-09-24 13:21:19.574954 gnd 140867147 R rec 8956c401-0e6a-4bee-8cbb-c2c8a5e66178 +2020-09-24 13:21:19.986553 2020-09-24 13:21:19.986559 gnd 140873899 R rec 3744151d-076c-4306-92a4-b16f65129e1e +2020-09-24 13:21:20.428137 2020-09-24 13:21:20.428143 gnd 140890335 R rec f19de1b2-e453-4fe4-8752-8e47523c1d5c +2020-09-24 13:21:20.878753 2020-09-24 13:21:20.878759 gnd 140891420 R rec 69104e13-b332-4962-bc89-6eb9d9358a3f +2020-09-24 13:21:21.294244 2020-09-24 13:21:21.29425 gnd 140897933 R rec 21d2bf22-10d1-4be6-9679-5efa31451a6c +2020-09-24 13:21:21.855391 2020-09-24 13:21:21.855397 gnd 140913971 R rec 91775646-ee13-44d3-ae67-9b74709e5824 +2020-09-24 13:21:22.257621 2020-09-24 13:21:22.257627 gnd 140917675 R rec 7126a983-cd59-4b66-b60a-45e1a6ad5438 +2020-09-24 13:21:22.709793 2020-09-24 13:21:22.709798 gnd 140930531 R rec dcfb42d1-03c8-4edd-94f8-f3a516eef64a +2020-09-24 13:21:23.126452 2020-09-24 13:21:23.126458 gnd 140934081 R rec 4c70c9de-b74c-4845-9a6d-cf4a83d4acc2 +2020-09-24 13:21:23.863031 2020-09-24 13:21:23.863037 gnd 1184634262 R rec 083f9961-d1e2-496b-855f-9c08b5b1cfdc +2020-09-24 13:21:24.3017 2020-09-24 13:21:24.301706 gnd 143464000 R rec 3149ce14-7df7-467d-83ca-5f86d6428907 +2020-09-24 13:21:24.854185 2020-09-24 13:21:24.854192 gnd 1183057687 R rec 12e59774-9f32-439e-aedd-aa613e36126d +2020-09-24 13:21:25.61705 2020-09-24 13:21:25.617056 gnd 125037988 R rec 674ab10f-3031-4596-aa19-bdfdbed688b9 +2020-09-24 13:21:26.321484 2020-09-24 13:21:26.32149 gnd 1011449145 R rec 3c5c2956-3263-4618-a07d-b8cc0edbf789 +2020-09-24 13:21:27.119272 2020-09-24 13:21:27.119277 gnd 171617525 R rec 06f631df-1dbb-4168-8bd5-43bb8e310719 +2020-09-24 13:21:27.546429 2020-09-24 13:21:27.546436 gnd 104999227X R rec 2a53d283-b5d0-4bdc-bf3a-dd22bdad549b +2020-09-24 13:21:27.966212 2020-09-24 13:21:27.966218 gnd 13902185X R rec dc742c30-a859-4653-986b-048822202a31 +2020-09-24 13:21:28.829152 2020-09-24 13:21:28.829158 gnd 141801689 R rec 5fa8cb46-81f3-4f4c-9a75-36b32760a497 +2020-09-24 13:21:29.243544 2020-09-24 13:21:29.243549 gnd 1064724876 R rec 58f3b518-3ab2-43d3-8dcd-f87592bce66b +2020-09-24 13:21:30.348112 2020-09-24 13:21:30.348119 gnd 1211358380 R rec 34924b37-f1a1-42c1-afc1-696b9ba48629 +2020-09-24 13:21:31.165598 2020-09-24 13:21:31.165603 gnd 1089252579 R rec 922c236e-2dcf-45a0-85c8-cff90c2ec80d +2020-09-24 13:21:31.731795 2020-09-24 13:21:31.731801 gnd 1089693907 R rec f4d95f3f-bec7-4c08-9fa6-a01febb533bb +2020-09-24 13:21:32.248481 2020-09-24 13:21:32.248486 gnd 142782629 R rec f5263c4d-89f7-4b41-aed7-e232d8149b05 +2020-09-24 13:21:32.724627 2020-09-24 13:21:32.724633 gnd 171302605 R rec f90754af-6027-4800-9982-f3cc45400b87 +2020-09-24 13:21:33.13127 2020-09-24 13:21:33.131276 gnd 172030773 R rec faba243c-a401-46e0-aa11-d7bfa73c4e0b +2020-09-24 13:21:33.917852 2020-09-24 13:21:33.917857 gnd 1061744094 R rec cb61076c-c51a-4df4-8bdc-bc377445fb94 +2020-09-24 13:21:34.315919 2020-09-24 13:21:34.315925 gnd 1139400851 R rec 0cebd68d-b1d9-4eb0-bc19-ff507b45d3f9 +2020-09-24 13:21:35.888603 2020-09-24 13:21:35.888608 gnd 128174889 R rec 2dd8f666-1772-40f7-8396-e87618572a92 +2020-09-24 13:21:37.340252 2020-09-24 13:21:37.340257 gnd 125666632 R rec 1dc68a2a-dac1-4ce2-9cb8-ccc62346e022 +2020-09-24 13:21:38.372462 2020-09-24 13:21:38.372468 gnd 125668465 R rec 0293dbce-6c3f-4862-bf7d-75c5590c65e4 +2020-09-24 13:21:39.190397 2020-09-24 13:21:39.190403 gnd 1190043440 R rec 697e2561-8710-4d4b-a5fd-20c6c14b1e63 +2020-09-24 13:21:39.586884 2020-09-24 13:21:39.586889 gnd 1120533260 R rec 6b43a90a-e258-4f51-9625-c05e09e37b40 +2020-09-24 13:21:41.170991 2020-09-24 13:21:41.170996 gnd 1157766730 R rec 39217e7f-192f-4331-ae85-74e448f7b99d +2020-09-24 13:21:42.083555 2020-09-24 13:21:42.08356 gnd 1200420071 R rec 9421ea25-d4e4-4635-bb98-bb3813469dde +2020-09-24 13:21:42.846428 2020-09-24 13:21:42.846433 gnd 170311104 R rec d826d5f6-360f-4e30-90ef-3401d8947dee +2020-09-24 13:21:43.258081 2020-09-24 13:21:43.258087 gnd 129097632 R rec 8aa5c922-37c2-4465-9f16-420e1795ea30 +2020-09-24 13:21:43.688505 2020-09-24 13:21:43.688511 gnd 115168127X R rec 662662bd-b8c1-477f-b270-e399daf72a57 +2020-09-24 13:21:44.081617 2020-09-24 13:21:44.081623 gnd 173120016 R rec 20c136a0-56ca-4cd0-abbe-19ed1987b4c5 +2020-09-24 13:21:45.431247 2020-09-24 13:21:45.431253 gnd 119464942 R rec b3165df2-e76c-4769-8b24-5c77f200d4d9 +2020-09-24 13:21:46.493439 2020-09-24 13:21:46.493445 gnd 119499363 R rec caded1d2-baf7-4899-a831-825068894791 +2020-09-24 13:21:48.073269 2020-09-24 13:21:48.073275 gnd 1051286786 R rec 4808cf46-81ca-4ed3-9202-be7e227391b3 +2020-09-24 13:21:49.197483 2020-09-24 13:21:49.197488 gnd 1055753001 R rec bb476279-21c8-46cd-8c6a-291ca8e07552 +2020-09-24 13:21:49.922601 2020-09-24 13:21:49.922606 gnd 1145375154 R rec e27e3c04-fd78-4902-a531-28895873792d +2020-09-24 13:21:50.928381 2020-09-24 13:21:50.928387 gnd 124715311 R rec 4b9db985-cc04-4cac-bc47-94ff4e21201c +2020-09-24 13:21:52.12631 2020-09-24 13:21:52.126316 gnd 130124648 R rec f22d34b8-9379-4836-9d81-d26fb715c17b +2020-09-24 13:21:53.295384 2020-09-24 13:21:53.29539 gnd 12473409X R rec ecc6b34b-ea6f-4f71-a8b2-580d7664d93f +2020-09-24 13:21:54.419798 2020-09-24 13:21:54.419804 gnd 119310808X R rec 97afea65-7a01-4150-91ab-373209deecb7 +2020-09-24 13:21:55.170664 2020-09-24 13:21:55.17067 gnd 1166620131 R rec f28cb48a-91d0-4f15-be3a-20f0fb24f14e +2020-09-24 13:21:55.641261 2020-09-24 13:21:55.641267 gnd 142514926 R rec 9e10c4cd-150b-482c-96ef-65400380e774 +2020-09-24 13:21:57.050749 2020-09-24 13:21:57.050755 gnd 126712158 R rec 4e0c67f0-ce80-49b6-a53f-5effb06a8617 +2020-09-24 13:21:58.599817 2020-09-24 13:21:58.599823 gnd 12688790X R rec 218fd55d-484a-43e5-a70a-de5786a4b26f +2020-09-24 13:21:59.344927 2020-09-24 13:21:59.344933 gnd 1057324841 R rec 231aa1ce-3209-4915-baa7-ed1c39f52dd1 +2020-09-24 13:21:59.758394 2020-09-24 13:21:59.7584 gnd 178767875 R rec 04db236b-c57c-4fb7-b2a8-f08bfbc52325 +2020-09-24 13:22:00.543328 2020-09-24 13:22:00.543334 gnd 170259196 R rec 2590af66-bb34-40dc-9c70-8013ff624a2e +2020-09-24 13:22:00.989067 2020-09-24 13:22:00.989073 gnd 1035656221 R rec b7952e50-5c8e-4066-ba73-3c23e669a159 +2020-09-24 13:22:01.406871 2020-09-24 13:22:01.406877 gnd 1197826912 R rec 27a40ed6-690e-4d24-8b16-69fcc0681c73 +2020-09-24 13:22:02.308053 2020-09-24 13:22:02.308059 gnd 12742508X R rec a001a5e1-1515-4eb6-afe5-6a7dca63adf2 diff --git a/tests/data/agrero.json b/tests/data/agrero.json new file mode 100644 index 00000000..1143e38c --- /dev/null +++ b/tests/data/agrero.json @@ -0,0 +1,1920 @@ +[ + { + "md5": "896be13b6045f9b816f78256b03300e5", + "pid": "A000016955", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A000016955", + "numeration": "", + "date_of_birth": "1813", + "date_of_death": "1882", + "preferred_name": "Batissier, Louis", + "authorized_access_point": "Batissier, Louis, 1813-1882", + "biographical_information": [ + "B. Lewis est le pseudonyme de Louis Batissier", + "M\u00e9decin. - Inspecteur de monuments historiques de l'Allier" + ] + }, + { + "md5": "905c8276d25a506cc8a2daaadd400f49", + "pid": "A002939817", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A002939817", + "numeration": "", + "preferred_name": "Arnold, Gregory C", + "authorized_access_point": "Arnold, Gregory C" + }, + { + "md5": "1572495275ce93b6a953bc4fb345a8c8", + "pid": "A002941440", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A002941440", + "numeration": "", + "preferred_name": "Artl, Gerhard", + "authorized_access_point": "Artl, Gerhard" + }, + { + "md5": "a5c5a16924a7e6b8a0af204cb5bffb0b", + "pid": "A002942098", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A002942098", + "numeration": "", + "preferred_name": "Aschengreen, Franz", + "authorized_access_point": "Aschengreen, Franz" + }, + { + "md5": "61c40e0753bbadcdd2ce13762b62176c", + "pid": "A002961093", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A002961093", + "numeration": "", + "preferred_name": "Baillargeon, Guy", + "authorized_access_point": "Baillargeon, Guy" + }, + { + "md5": "2fb3695eb8d98e26219363de0eb74a75", + "pid": "A002971659", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A002971659", + "numeration": "", + "preferred_name": "Barrett-Ayres, Reginald", + "authorized_access_point": "Barrett-Ayres, Reginald" + }, + { + "md5": "b01245e08efa4483d4189d9f1af46405", + "pid": "A002981924", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A002981924", + "numeration": "", + "preferred_name": "Beca\u00efa, Melchisedec", + "authorized_access_point": "Beca\u00efa, Melchisedec" + }, + { + "md5": "9c859889143e5b3e350015a557611cf1", + "pid": "A003019667", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003019667", + "numeration": "", + "preferred_name": "Boillat, Christian", + "authorized_access_point": "Boillat, Christian" + }, + { + "md5": "5f0202f87eaf44e847ec8866a86ffbab", + "pid": "A003037886", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003037886", + "numeration": "", + "preferred_name": "Brandolin, Mario", + "authorized_access_point": "Brandolin, Mario" + }, + { + "md5": "27127842e0ddf19ba985f72375fb4090", + "pid": "A003048129", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003048129", + "numeration": "", + "preferred_name": "Brown, George Isaac", + "authorized_access_point": "Brown, George Isaac" + }, + { + "md5": "3cb9af805833cb907d59d7aa80e4697a", + "pid": "A003055215", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003055215", + "numeration": "", + "preferred_name": "Buenemann, Gerd", + "authorized_access_point": "Buenemann, Gerd" + }, + { + "md5": "14beabb0ae682d1458e6d68cf07ebcdb", + "pid": "A003080186", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003080186", + "numeration": "", + "preferred_name": "Carter, Bob", + "authorized_access_point": "Carter, Bob" + }, + { + "md5": "25dc7eef92b259c31fed8d7587d3b3a3", + "pid": "A003084316", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003084316", + "numeration": "", + "preferred_name": "Cattaneo, Aldo", + "authorized_access_point": "Cattaneo, Aldo" + }, + { + "md5": "4c8b69beb807687193b0ec2497383a68", + "pid": "A003101806", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003101806", + "numeration": "", + "preferred_name": "Chiarini, Claude", + "authorized_access_point": "Chiarini, Claude" + }, + { + "md5": "80f71afe5128d612a83accb7d252a4c5", + "pid": "A003146897", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003146897", + "numeration": "", + "preferred_name": "Cullen, Gordon", + "authorized_access_point": "Cullen, Gordon" + }, + { + "md5": "048d3c609e02f822189dfaaaf4e5c3a1", + "pid": "A003180246", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003180246", + "numeration": "", + "preferred_name": "Dietrich, Dagmar", + "authorized_access_point": "Dietrich, Dagmar" + }, + { + "md5": "5f3aa0a436d204edeaceba40fc6bf5b9", + "pid": "A003188796", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003188796", + "numeration": "", + "preferred_name": "Douglas, Claire", + "authorized_access_point": "Douglas, Claire" + }, + { + "md5": "df4ac065ba0065f32706af01a73cef4c", + "pid": "A003203987", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003203987", + "numeration": "", + "preferred_name": "D\u00edaz, Janet Winecoff", + "authorized_access_point": "D\u00edaz, Janet Winecoff" + }, + { + "md5": "b439fe4aac95adedf402cadf1e13a2be", + "pid": "A003206780", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003206780", + "numeration": "", + "preferred_name": "Echard, William E", + "authorized_access_point": "Echard, William E" + }, + { + "md5": "93f227dfe6c4cf54bb5a3152d70acf9d", + "pid": "A003245434", + "qualifier": "entomologue", + "identifier": "http://data.rero.ch/02-A003245434", + "numeration": "", + "variant_name": [ + "Fischer, Maximilian" + ], + "preferred_name": "Fischer, Max", + "authorized_access_point": "Fischer, Max, entomologue" + }, + { + "md5": "a61802c597c4fd375aacdf41b195f7b8", + "pid": "A003265730", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003265730", + "numeration": "", + "preferred_name": "Frisch, Christine", + "authorized_access_point": "Frisch, Christine" + }, + { + "md5": "c49d42a41df53af171cd0121bc71f578", + "pid": "A003293437", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003293437", + "numeration": "", + "preferred_name": "Ghirri, Luigi", + "authorized_access_point": "Ghirri, Luigi" + }, + { + "md5": "c32110e2c954258046ec73e8883cc2d8", + "pid": "A003300349", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003300349", + "numeration": "", + "preferred_name": "Giusti, Giambattista", + "authorized_access_point": "Giusti, Giambattista" + }, + { + "md5": "87f0ce8b33bee2580c0c1ea5c6064f84", + "pid": "A003342882", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003342882", + "numeration": "", + "preferred_name": "Haller, Willi", + "authorized_access_point": "Haller, Willi" + }, + { + "md5": "e881a246a3f8de695f1b469aff9c34b8", + "pid": "A003345261", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003345261", + "numeration": "", + "preferred_name": "Hancock, David", + "authorized_access_point": "Hancock, David" + }, + { + "md5": "c94763b4926b265a8991ae0cbba20459", + "pid": "A003360509", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003360509", + "numeration": "", + "preferred_name": "Helbich, Wolfgang J", + "authorized_access_point": "Helbich, Wolfgang J" + }, + { + "md5": "f04aa4333fa17d279726ea206da15dec", + "pid": "A003363900", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003363900", + "numeration": "", + "preferred_name": "Henriot, Jean-Claude", + "authorized_access_point": "Henriot, Jean-Claude" + }, + { + "md5": "87dd395ff53a09ab35e35e73b8123a51", + "pid": "A003364295", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003364295", + "numeration": "", + "variant_name": [ + "Henschel, G.A.L.", + "Henschel" + ], + "date_of_birth": "1806", + "date_of_death": "1852", + "preferred_name": "Henschel, G.A. Louis", + "authorized_access_point": "Henschel, G.A. Louis, 1806-1852", + "biographical_information": [ + "Philologue et lexicographe. - N\u00e9 \u00e0 Minden (Allemagne), mort \u00e0 Paris. - A aussi \u00e9crit en allemand et en latin" + ] + }, + { + "md5": "09156e30ebcec2b41142865182d3fc82", + "pid": "A003370921", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003370921", + "numeration": "", + "variant_name": [ + "Higham, Robin D.S.", + "Higham, Robin David Stewart" + ], + "date_of_birth": "1925", + "preferred_name": "Higham, Robin", + "authorized_access_point": "Higham, Robin, 1925-" + }, + { + "md5": "3eb987f47571712afe7e3e3b463553df", + "pid": "A003389663", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003389663", + "numeration": "", + "preferred_name": "Hulme, David", + "authorized_access_point": "Hulme, David" + }, + { + "md5": "e799a3d6557a3d53b6a1ee9d6db5ca4e", + "pid": "A003398237", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003398237", + "numeration": "", + "preferred_name": "Ihori, Toshihiro", + "authorized_access_point": "Ihori, Toshihiro" + }, + { + "md5": "777ea18216a68c7b1d44bf2178cced99", + "pid": "A003399601", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003399601", + "numeration": "", + "preferred_name": "Inamoto, Noboru", + "authorized_access_point": "Inamoto, Noboru" + }, + { + "md5": "760d70def923599322eb63da45ec5223", + "pid": "A003421797", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003421797", + "numeration": "", + "preferred_name": "Jastrz\u0119biec-Zielonka, Ludwik", + "authorized_access_point": "Jastrz\u0119biec-Zielonka, Ludwik" + }, + { + "md5": "92c618f80697f327e1d224716337d294", + "pid": "A003427813", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003427813", + "numeration": "", + "preferred_name": "Johnson, John F", + "authorized_access_point": "Johnson, John F" + }, + { + "md5": "4c3743b0c39185b511ceeea06093f5dc", + "pid": "A003441673", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003441673", + "numeration": "", + "preferred_name": "Kaplan, Robert B", + "authorized_access_point": "Kaplan, Robert B" + }, + { + "md5": "81ef62a0b96e5f97e1b3679c56d0d790", + "pid": "A003454993", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003454993", + "numeration": "", + "preferred_name": "Kingma, J", + "authorized_access_point": "Kingma, J" + }, + { + "md5": "7b6c4b717c5b122c767b1731f342479d", + "pid": "A003477398", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003477398", + "numeration": "", + "preferred_name": "Kr\u00fcger, Sabine", + "authorized_access_point": "Kr\u00fcger, Sabine" + }, + { + "md5": "053b30069f979ae899487988e0062be6", + "pid": "A003491429", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003491429", + "numeration": "", + "variant_name": [ + "Lambert, William Wilson" + ], + "preferred_name": "Lambert, William W", + "authorized_access_point": "Lambert, William W" + }, + { + "md5": "c2e8de1a965ff8878692ce2476b491f9", + "pid": "A003491484", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003491484", + "numeration": "", + "preferred_name": "Lamberton, Ch", + "authorized_access_point": "Lamberton, Ch" + }, + { + "md5": "fa046f1b19743fb01d11b65cc7d2f62c", + "pid": "A003494285", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003494285", + "numeration": "", + "preferred_name": "Lange, Bastian", + "authorized_access_point": "Lange, Bastian" + }, + { + "md5": "65a389aeafef1e28c2361b7bf9beeb56", + "pid": "A003501471", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003501471", + "numeration": "", + "preferred_name": "Lavoix, Henry", + "authorized_access_point": "Lavoix, Henry" + }, + { + "md5": "5e1fc729a25d2b4058a693633e27a6e1", + "pid": "A003514292", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003514292", + "numeration": "", + "preferred_name": "Leron, Uri", + "authorized_access_point": "Leron, Uri" + }, + { + "md5": "59584f1d768c4d5b5f85aed7a6ff30ed", + "pid": "A003516733", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003516733", + "numeration": "", + "date_of_birth": "1839", + "date_of_death": "1900", + "preferred_name": "Levi, Hermann", + "authorized_access_point": "Levi, Hermann, 1839-1900" + }, + { + "md5": "3f3d1c269a10d89ac2f2f33452cb39ca", + "pid": "A003531595", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003531595", + "numeration": "", + "variant_name": [ + "Jacob, Bernard Lortat-" + ], + "date_of_birth": "1941", + "preferred_name": "Lortat-Jacob, Bernard", + "authorized_access_point": "Lortat-Jacob, Bernard, 1941-", + "biographical_information": [ + "Ethnomusicologue. - Directeur de recherche au CNRS et responsable du Laboratoire d'ethnomusicologie CBRS du Mus\u00e9e de l'homme, Paris (en 2001)" + ] + }, + { + "md5": "2d5497f69cf81caf896b72bfbd698cea", + "pid": "A003531943", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003531943", + "numeration": "", + "preferred_name": "Lot, Fernand", + "authorized_access_point": "Lot, Fernand" + }, + { + "md5": "96e191007b725933ee2820321318ba2b", + "pid": "A003552475", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003552475", + "numeration": "", + "preferred_name": "Maister, David H", + "authorized_access_point": "Maister, David H" + }, + { + "md5": "db4fef4689f6ba29c116417c788ebec5", + "pid": "A003594199", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003594199", + "numeration": "", + "preferred_name": "Milanowski, W\u0142odzimierz", + "authorized_access_point": "Milanowski, W\u0142odzimierz" + }, + { + "md5": "73132d8e69da36145a652b73595fa3b8", + "pid": "A003625161", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003625161", + "numeration": "", + "preferred_name": "M\u00fcnichsdorfer, Friedrich", + "authorized_access_point": "M\u00fcnichsdorfer, Friedrich" + }, + { + "md5": "a845f7dadfece41d432c8e636fe77916", + "pid": "A003641265", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003641265", + "numeration": "", + "preferred_name": "Nievergelt, Dieter", + "authorized_access_point": "Nievergelt, Dieter" + }, + { + "md5": "78d0962e57c605e24a9e61d046ada15e", + "pid": "A003645251", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003645251", + "numeration": "", + "variant_name": [ + "Von Normann, Reinhard", + "VonNormann, Reinhard" + ], + "preferred_name": "Normann, Reinhard von", + "authorized_access_point": "Normann, Reinhard von" + }, + { + "md5": "8f84041bb5352e6d802b83fe218d1597", + "pid": "A003685283", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003685283", + "numeration": "", + "preferred_name": "Pestieau, Pierre", + "authorized_access_point": "Pestieau, Pierre" + }, + { + "md5": "63a54c43e4aa4c0094d55f0ab6aec926", + "pid": "A003719235", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003719235", + "numeration": "", + "preferred_name": "P\u0103tr\u0103s\u0326canu, Petru V", + "authorized_access_point": "P\u0103tr\u0103s\u0326canu, Petru V" + }, + { + "md5": "4226a48c0a7e3444fb2e91244ea29b64", + "pid": "A003733566", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003733566", + "numeration": "", + "preferred_name": "Regis, Roger", + "authorized_access_point": "Regis, Roger" + }, + { + "md5": "2d32ce822a29a755fadd4253d20a7c8b", + "pid": "A003743887", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003743887", + "numeration": "", + "variant_name": [ + "Richelet, C\u00e9sare-Pierre", + "Richelet, C\u00e9sar Pierre" + ], + "date_of_birth": "ca. 1626", + "date_of_death": "1698", + "preferred_name": "Richelet, Pierre", + "authorized_access_point": "Richelet, Pierre, ca. 1626-1698", + "biographical_information": [ + "Lexicographe" + ] + }, + { + "md5": "4cb655ea9c74c05ad2710fc8919b8f79", + "pid": "A003768835", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003768835", + "numeration": "", + "preferred_name": "Ruchonnet, Charles", + "authorized_access_point": "Ruchonnet, Charles" + }, + { + "md5": "add4f28ea69f338ba9662b071beaabad", + "pid": "A003780412", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003780412", + "numeration": "", + "preferred_name": "Salisbury, Harrison Evans", + "authorized_access_point": "Salisbury, Harrison Evans" + }, + { + "md5": "9b8877d655790b0836f814d4793f0a5f", + "pid": "A003782234", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003782234", + "numeration": "", + "preferred_name": "Salv\u00e1, Vicente", + "authorized_access_point": "Salv\u00e1, Vicente" + }, + { + "md5": "134c94a577dfe59be12151006cb64be4", + "pid": "A003789261", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003789261", + "numeration": "", + "variant_name": [ + "Savile, Douglas B. O.", + "Savile, Douglas Barton Osborne" + ], + "date_of_birth": "1909", + "date_of_death": "2000", + "preferred_name": "Savile, D. B. O.", + "authorized_access_point": "Savile, D. B. O., 1909-2000", + "biographical_information": [ + "Mycologue, phytopathologiste et biologiste canadien d'origine irlandaise" + ] + }, + { + "md5": "53242fff8ab9a2a962950f8aba47d18c", + "pid": "A003849275", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003849275", + "numeration": "", + "preferred_name": "Sorabji, Corn\u00e9lia", + "authorized_access_point": "Sorabji, Corn\u00e9lia" + }, + { + "md5": "ef7e620a208ddea63e55d7b85975a5b9", + "pid": "A003853351", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003853351", + "numeration": "", + "preferred_name": "Spiess, Bernhard", + "authorized_access_point": "Spiess, Bernhard" + }, + { + "md5": "3ec0958398f3bff0e2ed983c2fffd99b", + "pid": "A003863577", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003863577", + "numeration": "", + "preferred_name": "Stern, Guy", + "authorized_access_point": "Stern, Guy" + }, + { + "md5": "77f8eb97492aa2dcdaeef33c8f861a46", + "pid": "A003883717", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003883717", + "numeration": "", + "preferred_name": "S\u00e9ebold, \u00c9ric", + "authorized_access_point": "S\u00e9ebold, \u00c9ric" + }, + { + "md5": "564f9bc2b8ab20919f2e3ccba4e29baf", + "pid": "A003947464", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003947464", + "numeration": "", + "preferred_name": "Vogelsang-Wenke, Heike", + "authorized_access_point": "Vogelsang-Wenke, Heike" + }, + { + "md5": "3139488ff53eccdd3c51fc2842b71bbd", + "pid": "A003966124", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003966124", + "numeration": "", + "preferred_name": "Weisz, Paul B", + "authorized_access_point": "Weisz, Paul B" + }, + { + "md5": "9a8a0eb6826cfc191096b1f4e117dce6", + "pid": "A003971618", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003971618", + "numeration": "", + "preferred_name": "White, Miriam Harker", + "authorized_access_point": "White, Miriam Harker" + }, + { + "md5": "ed74c9d35bd0647095810f5ff33921e3", + "pid": "A003975282", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A003975282", + "numeration": "", + "preferred_name": "Wildeboer, Ina Hinderika", + "authorized_access_point": "Wildeboer, Ina Hinderika" + }, + { + "md5": "e2978086973183c22b799dd710434c9f", + "pid": "A005732208", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A005732208", + "numeration": "", + "preferred_name": "Busch, Sylvia", + "authorized_access_point": "Busch, Sylvia" + }, + { + "md5": "6bec689fbfc881c2618a14edb6f51f67", + "pid": "A005821830", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A005821830", + "numeration": "", + "preferred_name": "Green, Owen Mortimer", + "authorized_access_point": "Green, Owen Mortimer" + }, + { + "md5": "b3ac00f9a71ee591190291d99cadd6ab", + "pid": "A005995031", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A005995031", + "numeration": "", + "preferred_name": "Dion, Linda", + "authorized_access_point": "Dion, Linda" + }, + { + "md5": "1ea28747b64b589483d229f26d13aa32", + "pid": "A006035318", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A006035318", + "numeration": "", + "preferred_name": "Birget, J.-C", + "authorized_access_point": "Birget, J.-C" + }, + { + "md5": "691ea606dabc9a47dafd5410924099d1", + "pid": "A006389498", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A006389498", + "numeration": "", + "preferred_name": "Chrze\u015bcijanin", + "authorized_access_point": "Chrze\u015bcijanin" + }, + { + "md5": "84bd2c0be64509d639b518c974c228ba", + "pid": "A008584612", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A008584612", + "numeration": "", + "preferred_name": "Redner, Sidney", + "authorized_access_point": "Redner, Sidney" + }, + { + "md5": "810e4b587d48ff2fb23277085c7473b1", + "pid": "A008729062", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A008729062", + "numeration": "", + "preferred_name": "Cinquin, Fran\u00e7ois", + "authorized_access_point": "Cinquin, Fran\u00e7ois" + }, + { + "md5": "5de8011d273d07949aebcb6d178b0102", + "pid": "A008730051", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A008730051", + "numeration": "", + "preferred_name": "Otomo, Masaku", + "authorized_access_point": "Otomo, Masaku" + }, + { + "md5": "36efe9c5b07d73817f0fb7bf40ee280b", + "pid": "A009279090", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A009279090", + "numeration": "", + "preferred_name": "Douchy, Herv\u00e9", + "authorized_access_point": "Douchy, Herv\u00e9" + }, + { + "md5": "36bd74bc4ac2f4b6c80f853334268cdc", + "pid": "A009306109", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A009306109", + "numeration": "", + "preferred_name": "Soldt, Johannes", + "authorized_access_point": "Soldt, Johannes" + }, + { + "md5": "71c2fb8f4d892dc5ecc9e3a305d634e3", + "pid": "A009426238", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A009426238", + "numeration": "", + "preferred_name": "Luard, Honey", + "authorized_access_point": "Luard, Honey" + }, + { + "md5": "97f08988f28544d9ddb5e414368831ef", + "pid": "A009519020", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A009519020", + "numeration": "", + "variant_name": [ + "Da Costa, Carla Tavares", + "Tavares Da Costa, Carla" + ], + "preferred_name": "Costa, Carla Tavares da", + "authorized_access_point": "Costa, Carla Tavares da" + }, + { + "md5": "0174b09fa2ff745a2dd4675eece957df", + "pid": "A009590113", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A009590113", + "numeration": "", + "date_of_birth": "1952", + "preferred_name": "Haas, Jean-Fran\u00e7ois", + "authorized_access_point": "Haas, Jean-Fran\u00e7ois, 1952-", + "biographical_information": [ + "Ecrivain, enseignant. N\u00e9 \u00e0 Courtaman (Suisse, FR)" + ] + }, + { + "md5": "560cab91722911bd8feb30be28541943", + "pid": "A009687650", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A009687650", + "numeration": "", + "preferred_name": "Joseph, Branden Wayne", + "authorized_access_point": "Joseph, Branden Wayne" + }, + { + "md5": "89810abe14da048b712de72a8792b592", + "pid": "A009968806", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A009968806", + "numeration": "", + "variant_name": [ + "Birney, Alfred Earle" + ], + "preferred_name": "Birney, Earle", + "authorized_access_point": "Birney, Earle" + }, + { + "md5": "44858072bedaa7b2a545f644f2177fdb", + "pid": "A010938873", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A010938873", + "numeration": "", + "preferred_name": "Florent, Romain", + "authorized_access_point": "Florent, Romain" + }, + { + "md5": "229244e791a11272116c632b19386575", + "pid": "A011007424", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A011007424", + "numeration": "", + "preferred_name": "Bellini, Emmanuel", + "authorized_access_point": "Bellini, Emmanuel", + "biographical_information": [ + "Dates de vie: 1904-" + ] + }, + { + "md5": "9ea70d1bea771235e25738cb7ee43d01", + "pid": "A011026926", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A011026926", + "numeration": "", + "preferred_name": "Lamoureux, Jocelyne", + "authorized_access_point": "Lamoureux, Jocelyne" + }, + { + "md5": "cb41c9756161b814d8f51689a0465bf1", + "pid": "A011105659", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A011105659", + "numeration": "", + "preferred_name": "Mercille Taillefer, Micheline", + "authorized_access_point": "Mercille Taillefer, Micheline" + }, + { + "md5": "edd56856905352009ace33f8b65eee29", + "pid": "A011417162", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A011417162", + "numeration": "", + "preferred_name": "Oelenheinz, Leopold", + "authorized_access_point": "Oelenheinz, Leopold" + }, + { + "md5": "dbb72495d28354caabe1f6f0bcd078dd", + "pid": "A011493066", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A011493066", + "numeration": "", + "preferred_name": "Leitner, Marina", + "authorized_access_point": "Leitner, Marina" + }, + { + "md5": "3e991be6293d085be97ea88cd60d3731", + "pid": "A011736857", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A011736857", + "numeration": "", + "preferred_name": "Jurjevics, Juris", + "authorized_access_point": "Jurjevics, Juris" + }, + { + "md5": "018ca6e9f02e445047f141e0779b059b", + "pid": "A011817228", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A011817228", + "numeration": "", + "preferred_name": "Hopf, Friedrich-Eugen", + "authorized_access_point": "Hopf, Friedrich-Eugen" + }, + { + "md5": "ec246a472df5fdccadbd3059be105bda", + "pid": "A012086274", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A012086274", + "numeration": "", + "preferred_name": "Langie, Kazimierz", + "authorized_access_point": "Langie, Kazimierz" + }, + { + "md5": "38a534117ecc555ff19cf01e593ddda7", + "pid": "A012313815", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A012313815", + "numeration": "", + "date_of_birth": "1923", + "preferred_name": "Kretzschmar, Serge", + "authorized_access_point": "Kretzschmar, Serge, 1923-" + }, + { + "md5": "f57d233030c23a411d6c08e86f090921", + "pid": "A012338211", + "qualifier": "anthropologue", + "identifier": "http://data.rero.ch/02-A012338211", + "numeration": "", + "preferred_name": "Desjardins, Michel", + "authorized_access_point": "Desjardins, Michel, anthropologue" + }, + { + "md5": "04c964e5a0be4f8901d85d73cac5b47b", + "pid": "A012346177", + "qualifier": "m\u00e9decin", + "identifier": "http://data.rero.ch/02-A012346177", + "numeration": "", + "preferred_name": "Monnier, Jean-Fran\u00e7ois", + "authorized_access_point": "Monnier, Jean-Fran\u00e7ois, m\u00e9decin" + }, + { + "md5": "43904713d5f0a9865c195d8b331ae3c1", + "pid": "A012591999", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A012591999", + "numeration": "", + "preferred_name": "Schneikert, Elisabeth", + "authorized_access_point": "Schneikert, Elisabeth" + }, + { + "md5": "93396951cd06eecc5dcecba2a72ae453", + "pid": "A013094655", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A013094655", + "numeration": "", + "preferred_name": "Rumpf, Heinrich L", + "authorized_access_point": "Rumpf, Heinrich L" + }, + { + "md5": "631049670959784c469ce80c38a80a83", + "pid": "A013330726", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A013330726", + "numeration": "", + "preferred_name": "Renard, Emmanuelle", + "authorized_access_point": "Renard, Emmanuelle" + }, + { + "md5": "96e3af31c1467dba572f84a7f0f45b35", + "pid": "A013346407", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A013346407", + "numeration": "", + "preferred_name": "Topf, Helmut", + "authorized_access_point": "Topf, Helmut" + }, + { + "md5": "a0d9ecdb414c1dcd86b41df0e44ae9eb", + "pid": "A013505146", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A013505146", + "numeration": "", + "variant_name": [ + "Spi\u0332lio\u0332t\u00e1ki\u0332s, K.K" + ], + "preferred_name": "Sp\u0113li\u014dtak\u0113s, K.K", + "authorized_access_point": "Sp\u0113li\u014dtak\u0113s, K.K" + }, + { + "md5": "f3ece2bc7f3f139ad3e26703313d8005", + "pid": "A013753495", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A013753495", + "numeration": "", + "preferred_name": "Bogdan-Verger, Olimpia", + "authorized_access_point": "Bogdan-Verger, Olimpia" + }, + { + "md5": "79e27ada46111eee69f0abc6c1adaf4d", + "pid": "A013784156", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A013784156", + "numeration": "", + "preferred_name": "Parisi, Chiara", + "authorized_access_point": "Parisi, Chiara" + }, + { + "md5": "ad0a91729563ae8bbc04c306e173bd11", + "pid": "A013993183", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A013993183", + "numeration": "", + "preferred_name": "Barbi, Elisabetta", + "authorized_access_point": "Barbi, Elisabetta" + }, + { + "md5": "48fa83e5e7bb8634b701d9c9f7058fa7", + "pid": "A014025587", + "qualifier": "directeur de Dixi S.A", + "identifier": "http://data.rero.ch/02-A014025587", + "numeration": "", + "preferred_name": "Castella, Paul", + "authorized_access_point": "Castella, Paul, directeur de Dixi S.A" + }, + { + "md5": "2e25c36c3ce2317704f25683de0551b9", + "pid": "A014026079", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A014026079", + "numeration": "", + "preferred_name": "Wiese, Ren\u00e9", + "authorized_access_point": "Wiese, Ren\u00e9" + }, + { + "md5": "fda347398ef2f9b480d433bb8e421600", + "pid": "A014065225", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A014065225", + "numeration": "", + "preferred_name": "Serventy, Dominic Louis", + "authorized_access_point": "Serventy, Dominic Louis" + }, + { + "md5": "ece39233ed1564046fd465f71bbe9eb2", + "pid": "A016484771", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A016484771", + "numeration": "", + "date_of_birth": "1965", + "preferred_name": "Gibson, Kevin", + "authorized_access_point": "Gibson, Kevin, 1965-" + }, + { + "md5": "7d1fd75df6e4333222cd50531571ee92", + "pid": "A016513981", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A016513981", + "numeration": "", + "preferred_name": "Weber, Renaud", + "authorized_access_point": "Weber, Renaud" + }, + { + "md5": "4c8757270cd58aea58ac09f0fb1e4c22", + "pid": "A016619915", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A016619915", + "numeration": "", + "preferred_name": "L\u00f3pez-Medina, Sylvia", + "authorized_access_point": "L\u00f3pez-Medina, Sylvia" + }, + { + "md5": "ffcd6d0ab7b5b98010b3b9eb3c13017c", + "pid": "A016678629", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A016678629", + "numeration": "", + "variant_name": [ + "Hjarl Petersen, Jane" + ], + "preferred_name": "Petersen, Jane Hjarl", + "authorized_access_point": "Petersen, Jane Hjarl", + "biographical_information": [ + "Arch\u00e9ologue danoise" + ] + }, + { + "md5": "e639db8b09caf45cb968707a1a859891", + "pid": "A016695165", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A016695165", + "numeration": "", + "preferred_name": "Fries, C", + "authorized_access_point": "Fries, C" + }, + { + "md5": "240c18492e427c5a5c051b5e10b5ac62", + "pid": "A016768352", + "qualifier": "musicien", + "identifier": "http://data.rero.ch/02-A016768352", + "numeration": "", + "preferred_name": "Patry, Andr\u00e9 J.", + "authorized_access_point": "Patry, Andr\u00e9 J., musicien" + }, + { + "md5": "7c9720d2ea71242264ad687d34ddd042", + "pid": "A016816789", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A016816789", + "numeration": "", + "preferred_name": "Lekhina, Ekaterina", + "authorized_access_point": "Lekhina, Ekaterina" + }, + { + "md5": "2272005ba09385871f08dc1a3dc06c12", + "pid": "A016871460", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A016871460", + "numeration": "", + "variant_name": [ + "MacDonnell, Thomas Michael", + "Mc Donnell, Thomas Michael", + "Mac Donnell, Thomas Michael" + ], + "preferred_name": "McDonnell, Thomas Michael", + "authorized_access_point": "McDonnell, Thomas Michael" + }, + { + "md5": "5ae60057a8e38d6029928ad4afd34ea6", + "pid": "A017158101", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A017158101", + "numeration": "", + "preferred_name": "Naciri, Khaled", + "authorized_access_point": "Naciri, Khaled" + }, + { + "md5": "1f764e3837864440604e963f41327868", + "pid": "A017173033", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A017173033", + "numeration": "", + "preferred_name": "Hungerb\u00fchler, Ivo", + "authorized_access_point": "Hungerb\u00fchler, Ivo" + }, + { + "md5": "d948c64ae929b65383ecf53eb3b0681e", + "pid": "A017187491", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A017187491", + "numeration": "", + "preferred_name": "Kleinhenz, Barbara", + "authorized_access_point": "Kleinhenz, Barbara" + }, + { + "md5": "f987fd5158a4785d5e9d060318ab38a3", + "pid": "A017383534", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A017383534", + "numeration": "", + "preferred_name": "Ming-Yuet, Kee", + "authorized_access_point": "Ming-Yuet, Kee" + }, + { + "md5": "8b20749c0cfc412dd5a93a0ffeb6361f", + "pid": "A017468446", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A017468446", + "numeration": "", + "preferred_name": "Meyer, Susanna", + "authorized_access_point": "Meyer, Susanna" + }, + { + "md5": "4400685376356af7a42179013e47ee45", + "pid": "A017513975", + "qualifier": "sc\u00e9nariste", + "identifier": "http://data.rero.ch/02-A017513975", + "numeration": "", + "preferred_name": "Martin, Rainer", + "authorized_access_point": "Martin, Rainer, sc\u00e9nariste" + }, + { + "md5": "e74b2779c8e0ddfb49fe9d1c4b4d5398", + "pid": "A017565309", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A017565309", + "numeration": "", + "variant_name": [ + "Abraham, Ernst A." + ], + "date_of_birth": "1906", + "preferred_name": "Abraham, Ernst August", + "authorized_access_point": "Abraham, Ernst August, 1906-", + "biographical_information": [ + "Economiste" + ] + }, + { + "md5": "b94266e7d61477557a34c7b7c61cef60", + "pid": "A017696857", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A017696857", + "numeration": "", + "preferred_name": "Laval, Roseline", + "authorized_access_point": "Laval, Roseline" + }, + { + "md5": "920cc6f2af511ac8920a734226842081", + "pid": "A017713949", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A017713949", + "numeration": "", + "preferred_name": "Michel, Ariane", + "authorized_access_point": "Michel, Ariane" + }, + { + "md5": "499353374e2805574694a26dbcdb07f5", + "pid": "A017784112", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A017784112", + "numeration": "", + "preferred_name": "Furse, Raymond W", + "authorized_access_point": "Furse, Raymond W" + }, + { + "md5": "8178986680e4d5bbaebb20fb5ecc7209", + "pid": "A017944030", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A017944030", + "numeration": "", + "preferred_name": "Sandner, Henrike", + "authorized_access_point": "Sandner, Henrike" + }, + { + "md5": "3cbc96f880d814c8e024a2a59bcc9a6c", + "pid": "A018087920", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A018087920", + "numeration": "", + "preferred_name": "Schwandt, Michael", + "authorized_access_point": "Schwandt, Michael" + }, + { + "md5": "a48fc951adfe7c974c1b98f7342eeccb", + "pid": "A018331793", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A018331793", + "numeration": "", + "preferred_name": "Fiebiger, Rainer", + "authorized_access_point": "Fiebiger, Rainer" + }, + { + "md5": "e8980d35afcb6b6dbbc047311c778d44", + "pid": "A018345923", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A018345923", + "numeration": "", + "preferred_name": "Galanopoulos, Philippe", + "authorized_access_point": "Galanopoulos, Philippe" + }, + { + "md5": "dc9c0c10b8a9348d74be8686bfed443d", + "pid": "A018395567", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A018395567", + "numeration": "", + "date_of_birth": "1986", + "preferred_name": "Kull, Iara", + "authorized_access_point": "Kull, Iara, 1986-" + }, + { + "md5": "8da6c53838dd146875e1d2137c7bd7a4", + "pid": "A018456288", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A018456288", + "numeration": "", + "preferred_name": "Halperin, Natalie", + "authorized_access_point": "Halperin, Natalie" + }, + { + "md5": "025c73956102f987ea46f3b84762ae0b", + "pid": "A018459512", + "qualifier": "m\u00e9decin", + "identifier": "http://data.rero.ch/02-A018459512", + "numeration": "", + "preferred_name": "Schl\u00fcssel", + "authorized_access_point": "Schl\u00fcssel, m\u00e9decin" + }, + { + "md5": "cd1a49eaaf253720b8158e43183ac568", + "pid": "A018475973", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A018475973", + "numeration": "", + "date_of_birth": "1910", + "date_of_death": "1997", + "preferred_name": "Bielawski, J\u00f3zef", + "authorized_access_point": "Bielawski, J\u00f3zef, 1910-1997" + }, + { + "md5": "51f59b475bf999c40abd610c02fc49a7", + "pid": "A018477130", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A018477130", + "numeration": "", + "preferred_name": "Na\u0304ji\u0304, Hila\u0304l", + "authorized_access_point": "Na\u0304ji\u0304, Hila\u0304l" + }, + { + "md5": "95acb66e54a15bb9ffaee2822f29b011", + "pid": "A018556919", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A018556919", + "numeration": "", + "preferred_name": "Kn\u00fcfermann, Eckar", + "authorized_access_point": "Kn\u00fcfermann, Eckar" + }, + { + "md5": "50e3d69704fd8001baa75e8406b0651a", + "pid": "A018610634", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A018610634", + "numeration": "", + "preferred_name": "Abbott, Colleen", + "authorized_access_point": "Abbott, Colleen" + }, + { + "md5": "58a469dd5f6096dc5f25b2eaf3b9d144", + "pid": "A018613224", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A018613224", + "numeration": "", + "preferred_name": "Dumouchel, Jacques", + "authorized_access_point": "Dumouchel, Jacques" + }, + { + "md5": "ce9e2713add63fd56335ac68ebcdbc34", + "pid": "A018699407", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A018699407", + "numeration": "", + "preferred_name": "Janssen, Hildegonda", + "authorized_access_point": "Janssen, Hildegonda" + }, + { + "md5": "52fb11534f97ad5ffc8192a31824a883", + "pid": "A018726776", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A018726776", + "numeration": "", + "preferred_name": "Pugin, J", + "authorized_access_point": "Pugin, J" + }, + { + "md5": "d5cfc180a9d25372709694efaef55f30", + "pid": "A018750238", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A018750238", + "numeration": "", + "preferred_name": "Lafite, Elisabeth", + "authorized_access_point": "Lafite, Elisabeth" + }, + { + "md5": "eb0503e4ace36ccfa9a72e2221225a3d", + "pid": "A018879902", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A018879902", + "numeration": "", + "preferred_name": "Gassmann, Aude", + "authorized_access_point": "Gassmann, Aude" + }, + { + "md5": "9c026d006b89afa732b18cbac035cd75", + "pid": "A019010974", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A019010974", + "numeration": "", + "variant_name": [ + "Tetsuo, Owada" + ], + "date_of_birth": "1944", + "preferred_name": "Owada, Tetsuo", + "authorized_access_point": "Owada, Tetsuo, 1944-", + "biographical_information": [ + "Docteur \u00e8s lettres, dipl\u00f4m\u00e9 de l'Universit\u00e9 de Waseda, T\u014dky\u014d, Japon. - En poste \u00e0 l'Universit\u00e9 de Shizuoka, Japon (en 2006). - Sp\u00e9cialiste de l'histoire m\u00e9di\u00e9vale du Japon" + ] + }, + { + "md5": "c50c86ea2dee6493eef6411ab0f9720e", + "pid": "A019156002", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A019156002", + "numeration": "", + "preferred_name": "Lalonde, Jean-Yves", + "authorized_access_point": "Lalonde, Jean-Yves" + }, + { + "md5": "e766c9ae26d0328752cb684b9670f559", + "pid": "A020053143", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A020053143", + "numeration": "", + "preferred_name": "Ruhierre, Edme", + "authorized_access_point": "Ruhierre, Edme" + }, + { + "md5": "a717d76f9721759b4e2bae6976c0fb59", + "pid": "A020072662", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A020072662", + "numeration": "", + "preferred_name": "Laugier, Jean-Nicolas", + "authorized_access_point": "Laugier, Jean-Nicolas" + }, + { + "md5": "8649f85eb228580c4a0cd57c0d5a620e", + "pid": "A020103298", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A020103298", + "numeration": "", + "preferred_name": "Hron\u00e9k, Upravil Miroslav", + "authorized_access_point": "Hron\u00e9k, Upravil Miroslav" + }, + { + "md5": "3ab112586fcb8df0cc874c6b07d7f6c6", + "pid": "A020122584", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A020122584", + "numeration": "", + "preferred_name": "Rosset, Xavier", + "authorized_access_point": "Rosset, Xavier" + }, + { + "md5": "f3bea89905b161dd03ead538baf28abc", + "pid": "A020228645", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A020228645", + "numeration": "", + "preferred_name": "Routon, Kenneth", + "authorized_access_point": "Routon, Kenneth" + }, + { + "md5": "011e6799edf66b8b75733686705867a2", + "pid": "A020232527", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A020232527", + "numeration": "", + "preferred_name": "Rey, Antoinette", + "authorized_access_point": "Rey, Antoinette", + "biographical_information": [ + "Dates de vie: 1880-1938" + ] + }, + { + "md5": "228786914207bc075036c2cca629c59e", + "pid": "A020317114", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A020317114", + "numeration": "", + "preferred_name": "Herath, H.M.A", + "authorized_access_point": "Herath, H.M.A" + }, + { + "md5": "76c296ee7497e6d56c0cce0f9ae56f9a", + "pid": "A020351109", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A020351109", + "numeration": "", + "preferred_name": "Petersen, Syndy", + "authorized_access_point": "Petersen, Syndy" + }, + { + "md5": "d13494ce38f3118853112378e54dc919", + "pid": "A020436263", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A020436263", + "numeration": "", + "preferred_name": "Harmony, Korine", + "authorized_access_point": "Harmony, Korine" + }, + { + "md5": "38ea30b5073a310327cbe53e3edf1354", + "pid": "A020500799", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A020500799", + "numeration": "", + "preferred_name": "Lapp, Axel", + "authorized_access_point": "Lapp, Axel" + }, + { + "md5": "8b98b94d7df2582f62deffefd8e52059", + "pid": "A021514179", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A021514179", + "numeration": "", + "date_of_birth": "1979", + "preferred_name": "Dubbini, Rachele", + "authorized_access_point": "Dubbini, Rachele, 1979-", + "biographical_information": [ + "Arch\u00e9ologue" + ] + }, + { + "md5": "6d582419260157232918a88f271a4d1e", + "pid": "A021609811", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A021609811", + "numeration": "", + "preferred_name": "Becker, Madeleine", + "authorized_access_point": "Becker, Madeleine" + }, + { + "md5": "f6a41d00cb6a0d52de3507d999d2ade6", + "pid": "A021643724", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A021643724", + "numeration": "", + "variant_name": [ + "Wen-hsien, Guo" + ], + "preferred_name": "Guo, Wen-hsien", + "authorized_access_point": "Guo, Wen-hsien" + }, + { + "md5": "13d71a3f6c330228aaac38dda3b67660", + "pid": "A021650553", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A021650553", + "numeration": "", + "preferred_name": "\u00d6hninger, Johann J", + "authorized_access_point": "\u00d6hninger, Johann J" + }, + { + "md5": "83ca975505c0c8e7144d6e1d16a0d763", + "pid": "A021918604", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A021918604", + "numeration": "", + "preferred_name": "Na\u1e63r, Marsel", + "authorized_access_point": "Na\u1e63r, Marsel" + }, + { + "md5": "a9caf9448043daed60e934f160d64a00", + "pid": "A021975601", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A021975601", + "numeration": "", + "preferred_name": "Frances-Claude", + "authorized_access_point": "Frances-Claude" + }, + { + "md5": "da6188fbab75d9c1e93de23ba7aac472", + "pid": "A022533394", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A022533394", + "numeration": "", + "preferred_name": "Reimer, Vera", + "authorized_access_point": "Reimer, Vera" + }, + { + "md5": "344a6dcce1164e99ca80564d9eed84d7", + "pid": "A022553969", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A022553969", + "numeration": "", + "preferred_name": "Paquet, Fran\u00e7ois", + "authorized_access_point": "Paquet, Fran\u00e7ois" + }, + { + "md5": "dc76cf497fc55a87ff0efd0c2c82e8ec", + "pid": "A022774320", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A022774320", + "numeration": "", + "preferred_name": "Love-Trade, Jack", + "authorized_access_point": "Love-Trade, Jack" + }, + { + "md5": "f9bb042252eea5654612c84b581b8418", + "pid": "A022784340", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A022784340", + "numeration": "", + "preferred_name": "D. M", + "authorized_access_point": "D. M" + }, + { + "md5": "1195e24908449f3c33a074577d1d199f", + "pid": "A022990131", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A022990131", + "numeration": "", + "preferred_name": "Wedjolo-Akatshi, Marguerite", + "authorized_access_point": "Wedjolo-Akatshi, Marguerite" + }, + { + "md5": "caefe9cd4768a4c825904c462918208a", + "pid": "A022997177", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A022997177", + "numeration": "", + "preferred_name": "Potvin, G\u00e9rard", + "authorized_access_point": "Potvin, G\u00e9rard" + }, + { + "md5": "17dc139cb0f4cca4305a8030ab067afe", + "pid": "A023114350", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A023114350", + "numeration": "", + "date_of_birth": "1965", + "preferred_name": "Matthews, Gelien", + "authorized_access_point": "Matthews, Gelien, 1965-" + }, + { + "md5": "adbe3124c3db6c8a846d258b9bda5e83", + "pid": "A023116917", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A023116917", + "numeration": "", + "preferred_name": "Sagon, Evelyne", + "authorized_access_point": "Sagon, Evelyne" + }, + { + "md5": "8433a25811f1b7728744d08b2d165020", + "pid": "A023166695", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A023166695", + "numeration": "", + "preferred_name": "Reynolds, Catherine", + "authorized_access_point": "Reynolds, Catherine" + }, + { + "md5": "8bfe6c779d0fbc6d55e556f077a58da2", + "pid": "A023182560", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A023182560", + "numeration": "", + "preferred_name": "Hafner, Elias", + "authorized_access_point": "Hafner, Elias" + }, + { + "md5": "ebc7d5174c5a808a55a48da0fed8141b", + "pid": "A023189262", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A023189262", + "numeration": "", + "date_of_birth": "1970", + "preferred_name": "Ye, Xiaobin", + "authorized_access_point": "Ye, Xiaobin, 1970-" + }, + { + "md5": "7c45c3f64b4878c1ecde793d7c0031ad", + "pid": "A023227823", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A023227823", + "numeration": "", + "preferred_name": "Boissy, Jacques", + "authorized_access_point": "Boissy, Jacques" + }, + { + "md5": "329ecaf596b443a028d663a0607ef4a2", + "pid": "A023408053", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A023408053", + "numeration": "", + "variant_name": [ + "Deleutre, Paul", + "Divol, Pol", + "Ivoi, Pavel d'", + "D'Ivoi, Pavel", + "D'Ivoi, Paul" + ], + "preferred_name": "Ivoi, Paul d'", + "authorized_access_point": "Ivoi, Paul d'", + "biographical_information": [ + "Dates de vie : 1856-1915" + ] + }, + { + "md5": "afd0714c37777b93482c110ae35508f1", + "pid": "A023425677", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A023425677", + "numeration": "", + "variant_name": [ + "Masahiro, Eguchi" + ], + "date_of_birth": "1930", + "preferred_name": "Eguchi, Masahiro", + "authorized_access_point": "Eguchi, Masahiro, 1930-" + }, + { + "md5": "09615a0947a52bf89a73bb06d22f1e6f", + "pid": "A023668772", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A023668772", + "numeration": "", + "preferred_name": "Micha\u0142ek, Andrzej", + "authorized_access_point": "Micha\u0142ek, Andrzej" + }, + { + "md5": "d7a160282557299e57a5ef6437f4ade5", + "pid": "A024043552", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A024043552", + "numeration": "", + "variant_name": [ + "Madani, Rahma Benhamou El", + "Benhamou El Madani, Rahma" + ], + "date_of_birth": "1966", + "preferred_name": "El Madani, Rahma Benhamou", + "authorized_access_point": "El Madani, Rahma Benhamou, 1966-", + "biographical_information": [ + "Productrice, r\u00e9alisatrice, sc\u00e9nariste" + ] + }, + { + "md5": "89d550a5b6fd4cda7d8cde1f33243f37", + "pid": "A024099458", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A024099458", + "numeration": "", + "preferred_name": "Stewart, Katherine A", + "authorized_access_point": "Stewart, Katherine A" + }, + { + "md5": "4b736dc28e6b22f8b0a09028d9766286", + "pid": "A024255039", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A024255039", + "numeration": "", + "preferred_name": "Anzemberger, Guy P", + "authorized_access_point": "Anzemberger, Guy P" + }, + { + "md5": "34cd55ebe0ce3e434eb50fc015dde8c9", + "pid": "A024413945", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A024413945", + "numeration": "", + "variant_name": [ + "Macdonald, A. de L\u00e9ry", + "Mc Donald, Archibald Chaussegros de L\u00e9ry", + "Mac Donald, Archibald Chaussegros de L\u00e9ry", + "McDonald, Archibald Chaussegros de L\u00e9ry" + ], + "date_of_birth": "1862", + "date_of_death": "1939", + "preferred_name": "Macdonald, Archibald Chaussegros de L\u00e9ry", + "authorized_access_point": "Macdonald, Archibald Chaussegros de L\u00e9ry, 1862-1939", + "biographical_information": [ + "Avocat, historien, g\u00e9n\u00e9alogiste, maire de Rigaud et homme d'affaires" + ] + }, + { + "md5": "61760df9dde456e47e63bf556382e0bc", + "pid": "A024416324", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A024416324", + "numeration": "", + "preferred_name": "Lindblad, Waldemar", + "authorized_access_point": "Lindblad, Waldemar" + }, + { + "md5": "b45efa89107a5686eca71a7ddfd11212", + "pid": "A025367912", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A025367912", + "numeration": "", + "preferred_name": "N\u00e4r\u00e4, Katarina", + "authorized_access_point": "N\u00e4r\u00e4, Katarina" + }, + { + "md5": "1920835b1e0e405161163e3762a64799", + "pid": "A025504164", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A025504164", + "numeration": "", + "preferred_name": "Saul, Matthew", + "authorized_access_point": "Saul, Matthew" + }, + { + "md5": "ce0fafd7f593329191f6d2fdf8bb2548", + "pid": "A025633999", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A025633999", + "numeration": "", + "preferred_name": "Peralta, Daniel", + "authorized_access_point": "Peralta, Daniel" + }, + { + "md5": "1928cdba7f76eea547a28ba8c2ad18b1", + "pid": "A025688432", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A025688432", + "numeration": "", + "preferred_name": "Ribeiro, Marc", + "authorized_access_point": "Ribeiro, Marc" + }, + { + "md5": "18a353c2d55f723412ee8d10101d4a73", + "pid": "A025694319", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A025694319", + "numeration": "", + "preferred_name": "Sibears, Daniel M", + "authorized_access_point": "Sibears, Daniel M" + }, + { + "md5": "fec498f03ab060c8e95fdfb86615c832", + "pid": "A025723446", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A025723446", + "numeration": "", + "preferred_name": "Kaliska, Maria", + "authorized_access_point": "Kaliska, Maria" + }, + { + "md5": "fafc680f5c24944af04eff3bb564a240", + "pid": "A025983847", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A025983847", + "numeration": "", + "variant_name": [ + "Millamoto, Mar\u00eda Esther Quintana", + "Quintana, Mar\u00eda Esther", + "Quintana M., Mar\u00eda Esther" + ], + "preferred_name": "Quintana Millamoto, Mar\u00eda Esther", + "authorized_access_point": "Quintana Millamoto, Mar\u00eda Esther" + }, + { + "md5": "71a47b0bb48db3ad9d07f5e6ba4a1d2b", + "pid": "A025987021", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A025987021", + "numeration": "", + "preferred_name": "Imhanobe, Sylvester Omoregie", + "authorized_access_point": "Imhanobe, Sylvester Omoregie" + }, + { + "md5": "c6cb5641a6fc2255201693336576f80d", + "pid": "A026123991", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A026123991", + "numeration": "", + "preferred_name": "Cardoso, Ant\u00f3nio", + "authorized_access_point": "Cardoso, Ant\u00f3nio" + }, + { + "md5": "39443a1d2f6f7dafe80afe5885cdd9cc", + "pid": "A026155985", + "qualifier": "Denis", + "identifier": "http://data.rero.ch/02-A026155985", + "numeration": "", + "preferred_name": "Eyraud", + "authorized_access_point": "Eyraud, Denis" + }, + { + "md5": "dca735f0cc04b03a4e8f9485b18ff932", + "pid": "A026668357", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A026668357", + "numeration": "", + "preferred_name": "Bruneau, Anne", + "authorized_access_point": "Bruneau, Anne" + }, + { + "md5": "9a90cf185fe8700c49a746775a548ca9", + "pid": "A026863247", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A026863247", + "numeration": "", + "preferred_name": "Pedraglio, Francesco", + "authorized_access_point": "Pedraglio, Francesco" + }, + { + "md5": "7ca9dca41cc4c3752fe373fc779a57b5", + "pid": "A027062343", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A027062343", + "numeration": "", + "preferred_name": "Grellety, R\u00e9mi", + "authorized_access_point": "Grellety, R\u00e9mi" + }, + { + "md5": "70a006deec5b74a01aea5e3f9dc5bc17", + "pid": "A027191227", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A027191227", + "numeration": "", + "preferred_name": "Moskowitz, Marina", + "authorized_access_point": "Moskowitz, Marina" + }, + { + "md5": "53730b0188d23fb1ba197d03d3377508", + "pid": "A027194665", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A027194665", + "numeration": "", + "preferred_name": "Fernando, Anthony Francis Tissa", + "authorized_access_point": "Fernando, Anthony Francis Tissa" + }, + { + "md5": "d1aed9f2af1be68a15f262aa06db336a", + "pid": "A027449905", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A027449905", + "numeration": "", + "date_of_birth": "1957", + "preferred_name": "Deloupy, Bernard", + "authorized_access_point": "Deloupy, Bernard, 1957-", + "biographical_information": [ + "Publicitaire, journaliste, auteur de romans policiers. - Coach en communication (en 2018)" + ] + }, + { + "md5": "837907076a87dad73953ea24bf522722", + "pid": "A027582518", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A027582518", + "numeration": "", + "date_of_birth": "1944", + "preferred_name": "Wiedemann, Herbert", + "authorized_access_point": "Wiedemann, Herbert, 1944-", + "biographical_information": [ + "Professeur de piano sp\u00e9cialis\u00e9 en improvisation \u00e0 l'Universit\u00e9 des arts de Berlin de 1988 \u00e0 2016" + ] + }, + { + "md5": "40e6448f33f1bbaa726060a7569c4131", + "pid": "A027664950", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A027664950", + "numeration": "", + "preferred_name": "Leunen, Nico", + "authorized_access_point": "Leunen, Nico" + }, + { + "md5": "4e57daf09ad2c8ff38855371006e7fcc", + "pid": "A027698830", + "qualifier": "", + "identifier": "http://data.rero.ch/02-A027698830", + "numeration": "", + "date_of_birth": "1942", + "preferred_name": "Davies, John", + "authorized_access_point": "Davies, John, 1942-" + } +] diff --git a/tests/data/agrero_metadata.csv b/tests/data/agrero_metadata.csv new file mode 100644 index 00000000..8dcca0f6 --- /dev/null +++ b/tests/data/agrero_metadata.csv @@ -0,0 +1,195 @@ +2020-09-24 13:15:12.337544 2020-09-24 13:15:12.337548 1b59c56a-f203-425a-b38a-0d61bd958b68 {"md5": "f6a41d00cb6a0d52de3507d999d2ade6", "pid": "A021643724", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A021643724", "numeration": "", "variant_name": ["Wen-hsien, Guo"], "preferred_name": "Guo, Wen-hsien", "authorized_access_point": "Guo, Wen-hsien"} 1 +2020-09-24 13:15:15.722305 2020-09-24 13:15:15.722309 876e6e42-8588-4be0-bca4-0906b7cf34e4 {"md5": "87f0ce8b33bee2580c0c1ea5c6064f84", "pid": "A003342882", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003342882", "numeration": "", "preferred_name": "Haller, Willi", "authorized_access_point": "Haller, Willi"} 1 +2020-09-24 13:15:16.829571 2020-09-24 13:15:16.829577 63e1dc9d-1285-4588-9b46-b4b1a9277a8d {"md5": "c6cb5641a6fc2255201693336576f80d", "pid": "A026123991", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A026123991", "numeration": "", "preferred_name": "Cardoso, António", "authorized_access_point": "Cardoso, António"} 1 +2020-09-24 13:15:21.513997 2020-09-24 13:15:21.514003 32b50779-00a5-4116-8987-5dd694f2ca10 {"md5": "e639db8b09caf45cb968707a1a859891", "pid": "A016695165", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A016695165", "numeration": "", "preferred_name": "Fries, C", "authorized_access_point": "Fries, C"} 1 +2020-09-24 13:15:24.402121 2020-09-24 13:15:24.402127 6094b27b-242f-4682-8e42-9f7e52ad3ed4 {"md5": "7b6c4b717c5b122c767b1731f342479d", "pid": "A003477398", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003477398", "numeration": "", "preferred_name": "Krüger, Sabine", "authorized_access_point": "Krüger, Sabine"} 1 +2020-09-24 13:15:25.547484 2020-09-24 13:15:25.547489 7fe11408-21c0-4535-92c8-7f847ae10575 {"md5": "2d32ce822a29a755fadd4253d20a7c8b", "pid": "A003743887", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003743887", "numeration": "", "variant_name": ["Richelet, Césare-Pierre", "Richelet, César Pierre"], "date_of_birth": "ca. 1626", "date_of_death": "1698", "preferred_name": "Richelet, Pierre", "authorized_access_point": "Richelet, Pierre, ca. 1626-1698", "biographical_information": ["Lexicographe"]} 1 +2020-09-24 13:15:26.195355 2020-09-24 13:15:26.19536 cafed030-e286-4ad1-9b82-fafcafe09f96 {"md5": "9b8877d655790b0836f814d4793f0a5f", "pid": "A003782234", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003782234", "numeration": "", "preferred_name": "Salvá, Vicente", "authorized_access_point": "Salvá, Vicente"} 1 +2020-09-24 13:15:26.986533 2020-09-24 13:15:26.986538 1e8208d8-db38-48c1-828d-41e18ba76a7b {"md5": "a717d76f9721759b4e2bae6976c0fb59", "pid": "A020072662", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A020072662", "numeration": "", "preferred_name": "Laugier, Jean-Nicolas", "authorized_access_point": "Laugier, Jean-Nicolas"} 1 +2020-09-24 13:15:28.171052 2020-09-24 13:15:28.171057 4dcbcad0-7115-47ed-b7e2-4f978385bbdc {"md5": "dbb72495d28354caabe1f6f0bcd078dd", "pid": "A011493066", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A011493066", "numeration": "", "preferred_name": "Leitner, Marina", "authorized_access_point": "Leitner, Marina"} 1 +2020-09-24 13:15:28.846306 2020-09-24 13:15:28.84631 f15d57c9-1717-4d3b-a658-3c3d05bda9a7 {"md5": "3139488ff53eccdd3c51fc2842b71bbd", "pid": "A003966124", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003966124", "numeration": "", "preferred_name": "Weisz, Paul B", "authorized_access_point": "Weisz, Paul B"} 1 +2020-09-24 13:15:31.267212 2020-09-24 13:15:31.267219 c34db377-4fc0-4371-8d5a-fa5cca43acef {"md5": "2d5497f69cf81caf896b72bfbd698cea", "pid": "A003531943", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003531943", "numeration": "", "preferred_name": "Lot, Fernand", "authorized_access_point": "Lot, Fernand"} 1 +2020-09-24 13:15:31.97575 2020-09-24 13:15:31.975755 92f3cfaf-c8d4-4c03-beaf-90bca0f19c37 {"md5": "4b736dc28e6b22f8b0a09028d9766286", "pid": "A024255039", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A024255039", "numeration": "", "preferred_name": "Anzemberger, Guy P", "authorized_access_point": "Anzemberger, Guy P"} 1 +2020-09-24 13:15:33.840849 2020-09-24 13:15:33.840854 c0699bdb-e002-4f44-8e34-e27b16c158b3 {"md5": "3f3d1c269a10d89ac2f2f33452cb39ca", "pid": "A003531595", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003531595", "numeration": "", "variant_name": ["Jacob, Bernard Lortat-"], "date_of_birth": "1941", "preferred_name": "Lortat-Jacob, Bernard", "authorized_access_point": "Lortat-Jacob, Bernard, 1941-", "biographical_information": ["Ethnomusicologue. - Directeur de recherche au CNRS et responsable du Laboratoire d'ethnomusicologie CBRS du Musée de l'homme, Paris (en 2001)"]} 1 +2020-09-24 13:15:34.807397 2020-09-24 13:15:34.807402 49b833a5-71fa-415d-a8ca-f95a642d72bc {"md5": "025c73956102f987ea46f3b84762ae0b", "pid": "A018459512", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "médecin", "identifier": "http://data.rero.ch/02-A018459512", "numeration": "", "preferred_name": "Schlüssel", "authorized_access_point": "Schlüssel, médecin"} 1 +2020-09-24 13:15:35.578549 2020-09-24 13:15:35.578554 d45a8620-8740-4d15-ac5b-9a6b7992d9e1 {"md5": "92c618f80697f327e1d224716337d294", "pid": "A003427813", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003427813", "numeration": "", "preferred_name": "Johnson, John F", "authorized_access_point": "Johnson, John F"} 1 +2020-09-24 13:15:38.18111 2020-09-24 13:15:38.181115 f932c7ed-7186-4c12-acd3-e6c9d37c2ed6 {"md5": "d7a160282557299e57a5ef6437f4ade5", "pid": "A024043552", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A024043552", "numeration": "", "variant_name": ["Madani, Rahma Benhamou El", "Benhamou El Madani, Rahma"], "date_of_birth": "1966", "preferred_name": "El Madani, Rahma Benhamou", "authorized_access_point": "El Madani, Rahma Benhamou, 1966-", "biographical_information": ["Productrice, réalisatrice, scénariste"]} 1 +2020-09-24 13:15:38.980437 2020-09-24 13:15:38.980441 360c7db9-bf42-4e89-b185-6346ac7ca282 {"md5": "27127842e0ddf19ba985f72375fb4090", "pid": "A003048129", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003048129", "numeration": "", "preferred_name": "Brown, George Isaac", "authorized_access_point": "Brown, George Isaac"} 1 +2020-09-24 13:15:40.112965 2020-09-24 13:15:40.112971 5daed626-7693-4ddd-b472-60da56addb73 {"md5": "2fb3695eb8d98e26219363de0eb74a75", "pid": "A002971659", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A002971659", "numeration": "", "preferred_name": "Barrett-Ayres, Reginald", "authorized_access_point": "Barrett-Ayres, Reginald"} 1 +2020-09-24 13:16:32.562065 2020-09-24 13:16:32.562069 54fee1d6-5524-4921-acd1-9663ad95f856 {"md5": "9a8a0eb6826cfc191096b1f4e117dce6", "pid": "A003971618", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003971618", "numeration": "", "preferred_name": "White, Miriam Harker", "authorized_access_point": "White, Miriam Harker"} 1 +2020-09-24 13:15:43.477873 2020-09-24 13:15:43.477878 5630dbdf-7b00-4785-ac5b-99f6e1d0e401 {"md5": "9c026d006b89afa732b18cbac035cd75", "pid": "A019010974", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A019010974", "numeration": "", "variant_name": ["Tetsuo, Owada"], "date_of_birth": "1944", "preferred_name": "Owada, Tetsuo", "authorized_access_point": "Owada, Tetsuo, 1944-", "biographical_information": ["Docteur ès lettres, diplômé de l'Université de Waseda, Tōkyō, Japon. - En poste à l'Université de Shizuoka, Japon (en 2006). - Spécialiste de l'histoire médiévale du Japon"]} 1 +2020-09-24 13:15:46.755962 2020-09-24 13:15:46.755968 5b21a83f-b561-4e20-aae1-96c0a44ce41f {"md5": "79e27ada46111eee69f0abc6c1adaf4d", "pid": "A013784156", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A013784156", "numeration": "", "preferred_name": "Parisi, Chiara", "authorized_access_point": "Parisi, Chiara"} 1 +2020-09-24 13:15:47.44518 2020-09-24 13:15:47.445186 b787af5b-4cab-45d8-a3e6-b8721e93fd51 {"md5": "36efe9c5b07d73817f0fb7bf40ee280b", "pid": "A009279090", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A009279090", "numeration": "", "preferred_name": "Douchy, Hervé", "authorized_access_point": "Douchy, Hervé"} 1 +2020-09-24 13:15:50.779375 2020-09-24 13:15:50.779379 acd91bd3-bbcc-494c-874f-0d9572b86617 {"md5": "2e25c36c3ce2317704f25683de0551b9", "pid": "A014026079", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A014026079", "numeration": "", "preferred_name": "Wiese, René", "authorized_access_point": "Wiese, René"} 1 +2020-09-24 13:15:55.119012 2020-09-24 13:15:55.119018 7d4c8e93-3ddd-40df-8fe6-cc4a911b5452 {"md5": "84bd2c0be64509d639b518c974c228ba", "pid": "A008584612", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A008584612", "numeration": "", "preferred_name": "Redner, Sidney", "authorized_access_point": "Redner, Sidney"} 1 +2020-09-24 13:15:55.862327 2020-09-24 13:15:55.862332 1bd40e90-69c6-4a80-abfb-ec185901d6f9 {"md5": "c32110e2c954258046ec73e8883cc2d8", "pid": "A003300349", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003300349", "numeration": "", "preferred_name": "Giusti, Giambattista", "authorized_access_point": "Giusti, Giambattista"} 1 +2020-09-24 13:15:58.621202 2020-09-24 13:15:58.621207 2c8da138-43da-49ac-bf36-4013a0b8056c {"md5": "dc9c0c10b8a9348d74be8686bfed443d", "pid": "A018395567", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A018395567", "numeration": "", "date_of_birth": "1986", "preferred_name": "Kull, Iara", "authorized_access_point": "Kull, Iara, 1986-"} 1 +2020-09-24 13:15:59.831207 2020-09-24 13:15:59.831212 7eed5e0b-565a-4978-aef4-ddb804f03874 {"md5": "71c2fb8f4d892dc5ecc9e3a305d634e3", "pid": "A009426238", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A009426238", "numeration": "", "preferred_name": "Luard, Honey", "authorized_access_point": "Luard, Honey"} 1 +2020-09-24 13:16:00.14827 2020-09-24 13:16:00.148275 e67a346f-6bd7-44d1-acaf-78c981922f85 {"md5": "6bec689fbfc881c2618a14edb6f51f67", "pid": "A005821830", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A005821830", "numeration": "", "preferred_name": "Green, Owen Mortimer", "authorized_access_point": "Green, Owen Mortimer"} 1 +2020-09-24 13:16:02.894718 2020-09-24 13:16:02.894723 46c59780-bbe1-49eb-a42e-174783da507d {"md5": "51f59b475bf999c40abd610c02fc49a7", "pid": "A018477130", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A018477130", "numeration": "", "preferred_name": "Nājī, Hilāl", "authorized_access_point": "Nājī, Hilāl"} 1 +2020-09-24 13:16:03.550926 2020-09-24 13:16:03.55093 e508b5b9-1dd6-4423-ac11-243ce5df13e4 {"md5": "83ca975505c0c8e7144d6e1d16a0d763", "pid": "A021918604", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A021918604", "numeration": "", "preferred_name": "Naṣr, Marsel", "authorized_access_point": "Naṣr, Marsel"} 1 +2020-09-24 13:16:04.731974 2020-09-24 13:16:04.731979 26c9332a-ef63-4eca-99ce-7767963c7651 {"md5": "87dd395ff53a09ab35e35e73b8123a51", "pid": "A003364295", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003364295", "numeration": "", "variant_name": ["Henschel, G.A.L.", "Henschel"], "date_of_birth": "1806", "date_of_death": "1852", "preferred_name": "Henschel, G.A. Louis", "authorized_access_point": "Henschel, G.A. Louis, 1806-1852", "biographical_information": ["Philologue et lexicographe. - Né à Minden (Allemagne), mort à Paris. - A aussi écrit en allemand et en latin"]} 1 +2020-09-24 13:16:06.758478 2020-09-24 13:16:06.758484 f4c14ef1-49a3-46ef-823c-9a0cfe2a842e {"md5": "44858072bedaa7b2a545f644f2177fdb", "pid": "A010938873", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A010938873", "numeration": "", "preferred_name": "Florent, Romain", "authorized_access_point": "Florent, Romain"} 1 +2020-09-24 13:16:08.787574 2020-09-24 13:16:08.787579 c1cd4af9-a197-4af2-839d-752cfd82517a {"md5": "7c9720d2ea71242264ad687d34ddd042", "pid": "A016816789", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A016816789", "numeration": "", "preferred_name": "Lekhina, Ekaterina", "authorized_access_point": "Lekhina, Ekaterina"} 1 +2020-09-24 13:16:12.690295 2020-09-24 13:16:12.690299 526846b8-501d-4e9e-a2f9-da89292a1f2b {"md5": "560cab91722911bd8feb30be28541943", "pid": "A009687650", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A009687650", "numeration": "", "preferred_name": "Joseph, Branden Wayne", "authorized_access_point": "Joseph, Branden Wayne"} 1 +2020-09-24 13:16:15.726963 2020-09-24 13:16:15.726968 db194632-7ec5-4972-94f8-bfa49a1882d8 {"md5": "a61802c597c4fd375aacdf41b195f7b8", "pid": "A003265730", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003265730", "numeration": "", "preferred_name": "Frisch, Christine", "authorized_access_point": "Frisch, Christine"} 1 +2020-09-24 13:16:17.274122 2020-09-24 13:16:17.274127 4c34390c-1dd0-47f0-bf7c-a687eb76cfe6 {"md5": "3e991be6293d085be97ea88cd60d3731", "pid": "A011736857", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A011736857", "numeration": "", "preferred_name": "Jurjevics, Juris", "authorized_access_point": "Jurjevics, Juris"} 1 +2020-09-24 13:16:23.208677 2020-09-24 13:16:23.208682 21065db5-c744-4eb0-b896-865c5146c66d {"md5": "a5c5a16924a7e6b8a0af204cb5bffb0b", "pid": "A002942098", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A002942098", "numeration": "", "preferred_name": "Aschengreen, Franz", "authorized_access_point": "Aschengreen, Franz"} 1 +2020-09-24 13:16:27.905241 2020-09-24 13:16:27.905245 6d9e753e-7cef-44ce-a81c-cf7f25b969f1 {"md5": "76c296ee7497e6d56c0cce0f9ae56f9a", "pid": "A020351109", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A020351109", "numeration": "", "preferred_name": "Petersen, Syndy", "authorized_access_point": "Petersen, Syndy"} 1 +2020-09-24 13:16:35.891092 2020-09-24 13:16:35.891097 2ca48ec7-8f6e-41d5-bd97-f4962d0cf6ab {"md5": "3cbc96f880d814c8e024a2a59bcc9a6c", "pid": "A018087920", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A018087920", "numeration": "", "preferred_name": "Schwandt, Michael", "authorized_access_point": "Schwandt, Michael"} 1 +2020-09-24 13:16:38.166515 2020-09-24 13:16:38.16652 84d4ab31-c028-45c2-b107-d053300b7c89 {"md5": "8b98b94d7df2582f62deffefd8e52059", "pid": "A021514179", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A021514179", "numeration": "", "date_of_birth": "1979", "preferred_name": "Dubbini, Rachele", "authorized_access_point": "Dubbini, Rachele, 1979-", "biographical_information": ["Archéologue"]} 1 +2020-09-24 13:16:39.665043 2020-09-24 13:16:39.665048 12a51110-f566-4e53-8d33-2acf6bcc6bc0 {"md5": "43904713d5f0a9865c195d8b331ae3c1", "pid": "A012591999", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A012591999", "numeration": "", "preferred_name": "Schneikert, Elisabeth", "authorized_access_point": "Schneikert, Elisabeth"} 1 +2020-09-24 13:16:44.734715 2020-09-24 13:16:44.73472 a29e6b94-c617-436b-829a-161a022417a2 {"md5": "97f08988f28544d9ddb5e414368831ef", "pid": "A009519020", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A009519020", "numeration": "", "variant_name": ["Da Costa, Carla Tavares", "Tavares Da Costa, Carla"], "preferred_name": "Costa, Carla Tavares da", "authorized_access_point": "Costa, Carla Tavares da"} 1 +2020-09-24 13:16:48.328144 2020-09-24 13:16:48.32815 47e41371-2510-41b3-82fa-7efabb9530b6 {"md5": "4e57daf09ad2c8ff38855371006e7fcc", "pid": "A027698830", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A027698830", "numeration": "", "date_of_birth": "1942", "preferred_name": "Davies, John", "authorized_access_point": "Davies, John, 1942-"} 1 +2020-09-24 13:16:48.977638 2020-09-24 13:16:48.977644 8d270608-5e70-48c4-b1b9-3b8709970ec9 {"md5": "7d1fd75df6e4333222cd50531571ee92", "pid": "A016513981", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A016513981", "numeration": "", "preferred_name": "Weber, Renaud", "authorized_access_point": "Weber, Renaud"} 1 +2020-09-24 13:16:58.899101 2020-09-24 13:16:58.899106 ac295f2c-bd6e-4cc5-9cee-1cbbaf3dcee3 {"md5": "17dc139cb0f4cca4305a8030ab067afe", "pid": "A023114350", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A023114350", "numeration": "", "date_of_birth": "1965", "preferred_name": "Matthews, Gelien", "authorized_access_point": "Matthews, Gelien, 1965-"} 1 +2020-09-24 13:17:00.503656 2020-09-24 13:17:00.503661 34597164-3afc-427e-8d25-be95503d87c7 {"md5": "fafc680f5c24944af04eff3bb564a240", "pid": "A025983847", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A025983847", "numeration": "", "variant_name": ["Millamoto, María Esther Quintana", "Quintana, María Esther", "Quintana M., María Esther"], "preferred_name": "Quintana Millamoto, María Esther", "authorized_access_point": "Quintana Millamoto, María Esther"} 1 +2020-09-24 13:17:02.577674 2020-09-24 13:17:02.577679 5b9ceed4-38df-4dab-8969-580a1d903453 {"md5": "1f764e3837864440604e963f41327868", "pid": "A017173033", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A017173033", "numeration": "", "preferred_name": "Hungerbühler, Ivo", "authorized_access_point": "Hungerbühler, Ivo"} 1 +2020-09-24 13:17:04.151949 2020-09-24 13:17:04.151954 f59074a1-e2a1-4805-bae2-5a4231b384f8 {"md5": "0174b09fa2ff745a2dd4675eece957df", "pid": "A009590113", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A009590113", "numeration": "", "date_of_birth": "1952", "preferred_name": "Haas, Jean-François", "authorized_access_point": "Haas, Jean-François, 1952-", "biographical_information": ["Ecrivain, enseignant. Né à Courtaman (Suisse, FR)"]} 1 +2020-09-24 13:17:04.8007 2020-09-24 13:17:04.800705 25f75896-7121-435b-891d-f3a7854a4171 {"md5": "f3ece2bc7f3f139ad3e26703313d8005", "pid": "A013753495", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A013753495", "numeration": "", "preferred_name": "Bogdan-Verger, Olimpia", "authorized_access_point": "Bogdan-Verger, Olimpia"} 1 +2020-09-24 13:17:06.323905 2020-09-24 13:17:06.32391 d0bd987c-d9de-482e-8c54-3d9b11f9316f {"md5": "09615a0947a52bf89a73bb06d22f1e6f", "pid": "A023668772", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A023668772", "numeration": "", "preferred_name": "Michałek, Andrzej", "authorized_access_point": "Michałek, Andrzej"} 1 +2020-09-24 13:17:06.961611 2020-09-24 13:17:06.961617 a4ac3f6c-9a78-4fc4-9f6b-050875ed00a5 {"md5": "240c18492e427c5a5c051b5e10b5ac62", "pid": "A016768352", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "musicien", "identifier": "http://data.rero.ch/02-A016768352", "numeration": "", "preferred_name": "Patry, André J.", "authorized_access_point": "Patry, André J., musicien"} 1 +2020-09-24 13:17:08.038766 2020-09-24 13:17:08.038771 22f18442-2a56-49f2-ae43-3feb213f0d88 {"md5": "cd1a49eaaf253720b8158e43183ac568", "pid": "A018475973", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A018475973", "numeration": "", "date_of_birth": "1910", "date_of_death": "1997", "preferred_name": "Bielawski, Józef", "authorized_access_point": "Bielawski, Józef, 1910-1997"} 1 +2020-09-24 13:17:13.322877 2020-09-24 13:17:13.322882 9ff69fa5-cd0b-4b16-8ff5-fcacc31ed1e5 {"md5": "db4fef4689f6ba29c116417c788ebec5", "pid": "A003594199", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003594199", "numeration": "", "preferred_name": "Milanowski, Włodzimierz", "authorized_access_point": "Milanowski, Włodzimierz"} 1 +2020-09-24 13:17:13.850195 2020-09-24 13:17:13.8502 2a8b8f19-ad31-4699-a69b-9176822bfcb0 {"md5": "04c964e5a0be4f8901d85d73cac5b47b", "pid": "A012346177", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "médecin", "identifier": "http://data.rero.ch/02-A012346177", "numeration": "", "preferred_name": "Monnier, Jean-François", "authorized_access_point": "Monnier, Jean-François, médecin"} 1 +2020-09-24 13:17:14.11857 2020-09-24 13:17:14.118575 69f64f3d-70e2-4521-9c7f-5b6cabe75a7a {"md5": "3ab112586fcb8df0cc874c6b07d7f6c6", "pid": "A020122584", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A020122584", "numeration": "", "preferred_name": "Rosset, Xavier", "authorized_access_point": "Rosset, Xavier"} 1 +2020-09-24 13:17:14.362605 2020-09-24 13:17:14.36261 2de08229-31ec-40fa-923b-809ed7c26606 {"md5": "fec498f03ab060c8e95fdfb86615c832", "pid": "A025723446", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A025723446", "numeration": "", "preferred_name": "Kaliska, Maria", "authorized_access_point": "Kaliska, Maria"} 1 +2020-09-24 13:17:15.538477 2020-09-24 13:17:15.538482 16b41de5-06b7-4501-aa0f-3a52fd3d3170 {"md5": "760d70def923599322eb63da45ec5223", "pid": "A003421797", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003421797", "numeration": "", "preferred_name": "Jastrzębiec-Zielonka, Ludwik", "authorized_access_point": "Jastrzębiec-Zielonka, Ludwik"} 1 +2020-09-24 13:17:15.875404 2020-09-24 13:17:15.875409 f1e05482-d4d4-40af-a928-49904ee68480 {"md5": "4cb655ea9c74c05ad2710fc8919b8f79", "pid": "A003768835", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003768835", "numeration": "", "preferred_name": "Ruchonnet, Charles", "authorized_access_point": "Ruchonnet, Charles"} 1 +2020-09-24 13:17:16.129547 2020-09-24 13:17:16.129552 dde0220b-48fc-4f28-8a65-a02f1d81fddd {"md5": "93396951cd06eecc5dcecba2a72ae453", "pid": "A013094655", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A013094655", "numeration": "", "preferred_name": "Rumpf, Heinrich L", "authorized_access_point": "Rumpf, Heinrich L"} 1 +2020-09-24 13:17:16.362488 2020-09-24 13:17:16.362494 f6e6b61e-a710-4505-b4e3-f63560546dc0 {"md5": "a9caf9448043daed60e934f160d64a00", "pid": "A021975601", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A021975601", "numeration": "", "preferred_name": "Frances-Claude", "authorized_access_point": "Frances-Claude"} 1 +2020-09-24 13:17:16.638274 2020-09-24 13:17:16.638279 4ae76c8f-161e-449e-9466-44d7c6c6a829 {"md5": "a48fc951adfe7c974c1b98f7342eeccb", "pid": "A018331793", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A018331793", "numeration": "", "preferred_name": "Fiebiger, Rainer", "authorized_access_point": "Fiebiger, Rainer"} 1 +2020-09-24 13:17:16.903355 2020-09-24 13:17:16.90336 919a1e1e-b965-4845-be07-558f34188722 {"md5": "89810abe14da048b712de72a8792b592", "pid": "A009968806", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A009968806", "numeration": "", "variant_name": ["Birney, Alfred Earle"], "preferred_name": "Birney, Earle", "authorized_access_point": "Birney, Earle"} 1 +2020-09-24 13:17:20.468819 2020-09-24 13:17:20.468824 ca2ca79e-0ba7-4e60-912c-217d9d14bcf6 {"md5": "3cb9af805833cb907d59d7aa80e4697a", "pid": "A003055215", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003055215", "numeration": "", "preferred_name": "Buenemann, Gerd", "authorized_access_point": "Buenemann, Gerd"} 1 +2020-09-24 13:17:20.743165 2020-09-24 13:17:20.74317 23523316-6183-4c05-a455-c7f1c52deb35 {"md5": "ec246a472df5fdccadbd3059be105bda", "pid": "A012086274", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A012086274", "numeration": "", "preferred_name": "Langie, Kazimierz", "authorized_access_point": "Langie, Kazimierz"} 1 +2020-09-24 13:17:21.287098 2020-09-24 13:17:21.287103 c1bbd50a-67a6-4d1d-b94b-6f16bbff5332 {"md5": "adbe3124c3db6c8a846d258b9bda5e83", "pid": "A023116917", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A023116917", "numeration": "", "preferred_name": "Sagon, Evelyne", "authorized_access_point": "Sagon, Evelyne"} 1 +2020-09-24 13:17:21.52197 2020-09-24 13:17:21.521975 de6fbd2a-8093-48c8-ad26-4b57b5619ebc {"md5": "95acb66e54a15bb9ffaee2822f29b011", "pid": "A018556919", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A018556919", "numeration": "", "preferred_name": "Knüfermann, Eckar", "authorized_access_point": "Knüfermann, Eckar"} 1 +2020-09-24 13:17:21.79885 2020-09-24 13:17:21.798856 275e8518-acfc-4e5a-9261-6bd91d7fa4a0 {"md5": "691ea606dabc9a47dafd5410924099d1", "pid": "A006389498", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A006389498", "numeration": "", "preferred_name": "Chrześcijanin", "authorized_access_point": "Chrześcijanin"} 1 +2020-09-24 13:17:22.146857 2020-09-24 13:17:22.146862 94f1cb3d-b416-4f0f-ac5c-32723f2422c6 {"md5": "36bd74bc4ac2f4b6c80f853334268cdc", "pid": "A009306109", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A009306109", "numeration": "", "preferred_name": "Soldt, Johannes", "authorized_access_point": "Soldt, Johannes"} 1 +2020-09-24 13:17:24.10835 2020-09-24 13:17:24.108355 1cfd80dc-e4ad-4aa2-bfb1-7806435cf1db {"md5": "18a353c2d55f723412ee8d10101d4a73", "pid": "A025694319", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A025694319", "numeration": "", "preferred_name": "Sibears, Daniel M", "authorized_access_point": "Sibears, Daniel M"} 1 +2020-09-24 13:17:24.801714 2020-09-24 13:17:24.801719 618b3c3a-9a3a-4f98-9e2a-5a3aa5e14138 {"md5": "8649f85eb228580c4a0cd57c0d5a620e", "pid": "A020103298", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A020103298", "numeration": "", "preferred_name": "Hronék, Upravil Miroslav", "authorized_access_point": "Hronék, Upravil Miroslav"} 1 +2020-09-24 13:17:25.617079 2020-09-24 13:17:25.617083 dcb9b2ee-3865-4943-8725-962eb31e4934 {"md5": "e881a246a3f8de695f1b469aff9c34b8", "pid": "A003345261", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003345261", "numeration": "", "preferred_name": "Hancock, David", "authorized_access_point": "Hancock, David"} 1 +2020-09-24 13:17:26.29392 2020-09-24 13:17:26.293925 f86cec4b-1009-47c2-a63b-afd31a9d52d3 {"md5": "810e4b587d48ff2fb23277085c7473b1", "pid": "A008729062", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A008729062", "numeration": "", "preferred_name": "Cinquin, François", "authorized_access_point": "Cinquin, François"} 1 +2020-09-24 13:17:27.321909 2020-09-24 13:17:27.321915 f57b3274-58af-4428-93f0-e7bb3aa4ef35 {"md5": "65a389aeafef1e28c2361b7bf9beeb56", "pid": "A003501471", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003501471", "numeration": "", "preferred_name": "Lavoix, Henry", "authorized_access_point": "Lavoix, Henry"} 1 +2020-09-24 13:17:30.917225 2020-09-24 13:17:30.917229 1012b799-7757-4e43-a35c-e87b88feefaf {"md5": "e2978086973183c22b799dd710434c9f", "pid": "A005732208", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A005732208", "numeration": "", "preferred_name": "Busch, Sylvia", "authorized_access_point": "Busch, Sylvia"} 1 +2020-09-24 13:17:31.693205 2020-09-24 13:17:31.69321 bc4bd075-cf2c-44b8-b70e-86e6fe7e612b {"md5": "837907076a87dad73953ea24bf522722", "pid": "A027582518", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A027582518", "numeration": "", "date_of_birth": "1944", "preferred_name": "Wiedemann, Herbert", "authorized_access_point": "Wiedemann, Herbert, 1944-", "biographical_information": ["Professeur de piano spécialisé en improvisation à l'Université des arts de Berlin de 1988 à 2016"]} 1 +2020-09-24 13:17:32.973952 2020-09-24 13:17:32.973957 ef8b3f09-028c-4360-8d9e-be4b5702c4ef {"md5": "228786914207bc075036c2cca629c59e", "pid": "A020317114", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A020317114", "numeration": "", "preferred_name": "Herath, H.M.A", "authorized_access_point": "Herath, H.M.A"} 1 +2020-09-24 13:17:33.291766 2020-09-24 13:17:33.291771 da65d653-a3da-4fc8-9f99-a3364d6e7303 {"md5": "ece39233ed1564046fd465f71bbe9eb2", "pid": "A016484771", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A016484771", "numeration": "", "date_of_birth": "1965", "preferred_name": "Gibson, Kevin", "authorized_access_point": "Gibson, Kevin, 1965-"} 1 +2020-09-24 13:17:35.675303 2020-09-24 13:17:35.675308 f56b4d58-2bb6-4240-bcce-c5ba9bc50d19 {"md5": "a0d9ecdb414c1dcd86b41df0e44ae9eb", "pid": "A013505146", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A013505146", "numeration": "", "variant_name": ["Spi̲lio̲táki̲s, K.K"], "preferred_name": "Spēliōtakēs, K.K", "authorized_access_point": "Spēliōtakēs, K.K"} 1 +2020-09-24 13:17:37.392108 2020-09-24 13:17:37.392112 deb22bfd-3073-42d4-a548-7f90073910f3 {"md5": "018ca6e9f02e445047f141e0779b059b", "pid": "A011817228", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A011817228", "numeration": "", "preferred_name": "Hopf, Friedrich-Eugen", "authorized_access_point": "Hopf, Friedrich-Eugen"} 1 +2020-09-24 13:17:42.367963 2020-09-24 13:17:42.367968 b38a2f08-e30c-4517-9ca8-bd8c6f2c6933 {"md5": "e74b2779c8e0ddfb49fe9d1c4b4d5398", "pid": "A017565309", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A017565309", "numeration": "", "variant_name": ["Abraham, Ernst A."], "date_of_birth": "1906", "preferred_name": "Abraham, Ernst August", "authorized_access_point": "Abraham, Ernst August, 1906-", "biographical_information": ["Economiste"]} 1 +2020-09-24 13:17:52.797706 2020-09-24 13:17:52.797711 176f84ff-8c53-44d3-93f6-76b85ff82c94 {"md5": "40e6448f33f1bbaa726060a7569c4131", "pid": "A027664950", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A027664950", "numeration": "", "preferred_name": "Leunen, Nico", "authorized_access_point": "Leunen, Nico"} 1 +2020-09-24 13:17:55.746838 2020-09-24 13:17:55.746843 20b399cf-3ff9-40a7-aa13-e9961eb82708 {"md5": "344a6dcce1164e99ca80564d9eed84d7", "pid": "A022553969", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A022553969", "numeration": "", "preferred_name": "Paquet, François", "authorized_access_point": "Paquet, François"} 1 +2020-09-24 13:17:56.412713 2020-09-24 13:17:56.412718 f08e7e3b-3ea5-425c-9cbe-e1b8b2703aff {"md5": "58a469dd5f6096dc5f25b2eaf3b9d144", "pid": "A018613224", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A018613224", "numeration": "", "preferred_name": "Dumouchel, Jacques", "authorized_access_point": "Dumouchel, Jacques"} 1 +2020-09-24 13:17:59.560009 2020-09-24 13:17:59.560015 5b440a6f-3ea7-4898-8bba-db060ad7d142 {"md5": "5f0202f87eaf44e847ec8866a86ffbab", "pid": "A003037886", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003037886", "numeration": "", "preferred_name": "Brandolin, Mario", "authorized_access_point": "Brandolin, Mario"} 1 +2020-09-24 13:18:00.319037 2020-09-24 13:18:00.319042 5626a4e9-f45e-46d3-980d-f9b38edda1d9 {"md5": "da6188fbab75d9c1e93de23ba7aac472", "pid": "A022533394", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A022533394", "numeration": "", "preferred_name": "Reimer, Vera", "authorized_access_point": "Reimer, Vera"} 1 +2020-09-24 13:18:01.567103 2020-09-24 13:18:01.567107 397b373a-bd54-4068-9d88-a3020539e56f {"md5": "f04aa4333fa17d279726ea206da15dec", "pid": "A003363900", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003363900", "numeration": "", "preferred_name": "Henriot, Jean-Claude", "authorized_access_point": "Henriot, Jean-Claude"} 1 +2020-09-24 13:18:02.670859 2020-09-24 13:18:02.670864 6cd6bcd4-b07a-4711-85e8-ddcc9db8b5d8 {"md5": "f987fd5158a4785d5e9d060318ab38a3", "pid": "A017383534", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A017383534", "numeration": "", "preferred_name": "Ming-Yuet, Kee", "authorized_access_point": "Ming-Yuet, Kee"} 1 +2020-09-24 13:18:08.265078 2020-09-24 13:18:08.265083 3d909336-81ba-46a7-a7d5-121ab039e62e {"md5": "b01245e08efa4483d4189d9f1af46405", "pid": "A002981924", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A002981924", "numeration": "", "preferred_name": "Becaïa, Melchisedec", "authorized_access_point": "Becaïa, Melchisedec"} 1 +2020-09-24 13:18:12.099461 2020-09-24 13:18:12.099466 70609df6-6f41-4d68-bf96-2308f9042502 {"md5": "d1aed9f2af1be68a15f262aa06db336a", "pid": "A027449905", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A027449905", "numeration": "", "date_of_birth": "1957", "preferred_name": "Deloupy, Bernard", "authorized_access_point": "Deloupy, Bernard, 1957-", "biographical_information": ["Publicitaire, journaliste, auteur de romans policiers. - Coach en communication (en 2018)"]} 1 +2020-09-24 13:18:28.894913 2020-09-24 13:18:28.894918 f9114639-b08b-44a9-8bce-d4aaf8a330d7 {"md5": "6d582419260157232918a88f271a4d1e", "pid": "A021609811", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A021609811", "numeration": "", "preferred_name": "Becker, Madeleine", "authorized_access_point": "Becker, Madeleine"} 1 +2020-09-24 13:18:30.035415 2020-09-24 13:18:30.03542 51d489be-ddc0-49cb-8b8e-a48b3c5cb0ec {"md5": "3eb987f47571712afe7e3e3b463553df", "pid": "A003389663", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003389663", "numeration": "", "preferred_name": "Hulme, David", "authorized_access_point": "Hulme, David"} 1 +2020-09-24 13:18:31.441047 2020-09-24 13:18:31.441051 99067d95-0bd4-4f03-9c34-fbc10a823ce1 {"md5": "920cc6f2af511ac8920a734226842081", "pid": "A017713949", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A017713949", "numeration": "", "preferred_name": "Michel, Ariane", "authorized_access_point": "Michel, Ariane"} 1 +2020-09-24 13:18:32.510421 2020-09-24 13:18:32.510427 32722536-9c5a-48c2-95a5-cbaaad0d3db8 {"md5": "96e3af31c1467dba572f84a7f0f45b35", "pid": "A013346407", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A013346407", "numeration": "", "preferred_name": "Topf, Helmut", "authorized_access_point": "Topf, Helmut"} 1 +2020-09-24 13:18:32.793339 2020-09-24 13:18:32.793343 bf6fc125-3cd5-484b-b94b-3ec4b61d27e9 {"md5": "53730b0188d23fb1ba197d03d3377508", "pid": "A027194665", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A027194665", "numeration": "", "preferred_name": "Fernando, Anthony Francis Tissa", "authorized_access_point": "Fernando, Anthony Francis Tissa"} 1 +2020-09-24 13:18:39.130254 2020-09-24 13:18:39.130259 91f50357-db37-49ce-9601-844bef152f65 {"md5": "e8980d35afcb6b6dbbc047311c778d44", "pid": "A018345923", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A018345923", "numeration": "", "preferred_name": "Galanopoulos, Philippe", "authorized_access_point": "Galanopoulos, Philippe"} 1 +2020-09-24 13:18:43.155466 2020-09-24 13:18:43.155471 a1cf4486-4b46-4be9-8731-c4ee93ac6235 {"md5": "70a006deec5b74a01aea5e3f9dc5bc17", "pid": "A027191227", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A027191227", "numeration": "", "preferred_name": "Moskowitz, Marina", "authorized_access_point": "Moskowitz, Marina"} 1 +2020-09-24 13:19:14.097568 2020-09-24 13:19:14.097573 e6d3bdac-9719-48a1-9e74-88b35ef7a055 {"md5": "b3ac00f9a71ee591190291d99cadd6ab", "pid": "A005995031", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A005995031", "numeration": "", "preferred_name": "Dion, Linda", "authorized_access_point": "Dion, Linda"} 1 +2020-09-24 13:18:44.39472 2020-09-24 13:18:44.394726 f4f4a066-1ef4-4638-be7b-5cb15636c0df {"md5": "134c94a577dfe59be12151006cb64be4", "pid": "A003789261", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003789261", "numeration": "", "variant_name": ["Savile, Douglas B. O.", "Savile, Douglas Barton Osborne"], "date_of_birth": "1909", "date_of_death": "2000", "preferred_name": "Savile, D. B. O.", "authorized_access_point": "Savile, D. B. O., 1909-2000", "biographical_information": ["Mycologue, phytopathologiste et biologiste canadien d'origine irlandaise"]} 1 +2020-09-24 13:18:45.671973 2020-09-24 13:18:45.671978 dae66e52-e2be-4183-a6ad-81d60449ba56 {"md5": "52fb11534f97ad5ffc8192a31824a883", "pid": "A018726776", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A018726776", "numeration": "", "preferred_name": "Pugin, J", "authorized_access_point": "Pugin, J"} 1 +2020-09-24 13:18:47.917145 2020-09-24 13:18:47.91715 ada4e52f-4e42-4ce8-a548-29185b969315 {"md5": "ef7e620a208ddea63e55d7b85975a5b9", "pid": "A003853351", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003853351", "numeration": "", "preferred_name": "Spiess, Bernhard", "authorized_access_point": "Spiess, Bernhard"} 1 +2020-09-24 13:18:48.969206 2020-09-24 13:18:48.969211 36ef0bdb-7e9c-4dc0-bca6-8e6cbfe1167b {"md5": "96e191007b725933ee2820321318ba2b", "pid": "A003552475", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003552475", "numeration": "", "preferred_name": "Maister, David H", "authorized_access_point": "Maister, David H"} 1 +2020-09-24 13:18:54.136214 2020-09-24 13:18:54.13622 befa4da3-b444-4a4d-a04f-6fa3e3eef812 {"md5": "4c8b69beb807687193b0ec2497383a68", "pid": "A003101806", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003101806", "numeration": "", "preferred_name": "Chiarini, Claude", "authorized_access_point": "Chiarini, Claude"} 1 +2020-09-24 13:18:56.772268 2020-09-24 13:18:56.772273 048bc8c1-0205-4071-9054-43f615fed3ed {"md5": "14beabb0ae682d1458e6d68cf07ebcdb", "pid": "A003080186", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003080186", "numeration": "", "preferred_name": "Carter, Bob", "authorized_access_point": "Carter, Bob"} 1 +2020-09-24 13:18:59.290751 2020-09-24 13:18:59.290756 125cd7b4-7b73-42f3-bc7d-167d77cb5259 {"md5": "edd56856905352009ace33f8b65eee29", "pid": "A011417162", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A011417162", "numeration": "", "preferred_name": "Oelenheinz, Leopold", "authorized_access_point": "Oelenheinz, Leopold"} 1 +2020-09-24 13:18:59.927207 2020-09-24 13:18:59.927212 01e8a88c-37fc-4711-a33d-3f50edeccaf3 {"md5": "1928cdba7f76eea547a28ba8c2ad18b1", "pid": "A025688432", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A025688432", "numeration": "", "preferred_name": "Ribeiro, Marc", "authorized_access_point": "Ribeiro, Marc"} 1 +2020-09-24 13:19:01.395629 2020-09-24 13:19:01.395634 2ffd9f50-2c84-4d97-9cf4-69e2acaddc56 {"md5": "8178986680e4d5bbaebb20fb5ecc7209", "pid": "A017944030", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A017944030", "numeration": "", "preferred_name": "Sandner, Henrike", "authorized_access_point": "Sandner, Henrike"} 1 +2020-09-24 13:19:02.70114 2020-09-24 13:19:02.701145 b5269772-1f3e-46e8-a188-ada99620e4f3 {"md5": "34cd55ebe0ce3e434eb50fc015dde8c9", "pid": "A024413945", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A024413945", "numeration": "", "variant_name": ["Macdonald, A. de Léry", "Mc Donald, Archibald Chaussegros de Léry", "Mac Donald, Archibald Chaussegros de Léry", "McDonald, Archibald Chaussegros de Léry"], "date_of_birth": "1862", "date_of_death": "1939", "preferred_name": "Macdonald, Archibald Chaussegros de Léry", "authorized_access_point": "Macdonald, Archibald Chaussegros de Léry, 1862-1939", "biographical_information": ["Avocat, historien, généalogiste, maire de Rigaud et homme d'affaires"]} 1 +2020-09-24 13:19:02.995879 2020-09-24 13:19:02.995884 2af3fb6a-3de9-44fb-94d4-95bca4cc7531 {"md5": "1195e24908449f3c33a074577d1d199f", "pid": "A022990131", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A022990131", "numeration": "", "preferred_name": "Wedjolo-Akatshi, Marguerite", "authorized_access_point": "Wedjolo-Akatshi, Marguerite"} 1 +2020-09-24 13:19:04.148498 2020-09-24 13:19:04.148503 d924e67a-ffa1-41cc-9726-34c03318c454 {"md5": "1572495275ce93b6a953bc4fb345a8c8", "pid": "A002941440", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A002941440", "numeration": "", "preferred_name": "Artl, Gerhard", "authorized_access_point": "Artl, Gerhard"} 1 +2020-09-24 13:19:04.438751 2020-09-24 13:19:04.438756 53632437-439d-4ddd-946f-58e5efb6d6c5 {"md5": "61c40e0753bbadcdd2ce13762b62176c", "pid": "A002961093", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A002961093", "numeration": "", "preferred_name": "Baillargeon, Guy", "authorized_access_point": "Baillargeon, Guy"} 1 +2020-09-24 13:19:06.334798 2020-09-24 13:19:06.334804 fb53d5f5-c0de-4fa6-bde5-25ea1091f627 {"md5": "71a47b0bb48db3ad9d07f5e6ba4a1d2b", "pid": "A025987021", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A025987021", "numeration": "", "preferred_name": "Imhanobe, Sylvester Omoregie", "authorized_access_point": "Imhanobe, Sylvester Omoregie"} 1 +2020-09-24 13:19:07.870076 2020-09-24 13:19:07.870083 c1ed8a42-8459-4623-ac3f-e9bfb041e545 {"md5": "c94763b4926b265a8991ae0cbba20459", "pid": "A003360509", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003360509", "numeration": "", "preferred_name": "Helbich, Wolfgang J", "authorized_access_point": "Helbich, Wolfgang J"} 1 +2020-09-24 13:19:09.151947 2020-09-24 13:19:09.151952 43927905-5e20-4aa2-beb1-59a59d52586b {"md5": "564f9bc2b8ab20919f2e3ccba4e29baf", "pid": "A003947464", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003947464", "numeration": "", "preferred_name": "Vogelsang-Wenke, Heike", "authorized_access_point": "Vogelsang-Wenke, Heike"} 1 +2020-09-24 13:19:10.366722 2020-09-24 13:19:10.366727 72c1e2d8-dd83-4d02-8ef7-f4aa111cc9ed {"md5": "13d71a3f6c330228aaac38dda3b67660", "pid": "A021650553", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A021650553", "numeration": "", "preferred_name": "Öhninger, Johann J", "authorized_access_point": "Öhninger, Johann J"} 1 +2020-09-24 13:19:12.816856 2020-09-24 13:19:12.816862 ebb9f18e-a270-4bf6-a8a9-fd6f14cff93b {"md5": "9ea70d1bea771235e25738cb7ee43d01", "pid": "A011026926", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A011026926", "numeration": "", "preferred_name": "Lamoureux, Jocelyne", "authorized_access_point": "Lamoureux, Jocelyne"} 1 +2020-09-24 13:19:13.825836 2020-09-24 13:19:13.825841 53204e02-d73f-4bbd-a68c-878d8aae3bd3 {"md5": "09156e30ebcec2b41142865182d3fc82", "pid": "A003370921", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003370921", "numeration": "", "variant_name": ["Higham, Robin D.S.", "Higham, Robin David Stewart"], "date_of_birth": "1925", "preferred_name": "Higham, Robin", "authorized_access_point": "Higham, Robin, 1925-"} 1 +2020-09-24 13:19:14.342269 2020-09-24 13:19:14.342273 09bf66e7-8635-41a8-93cc-9706fdf6d82e {"md5": "f57d233030c23a411d6c08e86f090921", "pid": "A012338211", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "anthropologue", "identifier": "http://data.rero.ch/02-A012338211", "numeration": "", "preferred_name": "Desjardins, Michel", "authorized_access_point": "Desjardins, Michel, anthropologue"} 1 +2020-09-24 13:19:15.587193 2020-09-24 13:19:15.587198 10035518-b1d4-45fb-9878-f8cbc264268d {"md5": "81ef62a0b96e5f97e1b3679c56d0d790", "pid": "A003454993", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003454993", "numeration": "", "preferred_name": "Kingma, J", "authorized_access_point": "Kingma, J"} 1 +2020-09-24 13:19:23.221924 2020-09-24 13:19:23.22193 7717f64a-c813-4974-b8e1-d4bb8e43df13 {"md5": "9c859889143e5b3e350015a557611cf1", "pid": "A003019667", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003019667", "numeration": "", "preferred_name": "Boillat, Christian", "authorized_access_point": "Boillat, Christian"} 1 +2020-09-24 13:19:23.466408 2020-09-24 13:19:23.466413 9b57cd07-7690-477b-8a40-0e2b714bbdc1 {"md5": "53242fff8ab9a2a962950f8aba47d18c", "pid": "A003849275", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003849275", "numeration": "", "preferred_name": "Sorabji, Cornélia", "authorized_access_point": "Sorabji, Cornélia"} 1 +2020-09-24 13:19:24.24795 2020-09-24 13:19:24.247955 f08a05da-c158-4747-a4b7-18b9638c09f2 {"md5": "631049670959784c469ce80c38a80a83", "pid": "A013330726", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A013330726", "numeration": "", "preferred_name": "Renard, Emmanuelle", "authorized_access_point": "Renard, Emmanuelle"} 1 +2020-09-24 13:19:25.581648 2020-09-24 13:19:25.581652 eb2ac1aa-bb7b-445a-8287-4aff44dfac48 {"md5": "d948c64ae929b65383ecf53eb3b0681e", "pid": "A017187491", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A017187491", "numeration": "", "preferred_name": "Kleinhenz, Barbara", "authorized_access_point": "Kleinhenz, Barbara"} 1 +2020-09-24 13:19:26.230638 2020-09-24 13:19:26.230643 b9e29aae-bbb2-4180-b1b3-0d826e0b6f4f {"md5": "5e1fc729a25d2b4058a693633e27a6e1", "pid": "A003514292", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003514292", "numeration": "", "preferred_name": "Leron, Uri", "authorized_access_point": "Leron, Uri"} 1 +2020-09-24 13:19:27.289531 2020-09-24 13:19:27.289536 777bb0ef-d320-4c9e-8f7e-649eb55a43e0 {"md5": "8433a25811f1b7728744d08b2d165020", "pid": "A023166695", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A023166695", "numeration": "", "preferred_name": "Reynolds, Catherine", "authorized_access_point": "Reynolds, Catherine"} 1 +2020-09-24 13:19:27.756962 2020-09-24 13:19:27.756967 44333c6b-ffa0-4d87-8cfb-96d644deb2c4 {"md5": "4c8757270cd58aea58ac09f0fb1e4c22", "pid": "A016619915", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A016619915", "numeration": "", "preferred_name": "López-Medina, Sylvia", "authorized_access_point": "López-Medina, Sylvia"} 1 +2020-09-24 13:19:28.659461 2020-09-24 13:19:28.659467 463853d8-87ec-44d5-82f0-ad0460d0333a {"md5": "f9bb042252eea5654612c84b581b8418", "pid": "A022784340", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A022784340", "numeration": "", "preferred_name": "D. M", "authorized_access_point": "D. M"} 1 +2020-09-24 13:19:28.898487 2020-09-24 13:19:28.898492 c0f7137a-d9fd-4778-b40d-f9d23d2c32b7 {"md5": "73132d8e69da36145a652b73595fa3b8", "pid": "A003625161", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003625161", "numeration": "", "preferred_name": "Münichsdorfer, Friedrich", "authorized_access_point": "Münichsdorfer, Friedrich"} 1 +2020-09-24 13:19:29.504753 2020-09-24 13:19:29.504759 6f7d113f-4c35-4a65-98b8-86407b875922 {"md5": "c50c86ea2dee6493eef6411ab0f9720e", "pid": "A019156002", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A019156002", "numeration": "", "preferred_name": "Lalonde, Jean-Yves", "authorized_access_point": "Lalonde, Jean-Yves"} 1 +2020-09-24 13:19:29.93417 2020-09-24 13:19:29.934176 338ed0ad-4c76-4427-9829-4e63d039acb5 {"md5": "cb41c9756161b814d8f51689a0465bf1", "pid": "A011105659", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A011105659", "numeration": "", "preferred_name": "Mercille Taillefer, Micheline", "authorized_access_point": "Mercille Taillefer, Micheline"} 1 +2020-09-24 13:19:30.828424 2020-09-24 13:19:30.828429 8fbb80d1-f8ca-4f75-b9b0-278e9e30ab74 {"md5": "229244e791a11272116c632b19386575", "pid": "A011007424", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A011007424", "numeration": "", "preferred_name": "Bellini, Emmanuel", "authorized_access_point": "Bellini, Emmanuel", "biographical_information": ["Dates de vie: 1904-"]} 1 +2020-09-24 13:19:31.06612 2020-09-24 13:19:31.066125 3feeed9c-caee-4759-bf1b-6923c086f725 {"md5": "caefe9cd4768a4c825904c462918208a", "pid": "A022997177", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A022997177", "numeration": "", "preferred_name": "Potvin, Gérard", "authorized_access_point": "Potvin, Gérard"} 1 +2020-09-24 13:19:32.622613 2020-09-24 13:19:32.622618 ca268323-437c-42ea-bd50-1c65921005a6 {"md5": "dca735f0cc04b03a4e8f9485b18ff932", "pid": "A026668357", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A026668357", "numeration": "", "preferred_name": "Bruneau, Anne", "authorized_access_point": "Bruneau, Anne"} 1 +2020-09-24 13:19:32.972898 2020-09-24 13:19:32.972902 3330d24b-808d-45c2-a621-1238fb631c57 {"md5": "eb0503e4ace36ccfa9a72e2221225a3d", "pid": "A018879902", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A018879902", "numeration": "", "preferred_name": "Gassmann, Aude", "authorized_access_point": "Gassmann, Aude"} 1 +2020-09-24 13:19:37.570146 2020-09-24 13:19:37.570152 de3490fe-8530-4d30-8f8a-7fcb4a788d54 {"md5": "93f227dfe6c4cf54bb5a3152d70acf9d", "pid": "A003245434", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "entomologue", "identifier": "http://data.rero.ch/02-A003245434", "numeration": "", "variant_name": ["Fischer, Maximilian"], "preferred_name": "Fischer, Max", "authorized_access_point": "Fischer, Max, entomologue"} 1 +2020-09-24 13:19:42.347794 2020-09-24 13:19:42.3478 c9910b02-e9dc-4ee8-a0f1-ba51710dc5bf {"md5": "39443a1d2f6f7dafe80afe5885cdd9cc", "pid": "A026155985", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "Denis", "identifier": "http://data.rero.ch/02-A026155985", "numeration": "", "preferred_name": "Eyraud", "authorized_access_point": "Eyraud, Denis"} 1 +2020-09-24 13:19:42.681132 2020-09-24 13:19:42.681137 ea0df6cb-3f6a-47f3-a3a2-c977a8dc5b1e {"md5": "ce9e2713add63fd56335ac68ebcdbc34", "pid": "A018699407", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A018699407", "numeration": "", "preferred_name": "Janssen, Hildegonda", "authorized_access_point": "Janssen, Hildegonda"} 1 +2020-09-24 13:19:42.94268 2020-09-24 13:19:42.942684 99ee1b3b-1974-4a7e-8bbd-adddb57162cd {"md5": "ce0fafd7f593329191f6d2fdf8bb2548", "pid": "A025633999", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A025633999", "numeration": "", "preferred_name": "Peralta, Daniel", "authorized_access_point": "Peralta, Daniel"} 1 +2020-09-24 13:19:56.429598 2020-09-24 13:19:56.429603 28fc4223-297d-476a-b1b1-88073a527e7e {"md5": "5de8011d273d07949aebcb6d178b0102", "pid": "A008730051", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A008730051", "numeration": "", "preferred_name": "Otomo, Masaku", "authorized_access_point": "Otomo, Masaku"} 1 +2020-09-24 13:20:00.022537 2020-09-24 13:20:00.022542 962a394b-ec83-42a3-bf6a-82619181b262 {"md5": "c49d42a41df53af171cd0121bc71f578", "pid": "A003293437", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003293437", "numeration": "", "preferred_name": "Ghirri, Luigi", "authorized_access_point": "Ghirri, Luigi"} 1 +2020-09-24 13:20:00.559135 2020-09-24 13:20:00.55914 0c4176b3-348e-4433-9602-0ea5095d99a7 {"md5": "329ecaf596b443a028d663a0607ef4a2", "pid": "A023408053", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A023408053", "numeration": "", "variant_name": ["Deleutre, Paul", "Divol, Pol", "Ivoi, Pavel d'", "D'Ivoi, Pavel", "D'Ivoi, Paul"], "preferred_name": "Ivoi, Paul d'", "authorized_access_point": "Ivoi, Paul d'", "biographical_information": ["Dates de vie : 1856-1915"]} 1 +2020-09-24 13:20:02.25109 2020-09-24 13:20:02.251095 70eae3b2-c324-4bcb-87c6-b4d9365b4846 {"md5": "59584f1d768c4d5b5f85aed7a6ff30ed", "pid": "A003516733", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003516733", "numeration": "", "date_of_birth": "1839", "date_of_death": "1900", "preferred_name": "Levi, Hermann", "authorized_access_point": "Levi, Hermann, 1839-1900"} 1 +2020-09-24 13:20:04.698477 2020-09-24 13:20:04.698482 73cdc66e-7977-404b-a4de-e53388d2a7b1 {"md5": "50e3d69704fd8001baa75e8406b0651a", "pid": "A018610634", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A018610634", "numeration": "", "preferred_name": "Abbott, Colleen", "authorized_access_point": "Abbott, Colleen"} 1 +2020-09-24 13:20:06.365368 2020-09-24 13:20:06.365373 5c991fdd-8e21-497d-9644-7c8d17425f6d {"md5": "e766c9ae26d0328752cb684b9670f559", "pid": "A020053143", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A020053143", "numeration": "", "preferred_name": "Ruhierre, Edme", "authorized_access_point": "Ruhierre, Edme"} 1 +2020-09-24 13:20:09.589699 2020-09-24 13:20:09.589705 bbbccb02-8016-4feb-b719-3fb0000f04da {"md5": "499353374e2805574694a26dbcdb07f5", "pid": "A017784112", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A017784112", "numeration": "", "preferred_name": "Furse, Raymond W", "authorized_access_point": "Furse, Raymond W"} 1 +2020-09-24 13:20:11.103086 2020-09-24 13:20:11.103092 b5581c19-d5b1-4971-8f38-cd222fa57d15 {"md5": "f3bea89905b161dd03ead538baf28abc", "pid": "A020228645", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A020228645", "numeration": "", "preferred_name": "Routon, Kenneth", "authorized_access_point": "Routon, Kenneth"} 1 +2020-09-24 13:20:12.393537 2020-09-24 13:20:12.393542 0d54727d-adf4-49a9-aec4-539253869df9 {"md5": "9a90cf185fe8700c49a746775a548ca9", "pid": "A026863247", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A026863247", "numeration": "", "preferred_name": "Pedraglio, Francesco", "authorized_access_point": "Pedraglio, Francesco"} 1 +2020-09-24 13:20:12.667004 2020-09-24 13:20:12.667009 98094902-4684-4c97-82fd-4605305cf769 {"md5": "7c45c3f64b4878c1ecde793d7c0031ad", "pid": "A023227823", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A023227823", "numeration": "", "preferred_name": "Boissy, Jacques", "authorized_access_point": "Boissy, Jacques"} 1 +2020-09-24 13:20:13.786385 2020-09-24 13:20:13.78639 44bf3ca7-4c0b-455b-b261-57ccf604603d {"md5": "ffcd6d0ab7b5b98010b3b9eb3c13017c", "pid": "A016678629", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A016678629", "numeration": "", "variant_name": ["Hjarl Petersen, Jane"], "preferred_name": "Petersen, Jane Hjarl", "authorized_access_point": "Petersen, Jane Hjarl", "biographical_information": ["Archéologue danoise"]} 1 +2020-09-24 13:20:15.383145 2020-09-24 13:20:15.38315 ef0f9068-a473-4841-99b2-1abf345acaed {"md5": "df4ac065ba0065f32706af01a73cef4c", "pid": "A003203987", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003203987", "numeration": "", "preferred_name": "Díaz, Janet Winecoff", "authorized_access_point": "Díaz, Janet Winecoff"} 1 +2020-09-24 13:20:16.506608 2020-09-24 13:20:16.506613 a6b575d5-db4d-4f1b-8610-457a79bc682f {"md5": "c2e8de1a965ff8878692ce2476b491f9", "pid": "A003491484", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003491484", "numeration": "", "preferred_name": "Lamberton, Ch", "authorized_access_point": "Lamberton, Ch"} 1 +2020-09-24 13:20:18.335521 2020-09-24 13:20:18.335526 553ca80d-b35a-4362-871e-d9bfd5ab87ee {"md5": "5f3aa0a436d204edeaceba40fc6bf5b9", "pid": "A003188796", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003188796", "numeration": "", "preferred_name": "Douglas, Claire", "authorized_access_point": "Douglas, Claire"} 1 +2020-09-24 13:20:18.919449 2020-09-24 13:20:18.919455 3080f3c8-3380-460c-bea7-66ef8c55732b {"md5": "ed74c9d35bd0647095810f5ff33921e3", "pid": "A003975282", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003975282", "numeration": "", "preferred_name": "Wildeboer, Ina Hinderika", "authorized_access_point": "Wildeboer, Ina Hinderika"} 1 +2020-09-24 13:20:20.177677 2020-09-24 13:20:20.177682 19e4d7c0-7652-4f60-9c10-debf386a1532 {"md5": "2272005ba09385871f08dc1a3dc06c12", "pid": "A016871460", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A016871460", "numeration": "", "variant_name": ["MacDonnell, Thomas Michael", "Mc Donnell, Thomas Michael", "Mac Donnell, Thomas Michael"], "preferred_name": "McDonnell, Thomas Michael", "authorized_access_point": "McDonnell, Thomas Michael"} 1 +2020-09-24 13:20:21.254451 2020-09-24 13:20:21.254456 b1345d7d-2acf-4f0f-a1c3-cbc971d64953 {"md5": "fa046f1b19743fb01d11b65cc7d2f62c", "pid": "A003494285", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003494285", "numeration": "", "preferred_name": "Lange, Bastian", "authorized_access_point": "Lange, Bastian"} 1 +2020-09-24 13:20:24.566185 2020-09-24 13:20:24.56619 acc94f8a-ec41-446c-939f-cebf657b8243 {"md5": "77f8eb97492aa2dcdaeef33c8f861a46", "pid": "A003883717", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003883717", "numeration": "", "preferred_name": "Séebold, Éric", "authorized_access_point": "Séebold, Éric"} 1 +2020-09-24 13:20:28.953741 2020-09-24 13:20:28.953747 8eacedb5-eb5b-45c1-a8fe-d0696b9cb5fc {"md5": "1ea28747b64b589483d229f26d13aa32", "pid": "A006035318", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A006035318", "numeration": "", "preferred_name": "Birget, J.-C", "authorized_access_point": "Birget, J.-C"} 1 +2020-09-24 13:20:34.930709 2020-09-24 13:20:34.930713 75f31017-537f-494b-80fb-10058141b1d2 {"md5": "25dc7eef92b259c31fed8d7587d3b3a3", "pid": "A003084316", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003084316", "numeration": "", "preferred_name": "Cattaneo, Aldo", "authorized_access_point": "Cattaneo, Aldo"} 1 +2020-09-24 13:20:38.207882 2020-09-24 13:20:38.207888 0963a1f4-1695-46d5-be3d-744048a8d39f {"md5": "63a54c43e4aa4c0094d55f0ab6aec926", "pid": "A003719235", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003719235", "numeration": "", "preferred_name": "Pătrășcanu, Petru V", "authorized_access_point": "Pătrășcanu, Petru V"} 1 +2020-09-24 13:20:46.870787 2020-09-24 13:20:46.870792 7abdcc58-abd7-41ee-995e-266e3c57985d {"md5": "fda347398ef2f9b480d433bb8e421600", "pid": "A014065225", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A014065225", "numeration": "", "preferred_name": "Serventy, Dominic Louis", "authorized_access_point": "Serventy, Dominic Louis"} 1 +2020-09-24 13:20:49.221446 2020-09-24 13:20:49.221451 8c9ca65a-98cb-4374-bf9a-5bfe5004ab8f {"md5": "89d550a5b6fd4cda7d8cde1f33243f37", "pid": "A024099458", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A024099458", "numeration": "", "preferred_name": "Stewart, Katherine A", "authorized_access_point": "Stewart, Katherine A"} 1 +2020-09-24 13:20:49.486198 2020-09-24 13:20:49.486205 652720eb-68e9-46e9-b459-44fef8c317b6 {"md5": "ebc7d5174c5a808a55a48da0fed8141b", "pid": "A023189262", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A023189262", "numeration": "", "date_of_birth": "1970", "preferred_name": "Ye, Xiaobin", "authorized_access_point": "Ye, Xiaobin, 1970-"} 1 +2020-09-24 13:20:50.955598 2020-09-24 13:20:50.955604 e47450f1-3b5f-4954-8ca9-97ac0635ec55 {"md5": "d5cfc180a9d25372709694efaef55f30", "pid": "A018750238", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A018750238", "numeration": "", "preferred_name": "Lafite, Elisabeth", "authorized_access_point": "Lafite, Elisabeth"} 1 +2020-09-24 13:20:52.571216 2020-09-24 13:20:52.571222 98648001-ec7d-4660-85ec-7aad4454744e {"md5": "b45efa89107a5686eca71a7ddfd11212", "pid": "A025367912", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A025367912", "numeration": "", "preferred_name": "Närä, Katarina", "authorized_access_point": "Närä, Katarina"} 1 +2020-09-24 13:20:54.605629 2020-09-24 13:20:54.605634 55c7130d-e32e-4e5a-a405-3658c0f76d09 {"md5": "a845f7dadfece41d432c8e636fe77916", "pid": "A003641265", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003641265", "numeration": "", "preferred_name": "Nievergelt, Dieter", "authorized_access_point": "Nievergelt, Dieter"} 1 +2020-09-24 13:20:56.558817 2020-09-24 13:20:56.558822 86407cc6-21b1-408a-9acc-9ff0e8624eff {"md5": "4226a48c0a7e3444fb2e91244ea29b64", "pid": "A003733566", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003733566", "numeration": "", "preferred_name": "Regis, Roger", "authorized_access_point": "Regis, Roger"} 1 +2020-09-24 13:20:57.668306 2020-09-24 13:20:57.668312 eec8da20-b1c1-4039-ac56-32a286464426 {"md5": "048d3c609e02f822189dfaaaf4e5c3a1", "pid": "A003180246", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003180246", "numeration": "", "preferred_name": "Dietrich, Dagmar", "authorized_access_point": "Dietrich, Dagmar"} 1 +2020-09-24 13:20:58.813454 2020-09-24 13:20:58.813459 fb871989-acf4-44c1-84df-937e4fd77fba {"md5": "896be13b6045f9b816f78256b03300e5", "pid": "A000016955", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A000016955", "numeration": "", "date_of_birth": "1813", "date_of_death": "1882", "preferred_name": "Batissier, Louis", "authorized_access_point": "Batissier, Louis, 1813-1882", "biographical_information": ["B. Lewis est le pseudonyme de Louis Batissier", "Médecin. - Inspecteur de monuments historiques de l'Allier"]} 1 +2020-09-24 13:21:01.467201 2020-09-24 13:21:01.467207 7f9d4cc2-9bb7-42f3-ba68-4a1a20556a58 {"md5": "b94266e7d61477557a34c7b7c61cef60", "pid": "A017696857", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A017696857", "numeration": "", "preferred_name": "Laval, Roseline", "authorized_access_point": "Laval, Roseline"} 1 +2020-09-24 13:21:06.698859 2020-09-24 13:21:06.698864 fe4cb06c-3c95-489b-b0b0-32357ee62e8b {"md5": "ad0a91729563ae8bbc04c306e173bd11", "pid": "A013993183", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A013993183", "numeration": "", "preferred_name": "Barbi, Elisabetta", "authorized_access_point": "Barbi, Elisabetta"} 1 +2020-09-24 13:21:15.812102 2020-09-24 13:21:15.812108 377b262b-3400-4202-8e16-92fff9dcd449 {"md5": "d13494ce38f3118853112378e54dc919", "pid": "A020436263", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A020436263", "numeration": "", "preferred_name": "Harmony, Korine", "authorized_access_point": "Harmony, Korine"} 1 +2020-09-24 13:21:25.12766 2020-09-24 13:21:25.127666 f557e667-2565-4504-b7ff-a2dece364a87 {"md5": "8b20749c0cfc412dd5a93a0ffeb6361f", "pid": "A017468446", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A017468446", "numeration": "", "preferred_name": "Meyer, Susanna", "authorized_access_point": "Meyer, Susanna"} 1 +2020-09-24 13:21:25.888056 2020-09-24 13:21:25.888061 2a0563a6-038f-4379-998c-1acb91ddc809 {"md5": "8da6c53838dd146875e1d2137c7bd7a4", "pid": "A018456288", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A018456288", "numeration": "", "preferred_name": "Halperin, Natalie", "authorized_access_point": "Halperin, Natalie"} 1 +2020-09-24 13:21:29.879048 2020-09-24 13:21:29.879054 610c80f7-58c6-4b24-9c4f-c74d4de2cd2b {"md5": "1920835b1e0e405161163e3762a64799", "pid": "A025504164", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A025504164", "numeration": "", "preferred_name": "Saul, Matthew", "authorized_access_point": "Saul, Matthew"} 1 +2020-09-24 13:21:35.058736 2020-09-24 13:21:35.058741 aa3671ef-5cf4-4526-9407-aff1bb309849 {"md5": "38ea30b5073a310327cbe53e3edf1354", "pid": "A020500799", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A020500799", "numeration": "", "preferred_name": "Lapp, Axel", "authorized_access_point": "Lapp, Axel"} 1 +2020-09-24 13:21:35.445796 2020-09-24 13:21:35.445801 80e07b7e-22f9-47ad-bdd5-f8d5208ccdf9 {"md5": "dc76cf497fc55a87ff0efd0c2c82e8ec", "pid": "A022774320", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A022774320", "numeration": "", "preferred_name": "Love-Trade, Jack", "authorized_access_point": "Love-Trade, Jack"} 1 +2020-09-24 13:21:36.566332 2020-09-24 13:21:36.566337 76503850-da72-40eb-be25-58516403caa1 {"md5": "61760df9dde456e47e63bf556382e0bc", "pid": "A024416324", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A024416324", "numeration": "", "preferred_name": "Lindblad, Waldemar", "authorized_access_point": "Lindblad, Waldemar"} 1 +2020-09-24 13:21:37.952776 2020-09-24 13:21:37.952782 ab7b87f3-9afc-4377-be22-aad9a8bf7afd {"md5": "905c8276d25a506cc8a2daaadd400f49", "pid": "A002939817", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A002939817", "numeration": "", "preferred_name": "Arnold, Gregory C", "authorized_access_point": "Arnold, Gregory C"} 1 +2020-09-24 13:21:38.667721 2020-09-24 13:21:38.667726 802615ba-7023-4794-b087-7ca1a2a81df2 {"md5": "38a534117ecc555ff19cf01e593ddda7", "pid": "A012313815", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A012313815", "numeration": "", "date_of_birth": "1923", "preferred_name": "Kretzschmar, Serge", "authorized_access_point": "Kretzschmar, Serge, 1923-"} 1 +2020-09-24 13:21:39.833649 2020-09-24 13:21:39.833654 6b25cf14-04f0-410a-a5fc-1116f1107318 {"md5": "7ca9dca41cc4c3752fe373fc779a57b5", "pid": "A027062343", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A027062343", "numeration": "", "preferred_name": "Grellety, Rémi", "authorized_access_point": "Grellety, Rémi"} 1 +2020-09-24 13:21:46.073351 2020-09-24 13:21:46.073357 279b48e4-5cd5-46e7-8e28-a7ddc00dfaec {"md5": "add4f28ea69f338ba9662b071beaabad", "pid": "A003780412", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003780412", "numeration": "", "preferred_name": "Salisbury, Harrison Evans", "authorized_access_point": "Salisbury, Harrison Evans"} 1 +2020-09-24 13:21:47.172525 2020-09-24 13:21:47.172529 96542dcd-8082-435b-b79f-fa791a76cb8d {"md5": "80f71afe5128d612a83accb7d252a4c5", "pid": "A003146897", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003146897", "numeration": "", "preferred_name": "Cullen, Gordon", "authorized_access_point": "Cullen, Gordon"} 1 +2020-09-24 13:21:47.440105 2020-09-24 13:21:47.440111 b2325c6b-cd72-41b6-9c26-5056413a6ab0 {"md5": "5ae60057a8e38d6029928ad4afd34ea6", "pid": "A017158101", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A017158101", "numeration": "", "preferred_name": "Naciri, Khaled", "authorized_access_point": "Naciri, Khaled"} 1 +2020-09-24 13:21:47.697312 2020-09-24 13:21:47.697317 4fe3a90d-639e-49f7-8b1f-0499a258f2bc {"md5": "011e6799edf66b8b75733686705867a2", "pid": "A020232527", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A020232527", "numeration": "", "preferred_name": "Rey, Antoinette", "authorized_access_point": "Rey, Antoinette", "biographical_information": ["Dates de vie: 1880-1938"]} 1 +2020-09-24 13:21:48.78673 2020-09-24 13:21:48.786734 3ab84eb2-b277-425c-86b4-d4b6f6790f7d {"md5": "78d0962e57c605e24a9e61d046ada15e", "pid": "A003645251", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003645251", "numeration": "", "variant_name": ["Von Normann, Reinhard", "VonNormann, Reinhard"], "preferred_name": "Normann, Reinhard von", "authorized_access_point": "Normann, Reinhard von"} 1 +2020-09-24 13:21:50.485268 2020-09-24 13:21:50.485273 c7fae49e-d488-4442-a355-aec38c2d73e5 {"md5": "b439fe4aac95adedf402cadf1e13a2be", "pid": "A003206780", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003206780", "numeration": "", "preferred_name": "Echard, William E", "authorized_access_point": "Echard, William E"} 1 +2020-09-24 13:21:51.682603 2020-09-24 13:21:51.682608 5c38a981-3018-409f-9c6a-56a37dbd537b {"md5": "4c3743b0c39185b511ceeea06093f5dc", "pid": "A003441673", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003441673", "numeration": "", "preferred_name": "Kaplan, Robert B", "authorized_access_point": "Kaplan, Robert B"} 1 +2020-09-24 13:21:52.822394 2020-09-24 13:21:52.822399 bb9dd925-978a-418b-a112-61c26701b76c {"md5": "e799a3d6557a3d53b6a1ee9d6db5ca4e", "pid": "A003398237", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003398237", "numeration": "", "preferred_name": "Ihori, Toshihiro", "authorized_access_point": "Ihori, Toshihiro"} 1 +2020-09-24 13:21:53.94594 2020-09-24 13:21:53.945945 99cdf33e-2292-42fc-b64d-40a0ebec4ce3 {"md5": "8f84041bb5352e6d802b83fe218d1597", "pid": "A003685283", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003685283", "numeration": "", "preferred_name": "Pestieau, Pierre", "authorized_access_point": "Pestieau, Pierre"} 1 +2020-09-24 13:21:56.521387 2020-09-24 13:21:56.521392 c25b0845-83da-4313-a412-b3169149abab {"md5": "afd0714c37777b93482c110ae35508f1", "pid": "A023425677", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A023425677", "numeration": "", "variant_name": ["Masahiro, Eguchi"], "date_of_birth": "1930", "preferred_name": "Eguchi, Masahiro", "authorized_access_point": "Eguchi, Masahiro, 1930-"} 1 +2020-09-24 13:21:57.438484 2020-09-24 13:21:57.43849 a2af8d31-3bd9-45cf-852a-49e085a820d4 {"md5": "777ea18216a68c7b1d44bf2178cced99", "pid": "A003399601", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003399601", "numeration": "", "preferred_name": "Inamoto, Noboru", "authorized_access_point": "Inamoto, Noboru"} 1 +2020-09-24 13:21:58.204464 2020-09-24 13:21:58.204468 9bd94ac6-56d6-4bce-a25d-24973297e43b {"md5": "053b30069f979ae899487988e0062be6", "pid": "A003491429", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003491429", "numeration": "", "variant_name": ["Lambert, William Wilson"], "preferred_name": "Lambert, William W", "authorized_access_point": "Lambert, William W"} 1 +2020-09-24 13:21:58.946898 2020-09-24 13:21:58.946905 15c3478c-a718-447c-b731-f311e76d60c6 {"md5": "48fa83e5e7bb8634b701d9c9f7058fa7", "pid": "A014025587", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "directeur de Dixi S.A", "identifier": "http://data.rero.ch/02-A014025587", "numeration": "", "preferred_name": "Castella, Paul", "authorized_access_point": "Castella, Paul, directeur de Dixi S.A"} 1 +2020-09-24 13:22:01.665133 2020-09-24 13:22:01.665138 90916a00-da07-4004-aa9f-9c8c9323a8af {"md5": "4400685376356af7a42179013e47ee45", "pid": "A017513975", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "scénariste", "identifier": "http://data.rero.ch/02-A017513975", "numeration": "", "preferred_name": "Martin, Rainer", "authorized_access_point": "Martin, Rainer, scénariste"} 1 +2020-09-24 13:22:01.909373 2020-09-24 13:22:01.909378 50981f56-a7bf-4ada-9eb6-3e73f2583353 {"md5": "8bfe6c779d0fbc6d55e556f077a58da2", "pid": "A023182560", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A023182560", "numeration": "", "preferred_name": "Hafner, Elias", "authorized_access_point": "Hafner, Elias"} 1 +2020-09-24 13:22:02.569178 2020-09-24 13:22:02.569183 e464ab0b-a8ba-4364-8566-0ef5d3c32462 {"md5": "3ec0958398f3bff0e2ed983c2fffd99b", "pid": "A003863577", "$schema": "https://mef.rero.ch/schemas/rero/rero-person-v0.0.1.json", "qualifier": "", "identifier": "http://data.rero.ch/02-A003863577", "numeration": "", "preferred_name": "Stern, Guy", "authorized_access_point": "Stern, Guy"} 1 diff --git a/tests/data/agrero_pidstore.csv b/tests/data/agrero_pidstore.csv new file mode 100644 index 00000000..47b3a9fa --- /dev/null +++ b/tests/data/agrero_pidstore.csv @@ -0,0 +1,195 @@ +2020-09-24 13:15:12.329546 2020-09-24 13:15:12.329551 rero A021643724 R rec 1b59c56a-f203-425a-b38a-0d61bd958b68 +2020-09-24 13:15:15.714154 2020-09-24 13:15:15.71416 rero A003342882 R rec 876e6e42-8588-4be0-bca4-0906b7cf34e4 +2020-09-24 13:15:16.822292 2020-09-24 13:15:16.822298 rero A026123991 R rec 63e1dc9d-1285-4588-9b46-b4b1a9277a8d +2020-09-24 13:15:21.505758 2020-09-24 13:15:21.505764 rero A016695165 R rec 32b50779-00a5-4116-8987-5dd694f2ca10 +2020-09-24 13:15:24.394245 2020-09-24 13:15:24.394251 rero A003477398 R rec 6094b27b-242f-4682-8e42-9f7e52ad3ed4 +2020-09-24 13:15:25.540667 2020-09-24 13:15:25.540673 rero A003743887 R rec 7fe11408-21c0-4535-92c8-7f847ae10575 +2020-09-24 13:15:26.188354 2020-09-24 13:15:26.18836 rero A003782234 R rec cafed030-e286-4ad1-9b82-fafcafe09f96 +2020-09-24 13:15:26.980424 2020-09-24 13:15:26.98043 rero A020072662 R rec 1e8208d8-db38-48c1-828d-41e18ba76a7b +2020-09-24 13:15:28.163728 2020-09-24 13:15:28.163734 rero A011493066 R rec 4dcbcad0-7115-47ed-b7e2-4f978385bbdc +2020-09-24 13:15:28.840028 2020-09-24 13:15:28.840034 rero A003966124 R rec f15d57c9-1717-4d3b-a658-3c3d05bda9a7 +2020-09-24 13:15:31.257887 2020-09-24 13:15:31.257893 rero A003531943 R rec c34db377-4fc0-4371-8d5a-fa5cca43acef +2020-09-24 13:15:31.969487 2020-09-24 13:15:31.969493 rero A024255039 R rec 92f3cfaf-c8d4-4c03-beaf-90bca0f19c37 +2020-09-24 13:15:33.8335 2020-09-24 13:15:33.833506 rero A003531595 R rec c0699bdb-e002-4f44-8e34-e27b16c158b3 +2020-09-24 13:15:34.799543 2020-09-24 13:15:34.799548 rero A018459512 R rec 49b833a5-71fa-415d-a8ca-f95a642d72bc +2020-09-24 13:15:35.571465 2020-09-24 13:15:35.571471 rero A003427813 R rec d45a8620-8740-4d15-ac5b-9a6b7992d9e1 +2020-09-24 13:15:38.173744 2020-09-24 13:15:38.173749 rero A024043552 R rec f932c7ed-7186-4c12-acd3-e6c9d37c2ed6 +2020-09-24 13:15:38.971995 2020-09-24 13:15:38.972001 rero A003048129 R rec 360c7db9-bf42-4e89-b185-6346ac7ca282 +2020-09-24 13:15:40.105898 2020-09-24 13:15:40.105903 rero A002971659 R rec 5daed626-7693-4ddd-b472-60da56addb73 +2020-09-24 13:15:43.471851 2020-09-24 13:15:43.471857 rero A019010974 R rec 5630dbdf-7b00-4785-ac5b-99f6e1d0e401 +2020-09-24 13:15:46.747215 2020-09-24 13:15:46.74722 rero A013784156 R rec 5b21a83f-b561-4e20-aae1-96c0a44ce41f +2020-09-24 13:15:47.438802 2020-09-24 13:15:47.438808 rero A009279090 R rec b787af5b-4cab-45d8-a3e6-b8721e93fd51 +2020-09-24 13:15:50.772483 2020-09-24 13:15:50.772489 rero A014026079 R rec acd91bd3-bbcc-494c-874f-0d9572b86617 +2020-09-24 13:15:55.111327 2020-09-24 13:15:55.111333 rero A008584612 R rec 7d4c8e93-3ddd-40df-8fe6-cc4a911b5452 +2020-09-24 13:15:55.854913 2020-09-24 13:15:55.854919 rero A003300349 R rec 1bd40e90-69c6-4a80-abfb-ec185901d6f9 +2020-09-24 13:15:58.613265 2020-09-24 13:15:58.613271 rero A018395567 R rec 2c8da138-43da-49ac-bf36-4013a0b8056c +2020-09-24 13:15:59.825324 2020-09-24 13:15:59.825329 rero A009426238 R rec 7eed5e0b-565a-4978-aef4-ddb804f03874 +2020-09-24 13:16:00.141688 2020-09-24 13:16:00.141694 rero A005821830 R rec e67a346f-6bd7-44d1-acaf-78c981922f85 +2020-09-24 13:16:02.887267 2020-09-24 13:16:02.887273 rero A018477130 R rec 46c59780-bbe1-49eb-a42e-174783da507d +2020-09-24 13:16:03.544866 2020-09-24 13:16:03.544872 rero A021918604 R rec e508b5b9-1dd6-4423-ac11-243ce5df13e4 +2020-09-24 13:16:04.725148 2020-09-24 13:16:04.725153 rero A003364295 R rec 26c9332a-ef63-4eca-99ce-7767963c7651 +2020-09-24 13:16:06.752343 2020-09-24 13:16:06.752349 rero A010938873 R rec f4c14ef1-49a3-46ef-823c-9a0cfe2a842e +2020-09-24 13:16:08.780481 2020-09-24 13:16:08.780487 rero A016816789 R rec c1cd4af9-a197-4af2-839d-752cfd82517a +2020-09-24 13:16:12.682947 2020-09-24 13:16:12.682953 rero A009687650 R rec 526846b8-501d-4e9e-a2f9-da89292a1f2b +2020-09-24 13:16:15.719715 2020-09-24 13:16:15.71972 rero A003265730 R rec db194632-7ec5-4972-94f8-bfa49a1882d8 +2020-09-24 13:16:17.266616 2020-09-24 13:16:17.266622 rero A011736857 R rec 4c34390c-1dd0-47f0-bf7c-a687eb76cfe6 +2020-09-24 13:16:23.200279 2020-09-24 13:16:23.200285 rero A002942098 R rec 21065db5-c744-4eb0-b896-865c5146c66d +2020-09-24 13:16:27.898717 2020-09-24 13:16:27.898723 rero A020351109 R rec 6d9e753e-7cef-44ce-a81c-cf7f25b969f1 +2020-09-24 13:16:32.555054 2020-09-24 13:16:32.55506 rero A003971618 R rec 54fee1d6-5524-4921-acd1-9663ad95f856 +2020-09-24 13:16:35.88299 2020-09-24 13:16:35.882996 rero A018087920 R rec 2ca48ec7-8f6e-41d5-bd97-f4962d0cf6ab +2020-09-24 13:16:38.160515 2020-09-24 13:16:38.160521 rero A021514179 R rec 84d4ab31-c028-45c2-b107-d053300b7c89 +2020-09-24 13:16:39.658182 2020-09-24 13:16:39.658188 rero A012591999 R rec 12a51110-f566-4e53-8d33-2acf6bcc6bc0 +2020-09-24 13:16:44.727869 2020-09-24 13:16:44.727875 rero A009519020 R rec a29e6b94-c617-436b-829a-161a022417a2 +2020-09-24 13:16:48.321264 2020-09-24 13:16:48.321269 rero A027698830 R rec 47e41371-2510-41b3-82fa-7efabb9530b6 +2020-09-24 13:16:48.969926 2020-09-24 13:16:48.969932 rero A016513981 R rec 8d270608-5e70-48c4-b1b9-3b8709970ec9 +2020-09-24 13:16:58.892592 2020-09-24 13:16:58.892597 rero A023114350 R rec ac295f2c-bd6e-4cc5-9cee-1cbbaf3dcee3 +2020-09-24 13:17:00.497079 2020-09-24 13:17:00.497084 rero A025983847 R rec 34597164-3afc-427e-8d25-be95503d87c7 +2020-09-24 13:17:02.571083 2020-09-24 13:17:02.571089 rero A017173033 R rec 5b9ceed4-38df-4dab-8969-580a1d903453 +2020-09-24 13:17:04.144487 2020-09-24 13:17:04.144493 rero A009590113 R rec f59074a1-e2a1-4805-bae2-5a4231b384f8 +2020-09-24 13:17:04.792437 2020-09-24 13:17:04.792443 rero A013753495 R rec 25f75896-7121-435b-891d-f3a7854a4171 +2020-09-24 13:17:06.316023 2020-09-24 13:17:06.316029 rero A023668772 R rec d0bd987c-d9de-482e-8c54-3d9b11f9316f +2020-09-24 13:17:06.952718 2020-09-24 13:17:06.952724 rero A016768352 R rec a4ac3f6c-9a78-4fc4-9f6b-050875ed00a5 +2020-09-24 13:17:08.032443 2020-09-24 13:17:08.032449 rero A018475973 R rec 22f18442-2a56-49f2-ae43-3feb213f0d88 +2020-09-24 13:17:13.316769 2020-09-24 13:17:13.316774 rero A003594199 R rec 9ff69fa5-cd0b-4b16-8ff5-fcacc31ed1e5 +2020-09-24 13:17:13.843082 2020-09-24 13:17:13.843088 rero A012346177 R rec 2a8b8f19-ad31-4699-a69b-9176822bfcb0 +2020-09-24 13:17:14.111147 2020-09-24 13:17:14.111152 rero A020122584 R rec 69f64f3d-70e2-4521-9c7f-5b6cabe75a7a +2020-09-24 13:17:14.356186 2020-09-24 13:17:14.356192 rero A025723446 R rec 2de08229-31ec-40fa-923b-809ed7c26606 +2020-09-24 13:17:15.518149 2020-09-24 13:17:15.518155 rero A003421797 R rec 16b41de5-06b7-4501-aa0f-3a52fd3d3170 +2020-09-24 13:17:15.868098 2020-09-24 13:17:15.868104 rero A003768835 R rec f1e05482-d4d4-40af-a928-49904ee68480 +2020-09-24 13:17:16.123333 2020-09-24 13:17:16.123339 rero A013094655 R rec dde0220b-48fc-4f28-8a65-a02f1d81fddd +2020-09-24 13:17:16.356711 2020-09-24 13:17:16.356716 rero A021975601 R rec f6e6b61e-a710-4505-b4e3-f63560546dc0 +2020-09-24 13:17:16.630577 2020-09-24 13:17:16.630583 rero A018331793 R rec 4ae76c8f-161e-449e-9466-44d7c6c6a829 +2020-09-24 13:17:16.896945 2020-09-24 13:17:16.89695 rero A009968806 R rec 919a1e1e-b965-4845-be07-558f34188722 +2020-09-24 13:17:20.460352 2020-09-24 13:17:20.460358 rero A003055215 R rec ca2ca79e-0ba7-4e60-912c-217d9d14bcf6 +2020-09-24 13:17:20.736517 2020-09-24 13:17:20.736522 rero A012086274 R rec 23523316-6183-4c05-a455-c7f1c52deb35 +2020-09-24 13:17:21.280655 2020-09-24 13:17:21.280661 rero A023116917 R rec c1bbd50a-67a6-4d1d-b94b-6f16bbff5332 +2020-09-24 13:17:21.514035 2020-09-24 13:17:21.514041 rero A018556919 R rec de6fbd2a-8093-48c8-ad26-4b57b5619ebc +2020-09-24 13:17:21.792984 2020-09-24 13:17:21.79299 rero A006389498 R rec 275e8518-acfc-4e5a-9261-6bd91d7fa4a0 +2020-09-24 13:17:22.139994 2020-09-24 13:17:22.14 rero A009306109 R rec 94f1cb3d-b416-4f0f-ac5c-32723f2422c6 +2020-09-24 13:17:24.10023 2020-09-24 13:17:24.100236 rero A025694319 R rec 1cfd80dc-e4ad-4aa2-bfb1-7806435cf1db +2020-09-24 13:17:24.792767 2020-09-24 13:17:24.792773 rero A020103298 R rec 618b3c3a-9a3a-4f98-9e2a-5a3aa5e14138 +2020-09-24 13:17:25.610611 2020-09-24 13:17:25.610617 rero A003345261 R rec dcb9b2ee-3865-4943-8725-962eb31e4934 +2020-09-24 13:17:26.287736 2020-09-24 13:17:26.287741 rero A008729062 R rec f86cec4b-1009-47c2-a63b-afd31a9d52d3 +2020-09-24 13:17:27.313944 2020-09-24 13:17:27.31395 rero A003501471 R rec f57b3274-58af-4428-93f0-e7bb3aa4ef35 +2020-09-24 13:17:30.910065 2020-09-24 13:17:30.910071 rero A005732208 R rec 1012b799-7757-4e43-a35c-e87b88feefaf +2020-09-24 13:17:31.686376 2020-09-24 13:17:31.686382 rero A027582518 R rec bc4bd075-cf2c-44b8-b70e-86e6fe7e612b +2020-09-24 13:17:32.96615 2020-09-24 13:17:32.966156 rero A020317114 R rec ef8b3f09-028c-4360-8d9e-be4b5702c4ef +2020-09-24 13:17:33.285441 2020-09-24 13:17:33.285446 rero A016484771 R rec da65d653-a3da-4fc8-9f99-a3364d6e7303 +2020-09-24 13:17:35.667745 2020-09-24 13:17:35.66775 rero A013505146 R rec f56b4d58-2bb6-4240-bcce-c5ba9bc50d19 +2020-09-24 13:17:37.385781 2020-09-24 13:17:37.385787 rero A011817228 R rec deb22bfd-3073-42d4-a548-7f90073910f3 +2020-09-24 13:17:42.361802 2020-09-24 13:17:42.361807 rero A017565309 R rec b38a2f08-e30c-4517-9ca8-bd8c6f2c6933 +2020-09-24 13:17:52.789836 2020-09-24 13:17:52.789842 rero A027664950 R rec 176f84ff-8c53-44d3-93f6-76b85ff82c94 +2020-09-24 13:17:55.740032 2020-09-24 13:17:55.740037 rero A022553969 R rec 20b399cf-3ff9-40a7-aa13-e9961eb82708 +2020-09-24 13:17:56.406282 2020-09-24 13:17:56.406287 rero A018613224 R rec f08e7e3b-3ea5-425c-9cbe-e1b8b2703aff +2020-09-24 13:17:59.55203 2020-09-24 13:17:59.552035 rero A003037886 R rec 5b440a6f-3ea7-4898-8bba-db060ad7d142 +2020-09-24 13:18:00.312169 2020-09-24 13:18:00.312175 rero A022533394 R rec 5626a4e9-f45e-46d3-980d-f9b38edda1d9 +2020-09-24 13:18:01.55968 2020-09-24 13:18:01.559686 rero A003363900 R rec 397b373a-bd54-4068-9d88-a3020539e56f +2020-09-24 13:18:02.663937 2020-09-24 13:18:02.663942 rero A017383534 R rec 6cd6bcd4-b07a-4711-85e8-ddcc9db8b5d8 +2020-09-24 13:18:08.25733 2020-09-24 13:18:08.257336 rero A002981924 R rec 3d909336-81ba-46a7-a7d5-121ab039e62e +2020-09-24 13:18:12.089625 2020-09-24 13:18:12.089631 rero A027449905 R rec 70609df6-6f41-4d68-bf96-2308f9042502 +2020-09-24 13:18:28.888695 2020-09-24 13:18:28.888701 rero A021609811 R rec f9114639-b08b-44a9-8bce-d4aaf8a330d7 +2020-09-24 13:18:30.028957 2020-09-24 13:18:30.028962 rero A003389663 R rec 51d489be-ddc0-49cb-8b8e-a48b3c5cb0ec +2020-09-24 13:18:31.43414 2020-09-24 13:18:31.434145 rero A017713949 R rec 99067d95-0bd4-4f03-9c34-fbc10a823ce1 +2020-09-24 13:18:32.500889 2020-09-24 13:18:32.500895 rero A013346407 R rec 32722536-9c5a-48c2-95a5-cbaaad0d3db8 +2020-09-24 13:18:32.785836 2020-09-24 13:18:32.785841 rero A027194665 R rec bf6fc125-3cd5-484b-b94b-3ec4b61d27e9 +2020-09-24 13:18:39.124002 2020-09-24 13:18:39.124008 rero A018345923 R rec 91f50357-db37-49ce-9601-844bef152f65 +2020-09-24 13:18:43.149869 2020-09-24 13:18:43.149875 rero A027191227 R rec a1cf4486-4b46-4be9-8731-c4ee93ac6235 +2020-09-24 13:18:44.387907 2020-09-24 13:18:44.387913 rero A003789261 R rec f4f4a066-1ef4-4638-be7b-5cb15636c0df +2020-09-24 13:18:45.665004 2020-09-24 13:18:45.66501 rero A018726776 R rec dae66e52-e2be-4183-a6ad-81d60449ba56 +2020-09-24 13:18:47.91018 2020-09-24 13:18:47.910186 rero A003853351 R rec ada4e52f-4e42-4ce8-a548-29185b969315 +2020-09-24 13:18:48.961063 2020-09-24 13:18:48.961069 rero A003552475 R rec 36ef0bdb-7e9c-4dc0-bca6-8e6cbfe1167b +2020-09-24 13:18:54.127342 2020-09-24 13:18:54.127348 rero A003101806 R rec befa4da3-b444-4a4d-a04f-6fa3e3eef812 +2020-09-24 13:18:56.765317 2020-09-24 13:18:56.765323 rero A003080186 R rec 048bc8c1-0205-4071-9054-43f615fed3ed +2020-09-24 13:18:59.283913 2020-09-24 13:18:59.283919 rero A011417162 R rec 125cd7b4-7b73-42f3-bc7d-167d77cb5259 +2020-09-24 13:18:59.920361 2020-09-24 13:18:59.920367 rero A025688432 R rec 01e8a88c-37fc-4711-a33d-3f50edeccaf3 +2020-09-24 13:19:01.388688 2020-09-24 13:19:01.388694 rero A017944030 R rec 2ffd9f50-2c84-4d97-9cf4-69e2acaddc56 +2020-09-24 13:19:02.69414 2020-09-24 13:19:02.694145 rero A024413945 R rec b5269772-1f3e-46e8-a188-ada99620e4f3 +2020-09-24 13:19:02.989438 2020-09-24 13:19:02.989444 rero A022990131 R rec 2af3fb6a-3de9-44fb-94d4-95bca4cc7531 +2020-09-24 13:19:04.141525 2020-09-24 13:19:04.141531 rero A002941440 R rec d924e67a-ffa1-41cc-9726-34c03318c454 +2020-09-24 13:19:04.430909 2020-09-24 13:19:04.430914 rero A002961093 R rec 53632437-439d-4ddd-946f-58e5efb6d6c5 +2020-09-24 13:19:06.326473 2020-09-24 13:19:06.326479 rero A025987021 R rec fb53d5f5-c0de-4fa6-bde5-25ea1091f627 +2020-09-24 13:19:07.862827 2020-09-24 13:19:07.862833 rero A003360509 R rec c1ed8a42-8459-4623-ac3f-e9bfb041e545 +2020-09-24 13:19:09.145483 2020-09-24 13:19:09.145489 rero A003947464 R rec 43927905-5e20-4aa2-beb1-59a59d52586b +2020-09-24 13:19:10.359285 2020-09-24 13:19:10.35929 rero A021650553 R rec 72c1e2d8-dd83-4d02-8ef7-f4aa111cc9ed +2020-09-24 13:19:12.810531 2020-09-24 13:19:12.810537 rero A011026926 R rec ebb9f18e-a270-4bf6-a8a9-fd6f14cff93b +2020-09-24 13:19:13.818707 2020-09-24 13:19:13.818712 rero A003370921 R rec 53204e02-d73f-4bbd-a68c-878d8aae3bd3 +2020-09-24 13:19:14.088557 2020-09-24 13:19:14.088564 rero A005995031 R rec e6d3bdac-9719-48a1-9e74-88b35ef7a055 +2020-09-24 13:19:14.334762 2020-09-24 13:19:14.334767 rero A012338211 R rec 09bf66e7-8635-41a8-93cc-9706fdf6d82e +2020-09-24 13:19:15.579262 2020-09-24 13:19:15.579267 rero A003454993 R rec 10035518-b1d4-45fb-9878-f8cbc264268d +2020-09-24 13:19:23.214725 2020-09-24 13:19:23.214731 rero A003019667 R rec 7717f64a-c813-4974-b8e1-d4bb8e43df13 +2020-09-24 13:19:23.459884 2020-09-24 13:19:23.45989 rero A003849275 R rec 9b57cd07-7690-477b-8a40-0e2b714bbdc1 +2020-09-24 13:19:24.24068 2020-09-24 13:19:24.240685 rero A013330726 R rec f08a05da-c158-4747-a4b7-18b9638c09f2 +2020-09-24 13:19:25.575023 2020-09-24 13:19:25.575029 rero A017187491 R rec eb2ac1aa-bb7b-445a-8287-4aff44dfac48 +2020-09-24 13:19:26.223231 2020-09-24 13:19:26.223237 rero A003514292 R rec b9e29aae-bbb2-4180-b1b3-0d826e0b6f4f +2020-09-24 13:19:27.283162 2020-09-24 13:19:27.283168 rero A023166695 R rec 777bb0ef-d320-4c9e-8f7e-649eb55a43e0 +2020-09-24 13:19:27.75061 2020-09-24 13:19:27.750616 rero A016619915 R rec 44333c6b-ffa0-4d87-8cfb-96d644deb2c4 +2020-09-24 13:19:28.652748 2020-09-24 13:19:28.652754 rero A022784340 R rec 463853d8-87ec-44d5-82f0-ad0460d0333a +2020-09-24 13:19:28.890925 2020-09-24 13:19:28.890931 rero A003625161 R rec c0f7137a-d9fd-4778-b40d-f9d23d2c32b7 +2020-09-24 13:19:29.498273 2020-09-24 13:19:29.498278 rero A019156002 R rec 6f7d113f-4c35-4a65-98b8-86407b875922 +2020-09-24 13:19:29.926968 2020-09-24 13:19:29.926973 rero A011105659 R rec 338ed0ad-4c76-4427-9829-4e63d039acb5 +2020-09-24 13:19:30.821113 2020-09-24 13:19:30.821118 rero A011007424 R rec 8fbb80d1-f8ca-4f75-b9b0-278e9e30ab74 +2020-09-24 13:19:31.059625 2020-09-24 13:19:31.059631 rero A022997177 R rec 3feeed9c-caee-4759-bf1b-6923c086f725 +2020-09-24 13:19:32.615446 2020-09-24 13:19:32.615451 rero A026668357 R rec ca268323-437c-42ea-bd50-1c65921005a6 +2020-09-24 13:19:32.965542 2020-09-24 13:19:32.965548 rero A018879902 R rec 3330d24b-808d-45c2-a621-1238fb631c57 +2020-09-24 13:19:37.561618 2020-09-24 13:19:37.561624 rero A003245434 R rec de3490fe-8530-4d30-8f8a-7fcb4a788d54 +2020-09-24 13:19:42.340521 2020-09-24 13:19:42.340526 rero A026155985 R rec c9910b02-e9dc-4ee8-a0f1-ba51710dc5bf +2020-09-24 13:19:42.672857 2020-09-24 13:19:42.672863 rero A018699407 R rec ea0df6cb-3f6a-47f3-a3a2-c977a8dc5b1e +2020-09-24 13:19:42.935546 2020-09-24 13:19:42.935552 rero A025633999 R rec 99ee1b3b-1974-4a7e-8bbd-adddb57162cd +2020-09-24 13:19:56.422645 2020-09-24 13:19:56.422652 rero A008730051 R rec 28fc4223-297d-476a-b1b1-88073a527e7e +2020-09-24 13:20:00.016172 2020-09-24 13:20:00.016178 rero A003293437 R rec 962a394b-ec83-42a3-bf6a-82619181b262 +2020-09-24 13:20:00.55182 2020-09-24 13:20:00.551826 rero A023408053 R rec 0c4176b3-348e-4433-9602-0ea5095d99a7 +2020-09-24 13:20:02.243762 2020-09-24 13:20:02.243768 rero A003516733 R rec 70eae3b2-c324-4bcb-87c6-b4d9365b4846 +2020-09-24 13:20:04.691315 2020-09-24 13:20:04.691321 rero A018610634 R rec 73cdc66e-7977-404b-a4de-e53388d2a7b1 +2020-09-24 13:20:06.356576 2020-09-24 13:20:06.356582 rero A020053143 R rec 5c991fdd-8e21-497d-9644-7c8d17425f6d +2020-09-24 13:20:09.581378 2020-09-24 13:20:09.581384 rero A017784112 R rec bbbccb02-8016-4feb-b719-3fb0000f04da +2020-09-24 13:20:11.09188 2020-09-24 13:20:11.091886 rero A020228645 R rec b5581c19-d5b1-4971-8f38-cd222fa57d15 +2020-09-24 13:20:12.387632 2020-09-24 13:20:12.387638 rero A026863247 R rec 0d54727d-adf4-49a9-aec4-539253869df9 +2020-09-24 13:20:12.659433 2020-09-24 13:20:12.659439 rero A023227823 R rec 98094902-4684-4c97-82fd-4605305cf769 +2020-09-24 13:20:13.77991 2020-09-24 13:20:13.779916 rero A016678629 R rec 44bf3ca7-4c0b-455b-b261-57ccf604603d +2020-09-24 13:20:15.376415 2020-09-24 13:20:15.376421 rero A003203987 R rec ef0f9068-a473-4841-99b2-1abf345acaed +2020-09-24 13:20:16.499461 2020-09-24 13:20:16.499467 rero A003491484 R rec a6b575d5-db4d-4f1b-8610-457a79bc682f +2020-09-24 13:20:18.328192 2020-09-24 13:20:18.328198 rero A003188796 R rec 553ca80d-b35a-4362-871e-d9bfd5ab87ee +2020-09-24 13:20:18.912833 2020-09-24 13:20:18.912839 rero A003975282 R rec 3080f3c8-3380-460c-bea7-66ef8c55732b +2020-09-24 13:20:20.1705 2020-09-24 13:20:20.170505 rero A016871460 R rec 19e4d7c0-7652-4f60-9c10-debf386a1532 +2020-09-24 13:20:21.24855 2020-09-24 13:20:21.248555 rero A003494285 R rec b1345d7d-2acf-4f0f-a1c3-cbc971d64953 +2020-09-24 13:20:24.559916 2020-09-24 13:20:24.559922 rero A003883717 R rec acc94f8a-ec41-446c-939f-cebf657b8243 +2020-09-24 13:20:28.946185 2020-09-24 13:20:28.946191 rero A006035318 R rec 8eacedb5-eb5b-45c1-a8fe-d0696b9cb5fc +2020-09-24 13:20:34.924649 2020-09-24 13:20:34.924654 rero A003084316 R rec 75f31017-537f-494b-80fb-10058141b1d2 +2020-09-24 13:20:38.19916 2020-09-24 13:20:38.199166 rero A003719235 R rec 0963a1f4-1695-46d5-be3d-744048a8d39f +2020-09-24 13:20:46.863487 2020-09-24 13:20:46.863493 rero A014065225 R rec 7abdcc58-abd7-41ee-995e-266e3c57985d +2020-09-24 13:20:49.214751 2020-09-24 13:20:49.214757 rero A024099458 R rec 8c9ca65a-98cb-4374-bf9a-5bfe5004ab8f +2020-09-24 13:20:49.476704 2020-09-24 13:20:49.47671 rero A023189262 R rec 652720eb-68e9-46e9-b459-44fef8c317b6 +2020-09-24 13:20:50.945687 2020-09-24 13:20:50.945694 rero A018750238 R rec e47450f1-3b5f-4954-8ca9-97ac0635ec55 +2020-09-24 13:20:52.561491 2020-09-24 13:20:52.561497 rero A025367912 R rec 98648001-ec7d-4660-85ec-7aad4454744e +2020-09-24 13:20:54.596913 2020-09-24 13:20:54.596918 rero A003641265 R rec 55c7130d-e32e-4e5a-a405-3658c0f76d09 +2020-09-24 13:20:56.551462 2020-09-24 13:20:56.551468 rero A003733566 R rec 86407cc6-21b1-408a-9acc-9ff0e8624eff +2020-09-24 13:20:57.659405 2020-09-24 13:20:57.659411 rero A003180246 R rec eec8da20-b1c1-4039-ac56-32a286464426 +2020-09-24 13:20:58.806681 2020-09-24 13:20:58.806687 rero A000016955 R rec fb871989-acf4-44c1-84df-937e4fd77fba +2020-09-24 13:21:01.459719 2020-09-24 13:21:01.459725 rero A017696857 R rec 7f9d4cc2-9bb7-42f3-ba68-4a1a20556a58 +2020-09-24 13:21:06.690458 2020-09-24 13:21:06.690463 rero A013993183 R rec fe4cb06c-3c95-489b-b0b0-32357ee62e8b +2020-09-24 13:21:15.804037 2020-09-24 13:21:15.804043 rero A020436263 R rec 377b262b-3400-4202-8e16-92fff9dcd449 +2020-09-24 13:21:25.120269 2020-09-24 13:21:25.120274 rero A017468446 R rec f557e667-2565-4504-b7ff-a2dece364a87 +2020-09-24 13:21:25.880828 2020-09-24 13:21:25.880834 rero A018456288 R rec 2a0563a6-038f-4379-998c-1acb91ddc809 +2020-09-24 13:21:29.871705 2020-09-24 13:21:29.871711 rero A025504164 R rec 610c80f7-58c6-4b24-9c4f-c74d4de2cd2b +2020-09-24 13:21:35.05243 2020-09-24 13:21:35.052436 rero A020500799 R rec aa3671ef-5cf4-4526-9407-aff1bb309849 +2020-09-24 13:21:35.438752 2020-09-24 13:21:35.438757 rero A022774320 R rec 80e07b7e-22f9-47ad-bdd5-f8d5208ccdf9 +2020-09-24 13:21:36.560651 2020-09-24 13:21:36.560657 rero A024416324 R rec 76503850-da72-40eb-be25-58516403caa1 +2020-09-24 13:21:37.944201 2020-09-24 13:21:37.944207 rero A002939817 R rec ab7b87f3-9afc-4377-be22-aad9a8bf7afd +2020-09-24 13:21:38.652314 2020-09-24 13:21:38.65232 rero A012313815 R rec 802615ba-7023-4794-b087-7ca1a2a81df2 +2020-09-24 13:21:39.826579 2020-09-24 13:21:39.826585 rero A027062343 R rec 6b25cf14-04f0-410a-a5fc-1116f1107318 +2020-09-24 13:21:46.06709 2020-09-24 13:21:46.067096 rero A003780412 R rec 279b48e4-5cd5-46e7-8e28-a7ddc00dfaec +2020-09-24 13:21:47.16603 2020-09-24 13:21:47.166036 rero A003146897 R rec 96542dcd-8082-435b-b79f-fa791a76cb8d +2020-09-24 13:21:47.433289 2020-09-24 13:21:47.433295 rero A017158101 R rec b2325c6b-cd72-41b6-9c26-5056413a6ab0 +2020-09-24 13:21:47.691079 2020-09-24 13:21:47.691085 rero A020232527 R rec 4fe3a90d-639e-49f7-8b1f-0499a258f2bc +2020-09-24 13:21:48.780925 2020-09-24 13:21:48.78093 rero A003645251 R rec 3ab84eb2-b277-425c-86b4-d4b6f6790f7d +2020-09-24 13:21:50.478954 2020-09-24 13:21:50.478959 rero A003206780 R rec c7fae49e-d488-4442-a355-aec38c2d73e5 +2020-09-24 13:21:51.67545 2020-09-24 13:21:51.675456 rero A003441673 R rec 5c38a981-3018-409f-9c6a-56a37dbd537b +2020-09-24 13:21:52.812632 2020-09-24 13:21:52.812638 rero A003398237 R rec bb9dd925-978a-418b-a112-61c26701b76c +2020-09-24 13:21:53.936967 2020-09-24 13:21:53.936973 rero A003685283 R rec 99cdf33e-2292-42fc-b64d-40a0ebec4ce3 +2020-09-24 13:21:56.515032 2020-09-24 13:21:56.515037 rero A023425677 R rec c25b0845-83da-4313-a412-b3169149abab +2020-09-24 13:21:57.42791 2020-09-24 13:21:57.427917 rero A003399601 R rec a2af8d31-3bd9-45cf-852a-49e085a820d4 +2020-09-24 13:21:58.197655 2020-09-24 13:21:58.197661 rero A003491429 R rec 9bd94ac6-56d6-4bce-a25d-24973297e43b +2020-09-24 13:21:58.937639 2020-09-24 13:21:58.937644 rero A014025587 R rec 15c3478c-a718-447c-b731-f311e76d60c6 +2020-09-24 13:22:01.658433 2020-09-24 13:22:01.658438 rero A017513975 R rec 90916a00-da07-4004-aa9f-9c8c9323a8af +2020-09-24 13:22:01.899833 2020-09-24 13:22:01.899838 rero A023182560 R rec 50981f56-a7bf-4ada-9eb6-3e73f2583353 +2020-09-24 13:22:02.561448 2020-09-24 13:22:02.561454 rero A003863577 R rec e464ab0b-a8ba-4364-8566-0ef5d3c32462 diff --git a/tests/data/aidref.json b/tests/data/aidref.json new file mode 100644 index 00000000..4b0ba752 --- /dev/null +++ b/tests/data/aidref.json @@ -0,0 +1,3991 @@ +[ + { + "md5": "c8aa2340462fa96242f743490e037b1c", + "pid": "026994801", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/026994801", + "numeration": "", + "variant_name": [ + "Jacob, Bernard Lortat-" + ], + "date_of_birth": "1941-01-01", + "preferred_name": "Lortat-Jacob, Bernard", + "authorized_access_point": "Lortat-Jacob, Bernard, 1941-....", + "biographical_information": [ + "Ethnomusicologue. Directeur de recherche au CNRS et responsable du Laboratoire d'ethnomusicologie CBRS du Mus\u00e9e de l'homme, Paris (en 2001)" + ] + }, + { + "md5": "d2352b4189e1b4cddc8980ceb1be9437", + "pid": "026995050", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/026995050", + "numeration": "", + "date_of_birth": "1902", + "date_of_death": "1986", + "preferred_name": "Lot, Fernand", + "authorized_access_point": "Lot, Fernand, 1902-1986", + "biographical_information": [ + "Po\u00e8te, essayiste, \u00e9crivain scientifique, botaniste" + ] + }, + { + "md5": "64edd2e0f9e5535c86b78d15fd6167cd", + "pid": "027019837", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/027019837", + "numeration": "", + "variant_name": [ + "Mayer, Arno J." + ], + "date_of_birth": "1926", + "preferred_name": "Mayer, Arno", + "authorized_access_point": "Mayer, Arno, 1926-....", + "biographical_information": [ + "Professeur d'histoire europ\u00e9enne \u00e0 Princeton university, New Jersey (en 1990)" + ] + }, + { + "md5": "e4fefdd2bd091c511276521d46ad8478", + "pid": "028442717", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/028442717", + "numeration": "", + "date_of_birth": "1931", + "preferred_name": "Echard, William E", + "authorized_access_point": "Echard, William E, 1931-....", + "biographical_information": [ + "Professeur d'histoire, Glendon college of York university, Toronto" + ] + }, + { + "md5": "fba0421df0a30ddd59ae3d5a497a24db", + "pid": "028495764", + "language": [ + "ger" + ], + "qualifier": "m\u00e9di\u00e9viste", + "identifier": "http://www.idref.fr/028495764", + "numeration": "", + "date_of_birth": "1920-05-15", + "preferred_name": "Kr\u00fcger, Sabine, m\u00e9di\u00e9viste", + "authorized_access_point": "Kr\u00fcger, Sabine, 1920-...., m\u00e9di\u00e9viste", + "biographical_information": [ + "M\u00e9di\u00e9viste" + ] + }, + { + "md5": "53f7a25d2e149d03b47df956360604ef", + "pid": "028542770", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/028542770", + "numeration": "", + "date_of_birth": "1925", + "date_of_death": "2015", + "preferred_name": "Higham, Robin", + "authorized_access_point": "Higham, Robin, 1925-2015" + }, + { + "md5": "fd6b76e0f8006ff77833db9b2143898a", + "pid": "028766857", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/028766857", + "numeration": "", + "date_of_birth": "1935", + "preferred_name": "Helbich, Wolfgang Johannes", + "authorized_access_point": "Helbich, Wolfgang Johannes, 1935-....", + "biographical_information": [ + "Professeur d'histoire moderne \u00e0 l'Universit\u00e9 de Bochum (en 1988)" + ] + }, + { + "md5": "9f29b2f84b5d664553cc71dd5a97322e", + "pid": "029598982", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/029598982", + "numeration": "", + "date_of_birth": "1943", + "preferred_name": "Pestieau, Pierre", + "authorized_access_point": "Pestieau, Pierre, 1943-....", + "biographical_information": [ + "Ecrit aussi en anglais", + "Docteur en sciences \u00e9conomiques. Professeur \u00e0 l'Universit\u00e9 de Li\u00e8ge (en 1989). Professeur \u00e9m\u00e9rite et membre du CORE (en 2017)" + ] + }, + { + "md5": "ba656457f771a3ffd8967eca87141b15", + "pid": "030254515", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/030254515", + "numeration": "", + "variant_name": [ + "Richelet, C\u00e9sar-Pierre", + "Richelet, C\u00e9sar Pierre" + ], + "date_of_birth": "1626-11", + "date_of_death": "1698-11-23", + "preferred_name": "Richelet, Pierre", + "authorized_access_point": "Richelet, Pierre, 1626-1698", + "biographical_information": [ + "Lexicographe fran\u00e7ais" + ] + }, + { + "md5": "c7cf09ac1008f68340abbaaea1a06118", + "pid": "030322995", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/030322995", + "numeration": "", + "variant_name": [ + "Caoursin, William", + "Caorsinus, Guilelmus", + "Caoursin, Guillelmus", + "Cahoursin, Guillaume", + "Caorsin, Gulielmo", + "Caorsin, Guillermus", + "Guillaume Caoursin" + ], + "date_of_birth": "1430?", + "date_of_death": "1455-08-24", + "preferred_name": "Caoursin, Guillaume", + "authorized_access_point": "Caoursin, Guillaume, 1430?-1501", + "biographical_information": [ + "Vice-chancelier de l'Ordre de Saint-Jean de J\u00e9rusalem \u00e0 partir de 1456 - Homme de cabinet et diplomate, il mena plusieurs ambassades en Italie en particulier \u00e0 Rome, puis \u00e0 Naples (1485)", + "Lieu de naissance Douai (Nord). Lieu de d\u00e9c\u00e8s Rhodes" + ] + }, + { + "md5": "73e481b3080a198086add2aaa18a388e", + "pid": "031153909", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/031153909", + "numeration": "", + "preferred_name": "Dietrich, Dagmar", + "authorized_access_point": "Dietrich, Dagmar" + }, + { + "md5": "990527f3d9b98ff3384b5327f4248404", + "pid": "031854575", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/031854575", + "numeration": "", + "date_of_birth": "1952", + "preferred_name": "Hulme, David", + "authorized_access_point": "Hulme, David, 1952-....", + "biographical_information": [ + "Sp\u00e9cialiste de la sociologie du d\u00e9veloppement \u00e9conomique" + ] + }, + { + "md5": "67487e1d2202ae433ed94ad61d9f1636", + "pid": "032207107", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/032207107", + "numeration": "", + "variant_name": [ + "Savigny" + ], + "date_of_birth": "1820-01-19", + "date_of_death": "1892-10-23", + "preferred_name": "Lavoix, Henri", + "authorized_access_point": "Lavoix, Henri, 1820-1892", + "biographical_information": [ + "Bibliographe. Conservateur au D\u00e9partement des m\u00e9dailles et antiques de la Biblioth\u00e8que Nationale, Paris. Critique dramatique et musical \u00e0 l'\"Illustration\" sous le pseudonyme de Savigny" + ] + }, + { + "md5": "078a37ed71557350583b0cec1539bab3", + "pid": "032613237", + "language": [ + "ger" + ], + "qualifier": "entomologiste", + "identifier": "http://www.idref.fr/032613237", + "numeration": "", + "date_of_birth": "1929-07-06", + "preferred_name": "Fischer, Max, entomologiste", + "authorized_access_point": "Fischer, Max, 1929-, entomologiste", + "biographical_information": [ + "\u00c9crit aussi en anglais", + "Entomologiste" + ] + }, + { + "md5": "f74045fd033e07fade8ccdb2c913020e", + "pid": "032638116", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/032638116", + "numeration": "", + "preferred_name": "Kaplan, Frederick S.", + "authorized_access_point": "Kaplan, Frederick S.", + "biographical_information": [ + "Chirurgien, sp\u00e9cialis\u00e9 en chirurgie orthop\u00e9dique" + ] + }, + { + "md5": "4b757c3b5777d4c7f4d33c4465fb2260", + "pid": "032649789", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/032649789", + "numeration": "", + "variant_name": [ + "Lee, Danielle Juteau", + "Juteau Lee, Danielle" + ], + "date_of_birth": "1942-10-13", + "preferred_name": "Juteau, Danielle", + "authorized_access_point": "Juteau, Danielle, 1942-....", + "biographical_information": [ + "Sociologue. Professeur \u00e0 l'Universit\u00e9 d'Ottawa (en 1979)" + ] + }, + { + "md5": "ab8dce7f8d67bf36a8673e953ef199d8", + "pid": "032801009", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/032801009", + "numeration": "", + "date_of_birth": "1908-11-04", + "preferred_name": "Salisbury, Harrison Evans", + "authorized_access_point": "Salisbury, Harrison Evans, 1908-1993", + "biographical_information": [ + "Historien" + ] + }, + { + "md5": "11a00e3bf6e000f941fec835adf0e45d", + "pid": "033151571", + "language": [ + "dut" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/033151571", + "numeration": "", + "preferred_name": "Kingma, J.", + "authorized_access_point": "Kingma, J." + }, + { + "md5": "21c5b7e5d860dd9f3e8d5989936b8871", + "pid": "033864357", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/033864357", + "numeration": "", + "date_of_birth": "1954", + "preferred_name": "S\u00e9\u00e9bold, \u00c9ric", + "authorized_access_point": "S\u00e9\u00e9bold, \u00c9ric, 1954-", + "biographical_information": [ + "Sp\u00e9cialiste de litt\u00e9rature fran\u00e7aise" + ] + }, + { + "md5": "2e5633fc1d00287abe8ec3039ddb9bd8", + "pid": "034085289", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/034085289", + "numeration": "", + "preferred_name": "Servant, M.", + "authorized_access_point": "Servant, M." + }, + { + "md5": "0a42d01e72c92e9dbd2f7ba28b5ba937", + "pid": "034388397", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/034388397", + "numeration": "", + "variant_name": [ + "Maister, David H" + ], + "preferred_name": "Maister, David", + "authorized_access_point": "Maister, David", + "biographical_information": [ + "Ancien professeur \u00e0 la Harvard Business School. Sp\u00e9cialis\u00e9 dans le conseil en gestion (en 1996)" + ] + }, + { + "md5": "2fe2c073d810766f1f749b5350c94c61", + "pid": "034931929", + "language": [ + "swe" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/034931929", + "numeration": "", + "date_of_birth": "1959", + "preferred_name": "Hansen, Peter", + "authorized_access_point": "Hansen, Peter, 1959-....", + "biographical_information": [ + "Historien de la litt\u00e9rature" + ] + }, + { + "md5": "f15f89265d7c4433fa8069d441a56d6a", + "pid": "050212265", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/050212265", + "numeration": "", + "preferred_name": "Kaplan, Robert B.", + "authorized_access_point": "Kaplan, Robert B." + }, + { + "md5": "0bf3f3ae13d5346fdfeabbe56d95b723", + "pid": "050225146", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/050225146", + "numeration": "", + "variant_name": [ + "Henschel, G. A. L" + ], + "date_of_birth": "1806", + "date_of_death": "1852", + "preferred_name": "Henschel, G. A. Louis", + "authorized_access_point": "Henschel, G. A. Louis, 1806-1852", + "biographical_information": [ + "A aussi \u00e9crit en allemand et en latin", + "Philologue et lexicographe. N\u00e9 \u00e0 Minden (Allemagne), meurt \u00e0 Paris" + ] + }, + { + "md5": "9e9fd4db7a81c8e9c5f893455fb80d1e", + "pid": "053434080", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/053434080", + "numeration": "", + "variant_name": [ + "Subbaratnam Muthukrishnan" + ], + "preferred_name": "Muthukrishnan, Subbaratnam", + "authorized_access_point": "Muthukrishnan, Subbaratnam", + "biographical_information": [ + "Biologiste. En poste : Department of biochemistry, Kansas state university, Manhattan (en 1999)" + ] + }, + { + "md5": "cb14420f5a9edbc24d31b7b3113ea9fb", + "pid": "056820151", + "language": [ + "und" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/056820151", + "numeration": "", + "preferred_name": "Frisch, Christine", + "authorized_access_point": "Frisch, Christine" + }, + { + "md5": "cf4ef4bc6a79d7d9e4f76824be961f7c", + "pid": "058598928", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/058598928", + "numeration": "", + "date_of_birth": "1944", + "preferred_name": "Nieto-Sampedro, Manuel", + "authorized_access_point": "Nieto-Sampedro, Manuel, 1944-....", + "biographical_information": [ + "En poste \u00e0 \"Instituto Cajal (CSIC), Madrid, Spain, en 2001" + ] + }, + { + "md5": "0f3d883c57c4d9254b9039ff70d86473", + "pid": "059213523", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/059213523", + "numeration": "", + "preferred_name": "Anzemberger, Guy P.", + "authorized_access_point": "Anzemberger, Guy P.", + "biographical_information": [ + "Consultant d\u00e9veloppement et recrutement" + ] + }, + { + "md5": "d4065a007440fb1c16acd3ba95406869", + "pid": "059412720", + "language": [ + "por" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/059412720", + "numeration": "", + "variant_name": [ + "Echevarr\u00eda Ferrreira, Fernando", + "Ferrreira, Fernando Echevarr\u00eda" + ], + "date_of_birth": "1929", + "preferred_name": "Echevarr\u00eda, Fernando", + "authorized_access_point": "Echevarr\u00eda, Fernando, 1929-....", + "biographical_information": [ + "Po\u00e8te portugais du 20e si\u00e8cle" + ] + }, + { + "md5": "cd119125977dc10da424bee9781e405a", + "pid": "060167181", + "language": [ + "ger" + ], + "qualifier": "Dr.", + "identifier": "http://www.idref.fr/060167181", + "numeration": "", + "date_of_birth": "1970", + "preferred_name": "Leitner, Marina, Dr.", + "authorized_access_point": "Leitner, Marina, 1970-...., Dr.", + "biographical_information": [ + "Psychologue, en 2001 travaille \u00e0 un programme de recherche sur l'histoire de l'\u00e9volution des technique et th\u00e9rapie psychanalytiques. Nombreuses publications sur l'histoire de la psychanalyse." + ] + }, + { + "md5": "5d0ec5c621c258f66c79a63bb0419feb", + "pid": "060721995", + "language": [ + "fre", + "ita" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/060721995", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "Mansouri, Nadia", + "authorized_access_point": "Mansouri, Nadia, 19..-....", + "biographical_information": [ + "Trad. d'italien en fran\u00e7ais" + ] + }, + { + "md5": "23abb593f515f2855a2265a3e9390cdf", + "pid": "069064830", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/069064830", + "numeration": "", + "date_of_birth": "1857-10-25", + "date_of_death": "1938-02-10", + "preferred_name": "Buland, \u00c9mile", + "authorized_access_point": "Buland, \u00c9mile, 1857-1938", + "biographical_information": [ + "Pr\u00e9noms complets : Jean Emile", + "Graveur. Elu, le 19 d\u00e9cembre 1925, membre titulaire de l'Acad\u00e9mie des Beaux-Arts" + ] + }, + { + "md5": "09caf265a86ab53c1dd4f8d4e4a31338", + "pid": "069782768", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/069782768", + "numeration": "", + "date_of_birth": "1860", + "date_of_death": "1946", + "preferred_name": "Loesch, Ernst", + "authorized_access_point": "Loesch, Ernst, 1860-1946" + }, + { + "md5": "a21d59a4bb241ba238266b59c626a217", + "pid": "070328005", + "language": [ + "ara" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/070328005", + "numeration": "", + "variant_name": [ + "Hil\u0101l N\u0101\u01e7\u012b", + "N\u0101j\u012b, Hil\u0101l", + "Naji, Hilel" + ], + "date_of_birth": "1929", + "preferred_name": "\u0646\u0627\u062c\u064a, \u0647\u0644\u0627\u0644", + "authorized_access_point": "\u0646\u0627\u062c\u064a, \u0647\u0644\u0627\u0644", + "biographical_information": [ + "Professeur de langue arabe et historien." + ] + }, + { + "md5": "d2a8227df18df8ec897abece71cc9e7f", + "pid": "07101120X", + "qualifier": "", + "identifier": "http://www.idref.fr/07101120X", + "numeration": "", + "preferred_name": "Barrett-Ayres, Reginald", + "authorized_access_point": "Barrett-Ayres, Reginald", + "biographical_information": [ + "Musicologue. Sp\u00e9cialiste de Mozart et de Haydn" + ] + }, + { + "md5": "475ebb32531311a5745f9e49cab70ef9", + "pid": "071285571", + "language": [ + "fre" + ], + "qualifier": "m\u00e9decin", + "identifier": "http://www.idref.fr/071285571", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "Louis, Edouard, m\u00e9decin", + "authorized_access_point": "Louis, Edouard, 19..-...., m\u00e9decin", + "biographical_information": [ + "Docteur en m\u00e9decine" + ] + }, + { + "md5": "91ade20bdca57551a8c4d1556f23f36f", + "pid": "071344241", + "language": [ + "jpn" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/071344241", + "numeration": "", + "date_of_birth": "1952", + "preferred_name": "Ihori, Toshihiro", + "authorized_access_point": "Ihori, Toshihiro, 1952-....", + "biographical_information": [ + "\u00c9crit aussi en anglais", + "\u00c9conomiste. Professeur d'\u00e9conomie \u00e0 l'Universit\u00e9 de la Ville de Tokyo, Japon (en 1993)" + ] + }, + { + "md5": "2fe99527ffbc3ad1c3c4a2ed2af5cc02", + "pid": "071531149", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/071531149", + "numeration": "", + "variant_name": [ + "Arnold, G. C." + ], + "date_of_birth": "1944", + "preferred_name": "Arnold, Gregory C.", + "authorized_access_point": "Arnold, Gregory C., 1944-...." + }, + { + "md5": "932053e9709457d89987fe414e0846b6", + "pid": "071535616", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/071535616", + "numeration": "", + "preferred_name": "Lamberton, Charles", + "authorized_access_point": "Lamberton, Charles", + "biographical_information": [ + "Professeur au Lyc\u00e9e Gallieni, secr\u00e9taire perp\u00e9tuel de l'Acad\u00e9mie Malgache" + ] + }, + { + "md5": "ffe650112ed6611538f0de34c34e92be", + "pid": "07505924X", + "language": [ + "spa" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/07505924X", + "numeration": "", + "date_of_birth": "1944-06-24", + "preferred_name": "Goetz, Arturo", + "authorized_access_point": "Goetz, Arturo, 1944-....", + "biographical_information": [ + "Acteur argentin" + ] + }, + { + "md5": "866e230d077768987a6f8578927b60a3", + "pid": "075866307", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/075866307", + "numeration": "", + "preferred_name": "Henriot, Jean-Claude", + "authorized_access_point": "Henriot, Jean-Claude", + "biographical_information": [ + "Traduit de l'anglais en fran\u00e7ais" + ] + }, + { + "md5": "bd93577c2768b52a07878912311190a4", + "pid": "075899655", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/075899655", + "numeration": "", + "variant_name": [ + "Tavares da Costa, Carla", + "Da Costa, Carla Tavares" + ], + "preferred_name": "Costa, Carla Tavares da", + "authorized_access_point": "Costa, Carla Tavares da" + }, + { + "md5": "62b346f0e18a98620498b94c335f0a0a", + "pid": "075964686", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/075964686", + "numeration": "", + "preferred_name": "Genest, Daniel", + "authorized_access_point": "Genest, Daniel", + "biographical_information": [ + "Docteur en sciences physiques \u00e0 l'Universit\u00e9 d'Orl\u00e9ans (en 1976)" + ] + }, + { + "md5": "6dacc8260a5392f73a864ce07716d43d", + "pid": "077437209", + "language": [ + "eng" + ], + "qualifier": "romancier", + "identifier": "http://www.idref.fr/077437209", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "Thompson, Paul B., romancier", + "authorized_access_point": "Thompson, Paul B., 19..-...., romancier", + "biographical_information": [ + "Romancier" + ] + }, + { + "md5": "d3080df742f2c38bd124acd12a77e0e2", + "pid": "077813138", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/077813138", + "numeration": "", + "preferred_name": "Schneikert, Elisabeth", + "authorized_access_point": "Schneikert, Elisabeth", + "biographical_information": [ + "Titulaire d'un doctorat en Litt\u00e9rature fran\u00e7aise, Strasbourg 2, 2004" + ] + }, + { + "md5": "f54004a1e7ce7e2134b22d619e715398", + "pid": "079112943", + "language": [ + "eng" + ], + "qualifier": "psychologue", + "identifier": "http://www.idref.fr/079112943", + "numeration": "", + "date_of_birth": "1919", + "preferred_name": "Lambert, William Wilson, psychologue", + "authorized_access_point": "Lambert, William Wilson, 1919-...., psychologue", + "biographical_information": [ + "Psychologue" + ] + }, + { + "md5": "80eb95333b46f7892d86dc1261855494", + "pid": "079303315", + "qualifier": "", + "identifier": "http://www.idref.fr/079303315", + "numeration": "", + "variant_name": [ + "Bernardino de Arevalo", + "Bernardino de Arevallo", + "Arevalo, Bernardin d'" + ], + "date_of_birth": "1492", + "date_of_death": "1553", + "preferred_name": "Bernardinus de Arevalo", + "authorized_access_point": "Bernardinus de Arevalo, 1492-1553", + "biographical_information": [ + "Religieux espagnol. Pr\u00e9dicateur renomm\u00e9. Plusieurs fois ministre provincial de la Province de la Conception. S\u00e9journa au Mexique comme missionnaire, et premier Commissaire g\u00e9n\u00e9ral des \"Indes Occidentales\"." + ] + }, + { + "md5": "ff42ac3b389fc1a254280887b6b123f5", + "pid": "080152503", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/080152503", + "numeration": "", + "preferred_name": "Fages, Jacques", + "authorized_access_point": "Fages, Jacques", + "biographical_information": [ + "Ing\u00e9nieur INSA-Toulouse, DEA en Sciences alimentaires. Professeur \u00e0 l'\u00e9cole des Mines d'Albi-Carmaux (depuis 1996), directeur de th\u00e8se de doctorat en G\u00e9nie des proc\u00e9d\u00e9s \u00e0 l'Ecole nationale sup\u00e9rieure des Mines de Paris (2003). Sp\u00e9cialiste en g\u00e9nie des proc\u00e9d\u00e9s, biochimie, biotechnologies.", + "Membre du jury lors de la soutenance de la th\u00e8se en Chimie et Physicochimie des mat\u00e9riaux par Mathieu Chirat(ENSCM, Montpellier, 2012)." + ] + }, + { + "md5": "eb6487fa7572d73ab6ccdc82667c9e00", + "pid": "080608825", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/080608825", + "numeration": "", + "preferred_name": "Joseph, Branden Wayne", + "authorized_access_point": "Joseph, Branden Wayne", + "biographical_information": [ + "Professeur d'histoire de l'art, Universit\u00e9 de Califorie (en 2003)" + ] + }, + { + "md5": "0435c6aeb8553fb98b3bed3867d918ac", + "pid": "081311249", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/081311249", + "numeration": "", + "preferred_name": "Owen, John Wyn", + "authorized_access_point": "Owen, John Wyn", + "biographical_information": [ + "Secr\u00e9taire au Nuffield Trust, Londres" + ] + }, + { + "md5": "4d886202f7e3bc53d2fc00af0e7d26a2", + "pid": "082091943", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/082091943", + "numeration": "", + "date_of_birth": "1938", + "preferred_name": "Normann, Reinhard von", + "authorized_access_point": "Normann, Reinhard von, 1938-...." + }, + { + "md5": "447cfbe302dea44e693a2ddbd52ae3ab", + "pid": "082560757", + "qualifier": "", + "identifier": "http://www.idref.fr/082560757", + "numeration": "", + "preferred_name": "Florent, Romain", + "authorized_access_point": "Florent, Romain" + }, + { + "md5": "ad98e3c31c5986cef1c9a09720ed40d2", + "pid": "084028750", + "qualifier": "", + "identifier": "http://www.idref.fr/084028750", + "numeration": "", + "preferred_name": "Bulut, Tarik", + "authorized_access_point": "Bulut, Tarik" + }, + { + "md5": "837867b1e9769db12fe960356c123d44", + "pid": "085647640", + "qualifier": "", + "identifier": "http://www.idref.fr/085647640", + "numeration": "", + "date_of_birth": "1839-11-07", + "date_of_death": "1900-05-13", + "preferred_name": "Levi, Hermann", + "authorized_access_point": "Levi, Hermann, 1839-1900", + "biographical_information": [ + "Chef d'orchestre et compositeur allemand. 1859 directeur g\u00e9n\u00e9ral de la musique \u00e0 Sarrebruck, 1861 chef assistant \u00e0 l'Op\u00e9ra National de Mannheim, 1861-64 chef \u00e0 l'Op\u00e9ra de Rotterdam, 1864-72 chef \u00e0 la Cour de Karlsruhe,1872-90 chef \u00e0 la Cour de Munich, 1894 directeur g\u00e9n\u00e9ral de la musique \u00e0 Munich. Il cesse de diriger en 1896", + "Lieu de naissance Giessen. Lieu de d\u00e9c\u00e8s Munich" + ] + }, + { + "md5": "fe3a349b134c7903c031610e7f1b814f", + "pid": "08589320X", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/08589320X", + "numeration": "", + "date_of_birth": "1813-06-22", + "date_of_death": "1882-07", + "preferred_name": "Batissier, Louis", + "authorized_access_point": "Batissier, Louis, 1813-1882", + "biographical_information": [ + "M\u00e9decin. Inspecteur de monuments historiques de l'Allier. Charg\u00e9 de mission en Gr\u00e8ce, Syrie et Asie Mineure. Vice-consul de France \u00e0 Suez" + ] + }, + { + "md5": "2c38888c53de00b5003a0a42889e57b4", + "pid": "088397599", + "language": [ + "spa" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/088397599", + "numeration": "", + "preferred_name": "Rodr\u00edguez G\u00f3mez, Jos\u00e9 M.", + "authorized_access_point": "Rodr\u00edguez G\u00f3mez, Jos\u00e9 M." + }, + { + "md5": "c07fa921c7c939503c87c9df1693a628", + "pid": "089443675", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/089443675", + "numeration": "", + "preferred_name": "Ritch, K. Janet", + "authorized_access_point": "Ritch, K. Janet", + "biographical_information": [ + "Enseigne \u00e0 l'universit\u00e9 de Toronto, traduit en fran\u00e7ais" + ] + }, + { + "md5": "08dd72e8c950f068034df071e54dda8f", + "pid": "092359116", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/092359116", + "numeration": "", + "variant_name": [ + "Matsen, Bradford" + ], + "date_of_birth": "19", + "preferred_name": "Matsen, Brad", + "authorized_access_point": "Matsen, Brad", + "biographical_information": [ + "Auteur, documentariste et photographe. Auteur de \"Titanic's last secrets\", \"Descent : the heroic discovery of the abyss\",.. et de nombreux articles sur les sciences marines. R\u00e9alisateur pour la t\u00e9l\u00e9vision de \"The shape of life\"" + ] + }, + { + "md5": "f0ebe4775e8385c4d434622e0ab974b4", + "pid": "094563152", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/094563152", + "numeration": "", + "preferred_name": "Nievergelt, Dieter", + "authorized_access_point": "Nievergelt, Dieter" + }, + { + "md5": "cde29a8e513de98daa80b2efc2654251", + "pid": "095775757", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/095775757", + "numeration": "", + "date_of_birth": "1977-01-02", + "preferred_name": "Galanopoulos, Philippe", + "authorized_access_point": "Galanopoulos, Philippe, 1977-....", + "biographical_information": [ + "Docteur en histoire (Universit\u00e9 de Versailles-St Quentin en Yvelines, 2005)", + "Dipl\u00f4me d'archiviste pal\u00e9ographe (\u00c9cole nationale des chartes, 2009)", + "Dipl\u00f4me de conservateur des biblioth\u00e8ques (\u00c9cole nationale sup\u00e9rieure des sciences de l'information et des biblioth\u00e8ques, 2010)", + "Directeur de la Biblioth\u00e8que de la Cour de cassation (Paris) [depuis le 01/11/2015]", + "Conservateur \u00e0 la Biblioth\u00e8que interuniversitaire de Sant\u00e9 (Paris), P\u00f4le Pharmacie-biologie-cosm\u00e9tologie (2011-2015)" + ] + }, + { + "md5": "17aa04eb7421dbb8fdb02b4d9a352d15", + "pid": "101448597", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/101448597", + "numeration": "", + "preferred_name": "D\u00e9flacieux, Martial", + "authorized_access_point": "D\u00e9flacieux, Martial", + "biographical_information": [ + "fait partie de l' association \"Volksystem.cie\", dont l' objet est l' organisation de programmes culturels" + ] + }, + { + "md5": "d1a23ab6304dd727d2806cbd523d4261", + "pid": "107090538", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/107090538", + "numeration": "", + "date_of_birth": "1937", + "preferred_name": "Richter, Werner", + "authorized_access_point": "Richter, Werner, 1937-...." + }, + { + "md5": "55f2ac0e010c50f7e64899bb6c439526", + "pid": "108090450", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/108090450", + "numeration": "", + "date_of_birth": "1914", + "date_of_death": "1994", + "preferred_name": "Cullen, Gordon", + "authorized_access_point": "Cullen, Gordon, 1914-1994", + "biographical_information": [ + "Architecte et urbaniste britannique" + ] + }, + { + "md5": "3188f04965323725901828f380ceaf48", + "pid": "108510638", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/108510638", + "numeration": "", + "date_of_birth": "1956-09-13", + "preferred_name": "Jennex, Murray E.", + "authorized_access_point": "Jennex, Murray E., 1956-...." + }, + { + "md5": "16a7401d2e94f18059c39604082436f3", + "pid": "110185366", + "language": [ + "jpn" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/110185366", + "numeration": "", + "date_of_birth": "1944", + "preferred_name": "\u5c0f\u548c\u7530, \u54f2\u7537", + "authorized_access_point": "\u5c0f\u548c\u7530, \u54f2\u7537, 1944-", + "biographical_information": [ + "Professeur \u00e0 l'Universit\u00e9 de Shizuoka, Sp\u00e9cialist de l'histoire japonaise (en 2008)" + ] + }, + { + "md5": "92c98eea5a2419039bddee0e551b3257", + "pid": "113195931", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/113195931", + "numeration": "", + "preferred_name": "Boughton, Robert", + "authorized_access_point": "Boughton, Robert" + }, + { + "md5": "7854798dab3224cd036ec0175afef817", + "pid": "113738048", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/113738048", + "numeration": "", + "preferred_name": "Wiese, Ren\u00e9", + "authorized_access_point": "Wiese, Ren\u00e9" + }, + { + "md5": "dbc7c48169fbd849922a4169a64b4b73", + "pid": "11499899X", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/11499899X", + "numeration": "", + "date_of_birth": "1942", + "preferred_name": "Parker, Gordon", + "authorized_access_point": "Parker, Gordon, 1942-", + "biographical_information": [ + "Professeur. En poste \u00e0 University of New South Wales. Directeur du Black Dog Institute, Sydney, Australie (en 2005)." + ] + }, + { + "md5": "365c5c00f8326b750f2f26d3ba714c16", + "pid": "115078630", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/115078630", + "numeration": "", + "date_of_birth": "1921", + "preferred_name": "Weisz, Paul B.", + "authorized_access_point": "Weisz, Paul B., 1921-....", + "biographical_information": [ + "Professeur de biologie, Brown university (1961)" + ] + }, + { + "md5": "62e50f88d1c88907ad0ee87a38b9c5bf", + "pid": "119349043", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/119349043", + "numeration": "", + "preferred_name": "Bogdan-Verger, Olimpia", + "authorized_access_point": "Bogdan-Verger, Olimpia", + "biographical_information": [ + "Traduit du roumain au fran\u00e7ais" + ] + }, + { + "md5": "f009955da96987ce4372665869500154", + "pid": "121150283", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/121150283", + "numeration": "", + "date_of_birth": "1952--.-..", + "preferred_name": "Haas, Jean-Fran\u00e7ois", + "authorized_access_point": "Haas, Jean-Fran\u00e7ois, 1952-....", + "biographical_information": [ + "Enseignant" + ] + }, + { + "md5": "c08fe4347c43c70d3ed46ac0c02f83f1", + "pid": "121469395", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/121469395", + "numeration": "", + "date_of_birth": "1943", + "preferred_name": "Jurjevics, Juris", + "authorized_access_point": "Jurjevics, Juris, 1943-....", + "biographical_information": [ + "N\u00e9 en Lituanie" + ] + }, + { + "md5": "bcc808253ee3098f6c2ca991ac5e5b08", + "pid": "123240638", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/123240638", + "numeration": "", + "variant_name": [ + "P\u00e9nard-Morand, C\u00e9line" + ], + "date_of_birth": "1977-11-16", + "preferred_name": "Morand C\u00e9line", + "authorized_access_point": "Morand C\u00e9line", + "biographical_information": [ + "Docteur en m\u00e9decine (2007)" + ] + }, + { + "md5": "d1b0eb20b8bc4abf288b49a42bc1637d", + "pid": "123474825", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/123474825", + "numeration": "", + "date_of_birth": "1968", + "preferred_name": "Moskowitz, Marina", + "authorized_access_point": "Moskowitz, Marina, 1968-....", + "biographical_information": [ + "Historienne" + ] + }, + { + "md5": "10310f159a7b1ecacc7197f3347a3bcb", + "pid": "124217273", + "language": [ + "eng", + "ita" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/124217273", + "numeration": "", + "preferred_name": "Barbi, Elisabetta", + "authorized_access_point": "Barbi, Elisabetta", + "biographical_information": [ + "Professeur \u00e0 l'Universit\u00e9 de Messina (Italie) au d\u00e9partement Economie, Statistique, Math\u00e9matiques et Sociologie \"W. Pareto\" (en 2008)." + ] + }, + { + "md5": "b7737315c35a142d01e159a87ecca353", + "pid": "126698104", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/126698104", + "numeration": "", + "date_of_birth": "1965", + "preferred_name": "Matthews, Gelien", + "authorized_access_point": "Matthews, Gelien, 1965-....", + "biographical_information": [ + "Enseigne l'histoire \u00e0 Caribbean Nazarene College, Trinidad et Tobago" + ] + }, + { + "md5": "b7c0579985eafff51ef54c1775fa9764", + "pid": "127334807", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/127334807", + "numeration": "", + "date_of_birth": "1957", + "preferred_name": "Deloupy, Bernard", + "authorized_access_point": "Deloupy, Bernard, 1957-....", + "biographical_information": [ + "Auteur de romans policiers" + ] + }, + { + "md5": "487219e1136fd23fd1ccd1997cc1b3f1", + "pid": "128587679", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/128587679", + "numeration": "", + "date_of_birth": "1951-11-10", + "preferred_name": "Redner, Sidney", + "authorized_access_point": "Redner, Sidney, 1951-....", + "biographical_information": [ + "Physicien. Professeur de physique \u00e0 l'universit\u00e9 de Boston, Mass., depuis 1989 (en 2017)" + ] + }, + { + "md5": "cd7813d84dadeb746e2a9eff84775040", + "pid": "128657642", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/128657642", + "numeration": "", + "date_of_birth": "19", + "preferred_name": "Scheidt, Petra", + "authorized_access_point": "Scheidt, Petra" + }, + { + "md5": "f24611dae2ff0cc217b2542e3c9d8c42", + "pid": "129419915", + "language": [ + "spa" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/129419915", + "numeration": "", + "preferred_name": "Vel\u00e1squez, Rafael", + "authorized_access_point": "Vel\u00e1squez, Rafael", + "biographical_information": [ + "Auteur cubain" + ] + }, + { + "md5": "feea8b029ac7f4737c1fce86f5b02501", + "pid": "129801577", + "qualifier": "", + "identifier": "http://www.idref.fr/129801577", + "numeration": "", + "preferred_name": "Koizumi, Hiroyasu", + "authorized_access_point": "Koizumi, Hiroyasu", + "biographical_information": [ + "Math\u00e9maticien. En poste \u00e0 la facult\u00e9 de Science de l'Institut de technologie d'Himeji au Japon en 2003." + ] + }, + { + "md5": "b9073c121a04fa79e8c28f0db41b021d", + "pid": "132110520", + "language": [ + "pol" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/132110520", + "numeration": "", + "date_of_birth": "19", + "preferred_name": "Bielawski, J\u00f3zef", + "authorized_access_point": "Bielawski, J\u00f3zef" + }, + { + "md5": "d74fa85764b7f4812e2b7cda7d599c61", + "pid": "132394065", + "language": [ + "ita" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/132394065", + "numeration": "", + "preferred_name": "Isabella, Giovanni", + "authorized_access_point": "Isabella, Giovanni" + }, + { + "md5": "972f700baa36c87fc0397ddf230ff5ff", + "pid": "133765687", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/133765687", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "Leron, Uri", + "authorized_access_point": "Leron, Uri", + "biographical_information": [ + "En poste au Department of science education, Technion, Israel institute of technology, Haifa (Israel)" + ] + }, + { + "md5": "dd341b569471388a32bd2284855e9d87", + "pid": "133972887", + "language": [ + "eng", + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/133972887", + "numeration": "", + "date_of_birth": "1909", + "preferred_name": "Savile, Douglas B. O.", + "authorized_access_point": "Savile, Douglas B. O." + }, + { + "md5": "8d24e819acb23958ee804d7b2ae32906", + "pid": "134489500", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/134489500", + "numeration": "", + "preferred_name": "Diaz, Janet Winecoff", + "authorized_access_point": "Diaz, Janet Winecoff" + }, + { + "md5": "7285e8264916e763889cdf4dfbeea1e2", + "pid": "135192013", + "language": [ + "ita", + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/135192013", + "numeration": "", + "date_of_birth": "1952?", + "preferred_name": "Parisi, Chiara", + "authorized_access_point": "Parisi, Chiara, 1970-....", + "biographical_information": [ + "Commissaire d'exposition. Directrice du Centre international d'art et du paysage de l'\u00eele de Vassivi\u00e8re (2004-2011). Directrice des programmes culturels de la Monnaie de Paris (2011-2016)" + ] + }, + { + "md5": "53d4ba002fc43ec6dd7b3d1903b682f8", + "pid": "135683122", + "qualifier": "", + "identifier": "http://www.idref.fr/135683122", + "numeration": "", + "preferred_name": "K\u00f6lling, Mario", + "authorized_access_point": "K\u00f6lling, Mario" + }, + { + "md5": "260ee376ad32e8e2434991571aa2d0c4", + "pid": "135688590", + "language": [ + "spa" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/135688590", + "numeration": "", + "variant_name": [ + "Carazo, Pedro P\u00e9rez" + ], + "preferred_name": "P\u00e9rez Carazo, Pedro", + "authorized_access_point": "P\u00e9rez Carazo, Pedro" + }, + { + "md5": "b865809074d23f1f7adcfdafd8d54b21", + "pid": "136495117", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/136495117", + "numeration": "", + "variant_name": [ + "Hjarl, Jane Petersen" + ], + "preferred_name": "Hjarl Petersen, Jane", + "authorized_access_point": "Hjarl Petersen, Jane" + }, + { + "md5": "976df91a2055549060bdbc91565cda5c", + "pid": "136803784", + "language": [ + "jpn" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/136803784", + "numeration": "", + "date_of_birth": "1980-04-14", + "preferred_name": "Ito, Ayumi", + "authorized_access_point": "Ito, Ayumi, 1980-....", + "biographical_information": [ + "Actrice" + ] + }, + { + "md5": "cc5024ce576973d5c66cdba1830f8390", + "pid": "136864473", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/136864473", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "Dumouchel, Jacques", + "authorized_access_point": "Dumouchel, Jacques" + }, + { + "md5": "9b3c5fbd5266b5113cdab67970ba16a9", + "pid": "136864554", + "language": [ + "mul" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/136864554", + "numeration": "", + "preferred_name": "Yampolsky, Heather", + "authorized_access_point": "Yampolsky, Heather" + }, + { + "md5": "c00353d4242cd203d361cd10c8bb4ef9", + "pid": "137405723", + "language": [ + "chi" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/137405723", + "numeration": "", + "variant_name": [ + "Hs\u00fc, Min" + ], + "preferred_name": "\u5f90, \u654f", + "authorized_access_point": "\u5f90, \u654f" + }, + { + "md5": "1211f023c41692978bdd71114eb8942f", + "pid": "137773927", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/137773927", + "numeration": "", + "date_of_birth": "1968", + "preferred_name": "Bernheimer, Andrew", + "authorized_access_point": "Bernheimer, Andrew, 1968-....", + "biographical_information": [ + "Architecte am\u00e9ricain. - Cr\u00e9e, en 1996, avec Jared Della Valle, l'agence Della Valle Bernheimer Design, bas\u00e9e \u00e0 New-York, dissoute en 2010" + ] + }, + { + "md5": "6651d84df5802c68f498e7161502bbe8", + "pid": "137790872", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/137790872", + "numeration": "", + "preferred_name": "Weber, Renaud", + "authorized_access_point": "Weber, Renaud", + "biographical_information": [ + "Juriste", + "Avocat (en 2009)", + "Juge d'instruction (Neuch\u00e2tel, Suisse) (en 2009)" + ] + }, + { + "md5": "c46948b41aebe4e04540db3baf82aa20", + "pid": "138484945", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/138484945", + "numeration": "", + "preferred_name": "Lano\u00eb, Samuel", + "authorized_access_point": "Lano\u00eb, Samuel", + "biographical_information": [ + "Ing\u00e9nieur en sciences de l'environnement (en 2008)" + ] + }, + { + "md5": "cdb3e56a7232785097a1fb20a10acbdb", + "pid": "139135723", + "language": [ + "jpn" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/139135723", + "numeration": "", + "date_of_birth": "1931", + "preferred_name": "\u6238\u5ddd, \u82b3\u90ce", + "authorized_access_point": "\u6238\u5ddd, \u82b3\u90ce, 1931-....", + "biographical_information": [ + "Il a \u00e9t\u00e9 membre du JCP (Japan Communist Party)" + ] + }, + { + "md5": "c0da570f96a2c0c7c83ae6eebfac4737", + "pid": "139416846", + "language": [ + "eng", + "chi" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/139416846", + "numeration": "", + "date_of_birth": "1962", + "preferred_name": "Lee, Vivian P. Y.", + "authorized_access_point": "Lee, Vivian P. Y., 1962-....", + "biographical_information": [ + "Enseigne au D\u00e9partement de chinois, de traduction et de linguistique \u00e0 la Cit\u00e9 universitaire de Hong Kong (en 2009). Ses publications portent sur la litt\u00e9rature chinoise contemporain et sur le cin\u00e9ma chinois et apparaissent dans des journaux universitaires tels que \"Modern Chinese literature and culture\", \"Journal of Chinese cinemas\", \"Scope\" et \"Chinese films in focus II\"" + ] + }, + { + "md5": "07f3f84ff33f959595ab72b38edca703", + "pid": "140489436", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/140489436", + "numeration": "", + "date_of_birth": "1936-10-13", + "preferred_name": "Hancock, David", + "authorized_access_point": "Hancock, David, 1936-...." + }, + { + "md5": "a1f2306f3f78813bac673574c1a7506a", + "pid": "140708987", + "language": [ + "pol" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/140708987", + "numeration": "", + "preferred_name": "Wandowski, Henryk", + "authorized_access_point": "Wandowski, Henryk", + "biographical_information": [ + "Traducteur" + ] + }, + { + "md5": "28b62527fdcb2b5db13ce0dd4b2c1ff7", + "pid": "142638145", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/142638145", + "numeration": "", + "date_of_birth": "1973", + "preferred_name": "Michel, Ariane", + "authorized_access_point": "Michel, Ariane", + "biographical_information": [ + "R\u00e9alisatrice de documentaires" + ] + }, + { + "md5": "9a935bf2805a3027335aa15bb4b688a4", + "pid": "142877832", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/142877832", + "numeration": "", + "preferred_name": "McDonnell, Thomas Michael", + "authorized_access_point": "McDonnell, Thomas Michael", + "biographical_information": [ + "Professeur de droit, Pace University School of Law (2010)" + ] + }, + { + "md5": "0da21abab20aeafa07f51d86baa55d3e", + "pid": "142996734", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/142996734", + "numeration": "", + "preferred_name": "Koulouris, George", + "authorized_access_point": "Koulouris, George", + "biographical_information": [ + "Directeur, Melbourne radiology clinic, East Melbourne, Australia" + ] + }, + { + "md5": "c7d324636e16cc43d453caf514add70c", + "pid": "143120743", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/143120743", + "numeration": "", + "date_of_birth": "19XX", + "preferred_name": "Saul, Matthew", + "authorized_access_point": "Saul, Matthew", + "biographical_information": [ + "Assistant en droit \u00e0 Durham Law School, Universit\u00e9 de Durham, en Angleterre (en 2010)", + "Chercheur en droit \u00e0 Department of Public and International Law, Universit\u00e9 d'Oslo, Norv\u00e8ge (en 2014)" + ] + }, + { + "md5": "7a1027b1b02d8ab40b4eb9e7d8ab6af0", + "pid": "143329790", + "language": [ + "pol" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/143329790", + "numeration": "", + "preferred_name": "Krupp\u00e9, Jerzy", + "authorized_access_point": "Krupp\u00e9, Jerzy" + }, + { + "md5": "cd1935f239e17d2b847c91650ae637e3", + "pid": "143470280", + "language": [ + "spa" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/143470280", + "numeration": "", + "variant_name": [ + "Rodr\u00edguez, Rakel", + "Rodr\u00edguez L\u00f3pez, Raquel" + ], + "preferred_name": "Rodr\u00edguez, Raquel", + "authorized_access_point": "Rodr\u00edguez, Raquel" + }, + { + "md5": "4691dfa40dead870925459d4523f2be5", + "pid": "145209512", + "language": [ + "pol" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/145209512", + "numeration": "", + "preferred_name": "Dlugajczyk, Beata", + "authorized_access_point": "Dlugajczyk, Beata" + }, + { + "md5": "1e6809751bb1638b61d4d8dda0c02e39", + "pid": "145286444", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/145286444", + "numeration": "", + "preferred_name": "Erman, Elise", + "authorized_access_point": "Erman, Elise" + }, + { + "md5": "639fbd8117708d0110aa1bc4b86aa7f1", + "pid": "145661806", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/145661806", + "numeration": "", + "preferred_name": "Finke, Timo", + "authorized_access_point": "Finke, Timo" + }, + { + "md5": "6d01bdb6b9871dd8dd441b49b3b608df", + "pid": "145729613", + "language": [ + "rum" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/145729613", + "numeration": "", + "preferred_name": "Stanciu, Augustina", + "authorized_access_point": "Stanciu, Augustina", + "biographical_information": [ + "Sc\u00e9nariste" + ] + }, + { + "md5": "bfe91c64689fc42c96e2a12e6de012a7", + "pid": "14577838X", + "language": [ + "gre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/14577838X", + "numeration": "", + "variant_name": [ + "Priftis, Kostas N." + ], + "preferred_name": "Priftis, Kostas N.", + "authorized_access_point": "Priftis, Kostas N.", + "biographical_information": [ + "Pneumologue-allergologue" + ] + }, + { + "md5": "d3875fb94af853fa0b6448458ae63222", + "pid": "146874595", + "language": [ + "chi", + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/146874595", + "numeration": "", + "preferred_name": "Kee, Ming-Yuet", + "authorized_access_point": "Kee, Ming-Yuet", + "biographical_information": [ + "\u00c9ducatrice ; collectionneuse de porcelaine chinoise peranakan" + ] + }, + { + "md5": "f6066866b2476b9b0994fa82043d4bfe", + "pid": "147233429", + "language": [ + "rus" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/147233429", + "numeration": "", + "preferred_name": "Lekhina, Ekaterina", + "authorized_access_point": "Lekhina, Ekaterina", + "biographical_information": [ + "Soprano" + ] + }, + { + "md5": "a552f5722dc1df40ce861411889a2aaf", + "pid": "147644305", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/147644305", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "Spiess, Bernhard", + "authorized_access_point": "Spiess, Bernhard", + "biographical_information": [ + "Professor veterinary ophtalmology : Department for small animals, Ophtalmology unit, Vetsuisse faculty, University of Zurich (Switzerland)" + ] + }, + { + "md5": "1655c1f47e973bea8a3921d401b60b7e", + "pid": "147759420", + "language": [ + "ita" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/147759420", + "numeration": "", + "date_of_birth": "1590", + "date_of_death": "1655", + "preferred_name": "Vernazza, Livia", + "authorized_access_point": "Vernazza, Livia, 1590-1655", + "biographical_information": [ + "Epouse de Jean de Medicis 1563-1621" + ] + }, + { + "md5": "17178ffb3d5f3e6e435b1a8f48032cda", + "pid": "147906423", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/147906423", + "numeration": "", + "preferred_name": "Figarova, Sophia R.", + "authorized_access_point": "Figarova, Sophia R.", + "biographical_information": [ + "En poste : Baku state university, Azerba\u00efdjan (en 2010)" + ] + }, + { + "md5": "d8ee458966f14bf4703b8ed864234078", + "pid": "148637450", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/148637450", + "numeration": "", + "date_of_birth": "19XX", + "preferred_name": "Hepner, Gershon", + "authorized_access_point": "Hepner, Gershon" + }, + { + "md5": "da7bf85eca900b49a48bb1e9cd8ce240", + "pid": "148833101", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/148833101", + "numeration": "", + "date_of_birth": "19", + "preferred_name": "Parker, Ian C.", + "authorized_access_point": "Parker, Ian C.", + "biographical_information": [ + "Economiste. Professeur \u00e0 l'Universit\u00e9 de Toronto (en 2010)" + ] + }, + { + "md5": "ee7380286353fc0e24d599bc568acd91", + "pid": "148842836", + "language": [ + "ita" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/148842836", + "numeration": "", + "preferred_name": "Brandolin, Mario", + "authorized_access_point": "Brandolin, Mario", + "biographical_information": [ + "Critique de th\u00e9atre, directeur artistique." + ] + }, + { + "md5": "2121ba380f074c7adef476aeb19c6460", + "pid": "148935710", + "qualifier": "", + "identifier": "http://www.idref.fr/148935710", + "numeration": "", + "preferred_name": "Auger, Jean-Fran\u00e7ois", + "authorized_access_point": "Auger, Jean-Fran\u00e7ois" + }, + { + "md5": "ceac08c619657cb8765653d0c3b77dec", + "pid": "149834802", + "language": [ + "ita" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/149834802", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "Fiore, Davide", + "authorized_access_point": "Fiore, Davide", + "biographical_information": [ + "Critique d'art" + ] + }, + { + "md5": "4c6aba49881fb4150857caa4b9664443", + "pid": "149944586", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/149944586", + "numeration": "", + "preferred_name": "Salem, Maurice", + "authorized_access_point": "Salem, Maurice" + }, + { + "md5": "03f2a08cc2c2811f0cb401af4ef1dd26", + "pid": "149955847", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/149955847", + "numeration": "", + "date_of_birth": "19", + "preferred_name": "Schmid, Franziska Sibylle", + "authorized_access_point": "Schmid, Franziska Sibylle, 19..-...." + }, + { + "md5": "cca8fa6c6bd6c1effe09667d6aaf06a9", + "pid": "150599811", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/150599811", + "numeration": "", + "preferred_name": "Walsh, Christine A.", + "authorized_access_point": "Walsh, Christine A.", + "biographical_information": [ + "Professeur associ\u00e9, University of Calgary (Canada), Faculty of social work" + ] + }, + { + "md5": "48dd6f27e7bf55e68863bce73175f450", + "pid": "150700768", + "qualifier": "photographe", + "identifier": "http://www.idref.fr/150700768", + "numeration": "", + "preferred_name": "Beckers, Stephan, photographe", + "authorized_access_point": "Beckers, Stephan, photographe", + "biographical_information": [ + "Photographe" + ] + }, + { + "md5": "62b31aeeafad037b45aa8e81dfae80a0", + "pid": "150724527", + "language": [ + "pol" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/150724527", + "numeration": "", + "variant_name": [ + "Morelowski, Marjan" + ], + "date_of_birth": "1884-03-06", + "date_of_death": "1963-07-24", + "preferred_name": "Morelowski, Marian", + "authorized_access_point": "Morelowski, Marian, 1884-1963", + "biographical_information": [ + "Historien d'art. - Professeur aux universit\u00e9s de Wroclaw et de Vilnius", + "Lieu de naissance Wadowice, Pologne. Lieu de d\u00e9c\u00e8s Wroclaw, Pologne" + ] + }, + { + "md5": "483cd2f23954fb98569bb8cd47dd97a8", + "pid": "15117430X", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/15117430X", + "numeration": "", + "preferred_name": "Cadwaladr, Margaret", + "authorized_access_point": "Cadwaladr, Margaret" + }, + { + "md5": "7441b14c330f4fffa56b9c844e5b4198", + "pid": "152016872", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/152016872", + "numeration": "", + "date_of_birth": "1943-11-13", + "preferred_name": "Hilliard, Raymond F.", + "authorized_access_point": "Hilliard, Raymond F., 1943-...." + }, + { + "md5": "433601f827caa57e0eba44317fdaa264", + "pid": "152270345", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/152270345", + "numeration": "", + "variant_name": [ + "Serventy, D. L." + ], + "date_of_birth": "1904", + "date_of_death": "1988", + "preferred_name": "Serventy, Dominic Louis", + "authorized_access_point": "Serventy, Dominic Louis, 1904-1988", + "biographical_information": [ + "Ornithologue australien" + ] + }, + { + "md5": "b945b0dc290407426d9eddc7705d5831", + "pid": "153446544", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/153446544", + "numeration": "", + "preferred_name": "Abbott, Colleen", + "authorized_access_point": "Abbott, Colleen" + }, + { + "md5": "f53eda6a15cfb5212ac101fac45ff5c0", + "pid": "154889415", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/154889415", + "numeration": "", + "date_of_birth": "1971", + "preferred_name": "Kay, Tamara", + "authorized_access_point": "Kay, Tamara, 1971-....", + "biographical_information": [ + "Professeur de sociologie \u00e0 l'Universit\u00e9 de Harvard et codirectrice de : Harvard's Transnational Studies iniative" + ] + }, + { + "md5": "1a90f2b7cc9712c8abd56b1a3efab66c", + "pid": "154972673", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/154972673", + "numeration": "", + "date_of_birth": "1970", + "preferred_name": "Lange, Bastian", + "authorized_access_point": "Lange, Bastian, 1970-...." + }, + { + "md5": "3317cd017ff0ab3d799abc1089b9ad01", + "pid": "155309668", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/155309668", + "numeration": "", + "date_of_birth": "19XX", + "preferred_name": "Sorrells, Felipe D.", + "authorized_access_point": "Sorrells, Felipe D." + }, + { + "md5": "484f7417008192ad6e984686ffcc512f", + "pid": "155746936", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/155746936", + "numeration": "", + "variant_name": [ + "Dochier, Luc", + "Luc" + ], + "date_of_birth": "1914-01-31", + "date_of_death": "1996-05-21", + "preferred_name": "Dochier, Paul", + "authorized_access_point": "Dochier, Paul, 1914-1996", + "biographical_information": [ + "Moine de l'Ordre des Cisterciens de la stricte observance (\u00e0 partir de 1941/1949). - Moine de l'Abbaye Notre-Dame d'Aiguebelle (\u00e0 Montjoyer, Dr\u00f4me ; 1941-1946), puis du Prieur\u00e9 de Notre-Dame-de-l'Atlas (\u00e0 Tibhirine, Alg\u00e9rie). - Docteur en m\u00e9decine (Lyon, 1939/1940)", + "Lieu de naissance Bourg-de-P\u00e9age (Dr\u00f4me). Lieu de d\u00e9c\u00e8s Pr\u00e8s de Lemdiyya (ou M\u00e9d\u00e9a, Alg\u00e9rie)" + ] + }, + { + "md5": "d6c1cd6cc55e9b50e1a6492ccf35c3bc", + "pid": "155852639", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/155852639", + "numeration": "", + "preferred_name": "Routon, Kenneth", + "authorized_access_point": "Routon, Kenneth", + "biographical_information": [ + "Anthropologue culturel (2010)" + ] + }, + { + "md5": "66746062e9c4a4ae4d953711a40b49fe", + "pid": "157856283", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/157856283", + "numeration": "", + "preferred_name": "Thomas, Corinne", + "authorized_access_point": "Thomas, Corinne", + "biographical_information": [ + "Titulaire d'un doctorat en Production Automatis\u00e9e de l'Universit\u00e9 Henri Poincar\u00e9 (Nancy 1) en 1999" + ] + }, + { + "md5": "b36e25d8d27046bf7774497f1d9341f3", + "pid": "158552180", + "qualifier": "", + "identifier": "http://www.idref.fr/158552180", + "numeration": "", + "preferred_name": "Paquet, Fran\u00e7ois", + "authorized_access_point": "Paquet, Fran\u00e7ois" + }, + { + "md5": "950caf16e19926310fd8ef292ee1aee9", + "pid": "160613701", + "qualifier": "", + "identifier": "http://www.idref.fr/160613701", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "Obed", + "authorized_access_point": "Obed", + "biographical_information": [ + "Chanteur de vari\u00e9t\u00e9s antillaises et de dancehall" + ] + }, + { + "md5": "5578772f68f6725f849d4b890ad87606", + "pid": "161367070", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/161367070", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "Merran, St\u00e9phanie", + "authorized_access_point": "Merran, St\u00e9phanie" + }, + { + "md5": "96ea46ad8f646b08a097781226fcefd8", + "pid": "162154224", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/162154224", + "numeration": "", + "date_of_birth": "1973", + "preferred_name": "Popp, Julius", + "authorized_access_point": "Popp, Julius, 1973-....", + "biographical_information": [ + "Artiste plasticien. Installateur. Photographe. N\u00e9 \u00e0 Nuremberg. Vit \u00e0 Leipzig, Allemagne" + ] + }, + { + "md5": "a03516b7ec61fadc8c7aa23ddeccf54b", + "pid": "162460163", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/162460163", + "numeration": "", + "preferred_name": "Georgoulas, Stratos", + "authorized_access_point": "Georgoulas, Stratos" + }, + { + "md5": "63b360cdeb0a38475f7fb316c3a25d3a", + "pid": "164529640", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/164529640", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "Pierr\u00e9, Micha\u00ebl", + "authorized_access_point": "Pierr\u00e9, Micha\u00ebl" + }, + { + "md5": "bfb46f4dd011ff6f8ee5ecaa87f569aa", + "pid": "16583868X", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/16583868X", + "numeration": "", + "preferred_name": "Pedraglio, Francesco", + "authorized_access_point": "Pedraglio, Francesco", + "biographical_information": [ + "Art" + ] + }, + { + "md5": "16ad9226ad08d0264767d201ec3cb0d6", + "pid": "167228862", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/167228862", + "numeration": "", + "preferred_name": "Chaoui-Derieux, Doroth\u00e9e", + "authorized_access_point": "Chaoui-Derieux, Doroth\u00e9e", + "biographical_information": [ + "Arch\u00e9ologue. Minist\u00e8re de la Culture, Service r\u00e9gional de l'arch\u00e9ologie (SRA)" + ] + }, + { + "md5": "878da983638c0735594b799b3a9a7f79", + "pid": "16737740X", + "language": [ + "hin" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/16737740X", + "numeration": "", + "preferred_name": "Prapanna, Vandana", + "authorized_access_point": "Prapanna, Vandana", + "biographical_information": [ + "Historienne de l'art (en 2002)" + ] + }, + { + "md5": "9591b4fb5633538dd4e1a0a6f7c77e15", + "pid": "167467549", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/167467549", + "numeration": "", + "date_of_birth": "19", + "preferred_name": "Reynolds, Catherine", + "authorized_access_point": "Reynolds, Catherine" + }, + { + "md5": "4e109f410c155a54620522d2162d871b", + "pid": "167843052", + "language": [ + "pol" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/167843052", + "numeration": "", + "preferred_name": "Zbierski, Andrzej", + "authorized_access_point": "Zbierski, Andrzej" + }, + { + "md5": "4294770ab6deb80939d1e9c7f4ae04f1", + "pid": "167901842", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/167901842", + "numeration": "", + "date_of_birth": "1975", + "preferred_name": "Jarvis, Mark D.", + "authorized_access_point": "Jarvis, Mark D., 1975-...." + }, + { + "md5": "2b1144e20c968ed7778612c385cc66e0", + "pid": "168633248", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/168633248", + "numeration": "", + "date_of_birth": "1948", + "preferred_name": "Martin, Lee-Ann", + "authorized_access_point": "Martin, Lee-Ann, 1948-....", + "biographical_information": [ + "Conservatrice de l'art am\u00e9rindien, Mus\u00e9e canadien des civilisations, Ottawa (en 1992)" + ] + }, + { + "md5": "bcd875d99f3f4d74cea80a01700c1786", + "pid": "168968614", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/168968614", + "numeration": "", + "preferred_name": "Gagnier, Serge", + "authorized_access_point": "Gagnier, Serge", + "biographical_information": [ + "Auteur pour la jeunesse" + ] + }, + { + "md5": "902b74e8f9082b4ce9387c3fd3f5eccb", + "pid": "16961834X", + "language": [ + "por" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/16961834X", + "numeration": "", + "date_of_birth": "1967", + "preferred_name": "Sousa, L\u00facio", + "authorized_access_point": "Sousa, L\u00facio, 1967-...." + }, + { + "md5": "87e5070218da0c97d5af32d94ab6c75d", + "pid": "169818098", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/169818098", + "numeration": "", + "preferred_name": "McCarthy, Rebecca Lea", + "authorized_access_point": "McCarthy, Rebecca Lea" + }, + { + "md5": "ff43cecf4aa627ee78c8ce166ba632f1", + "pid": "170128687", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/170128687", + "numeration": "", + "date_of_birth": "19", + "preferred_name": "Luard, Honey", + "authorized_access_point": "Luard, Honey, 19..-....", + "biographical_information": [ + "Directrice de publication. Sp\u00e9cialiste d'art" + ] + }, + { + "md5": "2dbfb8f28cc41fefbabab53a205d9696", + "pid": "170457257", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/170457257", + "numeration": "", + "preferred_name": "Stras, Laurie", + "authorized_access_point": "Stras, Laurie", + "biographical_information": [ + "Auteur d'un ouvrage sur la musique populaire am\u00e9ricaine et enseignante \u00e0 l'Universit\u00e9 de Southampton (2012)" + ] + }, + { + "md5": "037b54e1da47be40870e96ff98dec309", + "pid": "174162790", + "language": [ + "spa" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/174162790", + "numeration": "", + "variant_name": [ + "Millamoto, Mar\u00edaEsther Quintana" + ], + "preferred_name": "Quintana Millamoto, Mar\u00eda Esther", + "authorized_access_point": "Quintana Millamoto, Mar\u00eda Esther" + }, + { + "md5": "70191e96301e6ff93cd7a9894942da3c", + "pid": "174469470", + "qualifier": "", + "identifier": "http://www.idref.fr/174469470", + "numeration": "", + "date_of_birth": "1924-01-18", + "preferred_name": "Gordon, William J.", + "authorized_access_point": "Gordon, William J., 1924-....", + "biographical_information": [ + "Chef d'orchestre de la Fanfare nationale des Forces Arm\u00e9es Canadiennes" + ] + }, + { + "md5": "9af4a466ded3e67d914464b12eabf16c", + "pid": "174571623", + "language": [ + "jpn" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/174571623", + "numeration": "", + "date_of_birth": "1924", + "date_of_death": "2006", + "preferred_name": "\u5927\u5cf6, \u6e05\u6b21", + "authorized_access_point": "\u5927\u5cf6, \u6e05\u6b21, 1924-2006", + "biographical_information": [ + "Critique d'art" + ] + }, + { + "md5": "c2b6520847cf2affd376c92d2654010a", + "pid": "175622914", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/175622914", + "numeration": "", + "preferred_name": "Thomson, Erik MacDonald", + "authorized_access_point": "Thomson, Erik MacDonald" + }, + { + "md5": "9a66c4efbae9905808b7158151cf86d6", + "pid": "176776613", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/176776613", + "numeration": "", + "variant_name": [ + "Sarrazin, Pierre" + ], + "date_of_birth": "1944--", + "preferred_name": "Sarrazin, Michel-Pierre", + "authorized_access_point": "Sarrazin, Michel-Pierre, 1944-....", + "biographical_information": [ + "Ecrivain" + ] + }, + { + "md5": "55bcc14bbfdb40a4dd58b3fb8c3c9681", + "pid": "176929738", + "language": [ + "cze" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/176929738", + "numeration": "", + "date_of_birth": "1956-06-03", + "date_of_death": "1994-04-03", + "preferred_name": "R\u00e1kos, Petr", + "authorized_access_point": "R\u00e1kos, Petr, 1956-1994", + "biographical_information": [ + "Psychiatre, traducteur, \u00e9crivain" + ] + }, + { + "md5": "3aedec8745b801d695660735f9cf32b1", + "pid": "177081724", + "language": [ + "fre", + "ita", + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/177081724", + "numeration": "", + "date_of_birth": "1973", + "preferred_name": "Stampone, Giuseppe", + "authorized_access_point": "Stampone, Giuseppe, 1973-....", + "biographical_information": [ + "Artiste (Installation) n\u00e9 en France, vit et travaille \u00e0 Teramo et New York" + ] + }, + { + "md5": "242b006d71bed2fdee12824758fb242f", + "pid": "178055328", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/178055328", + "numeration": "", + "date_of_birth": "19XX", + "preferred_name": "Cahill, Kay", + "authorized_access_point": "Cahill, Kay", + "biographical_information": [ + "Biblioth\u00e9caire, Vancouver public library, Canada (en 2010). - Sp\u00e9cialiste des sites web et des services de r\u00e9f\u00e9rences virtuelles" + ] + }, + { + "md5": "5a0c68a109bca19f792ce26ab17e9924", + "pid": "178642932", + "qualifier": "", + "identifier": "http://www.idref.fr/178642932", + "numeration": "", + "preferred_name": "Lamoureux, Jocelyne", + "authorized_access_point": "Lamoureux, Jocelyne", + "biographical_information": [ + "Professeur \u00e0 l'universit\u00e9 du Qu\u00e9bec \u00e0 Montr\u00e9al (UQAM)" + ] + }, + { + "md5": "02e38a4b8e31e6f1ac82035ac0c97a08", + "pid": "181132931", + "qualifier": "", + "identifier": "http://www.idref.fr/181132931", + "numeration": "", + "preferred_name": "Lawrence, Julian", + "authorized_access_point": "Lawrence, Julian" + }, + { + "md5": "ab3e1c9dbd6f1a78f14c1ed4f5aa6fd1", + "pid": "182842819", + "qualifier": "", + "identifier": "http://www.idref.fr/182842819", + "numeration": "", + "variant_name": [ + "Dalphond, J.E." + ], + "preferred_name": "Dalphond, Julie E.", + "authorized_access_point": "Dalphond, Julie E.", + "biographical_information": [ + "Auteur" + ] + }, + { + "md5": "4f4d6f3b277d9df6a0b0485d137e5541", + "pid": "185108385", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/185108385", + "numeration": "", + "variant_name": [ + "Madani El-, Rahma Benhamou" + ], + "date_of_birth": "1966-09-07", + "preferred_name": "Benhamou El Madani, Rahma", + "authorized_access_point": "Benhamou El Madani, Rahma, 1966-....", + "biographical_information": [ + "R\u00e9alisatrice alg\u00e9rienne" + ] + }, + { + "md5": "d5a5c266445af22e4c64772b1e28c16f", + "pid": "185264352", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/185264352", + "numeration": "", + "preferred_name": "Keckler, Stephen W.", + "authorized_access_point": "Keckler, Stephen W.", + "biographical_information": [ + "En poste : University of Texas, Austin, \u00c9tats-Unis (en 2009)" + ] + }, + { + "md5": "e9359e20d55b753ff91ffa0732bd976e", + "pid": "18786893X", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/18786893X", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "Laval, Roseline", + "authorized_access_point": "Laval, Roseline" + }, + { + "md5": "931ee1484972d53a47084479766895d8", + "pid": "188652647", + "language": [ + "cze" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/188652647", + "numeration": "", + "date_of_birth": "1947-12-19", + "preferred_name": "Hrach, Pavel", + "authorized_access_point": "Hrach, Pavel, 1947-....", + "biographical_information": [ + "Artiste peintre, graphiste designer, illustrateur et typographe. - Directeur artistique du Typo+ graphic design studio, Prague (en 2009)" + ] + }, + { + "md5": "598c4bd56d97dd560a5384a6643a8749", + "pid": "18897394X", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/18897394X", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "Gandhi, Nighat M.", + "authorized_access_point": "Gandhi, Nighat M., 19..-", + "biographical_information": [ + "Journaliste" + ] + }, + { + "md5": "5c24d319b065003499c43f298297e61c", + "pid": "190122277", + "qualifier": "", + "identifier": "http://www.idref.fr/190122277", + "numeration": "", + "preferred_name": "Wildeboer, Ina Hinderika", + "authorized_access_point": "Wildeboer, Ina Hinderika" + }, + { + "md5": "c175799be35e3712d03ad61f06b7041b", + "pid": "192298348", + "language": [ + "ita" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/192298348", + "numeration": "", + "preferred_name": "Santini, Gianfranco", + "authorized_access_point": "Santini, Gianfranco" + }, + { + "md5": "3dcfb2ada0351c7756e8b388da97b056", + "pid": "192776851", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/192776851", + "numeration": "", + "preferred_name": "Vavouras, Ioannis", + "authorized_access_point": "Vavouras, Ioannis", + "biographical_information": [ + "En poste, Sociology Department, University of Aegean, Greece" + ] + }, + { + "md5": "593860c4cd8d0882b5e26f64e0c1ecff", + "pid": "192856200", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/192856200", + "numeration": "", + "preferred_name": "Siss, William", + "authorized_access_point": "Siss, William", + "biographical_information": [ + "Peintres aux arm\u00e9es" + ] + }, + { + "md5": "21faea41d9ab4b86238b0fa71cde0b8d", + "pid": "193181878", + "qualifier": "", + "identifier": "http://www.idref.fr/193181878", + "numeration": "", + "preferred_name": "Mir, Mark Stephen", + "authorized_access_point": "Mir, Mark Stephen", + "biographical_information": [ + "Archiviste" + ] + }, + { + "md5": "55c56c461eb52c44330f95d8d0e63d09", + "pid": "19329074X", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/19329074X", + "numeration": "", + "date_of_birth": "1989-09-16", + "preferred_name": "David, Leslie", + "authorized_access_point": "David, Leslie, 1989-....", + "biographical_information": [ + "Auteur d'une th\u00e8se en Sciences de l'environnement \u00e0 Paris 6 en 2015" + ] + }, + { + "md5": "9ffadebb1ab1c1bc258b608b4b360eec", + "pid": "193779587", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/193779587", + "numeration": "", + "preferred_name": "Coulet, Michel", + "authorized_access_point": "Coulet, Michel" + }, + { + "md5": "c1bcb4588523ac0ee6ec2de826d51980", + "pid": "193955482", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/193955482", + "numeration": "", + "preferred_name": "Micheli, Delphine", + "authorized_access_point": "Micheli, Delphine", + "biographical_information": [ + "Photographe" + ] + }, + { + "md5": "3e4ae581e20f1b70139d6845c2571bcd", + "pid": "194445089", + "qualifier": "", + "identifier": "http://www.idref.fr/194445089", + "numeration": "", + "preferred_name": "Lizarzaburu, V\u00e9ra", + "authorized_access_point": "Lizarzaburu, V\u00e9ra" + }, + { + "md5": "302c90bbacb8bed78c0441288aedcb33", + "pid": "19529534X", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/19529534X", + "numeration": "", + "date_of_birth": "1990-05-16", + "preferred_name": "Hutchinson, Steve", + "authorized_access_point": "Hutchinson, Steve, 1990-....", + "biographical_information": [ + "Auteur d\u2019une th\u00e8se d\u2019exercice en Pharmacie, soutenue le 20 septembre 2016, \u00e0 l\u2019Universit\u00e9 de Montpellier" + ] + }, + { + "md5": "6c425ef9995a219c76416115ced59799", + "pid": "195541855", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/195541855", + "numeration": "", + "date_of_birth": "1861-06-17", + "date_of_death": "....", + "preferred_name": "Ducroquet, Jean-Baptiste", + "authorized_access_point": "Ducroquet, Jean-Baptiste, 1861-....", + "biographical_information": [ + "Docteur en m\u00e9decine (Lille, 1891)" + ] + }, + { + "md5": "8f39153cb5484edc0e021682d2bae227", + "pid": "197394795", + "language": [ + "fre", + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/197394795", + "numeration": "", + "preferred_name": "Collins, Gary S.", + "authorized_access_point": "Collins, Gary S.", + "biographical_information": [ + "Professeur \u00e0 l' Universit\u00e9 d'Oxford; Examinateur d'une th\u00e8se en Sciences Chimiques et Biologiques pour la Sant\u00e9 \u00e0 Montpellier en 2016" + ] + }, + { + "md5": "81a003a82eeb7971d58ba122d1b48ba8", + "pid": "198193327", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/198193327", + "numeration": "", + "preferred_name": "R\u00e9gis, Roger", + "authorized_access_point": "R\u00e9gis, Roger" + }, + { + "md5": "6f5d299310064938985e4c433b481ea6", + "pid": "19859318X", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/19859318X", + "numeration": "", + "preferred_name": "Gregerson, Patrick", + "authorized_access_point": "Gregerson, Patrick" + }, + { + "md5": "59128fab8324febc38f25e632ffba040", + "pid": "199108617", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/199108617", + "numeration": "", + "date_of_birth": "1972-03-24", + "preferred_name": "Pralong, Corinne", + "authorized_access_point": "Pralong, Corinne", + "biographical_information": [ + "Titulaire d'une th\u00e8se d'exercice de m\u00e9decine (Limoges : 1998 ; 147)" + ] + }, + { + "md5": "6609b966b99d5cbb90047c7e43fbecb0", + "pid": "199119961", + "language": [ + "ger" + ], + "qualifier": "historien", + "identifier": "http://www.idref.fr/199119961", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "H\u00fcbner, Hans, historien", + "authorized_access_point": "H\u00fcbner, Hans, 19..-...., historien", + "biographical_information": [ + "Professeur \u00e0 l'Universit\u00e9 de Halle - Wittenberg, Section Histoire et instruction civique (Staatsb\u00fcrgerkunde) (en 1986)" + ] + }, + { + "md5": "a7ab61eaa8069a0abcbac688360e5aff", + "pid": "199258813", + "language": [ + "spa" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/199258813", + "numeration": "", + "preferred_name": "Razetti, Ricardo", + "authorized_access_point": "Razetti, Ricardo", + "biographical_information": [ + "ing\u00e9nieur" + ] + }, + { + "md5": "9e1225c47ae6b79b537b5be50b95fe23", + "pid": "199502994", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/199502994", + "numeration": "", + "date_of_birth": "1967-03-24", + "preferred_name": "Bruneau, Anne", + "authorized_access_point": "Bruneau, Anne, 1967-....", + "biographical_information": [ + "Travailleur social" + ] + }, + { + "md5": "a2ad5f88902aaf82db29043a60341aee", + "pid": "199679150", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/199679150", + "numeration": "", + "preferred_name": "Larivain, Henri", + "authorized_access_point": "Larivain, Henri" + }, + { + "md5": "99d5e07045b026fa8ba5108ffe342f20", + "pid": "199742022", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/199742022", + "numeration": "", + "preferred_name": "Trinquet, Paulette", + "authorized_access_point": "Trinquet, Paulette", + "biographical_information": [ + "Inspectrice de l'\u00c9ducation nationale" + ] + }, + { + "md5": "e6cdc5fc9f62c64a01a8ba0172fd3fef", + "pid": "199828121", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/199828121", + "numeration": "", + "date_of_birth": "1991-06-24", + "preferred_name": "Girardo, Claudine", + "authorized_access_point": "Girardo, Claudine, 1991-....", + "biographical_information": [ + "Titulaire d'une th\u00e8se d'exercice en M\u00e9decine V\u00e9t\u00e9rinaire (Lyon 1, 2016)" + ] + }, + { + "md5": "39da3e8fa1ede024ab8cd1f35be3ccf6", + "pid": "200141163", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/200141163", + "numeration": "", + "date_of_birth": "1894-05-14", + "date_of_death": "1973-12-16", + "preferred_name": "Rollin, Louis", + "authorized_access_point": "Rollin, Louis, 1894-1973", + "biographical_information": [ + "Titulaire d'une th\u00e8se en m\u00e9decine (Lyon, 1927)" + ] + }, + { + "md5": "5b95a7abb17b86582bc17398db6589ce", + "pid": "200661531", + "qualifier": "", + "identifier": "http://www.idref.fr/200661531", + "numeration": "", + "date_of_birth": "1986-01-30", + "preferred_name": "Aiello, Ang\u00e8le d'", + "authorized_access_point": "Aiello, Ang\u00e8le d', 1986-....", + "biographical_information": [ + "M\u00e9decin militaire fran\u00e7ais (en 2016). Docteur en m\u00e9decine (Brest, 2016)" + ] + }, + { + "md5": "55752031f2d056fd50605324dedb28ca", + "pid": "201609924", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/201609924", + "numeration": "", + "date_of_birth": "1987-01-19", + "preferred_name": "Djaziri, Sarah", + "authorized_access_point": "Djaziri, Sarah, 1987-....", + "biographical_information": [ + "Titulaire d'une th\u00e8se d'exercice en M\u00e9decine (Lyon 1, 2017)" + ] + }, + { + "md5": "2bb3828cf81119862dfb03dbd8906760", + "pid": "201762641", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/201762641", + "numeration": "", + "date_of_birth": "1955-06-21", + "preferred_name": "Weksler, Marcelo", + "authorized_access_point": "Weksler, Marcelo, 1955-....", + "biographical_information": [ + "Auteur d'une th\u00e8se en Sciences de l'\u00e9ducation \u00e0 Sorbonne Paris Cit\u00e9 en 2015" + ] + }, + { + "md5": "7bbd59712388a41cbb4f490f378d7735", + "pid": "202400263", + "qualifier": "", + "identifier": "http://www.idref.fr/202400263", + "numeration": "", + "preferred_name": "King, G. G.", + "authorized_access_point": "King, G. G." + }, + { + "md5": "8e5dd3202cb18eaf4343572847b2a233", + "pid": "202446573", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/202446573", + "numeration": "", + "preferred_name": "Durante, Janet", + "authorized_access_point": "Durante, Janet" + }, + { + "md5": "65d08e892106ef1eee17baa44bc73ae5", + "pid": "202648087", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/202648087", + "numeration": "", + "date_of_birth": "1963-04-09", + "preferred_name": "Lesieur, Olivier", + "authorized_access_point": "Lesieur, Olivier, 1963-....", + "biographical_information": [ + "Auteur d'une th\u00e8se de doctorat en Ethique m\u00e9dicale soutenue \u00e0 l'Universit\u00e9 Sorbonne Paris Cit\u00e9 en 2015" + ] + }, + { + "md5": "9821b46b690ea085f9d4000dc416d8e2", + "pid": "202681793", + "language": [ + "spa" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/202681793", + "numeration": "", + "date_of_birth": "1978--", + "preferred_name": "Ponce de Le\u00f3n, Facundo", + "authorized_access_point": "Ponce de Le\u00f3n, Facundo, 1978-", + "biographical_information": [ + "Journaliste. Professeur d'anthropologie philosophique \u00e0 l'Universit\u00e0 della Rep\u00fablica Cattolica dell' Uruguay." + ] + }, + { + "md5": "d1b65698d5a481974942755e73a40594", + "pid": "202971511", + "language": [ + "fre", + "spa" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/202971511", + "numeration": "", + "variant_name": [ + "Connan, Christophe Fran\u00e7ois" + ], + "preferred_name": "Fran\u00e7ois-Connan, Christophe", + "authorized_access_point": "Fran\u00e7ois-Connan, Christophe" + }, + { + "md5": "d46adc669ee7aea1320285ee601d9039", + "pid": "203120752", + "qualifier": "", + "identifier": "http://www.idref.fr/203120752", + "numeration": "", + "preferred_name": "Lataste, Flore", + "authorized_access_point": "Lataste, Flore" + }, + { + "md5": "3ba7ba66a16bd1baad324af2cd1afde9", + "pid": "203359321", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/203359321", + "numeration": "", + "date_of_birth": "1980-08-29", + "preferred_name": "Morin, Damien", + "authorized_access_point": "Morin, Damien, 1980-....", + "biographical_information": [ + "Docteur en m\u00e9decine (en 2017)" + ] + }, + { + "md5": "3bdd2f7dea205851168b2c379b980479", + "pid": "204651913", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/204651913", + "numeration": "", + "date_of_birth": "1933-12-17", + "preferred_name": "Chiarini, Claude", + "authorized_access_point": "Chiarini, Claude", + "biographical_information": [ + "M\u00e9decin" + ] + }, + { + "md5": "e07e4a919fb8c6280be92cc7ec0edebc", + "pid": "220828164", + "language": [ + "fre" + ], + "qualifier": "dentiste", + "identifier": "http://www.idref.fr/220828164", + "numeration": "", + "preferred_name": "Andr\u00e9, Corinne, dentiste", + "authorized_access_point": "Andr\u00e9, Corinne, dentiste", + "biographical_information": [ + "Chirurgien dentiste" + ] + }, + { + "md5": "1b4a6de86ccc53df40c23377bac47bca", + "pid": "220890056", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/220890056", + "numeration": "", + "preferred_name": "Kraba, Karen Cheryl", + "authorized_access_point": "Kraba, Karen Cheryl", + "biographical_information": [ + "Titulaire d'une maitrise en Droit public, droit priv\u00e9 obtenue en 2016" + ] + }, + { + "md5": "086f027999daef7fb008fc08adbf32cf", + "pid": "221427767", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/221427767", + "numeration": "", + "date_of_birth": "19", + "preferred_name": "Foulon, V\u00e9ronique", + "authorized_access_point": "Foulon, V\u00e9ronique" + }, + { + "md5": "d5dd988761ee9662e80d799d3c2e8023", + "pid": "221761942", + "language": [ + "spa" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/221761942", + "numeration": "", + "variant_name": [ + "Laveaga, Mario Hinojos", + "Hinojos, Mario" + ], + "date_of_birth": "1982", + "preferred_name": "Hinojos Laveaga, Mario", + "authorized_access_point": "Hinojos Laveaga, Mario, 1982-...." + }, + { + "md5": "871c52efd346c25e0ce11b83a9876a57", + "pid": "22344250X", + "language": [ + "ger" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/22344250X", + "numeration": "", + "date_of_birth": "18XX", + "date_of_death": "19XX", + "preferred_name": "Schw\u00f6rbel, Heribert", + "authorized_access_point": "Schw\u00f6rbel, Heribert, 18..-19..", + "biographical_information": [ + "Auteur d'une th\u00e8se de droit soutenue \u00e0 l'Universit\u00e9 d'Erlangen, Allemagne, en 1906." + ] + }, + { + "md5": "2094f4b1752ca3f690f4f9046a1bcb4c", + "pid": "223491071", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/223491071", + "numeration": "", + "date_of_birth": "19", + "preferred_name": "Driole, Jean", + "authorized_access_point": "Driole, Jean", + "biographical_information": [ + "Auteur d'une th\u00e8se en sciences de l'ing\u00e9nieur", + "Directeur de th\u00e8se \u00e0 Grenoble INPG" + ] + }, + { + "md5": "f861c932cf004208fecf5f62a4f35deb", + "pid": "224210963", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/224210963", + "numeration": "", + "preferred_name": "Peyr\u00e9, Fr\u00e9d\u00e9ric", + "authorized_access_point": "Peyr\u00e9, Fr\u00e9d\u00e9ric", + "biographical_information": [ + "Ma\u00eetre de conf\u00e9rences en langue et civilisation anglaises, \u00e0 l'universit\u00e9 de Lille Sciences humaines et sociales (2018)" + ] + }, + { + "md5": "2ccebe74f30e82c59e83d26bc0f5252b", + "pid": "224789147", + "language": [ + "spa" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/224789147", + "numeration": "", + "preferred_name": "Lemus, Samuel Bernardo", + "authorized_access_point": "Lemus, Samuel Bernardo", + "biographical_information": [ + "Auteur d'un ouvrage de chansons mexicaines" + ] + }, + { + "md5": "28ad915217cf93a012074ab85b5d6f5a", + "pid": "224794272", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/224794272", + "numeration": "", + "date_of_birth": "19..--", + "preferred_name": "Fiedrich, Frank", + "authorized_access_point": "Fiedrich, Frank, 19..-", + "biographical_information": [ + "Institute for Public Safety and Emergency Management, Universit\u00e9 de Wuppertal, Allemagne" + ] + }, + { + "md5": "07bda51aa5794bf4ca0ed6e59aa8f808", + "pid": "224875868", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/224875868", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "Bacci, Alberto", + "authorized_access_point": "Bacci, Alberto, 19..-....", + "biographical_information": [ + "Directeur de th\u00e8se \u00e0 l'Universit\u00e9 Pierre et Marie Curie, Paris en 2017" + ] + }, + { + "md5": "9e49e0ca52894992d650b0dd48447f75", + "pid": "224991523", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/224991523", + "numeration": "", + "date_of_birth": "19", + "preferred_name": "Math\u00e9o, Christine", + "authorized_access_point": "Math\u00e9o, Christine", + "biographical_information": [ + "Com\u00e9dienne, clown dans les services p\u00e9diatriques pour l'association Th\u00e9odora, 2018" + ] + }, + { + "md5": "89b45ec30f4b304ba6933bf192a377e4", + "pid": "225402475", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/225402475", + "numeration": "", + "date_of_birth": "1991-03-18", + "preferred_name": "Bahri, Racha", + "authorized_access_point": "Bahri, Racha, 1991-....", + "biographical_information": [ + "Auteur d'une th\u00e8se en Immunologie, oncologie et infectiologie \u00e0 Limoges en 2017" + ] + }, + { + "md5": "a9d72adbde14689969c5b3cacdd3cfac", + "pid": "225803658", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/225803658", + "numeration": "", + "variant_name": [ + "Davies, John, John Michael" + ], + "date_of_birth": "1942-06-01", + "preferred_name": "Davies, John Michael", + "authorized_access_point": "Davies, John Michael, 1942-...." + }, + { + "md5": "14e4cd135e2bab87ee0381a3745397d1", + "pid": "226149390", + "qualifier": "", + "identifier": "http://www.idref.fr/226149390", + "numeration": "", + "preferred_name": "Taragonet, M.E.", + "authorized_access_point": "Taragonet, M.E." + }, + { + "md5": "c43f7241873dce4c1e513af8b2843fcf", + "pid": "226257444", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/226257444", + "numeration": "", + "date_of_birth": "1990-07-13", + "preferred_name": "Gosselin, David", + "authorized_access_point": "Gosselin, David, 1990-....", + "biographical_information": [ + "Auteur d'une th\u00e8se en M\u00e9canique des fluides Energ\u00e9tique, Proc\u00e9d\u00e9s \u00e0 Grenoble Alpes en 2017" + ] + }, + { + "md5": "f5b8efbbfe09b0e264a055f80464b09c", + "pid": "226958728", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/226958728", + "numeration": "", + "date_of_birth": "1984", + "preferred_name": "Bouhia, Manal", + "authorized_access_point": "Bouhia, Manal", + "biographical_information": [ + "\u00c9l\u00e8ve ing\u00e9nieur ENSAIT" + ] + }, + { + "md5": "18f3d7e2ef9ee2b7c18a2dc3aa0fdce4", + "pid": "227327551", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/227327551", + "numeration": "", + "preferred_name": "Ringard, Justine", + "authorized_access_point": "Ringard, Justine", + "biographical_information": [ + "Titulaire d'une th\u00e8se de sciences de l'environnement soutenue \u00e0 l'Universit\u00e9 de Guyane le 25 septembre 2017" + ] + }, + { + "md5": "ebf9e4745805c3f8bbea9d1407693fc0", + "pid": "22749900X", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/22749900X", + "numeration": "", + "date_of_birth": "1991-06-04", + "preferred_name": "Dupont, Cl\u00e9ment", + "authorized_access_point": "Dupont, Cl\u00e9ment, 1991-....", + "biographical_information": [ + "Auteur d'une th\u00e8se en Biophysique (M\u00e9decine) \u00e0 Lille 2 en 2017" + ] + }, + { + "md5": "1e5eb7d189d89fc824a73b33621cc050", + "pid": "227583752", + "language": [ + "chi" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/227583752", + "numeration": "", + "preferred_name": "Zheng, Ming", + "authorized_access_point": "Zheng, Ming", + "biographical_information": [ + "Traducteur (chinois-fran\u00e7ais)" + ] + }, + { + "md5": "aac1d52daaf44e60c802e8391aa51919", + "pid": "228263050", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/228263050", + "numeration": "", + "date_of_birth": "1991-11-18", + "preferred_name": "Frajer, Ga\u00eblla", + "authorized_access_point": "Frajer, Ga\u00eblla, 1991-....", + "biographical_information": [ + "Auteur d'une th\u00e8se en Physique des mat\u00e9riaux \u00e0 Grenoble Alpes en 2018" + ] + }, + { + "md5": "90b2f6873bbf09640b516a3c4f30fe5f", + "pid": "229619231", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/229619231", + "numeration": "", + "preferred_name": "Muratti, Louna", + "authorized_access_point": "Muratti, Louna", + "biographical_information": [ + "Com\u00e9dienne" + ] + }, + { + "md5": "5d9e7ec697e8ee4aa58d473ea3183166", + "pid": "230956866", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/230956866", + "numeration": "", + "variant_name": [ + "Bennetot-Olive, St\u00e9phanie Cotton de", + "Cotton de Bennetot, St\u00e9phanie", + "Olive, St\u00e9phanie", + "Olive, St\u00e9phanie Cotton de Bennetot-" + ], + "date_of_birth": "19..", + "preferred_name": "Cotton de Bennetot-Olive, St\u00e9phanie", + "authorized_access_point": "Cotton de Bennetot-Olive, St\u00e9phanie", + "biographical_information": [ + "M\u00e9decin. Auteur d'un m\u00e9moire pour l'obtention du master 2 \"Risques sanitaires radionucl\u00e9aires, biologiques, chimiques et explosifs\" (2018, Sorbonne Universit\u00e9)" + ] + }, + { + "md5": "74d874baf61edd4bb7d48e0a37a088de", + "pid": "232278431", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/232278431", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "Douglas, Claire", + "authorized_access_point": "Douglas, Claire", + "biographical_information": [ + "Psychologue clinicienne et psychanalyste jungienne. - Membre de : C. G. Jung society of Southern California, Los Angeles, Calif., \u00c9tats-Unis (en 1997)" + ] + }, + { + "md5": "3f27d3254f1f5cc21a5b21774275ad16", + "pid": "232530343", + "language": [ + "geo", + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/232530343", + "numeration": "", + "variant_name": [ + "Bibileichvili, Tsissana", + "Bibilei\u0161vili, C\u02bbisana" + ], + "date_of_birth": "19", + "preferred_name": "Bibil\u00e9ichvili, Tsissana", + "authorized_access_point": "Bibil\u00e9ichvili, Tsissana, 19..-...." + }, + { + "md5": "32eb5979ec6216fc35b0993a714ab844", + "pid": "232656770", + "qualifier": "", + "identifier": "http://www.idref.fr/232656770", + "numeration": "", + "preferred_name": "Alves de Oliveira Melo, Alfredo", + "authorized_access_point": "Alves de Oliveira Melo, Alfredo", + "biographical_information": [ + "Titulaire d'un doctorat en sciences de gestion \u00e0 l'Universit\u00e9 Paris-Dauphine (1983)" + ] + }, + { + "md5": "66fdcc460ea27a724e0d01129dfc383b", + "pid": "232804788", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/232804788", + "numeration": "", + "variant_name": [ + "Pierce, William Jr.", + "William Pierce of Georgia" + ], + "date_of_birth": "1753", + "date_of_death": "1789", + "preferred_name": "Pierce, William", + "authorized_access_point": "Pierce, William, 1753-1789", + "biographical_information": [ + "Officier de l'arm\u00e9e pendant la guerre d'ind\u00e9pendance am\u00e9ricaine et un membre de la Convention constitutionnelle des \u00c9tats-Unis de 1787" + ] + }, + { + "md5": "81642424db998f2dcd364eb7d699a48b", + "pid": "232810265", + "qualifier": "", + "identifier": "http://www.idref.fr/232810265", + "numeration": "", + "preferred_name": "Leunen, Nico", + "authorized_access_point": "Leunen, Nico", + "biographical_information": [ + "Sc\u00e9nariste" + ] + }, + { + "md5": "fcb535f0fb7a90fe30c37511a584d1fd", + "pid": "233220984", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/233220984", + "numeration": "", + "date_of_birth": "1878", + "date_of_death": "1954", + "preferred_name": "Sergent, Louis", + "authorized_access_point": "Sergent, Louis, 1878-1954", + "biographical_information": [ + "Pharmacien" + ] + }, + { + "md5": "261c302815b62b9c1e7cfef3f536faab", + "pid": "23322758X", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/23322758X", + "numeration": "", + "date_of_birth": "1955", + "date_of_death": "2017", + "preferred_name": "Dick, Beau", + "authorized_access_point": "Dick, Beau, 1955-2017", + "biographical_information": [ + "Sculpteur. Chef kwakwaka'wakw de la c\u00f4te nord-ouest d'Alert Bay, en Colombie-Britannique, au Canada" + ] + }, + { + "md5": "65341b9a528ea95442e8fd5347e3e10c", + "pid": "234195576", + "qualifier": "", + "identifier": "http://www.idref.fr/234195576", + "numeration": "", + "preferred_name": "Cabaleiro-Jouad\u00e9, Ir\u00e8ne", + "authorized_access_point": "Cabaleiro-Jouad\u00e9, Ir\u00e8ne", + "biographical_information": [ + "Illustratrice, directrice d'\u00e9cole" + ] + }, + { + "md5": "8acb0cc55af09647b17b0133d815de0d", + "pid": "234246820", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/234246820", + "numeration": "", + "date_of_birth": "1990-01-26", + "preferred_name": "Fasquelle, Justine", + "authorized_access_point": "Fasquelle, Justine, 1990-....", + "biographical_information": [ + "Auteur d'une th\u00e8se en Sciences de gestion \u00e0 Grenoble Alpes en 2018" + ] + }, + { + "md5": "df9f89b883824f4b9df9be87ec79e8cb", + "pid": "234251433", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/234251433", + "numeration": "", + "preferred_name": "Gagni\u00e8re, Claude-Jean", + "authorized_access_point": "Gagni\u00e8re, Claude-Jean", + "biographical_information": [ + "Auteur d'une th\u00e8se soutenue \u00e0 la Facult\u00e9 de Droit de Montpellier en 1952" + ] + }, + { + "md5": "e1a34f1ae00f3cf022aed102ecf0ddf9", + "pid": "234587989", + "language": [ + "jpn" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/234587989", + "numeration": "", + "date_of_birth": "1924", + "date_of_death": "2015", + "preferred_name": "\u6a4b\u672c, \u7fa9\u5f66", + "authorized_access_point": "\u6a4b\u672c, \u7fa9\u5f66, 1924-2015", + "biographical_information": [ + "Transcription Hepburn modifi\u00e9", + "Historien japonais sp\u00e9cialiste de la noblesse et de la cour japonaises durant la p\u00e9riode Heian" + ] + }, + { + "md5": "b1116535772e3a61595e19729ce03ca6", + "pid": "234715723", + "language": [ + "jpn" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/234715723", + "numeration": "", + "date_of_birth": "1930", + "date_of_death": "....", + "preferred_name": "\u6c5f\u53e3, \u6b63\u5f18", + "authorized_access_point": "\u6c5f\u53e3, \u6b63\u5f18, 1930-....", + "biographical_information": [ + "Transcription Hepburn modifi\u00e9" + ] + }, + { + "md5": "e1f6d3b52ed14e5cde9ce4621e692af1", + "pid": "235030929", + "language": [ + "por" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/235030929", + "numeration": "", + "preferred_name": "Afonso, Rui Braz", + "authorized_access_point": "Afonso, Rui Braz", + "biographical_information": [ + "Professeur d'urbanisme, FAUP, Porto" + ] + }, + { + "md5": "0362628c7f6c7cd33c4b410296653909", + "pid": "235057657", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/235057657", + "numeration": "", + "preferred_name": "Goldrach, Noah", + "authorized_access_point": "Goldrach, Noah" + }, + { + "md5": "a78088d0767608d26e14a341b3fa6bd2", + "pid": "23527125X", + "language": [ + "ara" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/23527125X", + "numeration": "", + "variant_name": [ + "Na\u1e63r, Mursil" + ], + "date_of_birth": "1937", + "preferred_name": "Na\u1e63r, Mursal", + "authorized_access_point": "Na\u1e63r, Mursal, 1937-....", + "biographical_information": [ + "Juge. - Ancien pr\u00e9sident de la Cour d'appel druze" + ] + }, + { + "md5": "5fac651832346441f08d7f6f884db774", + "pid": "235301787", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/235301787", + "numeration": "", + "date_of_birth": "...", + "preferred_name": "Ribeiro, Marc H.", + "authorized_access_point": "Ribeiro, Marc H.", + "biographical_information": [ + "Cr\u00e9ateur de jeux" + ] + }, + { + "md5": "4b3230de49fe388ceff6c4ef67a11daf", + "pid": "237257521", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/237257521", + "numeration": "", + "preferred_name": "Lapp, Axel", + "authorized_access_point": "Lapp, Axel" + }, + { + "md5": "294ccf6d433ee3778f96fe320b9d0c70", + "pid": "238282694", + "language": [ + "fre" + ], + "qualifier": "comte de", + "identifier": "http://www.idref.fr/238282694", + "numeration": "", + "date_of_birth": "1732", + "date_of_death": "1808", + "preferred_name": "La Roque-Mons, Jean-Fran\u00e7ois, comte de", + "authorized_access_point": "La Roque-Mons, Jean-Fran\u00e7ois, 1732-1808, comte de", + "biographical_information": [ + "D\u00e9put\u00e9 de la noblesse de P\u00e9rigueux" + ] + }, + { + "md5": "dc9837e85d870cdb6904fc044bfebb7d", + "pid": "238704750", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/238704750", + "numeration": "", + "preferred_name": "Renaud, Jean-S\u00e9bastien", + "authorized_access_point": "Renaud, Jean-S\u00e9bastien", + "biographical_information": [ + "Professeur en mesure et \u00e9valuation au D\u00e9partement de m\u00e9decine familiale et de m\u00e9decine d'urgence de l'Universit\u00e9 de Laval" + ] + }, + { + "md5": "74687c5eb0bad78ceda25a89afabe085", + "pid": "238712435", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/238712435", + "numeration": "", + "date_of_birth": "19..", + "preferred_name": "Chabannes, Axelle", + "authorized_access_point": "Chabannes, Axelle, 19..-....", + "biographical_information": [ + "Ing\u00e9nieur en pr\u00e9vention des risques. M\u00e9moire de Master Pr\u00e9vention des Risques et Nuisances Technologiques industriels sp\u00e9cialit\u00e9 risques professionnels soutenu \u00e0 la facult\u00e9 de pharmacie d'Aix-Marseille Universit\u00e9 en septembre 2019" + ] + }, + { + "md5": "feaaa000a1eaff961e2ecade42f7496b", + "pid": "240312724", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/240312724", + "numeration": "", + "date_of_birth": "1990-07-09", + "preferred_name": "Quentin, Floriane", + "authorized_access_point": "Quentin, Floriane, 1990-....", + "biographical_information": [ + "Auteur en m\u00e9decine" + ] + }, + { + "md5": "8d5ef70a9a453484fcf959691968af41", + "pid": "240748069", + "language": [ + "nor" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/240748069", + "numeration": "", + "preferred_name": "Lavold, Bente", + "authorized_access_point": "Lavold, Bente", + "biographical_information": [ + "Etudes d'histoire et de philosophie. Travaille \u00e0 la Nationalbiblioteket Oslo en 2017" + ] + }, + { + "md5": "292fefaba91ae57fabb448b7e5eba5d0", + "pid": "241164168", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/241164168", + "numeration": "", + "date_of_birth": "1982-06-26", + "preferred_name": "Foroughi Nik, Rahim", + "authorized_access_point": "Foroughi Nik, Rahim, 1982-....", + "biographical_information": [ + "Auteur d'une th\u00e8se en Droit priv\u00e9 \u00e0 Nantes en 2019" + ] + }, + { + "md5": "1e94fbad257fc80dfb59e18af05b4613", + "pid": "241515033", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/241515033", + "numeration": "", + "preferred_name": "Guilloux, Sylvie", + "authorized_access_point": "Guilloux, Sylvie", + "biographical_information": [ + "Titulaire d'une th\u00e8se d'exercice en Chirurgie dentaire (Rennes : 1981)" + ] + }, + { + "md5": "52c656b78ce171b4fd4e07d6726d13ea", + "pid": "241716853", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/241716853", + "numeration": "", + "date_of_birth": "1993-04-28", + "preferred_name": "Bonnefoy, Astrid", + "authorized_access_point": "Bonnefoy, Astrid, 1993-....", + "biographical_information": [ + "Titulaire d'une th\u00e8se d'exercice de pharmacie soutenue \u00e0 Caen le 17 juin 2019" + ] + }, + { + "md5": "80b647c472d794320c7a60c283cdada8", + "pid": "24172726X", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/24172726X", + "numeration": "", + "date_of_birth": "18..", + "date_of_death": "19..", + "preferred_name": "Guillochon, R.", + "authorized_access_point": "Guillochon, R.", + "biographical_information": [ + "Ing\u00e9nieur agronome, inspecteur adjoint \u00e0 la caisse nationale de cr\u00e9dit agricole" + ] + }, + { + "md5": "db4a192255272e9d1dca223adefd0407", + "pid": "242007481", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/242007481", + "numeration": "", + "preferred_name": "Lindblad, Waldemar", + "authorized_access_point": "Lindblad, Waldemar" + }, + { + "md5": "fceeb4beab1648468194e399ea970d2f", + "pid": "242143814", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/242143814", + "numeration": "", + "preferred_name": "Murphy, James P.", + "authorized_access_point": "Murphy, James P." + }, + { + "md5": "95f11e1929914f8efc5fa37e904c710d", + "pid": "242158129", + "language": [ + "spa" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/242158129", + "numeration": "", + "date_of_birth": "18XX", + "preferred_name": "Salv\u00e1", + "authorized_access_point": "Salv\u00e1" + }, + { + "md5": "832a1d35b8027593aee1457a804b2452", + "pid": "242274455", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/242274455", + "numeration": "", + "date_of_birth": "19XX", + "preferred_name": "Baltzer, Th\u00e9o", + "authorized_access_point": "Baltzer, Th\u00e9o, 19..-....", + "biographical_information": [ + "Auteur d\u2019un m\u00e9moire de Master de Contr\u00f4le de Gestion, soutenu \u00e0 l'Universit\u00e9 de Strasbourg en 2019" + ] + }, + { + "md5": "cc591b72dba2abe67e07055f456a66c9", + "pid": "242293557", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/242293557", + "numeration": "", + "preferred_name": "Goepogui, Serge Moriba", + "authorized_access_point": "Goepogui, Serge Moriba", + "biographical_information": [ + "Titulaire d'un master 1 Sciences du langage, sp\u00e9cialit\u00e9 Analyse du discours, \u00e0 Besan\u00e7on, Universit\u00e9 de Franche-Comt\u00e9, en 2019" + ] + }, + { + "md5": "5bd3e6cdad63ea110b2815dfbaa08c8b", + "pid": "24245383X", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/24245383X", + "numeration": "", + "date_of_birth": "1989-08-28", + "preferred_name": "Belmaati cherkaoui, Mehdi", + "authorized_access_point": "Belmaati cherkaoui, Mehdi, 1989-....", + "biographical_information": [ + "Auteur d'une th\u00e8se en Sciences de la vie et de la sant\u00e9 \u00e0 Universit\u00e9 Paris-Saclay (ComUE) en 2019" + ] + }, + { + "md5": "9964b20a703aed302210a0c0abaf0e86", + "pid": "242927351", + "language": [ + "pol" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/242927351", + "numeration": "", + "date_of_birth": "19XX", + "preferred_name": "Sperka, Jerzy", + "authorized_access_point": "Sperka, Jerzy", + "biographical_information": [ + "Historien" + ] + }, + { + "md5": "8c558f40e8c04f4286a5c0c0ab83fa02", + "pid": "243749120", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/243749120", + "numeration": "", + "variant_name": [ + "Guay, L." + ], + "date_of_birth": "1949", + "preferred_name": "Guay, Luc", + "authorized_access_point": "Guay, Luc, 1949-...." + }, + { + "md5": "2d23e173d5aba0893a51d68269988862", + "pid": "243886179", + "language": [ + "gre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/243886179", + "numeration": "", + "preferred_name": "Sp\u0113li\u014dtak\u0113s, K.K", + "authorized_access_point": "Sp\u0113li\u014dtak\u0113s, K.K" + }, + { + "md5": "a1cd8fb3c1ff9bd8217d1cf7a7c65aeb", + "pid": "244888558", + "language": [ + "eng" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/244888558", + "numeration": "", + "preferred_name": "Moore, Nigel", + "authorized_access_point": "Moore, Nigel" + }, + { + "md5": "a2c6d3150b010572a10a0c0174b20a97", + "pid": "24507869X", + "qualifier": "", + "identifier": "http://www.idref.fr/24507869X", + "numeration": "", + "preferred_name": "Caldwel, Robert J.", + "authorized_access_point": "Caldwel, Robert J." + }, + { + "md5": "d9ed2620f8d740467653dfe9d6aed556", + "pid": "24515969X", + "language": [ + "fre" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/24515969X", + "numeration": "", + "date_of_birth": "18..", + "date_of_death": "18..", + "preferred_name": "Prieur, Edme-Andr\u00e9 S\u00e9verin", + "authorized_access_point": "Prieur, Edme-Andr\u00e9 S\u00e9verin, 18..-18..", + "biographical_information": [ + "M\u00e9decin" + ] + }, + { + "md5": "73750ac73e1f72155fd4aec8d4a2cade", + "pid": "245200142", + "language": [ + "ita" + ], + "qualifier": "", + "identifier": "http://www.idref.fr/245200142", + "numeration": "", + "variant_name": [ + "Barbaro, Luca Massino" + ], + "preferred_name": "Massino Barbero, Luca", + "authorized_access_point": "Massino Barbero, Luca", + "biographical_information": [ + "\u00e9crit sur l'art" + ] + } +] diff --git a/tests/data/aidref_metadata.csv b/tests/data/aidref_metadata.csv new file mode 100644 index 00000000..73b30ed8 --- /dev/null +++ b/tests/data/aidref_metadata.csv @@ -0,0 +1,265 @@ +2020-09-24 13:15:12.002744 2020-09-24 13:15:12.002749 0c9e5345-f9a9-4d75-ad2c-e1eed4c5aa77 {"md5": "931ee1484972d53a47084479766895d8", "pid": "188652647", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["cze"], "qualifier": "", "identifier": "http://www.idref.fr/188652647", "numeration": "", "date_of_birth": "1947-12-19", "preferred_name": "Hrach, Pavel", "authorized_access_point": "Hrach, Pavel, 1947-....", "biographical_information": ["Artiste peintre, graphiste designer, illustrateur et typographe. - Directeur artistique du Typo+ graphic design studio, Prague (en 2009)"]} 1 +2020-09-24 13:15:13.598535 2020-09-24 13:15:13.59854 d26682d0-800c-4a53-a66e-66adde35d835 {"md5": "902b74e8f9082b4ce9387c3fd3f5eccb", "pid": "16961834X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["por"], "qualifier": "", "identifier": "http://www.idref.fr/16961834X", "numeration": "", "date_of_birth": "1967", "preferred_name": "Sousa, Lúcio", "authorized_access_point": "Sousa, Lúcio, 1967-...."} 1 +2020-09-24 13:15:13.958067 2020-09-24 13:15:13.958074 e9f3b3e5-2cec-40a6-b194-d5c896178eb8 {"md5": "9e9fd4db7a81c8e9c5f893455fb80d1e", "pid": "053434080", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/053434080", "numeration": "", "variant_name": ["Subbaratnam Muthukrishnan"], "preferred_name": "Muthukrishnan, Subbaratnam", "authorized_access_point": "Muthukrishnan, Subbaratnam", "biographical_information": ["Biologiste. En poste : Department of biochemistry, Kansas state university, Manhattan (en 1999)"]} 1 +2020-09-24 13:15:17.29874 2020-09-24 13:15:17.298745 3c75c6aa-3f01-4a01-bb75-18d249492e0a {"md5": "2bb3828cf81119862dfb03dbd8906760", "pid": "201762641", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/201762641", "numeration": "", "date_of_birth": "1955-06-21", "preferred_name": "Weksler, Marcelo", "authorized_access_point": "Weksler, Marcelo, 1955-....", "biographical_information": ["Auteur d'une thèse en Sciences de l'éducation à Sorbonne Paris Cité en 2015"]} 1 +2020-09-24 13:15:17.63179 2020-09-24 13:15:17.631795 f34d6930-42e2-4660-afee-18f4a7565039 {"md5": "e07e4a919fb8c6280be92cc7ec0edebc", "pid": "220828164", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "dentiste", "identifier": "http://www.idref.fr/220828164", "numeration": "", "preferred_name": "André, Corinne, dentiste", "authorized_access_point": "André, Corinne, dentiste", "biographical_information": ["Chirurgien dentiste"]} 1 +2020-09-24 13:15:18.204039 2020-09-24 13:15:18.204044 2d46a515-2f5e-46c3-84e5-213ef73a105c {"md5": "2094f4b1752ca3f690f4f9046a1bcb4c", "pid": "223491071", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/223491071", "numeration": "", "date_of_birth": "19", "preferred_name": "Driole, Jean", "authorized_access_point": "Driole, Jean", "biographical_information": ["Auteur d'une thèse en sciences de l'ingénieur", "Directeur de thèse à Grenoble INPG"]} 1 +2020-09-24 13:15:18.736348 2020-09-24 13:15:18.736353 0d2080c1-9abb-4204-b82c-1c69fdfc4512 {"md5": "9e49e0ca52894992d650b0dd48447f75", "pid": "224991523", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/224991523", "numeration": "", "date_of_birth": "19", "preferred_name": "Mathéo, Christine", "authorized_access_point": "Mathéo, Christine", "biographical_information": ["Comédienne, clown dans les services pédiatriques pour l'association Théodora, 2018"]} 1 +2020-09-24 13:15:19.456942 2020-09-24 13:15:19.456947 1cd3c7d3-6f8a-497d-88d3-766a69e7f08c {"md5": "e1f6d3b52ed14e5cde9ce4621e692af1", "pid": "235030929", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["por"], "qualifier": "", "identifier": "http://www.idref.fr/235030929", "numeration": "", "preferred_name": "Afonso, Rui Braz", "authorized_access_point": "Afonso, Rui Braz", "biographical_information": ["Professeur d'urbanisme, FAUP, Porto"]} 1 +2020-09-24 13:15:19.819984 2020-09-24 13:15:19.819988 33912d20-6946-41ee-bd24-067f26dff1a1 {"md5": "8acb0cc55af09647b17b0133d815de0d", "pid": "234246820", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/234246820", "numeration": "", "date_of_birth": "1990-01-26", "preferred_name": "Fasquelle, Justine", "authorized_access_point": "Fasquelle, Justine, 1990-....", "biographical_information": ["Auteur d'une thèse en Sciences de gestion à Grenoble Alpes en 2018"]} 1 +2020-09-24 13:15:20.167899 2020-09-24 13:15:20.167906 67a37d14-9a2d-4235-a063-f546eec8ccfc {"md5": "feaaa000a1eaff961e2ecade42f7496b", "pid": "240312724", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/240312724", "numeration": "", "date_of_birth": "1990-07-09", "preferred_name": "Quentin, Floriane", "authorized_access_point": "Quentin, Floriane, 1990-....", "biographical_information": ["Auteur en médecine"]} 1 +2020-09-24 13:15:21.269976 2020-09-24 13:15:21.269981 aee9105e-87b5-4203-bdfb-b3c57da15f86 {"md5": "52c656b78ce171b4fd4e07d6726d13ea", "pid": "241716853", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/241716853", "numeration": "", "date_of_birth": "1993-04-28", "preferred_name": "Bonnefoy, Astrid", "authorized_access_point": "Bonnefoy, Astrid, 1993-....", "biographical_information": ["Titulaire d'une thèse d'exercice de pharmacie soutenue à Caen le 17 juin 2019"]} 1 +2020-09-24 13:15:22.339376 2020-09-24 13:15:22.339381 249f6a13-968a-42bb-813d-c4b941d9b169 {"md5": "c7cf09ac1008f68340abbaaea1a06118", "pid": "030322995", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/030322995", "numeration": "", "variant_name": ["Caoursin, William", "Caorsinus, Guilelmus", "Caoursin, Guillelmus", "Cahoursin, Guillaume", "Caorsin, Gulielmo", "Caorsin, Guillermus", "Guillaume Caoursin"], "date_of_birth": "1430?", "date_of_death": "1455-08-24", "preferred_name": "Caoursin, Guillaume", "authorized_access_point": "Caoursin, Guillaume, 1430?-1501", "biographical_information": ["Vice-chancelier de l'Ordre de Saint-Jean de Jérusalem à partir de 1456 - Homme de cabinet et diplomate, il mena plusieurs ambassades en Italie en particulier à Rome, puis à Naples (1485)", "Lieu de naissance Douai (Nord). Lieu de décès Rhodes"]} 1 +2020-09-24 13:15:24.056807 2020-09-24 13:15:24.056812 ef7831a1-a0ba-4a41-b5c3-b9fae969aeb2 {"md5": "fba0421df0a30ddd59ae3d5a497a24db", "pid": "028495764", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "médiéviste", "identifier": "http://www.idref.fr/028495764", "numeration": "", "date_of_birth": "1920-05-15", "preferred_name": "Krüger, Sabine, médiéviste", "authorized_access_point": "Krüger, Sabine, 1920-...., médiéviste", "biographical_information": ["Médiéviste"]} 1 +2020-09-24 13:15:25.290266 2020-09-24 13:15:25.290271 26fbd41c-5c40-48f2-b4b2-17d6ee5dd91c {"md5": "ba656457f771a3ffd8967eca87141b15", "pid": "030254515", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/030254515", "numeration": "", "variant_name": ["Richelet, César-Pierre", "Richelet, César Pierre"], "date_of_birth": "1626-11", "date_of_death": "1698-11-23", "preferred_name": "Richelet, Pierre", "authorized_access_point": "Richelet, Pierre, 1626-1698", "biographical_information": ["Lexicographe français"]} 1 +2020-09-24 13:15:25.940995 2020-09-24 13:15:25.941 341bfab0-45af-4590-9ce0-44998132823c {"md5": "95f11e1929914f8efc5fa37e904c710d", "pid": "242158129", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["spa"], "qualifier": "", "identifier": "http://www.idref.fr/242158129", "numeration": "", "date_of_birth": "18XX", "preferred_name": "Salvá", "authorized_access_point": "Salvá"} 1 +2020-09-24 13:15:27.89194 2020-09-24 13:15:27.891945 faa12921-1643-43d7-aac0-fb4b107c1b29 {"md5": "cd119125977dc10da424bee9781e405a", "pid": "060167181", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "Dr.", "identifier": "http://www.idref.fr/060167181", "numeration": "", "date_of_birth": "1970", "preferred_name": "Leitner, Marina, Dr.", "authorized_access_point": "Leitner, Marina, 1970-...., Dr.", "biographical_information": ["Psychologue, en 2001 travaille à un programme de recherche sur l'histoire de l'évolution des technique et thérapie psychanalytiques. Nombreuses publications sur l'histoire de la psychanalyse."]} 1 +2020-09-24 13:15:28.558713 2020-09-24 13:15:28.558717 b4eefddf-6d98-49a5-8177-136ab4fca13e {"md5": "365c5c00f8326b750f2f26d3ba714c16", "pid": "115078630", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/115078630", "numeration": "", "date_of_birth": "1921", "preferred_name": "Weisz, Paul B.", "authorized_access_point": "Weisz, Paul B., 1921-....", "biographical_information": ["Professeur de biologie, Brown university (1961)"]} 1 +2020-09-24 13:15:29.737153 2020-09-24 13:15:29.737158 62403459-9c0d-489c-9a9c-527f99571208 {"md5": "6dacc8260a5392f73a864ce07716d43d", "pid": "077437209", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "romancier", "identifier": "http://www.idref.fr/077437209", "numeration": "", "date_of_birth": "19..", "preferred_name": "Thompson, Paul B., romancier", "authorized_access_point": "Thompson, Paul B., 19..-...., romancier", "biographical_information": ["Romancier"]} 1 +2020-09-24 13:15:30.995215 2020-09-24 13:15:30.99522 a371f1dc-ae18-4bc0-95ce-0c2557a21bc8 {"md5": "d2352b4189e1b4cddc8980ceb1be9437", "pid": "026995050", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/026995050", "numeration": "", "date_of_birth": "1902", "date_of_death": "1986", "preferred_name": "Lot, Fernand", "authorized_access_point": "Lot, Fernand, 1902-1986", "biographical_information": ["Poète, essayiste, écrivain scientifique, botaniste"]} 1 +2020-09-24 13:15:31.710549 2020-09-24 13:15:31.710554 731469d3-d8bb-48c0-8286-0a69a84c4a7a {"md5": "0f3d883c57c4d9254b9039ff70d86473", "pid": "059213523", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/059213523", "numeration": "", "preferred_name": "Anzemberger, Guy P.", "authorized_access_point": "Anzemberger, Guy P.", "biographical_information": ["Consultant développement et recrutement"]} 1 +2020-09-24 13:15:32.338544 2020-09-24 13:15:32.338549 c44133c3-d4cd-40bd-b876-4a17c56ed489 {"md5": "6609b966b99d5cbb90047c7e43fbecb0", "pid": "199119961", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "historien", "identifier": "http://www.idref.fr/199119961", "numeration": "", "date_of_birth": "19..", "preferred_name": "Hübner, Hans, historien", "authorized_access_point": "Hübner, Hans, 19..-...., historien", "biographical_information": ["Professeur à l'Université de Halle - Wittenberg, Section Histoire et instruction civique (Staatsbürgerkunde) (en 1986)"]} 1 +2020-09-24 13:15:32.768926 2020-09-24 13:15:32.768931 3d09eb1f-47b4-441d-a345-b6e5ee709359 {"md5": "16ad9226ad08d0264767d201ec3cb0d6", "pid": "167228862", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/167228862", "numeration": "", "preferred_name": "Chaoui-Derieux, Dorothée", "authorized_access_point": "Chaoui-Derieux, Dorothée", "biographical_information": ["Archéologue. Ministère de la Culture, Service régional de l'archéologie (SRA)"]} 1 +2020-09-24 13:15:33.577266 2020-09-24 13:15:33.577271 3ef3b7c7-bfaa-41dc-bab6-c17b75b13390 {"md5": "c8aa2340462fa96242f743490e037b1c", "pid": "026994801", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/026994801", "numeration": "", "variant_name": ["Jacob, Bernard Lortat-"], "date_of_birth": "1941-01-01", "preferred_name": "Lortat-Jacob, Bernard", "authorized_access_point": "Lortat-Jacob, Bernard, 1941-....", "biographical_information": ["Ethnomusicologue. Directeur de recherche au CNRS et responsable du Laboratoire d'ethnomusicologie CBRS du Musée de l'homme, Paris (en 2001)"]} 1 +2020-09-24 13:15:37.559866 2020-09-24 13:15:37.559872 5889cc5d-1b94-4e1e-8ff9-6ef7913a2dca {"md5": "484f7417008192ad6e984686ffcc512f", "pid": "155746936", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/155746936", "numeration": "", "variant_name": ["Dochier, Luc", "Luc"], "date_of_birth": "1914-01-31", "date_of_death": "1996-05-21", "preferred_name": "Dochier, Paul", "authorized_access_point": "Dochier, Paul, 1914-1996", "biographical_information": ["Moine de l'Ordre des Cisterciens de la stricte observance (à partir de 1941/1949). - Moine de l'Abbaye Notre-Dame d'Aiguebelle (à Montjoyer, Drôme ; 1941-1946), puis du Prieuré de Notre-Dame-de-l'Atlas (à Tibhirine, Algérie). - Docteur en médecine (Lyon, 1939/1940)", "Lieu de naissance Bourg-de-Péage (Drôme). Lieu de décès Près de Lemdiyya (ou Médéa, Algérie)"]} 1 +2020-09-24 13:15:37.910105 2020-09-24 13:15:37.910111 552e8c55-752f-4e7d-824a-64b386861716 {"md5": "4f4d6f3b277d9df6a0b0485d137e5541", "pid": "185108385", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/185108385", "numeration": "", "variant_name": ["Madani El-, Rahma Benhamou"], "date_of_birth": "1966-09-07", "preferred_name": "Benhamou El Madani, Rahma", "authorized_access_point": "Benhamou El Madani, Rahma, 1966-....", "biographical_information": ["Réalisatrice algérienne"]} 1 +2020-09-24 13:15:38.667668 2020-09-24 13:15:38.667674 10556cb7-a425-4d71-b98e-06708c8d88ed {"md5": "ff42ac3b389fc1a254280887b6b123f5", "pid": "080152503", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/080152503", "numeration": "", "preferred_name": "Fages, Jacques", "authorized_access_point": "Fages, Jacques", "biographical_information": ["Ingénieur INSA-Toulouse, DEA en Sciences alimentaires. Professeur à l'école des Mines d'Albi-Carmaux (depuis 1996), directeur de thèse de doctorat en Génie des procédés à l'Ecole nationale supérieure des Mines de Paris (2003). Spécialiste en génie des procédés, biochimie, biotechnologies.", "Membre du jury lors de la soutenance de la thèse en Chimie et Physicochimie des matériaux par Mathieu Chirat(ENSCM, Montpellier, 2012)."]} 1 +2020-09-24 13:15:39.84437 2020-09-24 13:15:39.844375 4165155e-3f57-4842-a968-4e96b232a366 {"md5": "d2a8227df18df8ec897abece71cc9e7f", "pid": "07101120X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/07101120X", "numeration": "", "preferred_name": "Barrett-Ayres, Reginald", "authorized_access_point": "Barrett-Ayres, Reginald", "biographical_information": ["Musicologue. Spécialiste de Mozart et de Haydn"]} 1 +2020-09-24 13:15:43.202491 2020-09-24 13:15:43.202495 af6e176d-c5df-4720-98f2-17819ad12bc0 {"md5": "16a7401d2e94f18059c39604082436f3", "pid": "110185366", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["jpn"], "qualifier": "", "identifier": "http://www.idref.fr/110185366", "numeration": "", "date_of_birth": "1944", "preferred_name": "小和田, 哲男", "authorized_access_point": "小和田, 哲男, 1944-", "biographical_information": ["Professeur à l'Université de Shizuoka, Spécialist de l'histoire japonaise (en 2008)"]} 1 +2020-09-24 13:15:46.48779 2020-09-24 13:15:46.487795 c3e4a95b-8a7c-4f6b-bd68-8e8542ca70c4 {"md5": "7285e8264916e763889cdf4dfbeea1e2", "pid": "135192013", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ita", "fre"], "qualifier": "", "identifier": "http://www.idref.fr/135192013", "numeration": "", "date_of_birth": "1952?", "preferred_name": "Parisi, Chiara", "authorized_access_point": "Parisi, Chiara, 1970-....", "biographical_information": ["Commissaire d'exposition. Directrice du Centre international d'art et du paysage de l'île de Vassivière (2004-2011). Directrice des programmes culturels de la Monnaie de Paris (2011-2016)"]} 1 +2020-09-24 13:15:50.531579 2020-09-24 13:15:50.531585 2f2141a4-58c0-4855-b83f-d2334ba14aa5 {"md5": "7854798dab3224cd036ec0175afef817", "pid": "113738048", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://www.idref.fr/113738048", "numeration": "", "preferred_name": "Wiese, René", "authorized_access_point": "Wiese, René"} 1 +2020-09-24 13:15:54.110009 2020-09-24 13:15:54.110015 6a494ef0-9334-494d-a6fb-da68457257a4 {"md5": "a1cd8fb3c1ff9bd8217d1cf7a7c65aeb", "pid": "244888558", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/244888558", "numeration": "", "preferred_name": "Moore, Nigel", "authorized_access_point": "Moore, Nigel"} 1 +2020-09-24 13:15:54.46587 2020-09-24 13:15:54.465875 fce8b9d9-83c8-411f-8d13-5bd5bf19ffe5 {"md5": "5d0ec5c621c258f66c79a63bb0419feb", "pid": "060721995", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre", "ita"], "qualifier": "", "identifier": "http://www.idref.fr/060721995", "numeration": "", "date_of_birth": "19..", "preferred_name": "Mansouri, Nadia", "authorized_access_point": "Mansouri, Nadia, 19..-....", "biographical_information": ["Trad. d'italien en français"]} 1 +2020-09-24 13:15:54.857536 2020-09-24 13:15:54.857541 2311f030-eb9e-457f-b4d5-b7e30de58105 {"md5": "487219e1136fd23fd1ccd1997cc1b3f1", "pid": "128587679", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/128587679", "numeration": "", "date_of_birth": "1951-11-10", "preferred_name": "Redner, Sidney", "authorized_access_point": "Redner, Sidney, 1951-....", "biographical_information": ["Physicien. Professeur de physique à l'université de Boston, Mass., depuis 1989 (en 2017)"]} 1 +2020-09-24 13:15:56.240658 2020-09-24 13:15:56.240663 7ae59b46-1018-44d0-ade2-2b743ad2c5b6 {"md5": "3317cd017ff0ab3d799abc1089b9ad01", "pid": "155309668", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/155309668", "numeration": "", "date_of_birth": "19XX", "preferred_name": "Sorrells, Felipe D.", "authorized_access_point": "Sorrells, Felipe D."} 1 +2020-09-24 13:15:59.539846 2020-09-24 13:15:59.539852 dcfaa852-eab2-44d9-9af2-68fc566ef7c4 {"md5": "ff43cecf4aa627ee78c8ce166ba632f1", "pid": "170128687", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/170128687", "numeration": "", "date_of_birth": "19", "preferred_name": "Luard, Honey", "authorized_access_point": "Luard, Honey, 19..-....", "biographical_information": ["Directrice de publication. Spécialiste d'art"]} 1 +2020-09-24 13:16:00.574076 2020-09-24 13:16:00.574081 cc1bbdf3-b81d-46ad-8e85-bc572e976999 {"md5": "ad98e3c31c5986cef1c9a09720ed40d2", "pid": "084028750", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/084028750", "numeration": "", "preferred_name": "Bulut, Tarik", "authorized_access_point": "Bulut, Tarik"} 1 +2020-09-24 13:16:01.829708 2020-09-24 13:16:01.829712 03454ab9-eda2-4271-adc5-83d363fd077f {"md5": "2b1144e20c968ed7778612c385cc66e0", "pid": "168633248", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/168633248", "numeration": "", "date_of_birth": "1948", "preferred_name": "Martin, Lee-Ann", "authorized_access_point": "Martin, Lee-Ann, 1948-....", "biographical_information": ["Conservatrice de l'art amérindien, Musée canadien des civilisations, Ottawa (en 1992)"]} 1 +2020-09-24 13:16:02.621351 2020-09-24 13:16:02.621355 59bda656-6628-4f17-af15-6046f156f8cb {"md5": "a21d59a4bb241ba238266b59c626a217", "pid": "070328005", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ara"], "qualifier": "", "identifier": "http://www.idref.fr/070328005", "numeration": "", "variant_name": ["Hilāl Nāǧī", "Nājī, Hilāl", "Naji, Hilel"], "date_of_birth": "1929", "preferred_name": "ناجي, هلال", "authorized_access_point": "ناجي, هلال", "biographical_information": ["Professeur de langue arabe et historien."]} 1 +2020-09-24 13:16:03.295698 2020-09-24 13:16:03.295704 106caf6d-32cd-4825-99b6-f582218f69dd {"md5": "a78088d0767608d26e14a341b3fa6bd2", "pid": "23527125X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ara"], "qualifier": "", "identifier": "http://www.idref.fr/23527125X", "numeration": "", "variant_name": ["Naṣr, Mursil"], "date_of_birth": "1937", "preferred_name": "Naṣr, Mursal", "authorized_access_point": "Naṣr, Mursal, 1937-....", "biographical_information": ["Juge. - Ancien président de la Cour d'appel druze"]} 1 +2020-09-24 13:16:04.376467 2020-09-24 13:16:04.376472 e805319d-61e9-4d5f-afd0-d2b43b78e0fd {"md5": "0bf3f3ae13d5346fdfeabbe56d95b723", "pid": "050225146", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/050225146", "numeration": "", "variant_name": ["Henschel, G. A. L"], "date_of_birth": "1806", "date_of_death": "1852", "preferred_name": "Henschel, G. A. Louis", "authorized_access_point": "Henschel, G. A. Louis, 1806-1852", "biographical_information": ["A aussi écrit en allemand et en latin", "Philologue et lexicographe. Né à Minden (Allemagne), meurt à Paris"]} 1 +2020-09-24 13:16:06.503587 2020-09-24 13:16:06.503592 e56b85ae-1239-490f-acd2-3594664159f1 {"md5": "447cfbe302dea44e693a2ddbd52ae3ab", "pid": "082560757", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/082560757", "numeration": "", "preferred_name": "Florent, Romain", "authorized_access_point": "Florent, Romain"} 1 +2020-09-24 13:16:07.116757 2020-09-24 13:16:07.116762 0a21dd42-cc49-4fbf-bb7e-14dd8655db19 {"md5": "f74045fd033e07fade8ccdb2c913020e", "pid": "032638116", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/032638116", "numeration": "", "preferred_name": "Kaplan, Frederick S.", "authorized_access_point": "Kaplan, Frederick S.", "biographical_information": ["Chirurgien, spécialisé en chirurgie orthopédique"]} 1 +2020-09-24 13:16:08.44206 2020-09-24 13:16:08.442065 96ff58d2-de42-4517-a5f3-c3807d468ecb {"md5": "f6066866b2476b9b0994fa82043d4bfe", "pid": "147233429", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["rus"], "qualifier": "", "identifier": "http://www.idref.fr/147233429", "numeration": "", "preferred_name": "Lekhina, Ekaterina", "authorized_access_point": "Lekhina, Ekaterina", "biographical_information": ["Soprano"]} 1 +2020-09-24 13:16:09.155451 2020-09-24 13:16:09.155456 d3264b5c-cecb-418a-9c8f-ea0dbc8813d7 {"md5": "cf4ef4bc6a79d7d9e4f76824be961f7c", "pid": "058598928", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/058598928", "numeration": "", "date_of_birth": "1944", "preferred_name": "Nieto-Sampedro, Manuel", "authorized_access_point": "Nieto-Sampedro, Manuel, 1944-....", "biographical_information": ["En poste à \\"Instituto Cajal (CSIC), Madrid, Spain, en 2001"]} 1 +2020-09-24 13:16:09.518138 2020-09-24 13:16:09.518144 8168d0dd-37f3-4a29-806a-a5b9f527a035 {"md5": "39da3e8fa1ede024ab8cd1f35be3ccf6", "pid": "200141163", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/200141163", "numeration": "", "date_of_birth": "1894-05-14", "date_of_death": "1973-12-16", "preferred_name": "Rollin, Louis", "authorized_access_point": "Rollin, Louis, 1894-1973", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1927)"]} 1 +2020-09-24 13:16:10.421387 2020-09-24 13:16:10.421391 c136926b-8059-4977-96f8-30c5cd171fcb {"md5": "4c6aba49881fb4150857caa4b9664443", "pid": "149944586", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/149944586", "numeration": "", "preferred_name": "Salem, Maurice", "authorized_access_point": "Salem, Maurice"} 1 +2020-09-24 13:16:10.765704 2020-09-24 13:16:10.765709 392a8402-8107-46aa-b5cf-2a15e10b24fa {"md5": "5578772f68f6725f849d4b890ad87606", "pid": "161367070", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/161367070", "numeration": "", "date_of_birth": "19..", "preferred_name": "Merran, Stéphanie", "authorized_access_point": "Merran, Stéphanie"} 1 +2020-09-24 13:16:11.585322 2020-09-24 13:16:11.585326 25040f76-3366-47e6-9aae-d0684fb8b1ab {"md5": "d1a23ab6304dd727d2806cbd523d4261", "pid": "107090538", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://www.idref.fr/107090538", "numeration": "", "date_of_birth": "1937", "preferred_name": "Richter, Werner", "authorized_access_point": "Richter, Werner, 1937-...."} 1 +2020-09-24 13:16:12.439407 2020-09-24 13:16:12.439413 3b97b1be-050b-4a39-8e23-e7d738e49aeb {"md5": "eb6487fa7572d73ab6ccdc82667c9e00", "pid": "080608825", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/080608825", "numeration": "", "preferred_name": "Joseph, Branden Wayne", "authorized_access_point": "Joseph, Branden Wayne", "biographical_information": ["Professeur d'histoire de l'art, Université de Califorie (en 2003)"]} 1 +2020-09-24 13:16:15.449159 2020-09-24 13:16:15.449164 e8a96072-dea3-4d2b-962a-48674bca14ce {"md5": "cb14420f5a9edbc24d31b7b3113ea9fb", "pid": "056820151", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["und"], "qualifier": "", "identifier": "http://www.idref.fr/056820151", "numeration": "", "preferred_name": "Frisch, Christine", "authorized_access_point": "Frisch, Christine"} 1 +2020-09-24 13:16:17.000355 2020-09-24 13:16:17.000359 ae046224-2a36-4c3a-bd88-b09b24de8796 {"md5": "c08fe4347c43c70d3ed46ac0c02f83f1", "pid": "121469395", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/121469395", "numeration": "", "date_of_birth": "1943", "preferred_name": "Jurjevics, Juris", "authorized_access_point": "Jurjevics, Juris, 1943-....", "biographical_information": ["Né en Lituanie"]} 1 +2020-09-24 13:16:22.117268 2020-09-24 13:16:22.117273 c09580c1-87f1-4a35-9bd2-0ecd089513ca {"md5": "c00353d4242cd203d361cd10c8bb4ef9", "pid": "137405723", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["chi"], "qualifier": "", "identifier": "http://www.idref.fr/137405723", "numeration": "", "variant_name": ["Hsü, Min"], "preferred_name": "徐, 敏", "authorized_access_point": "徐, 敏"} 1 +2020-09-24 13:16:22.966427 2020-09-24 13:16:22.966433 5288d293-fb47-4339-9ca5-2e09de02b5f0 {"md5": "aac1d52daaf44e60c802e8391aa51919", "pid": "228263050", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/228263050", "numeration": "", "date_of_birth": "1991-11-18", "preferred_name": "Frajer, Gaëlla", "authorized_access_point": "Frajer, Gaëlla, 1991-....", "biographical_information": ["Auteur d'une thèse en Physique des matériaux à Grenoble Alpes en 2018"]} 1 +2020-09-24 13:16:24.394066 2020-09-24 13:16:24.394071 d3d78b9b-bb09-4fd4-a81d-7a7ce15c8fe5 {"md5": "a03516b7ec61fadc8c7aa23ddeccf54b", "pid": "162460163", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/162460163", "numeration": "", "preferred_name": "Georgoulas, Stratos", "authorized_access_point": "Georgoulas, Stratos"} 1 +2020-09-24 13:16:25.220091 2020-09-24 13:16:25.220096 aad2cfc3-760c-43ad-9556-d3f8ce63da50 {"md5": "d5a5c266445af22e4c64772b1e28c16f", "pid": "185264352", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/185264352", "numeration": "", "preferred_name": "Keckler, Stephen W.", "authorized_access_point": "Keckler, Stephen W.", "biographical_information": ["En poste : University of Texas, Austin, États-Unis (en 2009)"]} 1 +2020-09-24 13:16:25.612177 2020-09-24 13:16:25.612182 85c64be0-5247-4c22-b11a-afb5dcc20f4b {"md5": "23abb593f515f2855a2265a3e9390cdf", "pid": "069064830", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/069064830", "numeration": "", "date_of_birth": "1857-10-25", "date_of_death": "1938-02-10", "preferred_name": "Buland, Émile", "authorized_access_point": "Buland, Émile, 1857-1938", "biographical_information": ["Prénoms complets : Jean Emile", "Graveur. Elu, le 19 décembre 1925, membre titulaire de l'Académie des Beaux-Arts"]} 1 +2020-09-24 13:16:31.312492 2020-09-24 13:16:31.312497 9ef9a7c9-495b-43ab-8bde-fc9c9a4232d1 {"md5": "639fbd8117708d0110aa1bc4b86aa7f1", "pid": "145661806", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://www.idref.fr/145661806", "numeration": "", "preferred_name": "Finke, Timo", "authorized_access_point": "Finke, Timo"} 1 +2020-09-24 13:16:36.658869 2020-09-24 13:16:36.658873 7a4778cc-207a-4439-aa91-fcb31c5bfb99 {"md5": "1211f023c41692978bdd71114eb8942f", "pid": "137773927", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/137773927", "numeration": "", "date_of_birth": "1968", "preferred_name": "Bernheimer, Andrew", "authorized_access_point": "Bernheimer, Andrew, 1968-....", "biographical_information": ["Architecte américain. - Crée, en 1996, avec Jared Della Valle, l'agence Della Valle Bernheimer Design, basée à New-York, dissoute en 2010"]} 1 +2020-09-24 13:16:37.452668 2020-09-24 13:16:37.452672 11f50ac5-9f51-45cd-84f4-21907d587b85 {"md5": "ffe650112ed6611538f0de34c34e92be", "pid": "07505924X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["spa"], "qualifier": "", "identifier": "http://www.idref.fr/07505924X", "numeration": "", "date_of_birth": "1944-06-24", "preferred_name": "Goetz, Arturo", "authorized_access_point": "Goetz, Arturo, 1944-....", "biographical_information": ["Acteur argentin"]} 1 +2020-09-24 13:16:39.034799 2020-09-24 13:16:39.034804 edc41c90-9571-4247-9cbb-c1977cf60ea3 {"md5": "8d5ef70a9a453484fcf959691968af41", "pid": "240748069", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["nor"], "qualifier": "", "identifier": "http://www.idref.fr/240748069", "numeration": "", "preferred_name": "Lavold, Bente", "authorized_access_point": "Lavold, Bente", "biographical_information": ["Etudes d'histoire et de philosophie. Travaille à la Nationalbiblioteket Oslo en 2017"]} 1 +2020-09-24 13:16:39.403548 2020-09-24 13:16:39.403554 02743a0f-4691-4de6-abc1-4a2e4d7509d2 {"md5": "d3080df742f2c38bd124acd12a77e0e2", "pid": "077813138", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/077813138", "numeration": "", "preferred_name": "Schneikert, Elisabeth", "authorized_access_point": "Schneikert, Elisabeth", "biographical_information": ["Titulaire d'un doctorat en Littérature française, Strasbourg 2, 2004"]} 1 +2020-09-24 13:16:41.417139 2020-09-24 13:16:41.417144 b634e57f-91af-4813-b077-e105e2b10a7a {"md5": "7441b14c330f4fffa56b9c844e5b4198", "pid": "152016872", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/152016872", "numeration": "", "date_of_birth": "1943-11-13", "preferred_name": "Hilliard, Raymond F.", "authorized_access_point": "Hilliard, Raymond F., 1943-...."} 1 +2020-09-24 13:16:42.328302 2020-09-24 13:16:42.328307 550d9856-7bd9-4b11-b8f8-9959c2d16561 {"md5": "8f39153cb5484edc0e021682d2bae227", "pid": "197394795", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre", "eng"], "qualifier": "", "identifier": "http://www.idref.fr/197394795", "numeration": "", "preferred_name": "Collins, Gary S.", "authorized_access_point": "Collins, Gary S.", "biographical_information": ["Professeur à l' Université d'Oxford; Examinateur d'une thèse en Sciences Chimiques et Biologiques pour la Santé à Montpellier en 2016"]} 1 +2020-09-24 13:16:44.4173 2020-09-24 13:16:44.417305 d6710cce-bd15-4fe0-a5e2-822bfa95eb8e {"md5": "bd93577c2768b52a07878912311190a4", "pid": "075899655", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/075899655", "numeration": "", "variant_name": ["Tavares da Costa, Carla", "Da Costa, Carla Tavares"], "preferred_name": "Costa, Carla Tavares da", "authorized_access_point": "Costa, Carla Tavares da"} 1 +2020-09-24 13:16:45.101354 2020-09-24 13:16:45.101359 c7bd7cf2-0a32-4268-85d4-9ae98b314ca8 {"md5": "dc9837e85d870cdb6904fc044bfebb7d", "pid": "238704750", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/238704750", "numeration": "", "preferred_name": "Renaud, Jean-Sébastien", "authorized_access_point": "Renaud, Jean-Sébastien", "biographical_information": ["Professeur en mesure et évaluation au Département de médecine familiale et de médecine d'urgence de l'Université de Laval"]} 1 +2020-09-24 13:16:45.939298 2020-09-24 13:16:45.939303 afe965f1-311b-406d-9d1c-ccc32f651d01 {"md5": "c175799be35e3712d03ad61f06b7041b", "pid": "192298348", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ita"], "qualifier": "", "identifier": "http://www.idref.fr/192298348", "numeration": "", "preferred_name": "Santini, Gianfranco", "authorized_access_point": "Santini, Gianfranco"} 1 +2020-09-24 13:16:46.29544 2020-09-24 13:16:46.295445 4f4a2744-472c-4488-9ffa-0f3d1ca81425 {"md5": "3dcfb2ada0351c7756e8b388da97b056", "pid": "192776851", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/192776851", "numeration": "", "preferred_name": "Vavouras, Ioannis", "authorized_access_point": "Vavouras, Ioannis", "biographical_information": ["En poste, Sociology Department, University of Aegean, Greece"]} 1 +2020-09-24 13:16:48.040541 2020-09-24 13:16:48.040547 463a8ce8-943a-4a6e-8978-2e7fd0dddfc6 {"md5": "a9d72adbde14689969c5b3cacdd3cfac", "pid": "225803658", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/225803658", "numeration": "", "variant_name": ["Davies, John, John Michael"], "date_of_birth": "1942-06-01", "preferred_name": "Davies, John Michael", "authorized_access_point": "Davies, John Michael, 1942-...."} 1 +2020-09-24 13:16:48.729907 2020-09-24 13:16:48.729913 2705e88b-747b-4df6-b3d2-d90ebc1e4748 {"md5": "6651d84df5802c68f498e7161502bbe8", "pid": "137790872", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://www.idref.fr/137790872", "numeration": "", "preferred_name": "Weber, Renaud", "authorized_access_point": "Weber, Renaud", "biographical_information": ["Juriste", "Avocat (en 2009)", "Juge d'instruction (Neuchâtel, Suisse) (en 2009)"]} 1 +2020-09-24 13:16:53.490248 2020-09-24 13:16:53.490253 327c4c9b-0172-4b11-925c-a4b4b7d7e076 {"md5": "242b006d71bed2fdee12824758fb242f", "pid": "178055328", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/178055328", "numeration": "", "date_of_birth": "19XX", "preferred_name": "Cahill, Kay", "authorized_access_point": "Cahill, Kay", "biographical_information": ["Bibliothécaire, Vancouver public library, Canada (en 2010). - Spécialiste des sites web et des services de références virtuelles"]} 1 +2020-09-24 13:16:58.585834 2020-09-24 13:16:58.585839 2ed57dcf-2545-4d85-abfe-204f5e8ed74d {"md5": "b7737315c35a142d01e159a87ecca353", "pid": "126698104", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/126698104", "numeration": "", "date_of_birth": "1965", "preferred_name": "Matthews, Gelien", "authorized_access_point": "Matthews, Gelien, 1965-....", "biographical_information": ["Enseigne l'histoire à Caribbean Nazarene College, Trinidad et Tobago"]} 1 +2020-09-24 13:17:00.228427 2020-09-24 13:17:00.228432 ba10815b-9b1c-47d9-891d-89d0ad3beac8 {"md5": "037b54e1da47be40870e96ff98dec309", "pid": "174162790", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["spa"], "qualifier": "", "identifier": "http://www.idref.fr/174162790", "numeration": "", "variant_name": ["Millamoto, MaríaEsther Quintana"], "preferred_name": "Quintana Millamoto, María Esther", "authorized_access_point": "Quintana Millamoto, María Esther"} 1 +2020-09-24 13:17:03.897405 2020-09-24 13:17:03.89741 91802099-0f89-4f97-a93e-9a5dcc43c13b {"md5": "f009955da96987ce4372665869500154", "pid": "121150283", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/121150283", "numeration": "", "date_of_birth": "1952--.-..", "preferred_name": "Haas, Jean-François", "authorized_access_point": "Haas, Jean-François, 1952-....", "biographical_information": ["Enseignant"]} 1 +2020-09-24 13:17:04.536483 2020-09-24 13:17:04.536489 80716633-440e-41e4-8538-47362ab8bdc9 {"md5": "62e50f88d1c88907ad0ee87a38b9c5bf", "pid": "119349043", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/119349043", "numeration": "", "preferred_name": "Bogdan-Verger, Olimpia", "authorized_access_point": "Bogdan-Verger, Olimpia", "biographical_information": ["Traduit du roumain au français"]} 1 +2020-09-24 13:17:05.598296 2020-09-24 13:17:05.598302 d39367d4-f9b5-4819-b03a-5ccea6243e30 {"md5": "9964b20a703aed302210a0c0abaf0e86", "pid": "242927351", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["pol"], "qualifier": "", "identifier": "http://www.idref.fr/242927351", "numeration": "", "date_of_birth": "19XX", "preferred_name": "Sperka, Jerzy", "authorized_access_point": "Sperka, Jerzy", "biographical_information": ["Historien"]} 1 +2020-09-24 13:17:06.672878 2020-09-24 13:17:06.672882 48d18270-2b9b-41a7-9130-1b1c0a3449a8 {"md5": "d74fa85764b7f4812e2b7cda7d599c61", "pid": "132394065", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ita"], "qualifier": "", "identifier": "http://www.idref.fr/132394065", "numeration": "", "preferred_name": "Isabella, Giovanni", "authorized_access_point": "Isabella, Giovanni"} 1 +2020-09-24 13:17:07.802667 2020-09-24 13:17:07.802672 11f4f94d-96f9-4e2f-b5f7-53683507c3ca {"md5": "b9073c121a04fa79e8c28f0db41b021d", "pid": "132110520", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["pol"], "qualifier": "", "identifier": "http://www.idref.fr/132110520", "numeration": "", "date_of_birth": "19", "preferred_name": "Bielawski, Józef", "authorized_access_point": "Bielawski, Józef"} 1 +2020-09-24 13:17:08.961144 2020-09-24 13:17:08.961149 48d19d49-f8b6-4cca-8974-062aadfacaad {"md5": "62b31aeeafad037b45aa8e81dfae80a0", "pid": "150724527", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["pol"], "qualifier": "", "identifier": "http://www.idref.fr/150724527", "numeration": "", "variant_name": ["Morelowski, Marjan"], "date_of_birth": "1884-03-06", "date_of_death": "1963-07-24", "preferred_name": "Morelowski, Marian", "authorized_access_point": "Morelowski, Marian, 1884-1963", "biographical_information": ["Historien d'art. - Professeur aux universités de Wroclaw et de Vilnius", "Lieu de naissance Wadowice, Pologne. Lieu de décès Wroclaw, Pologne"]} 1 +2020-09-24 13:17:09.801935 2020-09-24 13:17:09.80194 0cf106d7-8f3b-4353-8ba5-eea0d4a4997d {"md5": "4691dfa40dead870925459d4523f2be5", "pid": "145209512", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["pol"], "qualifier": "", "identifier": "http://www.idref.fr/145209512", "numeration": "", "preferred_name": "Dlugajczyk, Beata", "authorized_access_point": "Dlugajczyk, Beata"} 1 +2020-09-24 13:17:10.315409 2020-09-24 13:17:10.315414 80fccf65-0ec6-4a8a-acc9-424ba668130f {"md5": "a1f2306f3f78813bac673574c1a7506a", "pid": "140708987", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["pol"], "qualifier": "", "identifier": "http://www.idref.fr/140708987", "numeration": "", "preferred_name": "Wandowski, Henryk", "authorized_access_point": "Wandowski, Henryk", "biographical_information": ["Traducteur"]} 1 +2020-09-24 13:17:12.085235 2020-09-24 13:17:12.085241 ab1a4993-fc37-499f-8d8e-ee7c7e101a9e {"md5": "4e109f410c155a54620522d2162d871b", "pid": "167843052", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["pol"], "qualifier": "", "identifier": "http://www.idref.fr/167843052", "numeration": "", "preferred_name": "Zbierski, Andrzej", "authorized_access_point": "Zbierski, Andrzej"} 1 +2020-09-24 13:17:15.148377 2020-09-24 13:17:15.148382 96afa806-2c11-4968-83ef-d26f1820d382 {"md5": "7a1027b1b02d8ab40b4eb9e7d8ab6af0", "pid": "143329790", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["pol"], "qualifier": "", "identifier": "http://www.idref.fr/143329790", "numeration": "", "preferred_name": "Kruppé, Jerzy", "authorized_access_point": "Kruppé, Jerzy"} 1 +2020-09-24 13:17:18.598676 2020-09-24 13:17:18.598681 c304e45f-ea54-4376-93d2-9b7a99596949 {"md5": "e6cdc5fc9f62c64a01a8ba0172fd3fef", "pid": "199828121", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/199828121", "numeration": "", "date_of_birth": "1991-06-24", "preferred_name": "Girardo, Claudine", "authorized_access_point": "Girardo, Claudine, 1991-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Médecine Vétérinaire (Lyon 1, 2016)"]} 1 +2020-09-24 13:17:18.953339 2020-09-24 13:17:18.953345 5e0ce50a-e098-4849-b1d2-d21eb4bcf819 {"md5": "99d5e07045b026fa8ba5108ffe342f20", "pid": "199742022", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/199742022", "numeration": "", "preferred_name": "Trinquet, Paulette", "authorized_access_point": "Trinquet, Paulette", "biographical_information": ["Inspectrice de l'Éducation nationale"]} 1 +2020-09-24 13:17:19.792653 2020-09-24 13:17:19.792658 753108ef-fdcb-4d92-b44a-f3fbfa9804ac {"md5": "ebf9e4745805c3f8bbea9d1407693fc0", "pid": "22749900X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/22749900X", "numeration": "", "date_of_birth": "1991-06-04", "preferred_name": "Dupont, Clément", "authorized_access_point": "Dupont, Clément, 1991-....", "biographical_information": ["Auteur d'une thèse en Biophysique (Médecine) à Lille 2 en 2017"]} 1 +2020-09-24 13:17:25.319987 2020-09-24 13:17:25.319993 fa146dad-d9e1-4fb0-bd20-1f8a21256aa2 {"md5": "07f3f84ff33f959595ab72b38edca703", "pid": "140489436", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/140489436", "numeration": "", "date_of_birth": "1936-10-13", "preferred_name": "Hancock, David", "authorized_access_point": "Hancock, David, 1936-...."} 1 +2020-09-24 13:17:25.995721 2020-09-24 13:17:25.995726 bc070c9d-5b98-4d92-af83-d7401c22ca20 {"md5": "80eb95333b46f7892d86dc1261855494", "pid": "079303315", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/079303315", "numeration": "", "variant_name": ["Bernardino de Arevalo", "Bernardino de Arevallo", "Arevalo, Bernardin d'"], "date_of_birth": "1492", "date_of_death": "1553", "preferred_name": "Bernardinus de Arevalo", "authorized_access_point": "Bernardinus de Arevalo, 1492-1553", "biographical_information": ["Religieux espagnol. Prédicateur renommé. Plusieurs fois ministre provincial de la Province de la Conception. Séjourna au Mexique comme missionnaire, et premier Commissaire général des \\"Indes Occidentales\\"."]} 1 +2020-09-24 13:17:27.07629 2020-09-24 13:17:27.076295 4a2e4915-ea0d-4465-a96d-ce0fafd385ee {"md5": "67487e1d2202ae433ed94ad61d9f1636", "pid": "032207107", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/032207107", "numeration": "", "variant_name": ["Savigny"], "date_of_birth": "1820-01-19", "date_of_death": "1892-10-23", "preferred_name": "Lavoix, Henri", "authorized_access_point": "Lavoix, Henri, 1820-1892", "biographical_information": ["Bibliographe. Conservateur au Département des médailles et antiques de la Bibliothèque Nationale, Paris. Critique dramatique et musical à l'\\"Illustration\\" sous le pseudonyme de Savigny"]} 1 +2020-09-24 13:17:27.68263 2020-09-24 13:17:27.682634 0afdde1f-1624-4675-af8f-1bd1bcf600d5 {"md5": "2fe2c073d810766f1f749b5350c94c61", "pid": "034931929", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["swe"], "qualifier": "", "identifier": "http://www.idref.fr/034931929", "numeration": "", "date_of_birth": "1959", "preferred_name": "Hansen, Peter", "authorized_access_point": "Hansen, Peter, 1959-....", "biographical_information": ["Historien de la littérature"]} 1 +2020-09-24 13:17:35.410289 2020-09-24 13:17:35.410294 93cfe746-accf-40dd-8540-0f1d59ffe213 {"md5": "2d23e173d5aba0893a51d68269988862", "pid": "243886179", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["gre"], "qualifier": "", "identifier": "http://www.idref.fr/243886179", "numeration": "", "preferred_name": "Spēliōtakēs, K.K", "authorized_access_point": "Spēliōtakēs, K.K"} 1 +2020-09-24 13:17:46.221002 2020-09-24 13:17:46.221006 4f36d238-3bfd-421a-b6a1-b44addb592ac {"md5": "96ea46ad8f646b08a097781226fcefd8", "pid": "162154224", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://www.idref.fr/162154224", "numeration": "", "date_of_birth": "1973", "preferred_name": "Popp, Julius", "authorized_access_point": "Popp, Julius, 1973-....", "biographical_information": ["Artiste plasticien. Installateur. Photographe. Né à Nuremberg. Vit à Leipzig, Allemagne"]} 1 +2020-09-24 13:17:47.418026 2020-09-24 13:17:47.418031 4b1a8345-d7e8-41f7-a862-866e677eb2c0 {"md5": "c0da570f96a2c0c7c83ae6eebfac4737", "pid": "139416846", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng", "chi"], "qualifier": "", "identifier": "http://www.idref.fr/139416846", "numeration": "", "date_of_birth": "1962", "preferred_name": "Lee, Vivian P. Y.", "authorized_access_point": "Lee, Vivian P. Y., 1962-....", "biographical_information": ["Enseigne au Département de chinois, de traduction et de linguistique à la Cité universitaire de Hong Kong (en 2009). Ses publications portent sur la littérature chinoise contemporain et sur le cinéma chinois et apparaissent dans des journaux universitaires tels que \\"Modern Chinese literature and culture\\", \\"Journal of Chinese cinemas\\", \\"Scope\\" et \\"Chinese films in focus II\\""]} 1 +2020-09-24 13:17:49.13152 2020-09-24 13:17:49.131525 b33a7015-5d5a-4c6d-b78c-e2c578a7f7e8 {"md5": "48dd6f27e7bf55e68863bce73175f450", "pid": "150700768", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "photographe", "identifier": "http://www.idref.fr/150700768", "numeration": "", "preferred_name": "Beckers, Stephan, photographe", "authorized_access_point": "Beckers, Stephan, photographe", "biographical_information": ["Photographe"]} 1 +2020-09-24 13:17:52.42148 2020-09-24 13:17:52.421485 c6c2e9e0-76bd-4518-b5a2-6019c7ea49b6 {"md5": "81642424db998f2dcd364eb7d699a48b", "pid": "232810265", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/232810265", "numeration": "", "preferred_name": "Leunen, Nico", "authorized_access_point": "Leunen, Nico", "biographical_information": ["Scénariste"]} 1 +2020-09-24 13:17:53.190235 2020-09-24 13:17:53.19024 3a266658-5c05-434b-9c16-fd107238af01 {"md5": "cca8fa6c6bd6c1effe09667d6aaf06a9", "pid": "150599811", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/150599811", "numeration": "", "preferred_name": "Walsh, Christine A.", "authorized_access_point": "Walsh, Christine A.", "biographical_information": ["Professeur associé, University of Calgary (Canada), Faculty of social work"]} 1 +2020-09-24 13:17:55.484659 2020-09-24 13:17:55.484664 80ffc236-aef3-44ae-b5da-c6a61f44e344 {"md5": "b36e25d8d27046bf7774497f1d9341f3", "pid": "158552180", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/158552180", "numeration": "", "preferred_name": "Paquet, François", "authorized_access_point": "Paquet, François"} 1 +2020-09-24 13:17:56.134164 2020-09-24 13:17:56.134168 8a07bcb9-579b-46ae-8a5e-e8dd9c333f1a {"md5": "cc5024ce576973d5c66cdba1830f8390", "pid": "136864473", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/136864473", "numeration": "", "date_of_birth": "19..", "preferred_name": "Dumouchel, Jacques", "authorized_access_point": "Dumouchel, Jacques"} 1 +2020-09-24 13:17:57.211661 2020-09-24 13:17:57.211667 b22f24a7-3301-4516-b6be-2b6227ac5673 {"md5": "3f27d3254f1f5cc21a5b21774275ad16", "pid": "232530343", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["geo", "fre"], "qualifier": "", "identifier": "http://www.idref.fr/232530343", "numeration": "", "variant_name": ["Bibileichvili, Tsissana", "Bibileišvili, Cʻisana"], "date_of_birth": "19", "preferred_name": "Bibiléichvili, Tsissana", "authorized_access_point": "Bibiléichvili, Tsissana, 19..-...."} 1 +2020-09-24 13:17:58.078386 2020-09-24 13:17:58.078392 10894be1-abe3-4590-9878-42150ec459a3 {"md5": "878da983638c0735594b799b3a9a7f79", "pid": "16737740X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["hin"], "qualifier": "", "identifier": "http://www.idref.fr/16737740X", "numeration": "", "preferred_name": "Prapanna, Vandana", "authorized_access_point": "Prapanna, Vandana", "biographical_information": ["Historienne de l'art (en 2002)"]} 1 +2020-09-24 13:17:59.303634 2020-09-24 13:17:59.303639 d0fd673f-919e-41f6-bc04-ef4aee1145c7 {"md5": "ee7380286353fc0e24d599bc568acd91", "pid": "148842836", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ita"], "qualifier": "", "identifier": "http://www.idref.fr/148842836", "numeration": "", "preferred_name": "Brandolin, Mario", "authorized_access_point": "Brandolin, Mario", "biographical_information": ["Critique de théatre, directeur artistique."]} 1 +2020-09-24 13:18:01.318675 2020-09-24 13:18:01.318682 3c389c08-c708-40f3-a687-2e1d56f1f933 {"md5": "866e230d077768987a6f8578927b60a3", "pid": "075866307", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/075866307", "numeration": "", "preferred_name": "Henriot, Jean-Claude", "authorized_access_point": "Henriot, Jean-Claude", "biographical_information": ["Traduit de l'anglais en français"]} 1 +2020-09-24 13:18:02.398797 2020-09-24 13:18:02.398803 aae89009-d121-4132-9d2e-c36e36e1603a {"md5": "d3875fb94af853fa0b6448458ae63222", "pid": "146874595", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["chi", "eng"], "qualifier": "", "identifier": "http://www.idref.fr/146874595", "numeration": "", "preferred_name": "Kee, Ming-Yuet", "authorized_access_point": "Kee, Ming-Yuet", "biographical_information": ["Éducatrice ; collectionneuse de porcelaine chinoise peranakan"]} 1 +2020-09-24 13:18:04.604371 2020-09-24 13:18:04.604376 8446b8f1-22b5-4c5e-88bd-ada9f4c35a8a {"md5": "6c425ef9995a219c76416115ced59799", "pid": "195541855", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/195541855", "numeration": "", "date_of_birth": "1861-06-17", "date_of_death": "....", "preferred_name": "Ducroquet, Jean-Baptiste", "authorized_access_point": "Ducroquet, Jean-Baptiste, 1861-....", "biographical_information": ["Docteur en médecine (Lille, 1891)"]} 1 +2020-09-24 13:18:43.633679 2020-09-24 13:18:43.633683 8f0d16b8-689b-42a2-8b08-bc3d60236371 {"md5": "c2b6520847cf2affd376c92d2654010a", "pid": "175622914", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/175622914", "numeration": "", "preferred_name": "Thomson, Erik MacDonald", "authorized_access_point": "Thomson, Erik MacDonald"} 1 +2020-09-24 13:18:05.022784 2020-09-24 13:18:05.022789 7401792c-172a-40f6-9244-e998e11aa0c4 {"md5": "3ba7ba66a16bd1baad324af2cd1afde9", "pid": "203359321", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/203359321", "numeration": "", "date_of_birth": "1980-08-29", "preferred_name": "Morin, Damien", "authorized_access_point": "Morin, Damien, 1980-....", "biographical_information": ["Docteur en médecine (en 2017)"]} 1 +2020-09-24 13:18:05.668644 2020-09-24 13:18:05.668649 1a47044c-78e2-4c12-af99-b8e2db9ade70 {"md5": "65d08e892106ef1eee17baa44bc73ae5", "pid": "202648087", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/202648087", "numeration": "", "date_of_birth": "1963-04-09", "preferred_name": "Lesieur, Olivier", "authorized_access_point": "Lesieur, Olivier, 1963-....", "biographical_information": ["Auteur d'une thèse de doctorat en Ethique médicale soutenue à l'Université Sorbonne Paris Cité en 2015"]} 1 +2020-09-24 13:18:06.247875 2020-09-24 13:18:06.247881 be3660f9-89ca-4aad-96fe-69669f51658f {"md5": "07bda51aa5794bf4ca0ed6e59aa8f808", "pid": "224875868", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/224875868", "numeration": "", "date_of_birth": "19..", "preferred_name": "Bacci, Alberto", "authorized_access_point": "Bacci, Alberto, 19..-....", "biographical_information": ["Directeur de thèse à l'Université Pierre et Marie Curie, Paris en 2017"]} 1 +2020-09-24 13:18:06.574852 2020-09-24 13:18:06.574857 93c3a4f1-a4a4-4f57-8cfb-03022a6a992a {"md5": "1e5eb7d189d89fc824a73b33621cc050", "pid": "227583752", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["chi"], "qualifier": "", "identifier": "http://www.idref.fr/227583752", "numeration": "", "preferred_name": "Zheng, Ming", "authorized_access_point": "Zheng, Ming", "biographical_information": ["Traducteur (chinois-français)"]} 1 +2020-09-24 13:18:06.9095 2020-09-24 13:18:06.909505 484dd327-dd51-4fc2-950e-c84547105808 {"md5": "18f3d7e2ef9ee2b7c18a2dc3aa0fdce4", "pid": "227327551", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/227327551", "numeration": "", "preferred_name": "Ringard, Justine", "authorized_access_point": "Ringard, Justine", "biographical_information": ["Titulaire d'une thèse de sciences de l'environnement soutenue à l'Université de Guyane le 25 septembre 2017"]} 1 +2020-09-24 13:18:07.254677 2020-09-24 13:18:07.254683 aa39acc4-ce4c-4c83-9fc8-1cb194b14093 {"md5": "32eb5979ec6216fc35b0993a714ab844", "pid": "232656770", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/232656770", "numeration": "", "preferred_name": "Alves de Oliveira Melo, Alfredo", "authorized_access_point": "Alves de Oliveira Melo, Alfredo", "biographical_information": ["Titulaire d'un doctorat en sciences de gestion à l'Université Paris-Dauphine (1983)"]} 1 +2020-09-24 13:18:07.624721 2020-09-24 13:18:07.624727 4073eb8e-406f-4a75-9228-1f1d5a2949e9 {"md5": "5bd3e6cdad63ea110b2815dfbaa08c8b", "pid": "24245383X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/24245383X", "numeration": "", "date_of_birth": "1989-08-28", "preferred_name": "Belmaati cherkaoui, Mehdi", "authorized_access_point": "Belmaati cherkaoui, Mehdi, 1989-....", "biographical_information": ["Auteur d'une thèse en Sciences de la vie et de la santé à Université Paris-Saclay (ComUE) en 2019"]} 1 +2020-09-24 13:18:07.993547 2020-09-24 13:18:07.993552 e5e5e404-f0a3-426d-87bc-62358326df1e {"md5": "832a1d35b8027593aee1457a804b2452", "pid": "242274455", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/242274455", "numeration": "", "date_of_birth": "19XX", "preferred_name": "Baltzer, Théo", "authorized_access_point": "Baltzer, Théo, 19..-....", "biographical_information": ["Auteur d’un mémoire de Master de Contrôle de Gestion, soutenu à l'Université de Strasbourg en 2019"]} 1 +2020-09-24 13:18:09.211835 2020-09-24 13:18:09.211839 15e04003-ead9-426f-b3d6-2ac9ac08313a {"md5": "03f2a08cc2c2811f0cb401af4ef1dd26", "pid": "149955847", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://www.idref.fr/149955847", "numeration": "", "date_of_birth": "19", "preferred_name": "Schmid, Franziska Sibylle", "authorized_access_point": "Schmid, Franziska Sibylle, 19..-...."} 1 +2020-09-24 13:18:09.817306 2020-09-24 13:18:09.817312 b68cd120-3e3f-4499-8ecb-09df02a7674d {"md5": "14e4cd135e2bab87ee0381a3745397d1", "pid": "226149390", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/226149390", "numeration": "", "preferred_name": "Taragonet, M.E.", "authorized_access_point": "Taragonet, M.E."} 1 +2020-09-24 13:18:10.215588 2020-09-24 13:18:10.215593 fcfa2a34-4f91-4928-96df-4bd6037cb714 {"md5": "17aa04eb7421dbb8fdb02b4d9a352d15", "pid": "101448597", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/101448597", "numeration": "", "preferred_name": "Déflacieux, Martial", "authorized_access_point": "Déflacieux, Martial", "biographical_information": ["fait partie de l' association \\"Volksystem.cie\\", dont l' objet est l' organisation de programmes culturels"]} 1 +2020-09-24 13:18:11.363183 2020-09-24 13:18:11.36319 5599fab6-f919-4fda-8615-f32c3325fec0 {"md5": "c46948b41aebe4e04540db3baf82aa20", "pid": "138484945", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/138484945", "numeration": "", "preferred_name": "Lanoë, Samuel", "authorized_access_point": "Lanoë, Samuel", "biographical_information": ["Ingénieur en sciences de l'environnement (en 2008)"]} 1 +2020-09-24 13:18:11.793157 2020-09-24 13:18:11.793162 bb28716b-358b-4907-a692-b76cc08b0bcb {"md5": "b7c0579985eafff51ef54c1775fa9764", "pid": "127334807", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/127334807", "numeration": "", "date_of_birth": "1957", "preferred_name": "Deloupy, Bernard", "authorized_access_point": "Deloupy, Bernard, 1957-....", "biographical_information": ["Auteur de romans policiers"]} 1 +2020-09-24 13:18:14.978079 2020-09-24 13:18:14.978083 def68704-8d62-4ea3-940f-0ccbaf0182b0 {"md5": "9821b46b690ea085f9d4000dc416d8e2", "pid": "202681793", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["spa"], "qualifier": "", "identifier": "http://www.idref.fr/202681793", "numeration": "", "date_of_birth": "1978--", "preferred_name": "Ponce de León, Facundo", "authorized_access_point": "Ponce de León, Facundo, 1978-", "biographical_information": ["Journaliste. Professeur d'anthropologie philosophique à l'Università della República Cattolica dell' Uruguay."]} 1 +2020-09-24 13:18:44.138567 2020-09-24 13:18:44.138572 6ad7b501-418b-4f56-9973-3e2f07df1a0f {"md5": "dd341b569471388a32bd2284855e9d87", "pid": "133972887", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng", "fre"], "qualifier": "", "identifier": "http://www.idref.fr/133972887", "numeration": "", "date_of_birth": "1909", "preferred_name": "Savile, Douglas B. O.", "authorized_access_point": "Savile, Douglas B. O."} 1 +2020-09-24 13:18:22.578813 2020-09-24 13:18:22.578818 3aef88fe-ed54-4896-8990-e9770972e7ee {"md5": "08dd72e8c950f068034df071e54dda8f", "pid": "092359116", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/092359116", "numeration": "", "variant_name": ["Matsen, Bradford"], "date_of_birth": "19", "preferred_name": "Matsen, Brad", "authorized_access_point": "Matsen, Brad", "biographical_information": ["Auteur, documentariste et photographe. Auteur de \\"Titanic's last secrets\\", \\"Descent : the heroic discovery of the abyss\\",.. et de nombreux articles sur les sciences marines. Réalisateur pour la télévision de \\"The shape of life\\""]} 1 +2020-09-24 13:18:24.587641 2020-09-24 13:18:24.587646 14de83cf-4f8a-4b94-8236-84a18bb7ff30 {"md5": "87e5070218da0c97d5af32d94ab6c75d", "pid": "169818098", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/169818098", "numeration": "", "preferred_name": "McCarthy, Rebecca Lea", "authorized_access_point": "McCarthy, Rebecca Lea"} 1 +2020-09-24 13:18:24.923779 2020-09-24 13:18:24.923784 a23c910c-3d5f-4167-8a03-8ebbe4262d3d {"md5": "cd1935f239e17d2b847c91650ae637e3", "pid": "143470280", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["spa"], "qualifier": "", "identifier": "http://www.idref.fr/143470280", "numeration": "", "variant_name": ["Rodríguez, Rakel", "Rodríguez López, Raquel"], "preferred_name": "Rodríguez, Raquel", "authorized_access_point": "Rodríguez, Raquel"} 1 +2020-09-24 13:18:25.715776 2020-09-24 13:18:25.715781 6a74fcfd-9f71-4cf7-86f8-276720f9ae55 {"md5": "2dbfb8f28cc41fefbabab53a205d9696", "pid": "170457257", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/170457257", "numeration": "", "preferred_name": "Stras, Laurie", "authorized_access_point": "Stras, Laurie", "biographical_information": ["Auteur d'un ouvrage sur la musique populaire américaine et enseignante à l'Université de Southampton (2012)"]} 1 +2020-09-24 13:18:26.635846 2020-09-24 13:18:26.635851 61b2d62f-2735-4f70-b2ae-5bbd136b3c1a {"md5": "598c4bd56d97dd560a5384a6643a8749", "pid": "18897394X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/18897394X", "numeration": "", "date_of_birth": "19..", "preferred_name": "Gandhi, Nighat M.", "authorized_access_point": "Gandhi, Nighat M., 19..-", "biographical_information": ["Journaliste"]} 1 +2020-09-24 13:18:27.059112 2020-09-24 13:18:27.059117 286dbc0e-2a31-4cb9-8ec5-4552e406843d {"md5": "0da21abab20aeafa07f51d86baa55d3e", "pid": "142996734", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/142996734", "numeration": "", "preferred_name": "Koulouris, George", "authorized_access_point": "Koulouris, George", "biographical_information": ["Directeur, Melbourne radiology clinic, East Melbourne, Australia"]} 1 +2020-09-24 13:18:27.386168 2020-09-24 13:18:27.386173 2962480b-c991-41e0-bf97-74c685992ef9 {"md5": "2121ba380f074c7adef476aeb19c6460", "pid": "148935710", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/148935710", "numeration": "", "preferred_name": "Auger, Jean-François", "authorized_access_point": "Auger, Jean-François"} 1 +2020-09-24 13:18:27.812315 2020-09-24 13:18:27.81232 a1e354e6-9448-4a30-a862-1b31264ccb60 {"md5": "260ee376ad32e8e2434991571aa2d0c4", "pid": "135688590", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["spa"], "qualifier": "", "identifier": "http://www.idref.fr/135688590", "numeration": "", "variant_name": ["Carazo, Pedro Pérez"], "preferred_name": "Pérez Carazo, Pedro", "authorized_access_point": "Pérez Carazo, Pedro"} 1 +2020-09-24 13:18:29.812937 2020-09-24 13:18:29.812943 2114371d-3900-4e6b-b415-2d04c5a31143 {"md5": "990527f3d9b98ff3384b5327f4248404", "pid": "031854575", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/031854575", "numeration": "", "date_of_birth": "1952", "preferred_name": "Hulme, David", "authorized_access_point": "Hulme, David, 1952-....", "biographical_information": ["Spécialiste de la sociologie du développement économique"]} 1 +2020-09-24 13:18:30.831797 2020-09-24 13:18:30.831801 194bdf77-385d-4073-a4c8-34978381c1b3 {"md5": "cd7813d84dadeb746e2a9eff84775040", "pid": "128657642", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://www.idref.fr/128657642", "numeration": "", "date_of_birth": "19", "preferred_name": "Scheidt, Petra", "authorized_access_point": "Scheidt, Petra"} 1 +2020-09-24 13:18:31.179266 2020-09-24 13:18:31.179271 8281ac40-566c-4702-b899-f72ecbc5d7c7 {"md5": "28b62527fdcb2b5db13ce0dd4b2c1ff7", "pid": "142638145", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/142638145", "numeration": "", "date_of_birth": "1973", "preferred_name": "Michel, Ariane", "authorized_access_point": "Michel, Ariane", "biographical_information": ["Réalisatrice de documentaires"]} 1 +2020-09-24 13:18:31.863324 2020-09-24 13:18:31.863329 d1630fab-04a0-4baf-a8e1-a82a0c1198c1 {"md5": "63b360cdeb0a38475f7fb316c3a25d3a", "pid": "164529640", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/164529640", "numeration": "", "date_of_birth": "19..", "preferred_name": "Pierré, Michaël", "authorized_access_point": "Pierré, Michaël"} 1 +2020-09-24 13:18:32.210492 2020-09-24 13:18:32.210497 1b45139c-569d-4101-91e5-52d7be892c43 {"md5": "950caf16e19926310fd8ef292ee1aee9", "pid": "160613701", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/160613701", "numeration": "", "date_of_birth": "19..", "preferred_name": "Obed", "authorized_access_point": "Obed", "biographical_information": ["Chanteur de variétés antillaises et de dancehall"]} 1 +2020-09-24 13:18:38.884063 2020-09-24 13:18:38.884068 4ba8c301-3be6-4972-9486-d0867353a0ec {"md5": "cde29a8e513de98daa80b2efc2654251", "pid": "095775757", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/095775757", "numeration": "", "date_of_birth": "1977-01-02", "preferred_name": "Galanopoulos, Philippe", "authorized_access_point": "Galanopoulos, Philippe, 1977-....", "biographical_information": ["Docteur en histoire (Université de Versailles-St Quentin en Yvelines, 2005)", "Diplôme d'archiviste paléographe (École nationale des chartes, 2009)", "Diplôme de conservateur des bibliothèques (École nationale supérieure des sciences de l'information et des bibliothèques, 2010)", "Directeur de la Bibliothèque de la Cour de cassation (Paris) [depuis le 01/11/2015]", "Conservateur à la Bibliothèque interuniversitaire de Santé (Paris), Pôle Pharmacie-biologie-cosmétologie (2011-2015)"]} 1 +2020-09-24 13:18:42.939713 2020-09-24 13:18:42.939719 f22363ad-88b4-4146-9f51-5ba4ecc35fbd {"md5": "d1b0eb20b8bc4abf288b49a42bc1637d", "pid": "123474825", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/123474825", "numeration": "", "date_of_birth": "1968", "preferred_name": "Moskowitz, Marina", "authorized_access_point": "Moskowitz, Marina, 1968-....", "biographical_information": ["Historienne"]} 1 +2020-09-24 13:18:46.059254 2020-09-24 13:18:46.059259 be0ab6c7-b8d1-490a-85ae-594fb5b7e504 {"md5": "9a66c4efbae9905808b7158151cf86d6", "pid": "176776613", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/176776613", "numeration": "", "variant_name": ["Sarrazin, Pierre"], "date_of_birth": "1944--", "preferred_name": "Sarrazin, Michel-Pierre", "authorized_access_point": "Sarrazin, Michel-Pierre, 1944-....", "biographical_information": ["Ecrivain"]} 1 +2020-09-24 13:18:46.910091 2020-09-24 13:18:46.910096 be38cc0a-43d7-435c-93ca-0e7f142dcf65 {"md5": "4b757c3b5777d4c7f4d33c4465fb2260", "pid": "032649789", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/032649789", "numeration": "", "variant_name": ["Lee, Danielle Juteau", "Juteau Lee, Danielle"], "date_of_birth": "1942-10-13", "preferred_name": "Juteau, Danielle", "authorized_access_point": "Juteau, Danielle, 1942-....", "biographical_information": ["Sociologue. Professeur à l'Université d'Ottawa (en 1979)"]} 1 +2020-09-24 13:18:47.667809 2020-09-24 13:18:47.667813 d2fbd934-d6a7-4dca-8c86-0fc42d96d2b8 {"md5": "a552f5722dc1df40ce861411889a2aaf", "pid": "147644305", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/147644305", "numeration": "", "date_of_birth": "19..", "preferred_name": "Spiess, Bernhard", "authorized_access_point": "Spiess, Bernhard", "biographical_information": ["Professor veterinary ophtalmology : Department for small animals, Ophtalmology unit, Vetsuisse faculty, University of Zurich (Switzerland)"]} 1 +2020-09-24 13:18:48.72829 2020-09-24 13:18:48.728296 685312b7-4586-49a3-8581-cf55defd4d9d {"md5": "0a42d01e72c92e9dbd2f7ba28b5ba937", "pid": "034388397", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/034388397", "numeration": "", "variant_name": ["Maister, David H"], "preferred_name": "Maister, David", "authorized_access_point": "Maister, David", "biographical_information": ["Ancien professeur à la Harvard Business School. Spécialisé dans le conseil en gestion (en 1996)"]} 1 +2020-09-24 13:18:50.004532 2020-09-24 13:18:50.004537 5913b77a-6e7c-46df-923e-305639155497 {"md5": "70191e96301e6ff93cd7a9894942da3c", "pid": "174469470", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/174469470", "numeration": "", "date_of_birth": "1924-01-18", "preferred_name": "Gordon, William J.", "authorized_access_point": "Gordon, William J., 1924-....", "biographical_information": ["Chef d'orchestre de la Fanfare nationale des Forces Armées Canadiennes"]} 1 +2020-09-24 13:18:52.477597 2020-09-24 13:18:52.477602 8e8f3eff-d6ce-464e-b52b-6d387156cfe9 {"md5": "3e4ae581e20f1b70139d6845c2571bcd", "pid": "194445089", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/194445089", "numeration": "", "preferred_name": "Lizarzaburu, Véra", "authorized_access_point": "Lizarzaburu, Véra"} 1 +2020-09-24 13:18:53.103201 2020-09-24 13:18:53.103206 7787838a-3caf-417a-8387-ce9c42e48429 {"md5": "0435c6aeb8553fb98b3bed3867d918ac", "pid": "081311249", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/081311249", "numeration": "", "preferred_name": "Owen, John Wyn", "authorized_access_point": "Owen, John Wyn", "biographical_information": ["Secrétaire au Nuffield Trust, Londres"]} 1 +2020-09-24 13:18:53.855998 2020-09-24 13:18:53.856002 4bc47035-c389-49fe-878f-81e47be461b5 {"md5": "3bdd2f7dea205851168b2c379b980479", "pid": "204651913", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/204651913", "numeration": "", "date_of_birth": "1933-12-17", "preferred_name": "Chiarini, Claude", "authorized_access_point": "Chiarini, Claude", "biographical_information": ["Médecin"]} 1 +2020-09-24 13:18:55.148955 2020-09-24 13:18:55.148961 54060a69-1681-4ca7-a8a3-1667ad61ab0a {"md5": "871c52efd346c25e0ce11b83a9876a57", "pid": "22344250X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://www.idref.fr/22344250X", "numeration": "", "date_of_birth": "18XX", "date_of_death": "19XX", "preferred_name": "Schwörbel, Heribert", "authorized_access_point": "Schwörbel, Heribert, 18..-19..", "biographical_information": ["Auteur d'une thèse de droit soutenue à l'Université d'Erlangen, Allemagne, en 1906."]} 1 +2020-09-24 13:18:55.805857 2020-09-24 13:18:55.805862 48de9965-c154-4b2b-9bad-b73547df32b4 {"md5": "f861c932cf004208fecf5f62a4f35deb", "pid": "224210963", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/224210963", "numeration": "", "preferred_name": "Peyré, Frédéric", "authorized_access_point": "Peyré, Frédéric", "biographical_information": ["Maître de conférences en langue et civilisation anglaises, à l'université de Lille Sciences humaines et sociales (2018)"]} 1 +2020-09-24 13:18:56.149232 2020-09-24 13:18:56.149238 e8fb8a38-5f2c-4d7b-9fa0-989187e3a110 {"md5": "5d9e7ec697e8ee4aa58d473ea3183166", "pid": "230956866", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/230956866", "numeration": "", "variant_name": ["Bennetot-Olive, Stéphanie Cotton de", "Cotton de Bennetot, Stéphanie", "Olive, Stéphanie", "Olive, Stéphanie Cotton de Bennetot-"], "date_of_birth": "19..", "preferred_name": "Cotton de Bennetot-Olive, Stéphanie", "authorized_access_point": "Cotton de Bennetot-Olive, Stéphanie", "biographical_information": ["Médecin. Auteur d'un mémoire pour l'obtention du master 2 \\"Risques sanitaires radionucléaires, biologiques, chimiques et explosifs\\" (2018, Sorbonne Université)"]} 1 +2020-09-24 13:18:56.525935 2020-09-24 13:18:56.52594 c65eda75-e10b-46c2-8c22-08abc7c0cd87 {"md5": "80b647c472d794320c7a60c283cdada8", "pid": "24172726X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/24172726X", "numeration": "", "date_of_birth": "18..", "date_of_death": "19..", "preferred_name": "Guillochon, R.", "authorized_access_point": "Guillochon, R.", "biographical_information": ["Ingénieur agronome, inspecteur adjoint à la caisse nationale de crédit agricole"]} 1 +2020-09-24 13:18:57.099485 2020-09-24 13:18:57.099491 c661295a-0360-4ebb-a62d-614045535193 {"md5": "92c98eea5a2419039bddee0e551b3257", "pid": "113195931", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/113195931", "numeration": "", "preferred_name": "Boughton, Robert", "authorized_access_point": "Boughton, Robert"} 1 +2020-09-24 13:18:57.561898 2020-09-24 13:18:57.561903 bcdaf1fd-c6e0-4ce7-84a6-627b9cd3ef42 {"md5": "2e5633fc1d00287abe8ec3039ddb9bd8", "pid": "034085289", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/034085289", "numeration": "", "preferred_name": "Servant, M.", "authorized_access_point": "Servant, M."} 1 +2020-09-24 13:18:58.366283 2020-09-24 13:18:58.366289 b3cb188a-683b-4870-8137-f86ab6913b7f {"md5": "a2c6d3150b010572a10a0c0174b20a97", "pid": "24507869X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/24507869X", "numeration": "", "preferred_name": "Caldwel, Robert J.", "authorized_access_point": "Caldwel, Robert J."} 1 +2020-09-24 13:18:59.643339 2020-09-24 13:18:59.643344 37fe510e-a09a-4e1c-89f7-6f8b5f17c583 {"md5": "5fac651832346441f08d7f6f884db774", "pid": "235301787", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/235301787", "numeration": "", "date_of_birth": "...", "preferred_name": "Ribeiro, Marc H.", "authorized_access_point": "Ribeiro, Marc H.", "biographical_information": ["Créateur de jeux"]} 1 +2020-09-24 13:19:06.804357 2020-09-24 13:19:06.804362 4c103481-4d69-41cb-8c65-101aedf243e4 {"md5": "8c558f40e8c04f4286a5c0c0ab83fa02", "pid": "243749120", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/243749120", "numeration": "", "variant_name": ["Guay, L."], "date_of_birth": "1949", "preferred_name": "Guay, Luc", "authorized_access_point": "Guay, Luc, 1949-...."} 1 +2020-09-24 13:19:07.617776 2020-09-24 13:19:07.61778 b64dc9d5-d62c-4172-a360-e484176531cb {"md5": "fd6b76e0f8006ff77833db9b2143898a", "pid": "028766857", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://www.idref.fr/028766857", "numeration": "", "date_of_birth": "1935", "preferred_name": "Helbich, Wolfgang Johannes", "authorized_access_point": "Helbich, Wolfgang Johannes, 1935-....", "biographical_information": ["Professeur d'histoire moderne à l'Université de Bochum (en 1988)"]} 1 +2020-09-24 13:19:12.157625 2020-09-24 13:19:12.157631 ba6b392c-2297-433e-8a4f-b0b6bc89f717 {"md5": "02e38a4b8e31e6f1ac82035ac0c97a08", "pid": "181132931", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/181132931", "numeration": "", "preferred_name": "Lawrence, Julian", "authorized_access_point": "Lawrence, Julian"} 1 +2020-09-24 13:19:12.505651 2020-09-24 13:19:12.505656 13dfd3f3-565a-40ae-a381-3de8da21fad6 {"md5": "5a0c68a109bca19f792ce26ab17e9924", "pid": "178642932", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/178642932", "numeration": "", "preferred_name": "Lamoureux, Jocelyne", "authorized_access_point": "Lamoureux, Jocelyne", "biographical_information": ["Professeur à l'université du Québec à Montréal (UQAM)"]} 1 +2020-09-24 13:19:13.572199 2020-09-24 13:19:13.572203 ffb03504-0cc8-4ab4-845d-b683bbc2569e {"md5": "53f7a25d2e149d03b47df956360604ef", "pid": "028542770", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/028542770", "numeration": "", "date_of_birth": "1925", "date_of_death": "2015", "preferred_name": "Higham, Robin", "authorized_access_point": "Higham, Robin, 1925-2015"} 1 +2020-09-24 13:19:15.36533 2020-09-24 13:19:15.365335 cac5bbcf-d739-4b74-8720-76317a74f915 {"md5": "11a00e3bf6e000f941fec835adf0e45d", "pid": "033151571", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["dut"], "qualifier": "", "identifier": "http://www.idref.fr/033151571", "numeration": "", "preferred_name": "Kingma, J.", "authorized_access_point": "Kingma, J."} 1 +2020-09-24 13:19:17.408285 2020-09-24 13:19:17.40829 f2dd501e-61dd-4a63-8bc7-8bbfab1e81e5 {"md5": "261c302815b62b9c1e7cfef3f536faab", "pid": "23322758X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/23322758X", "numeration": "", "date_of_birth": "1955", "date_of_death": "2017", "preferred_name": "Dick, Beau", "authorized_access_point": "Dick, Beau, 1955-2017", "biographical_information": ["Sculpteur. Chef kwakwaka'wakw de la côte nord-ouest d'Alert Bay, en Colombie-Britannique, au Canada"]} 1 +2020-09-24 13:19:18.328416 2020-09-24 13:19:18.328421 d23ef2d3-1443-41be-a8e6-3640f51e082d {"md5": "d9ed2620f8d740467653dfe9d6aed556", "pid": "24515969X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/24515969X", "numeration": "", "date_of_birth": "18..", "date_of_death": "18..", "preferred_name": "Prieur, Edme-André Séverin", "authorized_access_point": "Prieur, Edme-André Séverin, 18..-18..", "biographical_information": ["Médecin"]} 1 +2020-09-24 13:19:19.571453 2020-09-24 13:19:19.571459 02fba38f-33e7-4d6e-a553-861c85d3376d {"md5": "302c90bbacb8bed78c0441288aedcb33", "pid": "19529534X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/19529534X", "numeration": "", "date_of_birth": "1990-05-16", "preferred_name": "Hutchinson, Steve", "authorized_access_point": "Hutchinson, Steve, 1990-....", "biographical_information": ["Auteur d’une thèse d’exercice en Pharmacie, soutenue le 20 septembre 2016, à l’Université de Montpellier"]} 1 +2020-09-24 13:19:20.195553 2020-09-24 13:19:20.195558 fd666167-bd07-424a-83b4-6f22f4fef8fa {"md5": "6f5d299310064938985e4c433b481ea6", "pid": "19859318X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/19859318X", "numeration": "", "preferred_name": "Gregerson, Patrick", "authorized_access_point": "Gregerson, Patrick"} 1 +2020-09-24 13:19:20.572443 2020-09-24 13:19:20.572448 45de0d05-efd6-4ba3-a90e-1d9bf4520f8a {"md5": "a7ab61eaa8069a0abcbac688360e5aff", "pid": "199258813", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["spa"], "qualifier": "", "identifier": "http://www.idref.fr/199258813", "numeration": "", "preferred_name": "Razetti, Ricardo", "authorized_access_point": "Razetti, Ricardo", "biographical_information": ["ingénieur"]} 1 +2020-09-24 13:19:20.994428 2020-09-24 13:19:20.994432 05c16030-eb6a-4b92-be3e-f77e94c52cea {"md5": "59128fab8324febc38f25e632ffba040", "pid": "199108617", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/199108617", "numeration": "", "date_of_birth": "1972-03-24", "preferred_name": "Pralong, Corinne", "authorized_access_point": "Pralong, Corinne", "biographical_information": ["Titulaire d'une thèse d'exercice de médecine (Limoges : 1998 ; 147)"]} 1 +2020-09-24 13:19:21.571558 2020-09-24 13:19:21.571563 1dae9da6-e56e-4703-b893-ffc6c41017a2 {"md5": "f5b8efbbfe09b0e264a055f80464b09c", "pid": "226958728", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/226958728", "numeration": "", "date_of_birth": "1984", "preferred_name": "Bouhia, Manal", "authorized_access_point": "Bouhia, Manal", "biographical_information": ["Élève ingénieur ENSAIT"]} 1 +2020-09-24 13:19:21.921466 2020-09-24 13:19:21.921471 800eece6-1f9b-49dd-9d38-fa1c601e70a0 {"md5": "66fdcc460ea27a724e0d01129dfc383b", "pid": "232804788", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/232804788", "numeration": "", "variant_name": ["Pierce, William Jr.", "William Pierce of Georgia"], "date_of_birth": "1753", "date_of_death": "1789", "preferred_name": "Pierce, William", "authorized_access_point": "Pierce, William, 1753-1789", "biographical_information": ["Officier de l'armée pendant la guerre d'indépendance américaine et un membre de la Convention constitutionnelle des États-Unis de 1787"]} 1 +2020-09-24 13:19:22.278058 2020-09-24 13:19:22.278063 24c027db-b1ec-4535-82d2-d6425f0e636d {"md5": "fcb535f0fb7a90fe30c37511a584d1fd", "pid": "233220984", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/233220984", "numeration": "", "date_of_birth": "1878", "date_of_death": "1954", "preferred_name": "Sergent, Louis", "authorized_access_point": "Sergent, Louis, 1878-1954", "biographical_information": ["Pharmacien"]} 1 +2020-09-24 13:19:22.618442 2020-09-24 13:19:22.618447 baaccb35-5beb-44c4-afac-bd6f572df783 {"md5": "74687c5eb0bad78ceda25a89afabe085", "pid": "238712435", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/238712435", "numeration": "", "date_of_birth": "19..", "preferred_name": "Chabannes, Axelle", "authorized_access_point": "Chabannes, Axelle, 19..-....", "biographical_information": ["Ingénieur en prévention des risques. Mémoire de Master Prévention des Risques et Nuisances Technologiques industriels spécialité risques professionnels soutenu à la faculté de pharmacie d'Aix-Marseille Université en septembre 2019"]} 1 +2020-09-24 13:19:22.957699 2020-09-24 13:19:22.957705 e023b502-ae58-4f66-a3a8-2adea728d563 {"md5": "cc591b72dba2abe67e07055f456a66c9", "pid": "242293557", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/242293557", "numeration": "", "preferred_name": "Goepogui, Serge Moriba", "authorized_access_point": "Goepogui, Serge Moriba", "biographical_information": ["Titulaire d'un master 1 Sciences du langage, spécialité Analyse du discours, à Besançon, Université de Franche-Comté, en 2019"]} 1 +2020-09-24 13:19:25.980257 2020-09-24 13:19:25.980261 f35d1ba7-7ee2-4529-962d-4f25fdbe0da2 {"md5": "972f700baa36c87fc0397ddf230ff5ff", "pid": "133765687", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/133765687", "numeration": "", "date_of_birth": "19..", "preferred_name": "Leron, Uri", "authorized_access_point": "Leron, Uri", "biographical_information": ["En poste au Department of science education, Technion, Israel institute of technology, Haifa (Israel)"]} 1 +2020-09-24 13:19:27.032992 2020-09-24 13:19:27.032998 14b6184f-0870-4836-9b76-49be8d15004c {"md5": "9591b4fb5633538dd4e1a0a6f7c77e15", "pid": "167467549", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/167467549", "numeration": "", "date_of_birth": "19", "preferred_name": "Reynolds, Catherine", "authorized_access_point": "Reynolds, Catherine"} 1 +2020-09-24 13:19:28.1142 2020-09-24 13:19:28.114205 92def445-9401-4cef-99a4-d6d1754c7582 {"md5": "ab3e1c9dbd6f1a78f14c1ed4f5aa6fd1", "pid": "182842819", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/182842819", "numeration": "", "variant_name": ["Dalphond, J.E."], "preferred_name": "Dalphond, Julie E.", "authorized_access_point": "Dalphond, Julie E.", "biographical_information": ["Auteur"]} 1 +2020-09-24 13:19:29.253793 2020-09-24 13:19:29.253797 838b3dff-9520-47f8-9d42-85fdb0e6708f {"md5": "73750ac73e1f72155fd4aec8d4a2cade", "pid": "245200142", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ita"], "qualifier": "", "identifier": "http://www.idref.fr/245200142", "numeration": "", "variant_name": ["Barbaro, Luca Massino"], "preferred_name": "Massino Barbero, Luca", "authorized_access_point": "Massino Barbero, Luca", "biographical_information": ["écrit sur l'art"]} 1 +2020-09-24 13:19:32.361465 2020-09-24 13:19:32.36147 d7166f99-df7a-445b-94f5-a6c131ab3d85 {"md5": "9e1225c47ae6b79b537b5be50b95fe23", "pid": "199502994", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/199502994", "numeration": "", "date_of_birth": "1967-03-24", "preferred_name": "Bruneau, Anne", "authorized_access_point": "Bruneau, Anne, 1967-....", "biographical_information": ["Travailleur social"]} 1 +2020-09-24 13:19:37.300816 2020-09-24 13:19:37.300821 896ea764-fb55-4f1b-aeef-32765edc685a {"md5": "078a37ed71557350583b0cec1539bab3", "pid": "032613237", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "entomologiste", "identifier": "http://www.idref.fr/032613237", "numeration": "", "date_of_birth": "1929-07-06", "preferred_name": "Fischer, Max, entomologiste", "authorized_access_point": "Fischer, Max, 1929-, entomologiste", "biographical_information": ["Écrit aussi en anglais", "Entomologiste"]} 1 +2020-09-24 13:19:39.34388 2020-09-24 13:19:39.343884 5703f538-2a38-4adb-9e36-dbdeff4a3ce4 {"md5": "62b346f0e18a98620498b94c335f0a0a", "pid": "075964686", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/075964686", "numeration": "", "preferred_name": "Genest, Daniel", "authorized_access_point": "Genest, Daniel", "biographical_information": ["Docteur en sciences physiques à l'Université d'Orléans (en 1976)"]} 1 +2020-09-24 13:19:41.217331 2020-09-24 13:19:41.217337 d6be75e5-f5fd-42ff-a08c-0ce61b383286 {"md5": "7bbd59712388a41cbb4f490f378d7735", "pid": "202400263", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/202400263", "numeration": "", "preferred_name": "King, G. G.", "authorized_access_point": "King, G. G."} 1 +2020-09-24 13:19:45.458473 2020-09-24 13:19:45.458478 0d1a4ff6-d512-4de8-b1c3-42dd10af3b66 {"md5": "d1b65698d5a481974942755e73a40594", "pid": "202971511", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre", "spa"], "qualifier": "", "identifier": "http://www.idref.fr/202971511", "numeration": "", "variant_name": ["Connan, Christophe François"], "preferred_name": "François-Connan, Christophe", "authorized_access_point": "François-Connan, Christophe"} 1 +2020-09-24 13:19:45.87091 2020-09-24 13:19:45.870915 dac5fc05-ab76-4819-93b2-a86ec2a30553 {"md5": "8e5dd3202cb18eaf4343572847b2a233", "pid": "202446573", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/202446573", "numeration": "", "preferred_name": "Durante, Janet", "authorized_access_point": "Durante, Janet"} 1 +2020-09-24 13:19:46.612703 2020-09-24 13:19:46.612708 42d69992-7349-418f-aca7-7ceade11e850 {"md5": "1b4a6de86ccc53df40c23377bac47bca", "pid": "220890056", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/220890056", "numeration": "", "preferred_name": "Kraba, Karen Cheryl", "authorized_access_point": "Kraba, Karen Cheryl", "biographical_information": ["Titulaire d'une maitrise en Droit public, droit privé obtenue en 2016"]} 1 +2020-09-24 13:19:47.043584 2020-09-24 13:19:47.043589 f1989fc0-7d2b-4e3c-a401-c01b67f050c8 {"md5": "89b45ec30f4b304ba6933bf192a377e4", "pid": "225402475", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/225402475", "numeration": "", "date_of_birth": "1991-03-18", "preferred_name": "Bahri, Racha", "authorized_access_point": "Bahri, Racha, 1991-....", "biographical_information": ["Auteur d'une thèse en Immunologie, oncologie et infectiologie à Limoges en 2017"]} 1 +2020-09-24 13:19:47.834357 2020-09-24 13:19:47.834362 7a242725-0829-43fe-aa79-4317a61a15e5 {"md5": "2ccebe74f30e82c59e83d26bc0f5252b", "pid": "224789147", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["spa"], "qualifier": "", "identifier": "http://www.idref.fr/224789147", "numeration": "", "preferred_name": "Lemus, Samuel Bernardo", "authorized_access_point": "Lemus, Samuel Bernardo", "biographical_information": ["Auteur d'un ouvrage de chansons mexicaines"]} 1 +2020-09-24 13:21:30.689659 2020-09-24 13:21:30.689664 71b23435-af89-4c1b-a753-4b14f4150ed3 {"md5": "53d4ba002fc43ec6dd7b3d1903b682f8", "pid": "135683122", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/135683122", "numeration": "", "preferred_name": "Kölling, Mario", "authorized_access_point": "Kölling, Mario"} 1 +2020-09-24 13:19:49.043008 2020-09-24 13:19:49.043013 50a9389c-c4c9-4ce1-8643-7ae4b25fd5ae {"md5": "df9f89b883824f4b9df9be87ec79e8cb", "pid": "234251433", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/234251433", "numeration": "", "preferred_name": "Gagnière, Claude-Jean", "authorized_access_point": "Gagnière, Claude-Jean", "biographical_information": ["Auteur d'une thèse soutenue à la Faculté de Droit de Montpellier en 1952"]} 1 +2020-09-24 13:19:49.421872 2020-09-24 13:19:49.421878 a53ed3c7-42b4-48a9-bf92-c20f7c27f9e0 {"md5": "292fefaba91ae57fabb448b7e5eba5d0", "pid": "241164168", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/241164168", "numeration": "", "date_of_birth": "1982-06-26", "preferred_name": "Foroughi Nik, Rahim", "authorized_access_point": "Foroughi Nik, Rahim, 1982-....", "biographical_information": ["Auteur d'une thèse en Droit privé à Nantes en 2019"]} 1 +2020-09-24 13:19:49.844813 2020-09-24 13:19:49.844818 7f29fc1c-66c0-4d4a-9238-cfbc05c8591c {"md5": "1e94fbad257fc80dfb59e18af05b4613", "pid": "241515033", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/241515033", "numeration": "", "preferred_name": "Guilloux, Sylvie", "authorized_access_point": "Guilloux, Sylvie", "biographical_information": ["Titulaire d'une thèse d'exercice en Chirurgie dentaire (Rennes : 1981)"]} 1 +2020-09-24 13:19:50.668252 2020-09-24 13:19:50.668257 c887b3ee-96d6-406e-9f8e-c2c1c144c59c {"md5": "09caf265a86ab53c1dd4f8d4e4a31338", "pid": "069782768", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://www.idref.fr/069782768", "numeration": "", "date_of_birth": "1860", "date_of_death": "1946", "preferred_name": "Loesch, Ernst", "authorized_access_point": "Loesch, Ernst, 1860-1946"} 1 +2020-09-24 13:19:52.11421 2020-09-24 13:19:52.114216 5db33917-5628-48f0-8ebd-89d583a6fc90 {"md5": "1e6809751bb1638b61d4d8dda0c02e39", "pid": "145286444", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://www.idref.fr/145286444", "numeration": "", "preferred_name": "Erman, Elise", "authorized_access_point": "Erman, Elise"} 1 +2020-09-24 13:19:53.493226 2020-09-24 13:19:53.493231 92569657-cb4d-4935-8cd0-6662091b3eb4 {"md5": "9b3c5fbd5266b5113cdab67970ba16a9", "pid": "136864554", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["mul"], "qualifier": "", "identifier": "http://www.idref.fr/136864554", "numeration": "", "preferred_name": "Yampolsky, Heather", "authorized_access_point": "Yampolsky, Heather"} 1 +2020-09-24 13:19:54.458644 2020-09-24 13:19:54.458649 6e76b53d-a9a0-4788-bfd0-aaff785c6b8f {"md5": "66746062e9c4a4ae4d953711a40b49fe", "pid": "157856283", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/157856283", "numeration": "", "preferred_name": "Thomas, Corinne", "authorized_access_point": "Thomas, Corinne", "biographical_information": ["Titulaire d'un doctorat en Production Automatisée de l'Université Henri Poincaré (Nancy 1) en 1999"]} 1 +2020-09-24 13:19:55.742602 2020-09-24 13:19:55.742607 46dd7621-b745-4ed0-beb1-00daef11a8c2 {"md5": "da7bf85eca900b49a48bb1e9cd8ce240", "pid": "148833101", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/148833101", "numeration": "", "date_of_birth": "19", "preferred_name": "Parker, Ian C.", "authorized_access_point": "Parker, Ian C.", "biographical_information": ["Economiste. Professeur à l'Université de Toronto (en 2010)"]} 1 +2020-09-24 13:19:57.409877 2020-09-24 13:19:57.409882 3eae9467-cabd-420b-b0ec-86846b463089 {"md5": "294ccf6d433ee3778f96fe320b9d0c70", "pid": "238282694", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "comte de", "identifier": "http://www.idref.fr/238282694", "numeration": "", "date_of_birth": "1732", "date_of_death": "1808", "preferred_name": "La Roque-Mons, Jean-François, comte de", "authorized_access_point": "La Roque-Mons, Jean-François, 1732-1808, comte de", "biographical_information": ["Député de la noblesse de Périgueux"]} 1 +2020-09-24 13:19:57.800458 2020-09-24 13:19:57.800464 b0fc10b7-597c-45d4-b5cc-a7e8b14cbe74 {"md5": "bcd875d99f3f4d74cea80a01700c1786", "pid": "168968614", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/168968614", "numeration": "", "preferred_name": "Gagnier, Serge", "authorized_access_point": "Gagnier, Serge", "biographical_information": ["Auteur pour la jeunesse"]} 1 +2020-09-24 13:19:58.224442 2020-09-24 13:19:58.224447 d05771c5-9a54-4c70-adba-4b5d2be240c0 {"md5": "feea8b029ac7f4737c1fce86f5b02501", "pid": "129801577", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/129801577", "numeration": "", "preferred_name": "Koizumi, Hiroyasu", "authorized_access_point": "Koizumi, Hiroyasu", "biographical_information": ["Mathématicien. En poste à la faculté de Science de l'Institut de technologie d'Himeji au Japon en 2003."]} 1 +2020-09-24 13:19:58.956097 2020-09-24 13:19:58.956102 70a6e809-09a6-43a9-a4f0-87b4cf5623fe {"md5": "483cd2f23954fb98569bb8cd47dd97a8", "pid": "15117430X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/15117430X", "numeration": "", "preferred_name": "Cadwaladr, Margaret", "authorized_access_point": "Cadwaladr, Margaret"} 1 +2020-09-24 13:19:59.772235 2020-09-24 13:19:59.77224 b280bd30-a3d9-49c8-b5c5-f23ff671fa6c {"md5": "c07fa921c7c939503c87c9df1693a628", "pid": "089443675", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/089443675", "numeration": "", "preferred_name": "Ritch, K. Janet", "authorized_access_point": "Ritch, K. Janet", "biographical_information": ["Enseigne à l'université de Toronto, traduit en français"]} 1 +2020-09-24 13:20:01.848242 2020-09-24 13:20:01.848247 6ed75c6f-94c5-46d9-91e3-d6ee0fc03359 {"md5": "837867b1e9769db12fe960356c123d44", "pid": "085647640", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/085647640", "numeration": "", "date_of_birth": "1839-11-07", "date_of_death": "1900-05-13", "preferred_name": "Levi, Hermann", "authorized_access_point": "Levi, Hermann, 1839-1900", "biographical_information": ["Chef d'orchestre et compositeur allemand. 1859 directeur général de la musique à Sarrebruck, 1861 chef assistant à l'Opéra National de Mannheim, 1861-64 chef à l'Opéra de Rotterdam, 1864-72 chef à la Cour de Karlsruhe,1872-90 chef à la Cour de Munich, 1894 directeur général de la musique à Munich. Il cesse de diriger en 1896", "Lieu de naissance Giessen. Lieu de décès Munich"]} 1 +2020-09-24 13:20:04.443228 2020-09-24 13:20:04.443232 a7bb6288-13c8-4eae-a3f4-178017a22d6f {"md5": "b945b0dc290407426d9eddc7705d5831", "pid": "153446544", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/153446544", "numeration": "", "preferred_name": "Abbott, Colleen", "authorized_access_point": "Abbott, Colleen"} 1 +2020-09-24 13:20:05.702593 2020-09-24 13:20:05.702598 5da569ad-56fb-4cef-85e2-23aded5edd58 {"md5": "bcc808253ee3098f6c2ca991ac5e5b08", "pid": "123240638", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/123240638", "numeration": "", "variant_name": ["Pénard-Morand, Céline"], "date_of_birth": "1977-11-16", "preferred_name": "Morand Céline", "authorized_access_point": "Morand Céline", "biographical_information": ["Docteur en médecine (2007)"]} 1 +2020-09-24 13:20:06.897683 2020-09-24 13:20:06.897687 effdf3c7-8121-42fa-818a-2d28f2b65836 {"md5": "4294770ab6deb80939d1e9c7f4ae04f1", "pid": "167901842", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/167901842", "numeration": "", "date_of_birth": "1975", "preferred_name": "Jarvis, Mark D.", "authorized_access_point": "Jarvis, Mark D., 1975-...."} 1 +2020-09-24 13:20:10.798702 2020-09-24 13:20:10.798707 fa9a24c4-7540-4639-8d7b-a6945fe05783 {"md5": "d6c1cd6cc55e9b50e1a6492ccf35c3bc", "pid": "155852639", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/155852639", "numeration": "", "preferred_name": "Routon, Kenneth", "authorized_access_point": "Routon, Kenneth", "biographical_information": ["Anthropologue culturel (2010)"]} 1 +2020-09-24 13:20:12.045314 2020-09-24 13:20:12.04532 4166ad48-f347-4cfa-86d8-ea59c24ba1c2 {"md5": "bfb46f4dd011ff6f8ee5ecaa87f569aa", "pid": "16583868X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/16583868X", "numeration": "", "preferred_name": "Pedraglio, Francesco", "authorized_access_point": "Pedraglio, Francesco", "biographical_information": ["Art"]} 1 +2020-09-24 13:20:13.526633 2020-09-24 13:20:13.526638 e2d5042e-30b1-40d9-bc53-1de337306924 {"md5": "b865809074d23f1f7adcfdafd8d54b21", "pid": "136495117", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/136495117", "numeration": "", "variant_name": ["Hjarl, Jane Petersen"], "preferred_name": "Hjarl Petersen, Jane", "authorized_access_point": "Hjarl Petersen, Jane"} 1 +2020-09-24 13:20:15.127126 2020-09-24 13:20:15.127131 cf9d7526-5551-4809-a415-728b3bd50295 {"md5": "8d24e819acb23958ee804d7b2ae32906", "pid": "134489500", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/134489500", "numeration": "", "preferred_name": "Diaz, Janet Winecoff", "authorized_access_point": "Diaz, Janet Winecoff"} 1 +2020-09-24 13:20:16.215159 2020-09-24 13:20:16.215164 66d5a6ae-a941-485e-aa32-3ed9486d5646 {"md5": "932053e9709457d89987fe414e0846b6", "pid": "071535616", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/071535616", "numeration": "", "preferred_name": "Lamberton, Charles", "authorized_access_point": "Lamberton, Charles", "biographical_information": ["Professeur au Lycée Gallieni, secrétaire perpétuel de l'Académie Malgache"]} 1 +2020-09-24 13:20:18.058673 2020-09-24 13:20:18.058678 720ff858-d86c-4679-b7bf-5c9a9ba79a24 {"md5": "74d874baf61edd4bb7d48e0a37a088de", "pid": "232278431", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/232278431", "numeration": "", "date_of_birth": "19..", "preferred_name": "Douglas, Claire", "authorized_access_point": "Douglas, Claire", "biographical_information": ["Psychologue clinicienne et psychanalyste jungienne. - Membre de : C. G. Jung society of Southern California, Los Angeles, Calif., États-Unis (en 1997)"]} 1 +2020-09-24 13:20:18.68785 2020-09-24 13:20:18.687855 0a6bc7ba-ad34-4c06-b747-cfcc4696764f {"md5": "5c24d319b065003499c43f298297e61c", "pid": "190122277", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/190122277", "numeration": "", "preferred_name": "Wildeboer, Ina Hinderika", "authorized_access_point": "Wildeboer, Ina Hinderika"} 1 +2020-09-24 13:20:19.880816 2020-09-24 13:20:19.88082 6780b71c-a98d-4cbf-812c-cf5e4253140a {"md5": "9a935bf2805a3027335aa15bb4b688a4", "pid": "142877832", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/142877832", "numeration": "", "preferred_name": "McDonnell, Thomas Michael", "authorized_access_point": "McDonnell, Thomas Michael", "biographical_information": ["Professeur de droit, Pace University School of Law (2010)"]} 1 +2020-09-24 13:20:20.998444 2020-09-24 13:20:20.998449 ab6a5194-54a4-4791-a686-9c78e042ccb3 {"md5": "1a90f2b7cc9712c8abd56b1a3efab66c", "pid": "154972673", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://www.idref.fr/154972673", "numeration": "", "date_of_birth": "1970", "preferred_name": "Lange, Bastian", "authorized_access_point": "Lange, Bastian, 1970-...."} 1 +2020-09-24 13:20:22.484888 2020-09-24 13:20:22.484895 92b1c655-cfeb-48e5-9881-259954f9d3c3 {"md5": "dbc7c48169fbd849922a4169a64b4b73", "pid": "11499899X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/11499899X", "numeration": "", "date_of_birth": "1942", "preferred_name": "Parker, Gordon", "authorized_access_point": "Parker, Gordon, 1942-", "biographical_information": ["Professeur. En poste à University of New South Wales. Directeur du Black Dog Institute, Sydney, Australie (en 2005)."]} 1 +2020-09-24 13:20:23.962138 2020-09-24 13:20:23.962143 a88b3d51-5170-40d0-af6e-7e81e6d3f36a {"md5": "2c38888c53de00b5003a0a42889e57b4", "pid": "088397599", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["spa"], "qualifier": "", "identifier": "http://www.idref.fr/088397599", "numeration": "", "preferred_name": "Rodríguez Gómez, José M.", "authorized_access_point": "Rodríguez Gómez, José M."} 1 +2020-09-24 13:20:24.333451 2020-09-24 13:20:24.333456 f08233af-b4cb-4347-bf4b-b2b7cd16cb52 {"md5": "21c5b7e5d860dd9f3e8d5989936b8871", "pid": "033864357", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/033864357", "numeration": "", "date_of_birth": "1954", "preferred_name": "Séébold, Éric", "authorized_access_point": "Séébold, Éric, 1954-", "biographical_information": ["Spécialiste de littérature française"]} 1 +2020-09-24 13:20:24.919841 2020-09-24 13:20:24.919846 045e80c9-d42e-4afa-9300-64ad7d045b28 {"md5": "9ffadebb1ab1c1bc258b608b4b360eec", "pid": "193779587", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/193779587", "numeration": "", "preferred_name": "Coulet, Michel", "authorized_access_point": "Coulet, Michel"} 1 +2020-09-24 13:20:25.842132 2020-09-24 13:20:25.842136 5fa1af18-f9d6-4407-8b82-689ba14ded52 {"md5": "ceac08c619657cb8765653d0c3b77dec", "pid": "149834802", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ita"], "qualifier": "", "identifier": "http://www.idref.fr/149834802", "numeration": "", "date_of_birth": "19..", "preferred_name": "Fiore, Davide", "authorized_access_point": "Fiore, Davide", "biographical_information": ["Critique d'art"]} 1 +2020-09-24 13:20:29.723966 2020-09-24 13:20:29.723971 bcfc6f87-0ae5-41ec-979f-b0468a30d776 {"md5": "3aedec8745b801d695660735f9cf32b1", "pid": "177081724", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre", "ita", "eng"], "qualifier": "", "identifier": "http://www.idref.fr/177081724", "numeration": "", "date_of_birth": "1973", "preferred_name": "Stampone, Giuseppe", "authorized_access_point": "Stampone, Giuseppe, 1973-....", "biographical_information": ["Artiste (Installation) né en France, vit et travaille à Teramo et New York"]} 1 +2020-09-24 13:20:31.580584 2020-09-24 13:20:31.58059 0e143e8e-7080-4cfe-9f95-71cf7587c3fd {"md5": "55c56c461eb52c44330f95d8d0e63d09", "pid": "19329074X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/19329074X", "numeration": "", "date_of_birth": "1989-09-16", "preferred_name": "David, Leslie", "authorized_access_point": "David, Leslie, 1989-....", "biographical_information": ["Auteur d'une thèse en Sciences de l'environnement à Paris 6 en 2015"]} 1 +2020-09-24 13:20:31.940639 2020-09-24 13:20:31.940645 490eb0a1-1235-479c-8c6a-d781841fa169 {"md5": "c1bcb4588523ac0ee6ec2de826d51980", "pid": "193955482", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/193955482", "numeration": "", "preferred_name": "Micheli, Delphine", "authorized_access_point": "Micheli, Delphine", "biographical_information": ["Photographe"]} 1 +2020-09-24 13:20:32.607187 2020-09-24 13:20:32.607192 a5b268e8-0827-4215-b1c7-8e348ef960ba {"md5": "a2ad5f88902aaf82db29043a60341aee", "pid": "199679150", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/199679150", "numeration": "", "preferred_name": "Larivain, Henri", "authorized_access_point": "Larivain, Henri"} 1 +2020-09-24 13:20:33.041089 2020-09-24 13:20:33.041094 7ce98dd5-de62-47cc-a8ff-42cba6ec1d16 {"md5": "5b95a7abb17b86582bc17398db6589ce", "pid": "200661531", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/200661531", "numeration": "", "date_of_birth": "1986-01-30", "preferred_name": "Aiello, Angèle d'", "authorized_access_point": "Aiello, Angèle d', 1986-....", "biographical_information": ["Médecin militaire français (en 2016). Docteur en médecine (Brest, 2016)"]} 1 +2020-09-24 13:20:33.421264 2020-09-24 13:20:33.421269 2ba49ef0-281d-4c2f-9beb-82bcb3ccdf2a {"md5": "55752031f2d056fd50605324dedb28ca", "pid": "201609924", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/201609924", "numeration": "", "date_of_birth": "1987-01-19", "preferred_name": "Djaziri, Sarah", "authorized_access_point": "Djaziri, Sarah, 1987-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Médecine (Lyon 1, 2017)"]} 1 +2020-09-24 13:20:34.218926 2020-09-24 13:20:34.218932 1a9119f2-9cb6-4d9c-b4a7-362882e0fa45 {"md5": "28ad915217cf93a012074ab85b5d6f5a", "pid": "224794272", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/224794272", "numeration": "", "date_of_birth": "19..--", "preferred_name": "Fiedrich, Frank", "authorized_access_point": "Fiedrich, Frank, 19..-", "biographical_information": ["Institute for Public Safety and Emergency Management, Université de Wuppertal, Allemagne"]} 1 +2020-09-24 13:20:34.686976 2020-09-24 13:20:34.686982 841c0ee6-5810-4994-9ba7-b102c4269b65 {"md5": "90b2f6873bbf09640b516a3c4f30fe5f", "pid": "229619231", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/229619231", "numeration": "", "preferred_name": "Muratti, Louna", "authorized_access_point": "Muratti, Louna", "biographical_information": ["Comédienne"]} 1 +2020-09-24 13:20:35.659622 2020-09-24 13:20:35.659627 130da013-50db-4d1e-b2fd-ead9759fef50 {"md5": "65341b9a528ea95442e8fd5347e3e10c", "pid": "234195576", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/234195576", "numeration": "", "preferred_name": "Cabaleiro-Jouadé, Irène", "authorized_access_point": "Cabaleiro-Jouadé, Irène", "biographical_information": ["Illustratrice, directrice d'école"]} 1 +2020-09-24 13:20:42.112776 2020-09-24 13:20:42.112781 67937376-50da-4c1b-aa82-3a0eafab0db6 {"md5": "1655c1f47e973bea8a3921d401b60b7e", "pid": "147759420", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ita"], "qualifier": "", "identifier": "http://www.idref.fr/147759420", "numeration": "", "date_of_birth": "1590", "date_of_death": "1655", "preferred_name": "Vernazza, Livia", "authorized_access_point": "Vernazza, Livia, 1590-1655", "biographical_information": ["Epouse de Jean de Medicis 1563-1621"]} 1 +2020-09-24 13:20:46.500728 2020-09-24 13:20:46.500733 70f02b72-5256-48d9-8ac4-ef6629e64618 {"md5": "433601f827caa57e0eba44317fdaa264", "pid": "152270345", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/152270345", "numeration": "", "variant_name": ["Serventy, D. L."], "date_of_birth": "1904", "date_of_death": "1988", "preferred_name": "Serventy, Dominic Louis", "authorized_access_point": "Serventy, Dominic Louis, 1904-1988", "biographical_information": ["Ornithologue australien"]} 1 +2020-09-24 13:20:48.147244 2020-09-24 13:20:48.147248 fc869ba1-e12c-4acf-915b-f6440f5c9ffe {"md5": "c43f7241873dce4c1e513af8b2843fcf", "pid": "226257444", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/226257444", "numeration": "", "date_of_birth": "1990-07-13", "preferred_name": "Gosselin, David", "authorized_access_point": "Gosselin, David, 1990-....", "biographical_information": ["Auteur d'une thèse en Mécanique des fluides Energétique, Procédés à Grenoble Alpes en 2017"]} 1 +2020-09-24 13:20:49.912364 2020-09-24 13:20:49.91237 6797520b-c7c5-4455-be52-4984f2c37f25 {"md5": "d8ee458966f14bf4703b8ed864234078", "pid": "148637450", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/148637450", "numeration": "", "date_of_birth": "19XX", "preferred_name": "Hepner, Gershon", "authorized_access_point": "Hepner, Gershon"} 1 +2020-09-24 13:20:50.383917 2020-09-24 13:20:50.383923 078410be-5d8e-4669-b68b-abaf69daf403 {"md5": "976df91a2055549060bdbc91565cda5c", "pid": "136803784", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["jpn"], "qualifier": "", "identifier": "http://www.idref.fr/136803784", "numeration": "", "date_of_birth": "1980-04-14", "preferred_name": "Ito, Ayumi", "authorized_access_point": "Ito, Ayumi, 1980-....", "biographical_information": ["Actrice"]} 1 +2020-09-24 13:20:52.2457 2020-09-24 13:20:52.245706 67f98b20-479e-4c33-bf6a-95c576dda8da {"md5": "d5dd988761ee9662e80d799d3c2e8023", "pid": "221761942", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["spa"], "qualifier": "", "identifier": "http://www.idref.fr/221761942", "numeration": "", "variant_name": ["Laveaga, Mario Hinojos", "Hinojos, Mario"], "date_of_birth": "1982", "preferred_name": "Hinojos Laveaga, Mario", "authorized_access_point": "Hinojos Laveaga, Mario, 1982-...."} 1 +2020-09-24 13:20:54.333705 2020-09-24 13:20:54.333711 f9afb0d4-28ab-46a3-b3c7-bb80e8d43f13 {"md5": "f0ebe4775e8385c4d434622e0ab974b4", "pid": "094563152", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://www.idref.fr/094563152", "numeration": "", "preferred_name": "Nievergelt, Dieter", "authorized_access_point": "Nievergelt, Dieter"} 1 +2020-09-24 13:20:55.03734 2020-09-24 13:20:55.037346 99b551e9-9f3d-4592-83bf-cb93672441be {"md5": "593860c4cd8d0882b5e26f64e0c1ecff", "pid": "192856200", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/192856200", "numeration": "", "preferred_name": "Siss, William", "authorized_access_point": "Siss, William", "biographical_information": ["Peintres aux armées"]} 1 +2020-09-24 13:20:56.319109 2020-09-24 13:20:56.319115 0308a752-e66d-4d38-88a5-f88f0df52228 {"md5": "81a003a82eeb7971d58ba122d1b48ba8", "pid": "198193327", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/198193327", "numeration": "", "preferred_name": "Régis, Roger", "authorized_access_point": "Régis, Roger"} 1 +2020-09-24 13:20:57.384999 2020-09-24 13:20:57.385005 064b229c-5bc0-4eb8-acf7-dbd1da5fb77a {"md5": "73e481b3080a198086add2aaa18a388e", "pid": "031153909", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://www.idref.fr/031153909", "numeration": "", "preferred_name": "Dietrich, Dagmar", "authorized_access_point": "Dietrich, Dagmar"} 1 +2020-09-24 13:20:58.508057 2020-09-24 13:20:58.508063 a92a70d5-642d-4fe8-9f32-327d08e0b6ca {"md5": "fe3a349b134c7903c031610e7f1b814f", "pid": "08589320X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/08589320X", "numeration": "", "date_of_birth": "1813-06-22", "date_of_death": "1882-07", "preferred_name": "Batissier, Louis", "authorized_access_point": "Batissier, Louis, 1813-1882", "biographical_information": ["Médecin. Inspecteur de monuments historiques de l'Allier. Chargé de mission en Grèce, Syrie et Asie Mineure. Vice-consul de France à Suez"]} 1 +2020-09-24 13:20:59.9245 2020-09-24 13:20:59.924506 65157acb-5a71-401f-936f-855232e6d308 {"md5": "475ebb32531311a5745f9e49cab70ef9", "pid": "071285571", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "médecin", "identifier": "http://www.idref.fr/071285571", "numeration": "", "date_of_birth": "19..", "preferred_name": "Louis, Edouard, médecin", "authorized_access_point": "Louis, Edouard, 19..-...., médecin", "biographical_information": ["Docteur en médecine"]} 1 +2020-09-24 13:21:01.198664 2020-09-24 13:21:01.19867 34bbca55-5ee5-4255-a4d9-99a708e5a437 {"md5": "e9359e20d55b753ff91ffa0732bd976e", "pid": "18786893X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/18786893X", "numeration": "", "date_of_birth": "19..", "preferred_name": "Laval, Roseline", "authorized_access_point": "Laval, Roseline"} 1 +2020-09-24 13:21:03.172108 2020-09-24 13:21:03.172114 8d9d86d9-07a0-4443-b5da-0e5ae888b903 {"md5": "55bcc14bbfdb40a4dd58b3fb8c3c9681", "pid": "176929738", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["cze"], "qualifier": "", "identifier": "http://www.idref.fr/176929738", "numeration": "", "date_of_birth": "1956-06-03", "date_of_death": "1994-04-03", "preferred_name": "Rákos, Petr", "authorized_access_point": "Rákos, Petr, 1956-1994", "biographical_information": ["Psychiatre, traducteur, écrivain"]} 1 +2020-09-24 13:21:06.408293 2020-09-24 13:21:06.408299 c4cb29fe-e68a-4d2f-86f3-b88b484b7229 {"md5": "10310f159a7b1ecacc7197f3347a3bcb", "pid": "124217273", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng", "ita"], "qualifier": "", "identifier": "http://www.idref.fr/124217273", "numeration": "", "preferred_name": "Barbi, Elisabetta", "authorized_access_point": "Barbi, Elisabetta", "biographical_information": ["Professeur à l'Université de Messina (Italie) au département Economie, Statistique, Mathématiques et Sociologie \\"W. Pareto\\" (en 2008)."]} 1 +2020-09-24 13:21:10.79722 2020-09-24 13:21:10.797226 75d89e2c-952b-44ba-8b5e-bebb75bb16f0 {"md5": "d4065a007440fb1c16acd3ba95406869", "pid": "059412720", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["por"], "qualifier": "", "identifier": "http://www.idref.fr/059412720", "numeration": "", "variant_name": ["Echevarría Ferrreira, Fernando", "Ferrreira, Fernando Echevarría"], "date_of_birth": "1929", "preferred_name": "Echevarría, Fernando", "authorized_access_point": "Echevarría, Fernando, 1929-....", "biographical_information": ["Poète portugais du 20e siècle"]} 1 +2020-09-24 13:21:17.889602 2020-09-24 13:21:17.889608 1de63d53-7992-4b7c-b418-9aa5eaaedbba {"md5": "3188f04965323725901828f380ceaf48", "pid": "108510638", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/108510638", "numeration": "", "date_of_birth": "1956-09-13", "preferred_name": "Jennex, Murray E.", "authorized_access_point": "Jennex, Murray E., 1956-...."} 1 +2020-09-24 13:21:18.787316 2020-09-24 13:21:18.787322 2dce2540-0ded-49de-8b8b-c6c05785e857 {"md5": "17178ffb3d5f3e6e435b1a8f48032cda", "pid": "147906423", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/147906423", "numeration": "", "preferred_name": "Figarova, Sophia R.", "authorized_access_point": "Figarova, Sophia R.", "biographical_information": ["En poste : Baku state university, Azerbaïdjan (en 2010)"]} 1 +2020-09-24 13:21:19.173252 2020-09-24 13:21:19.173257 36834577-88c0-4efe-b509-988f166dc516 {"md5": "6d01bdb6b9871dd8dd441b49b3b608df", "pid": "145729613", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["rum"], "qualifier": "", "identifier": "http://www.idref.fr/145729613", "numeration": "", "preferred_name": "Stanciu, Augustina", "authorized_access_point": "Stanciu, Augustina", "biographical_information": ["Scénariste"]} 1 +2020-09-24 13:21:26.693272 2020-09-24 13:21:26.693277 c8f5dee2-8b1f-40ee-aea7-a5e43880ed11 {"md5": "f53eda6a15cfb5212ac101fac45ff5c0", "pid": "154889415", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/154889415", "numeration": "", "date_of_birth": "1971", "preferred_name": "Kay, Tamara", "authorized_access_point": "Kay, Tamara, 1971-....", "biographical_information": ["Professeur de sociologie à l'Université de Harvard et codirectrice de : Harvard's Transnational Studies iniative"]} 1 +2020-09-24 13:21:28.397704 2020-09-24 13:21:28.39771 951bc7e1-cd5f-40af-9fc9-c9736311156d {"md5": "bfe91c64689fc42c96e2a12e6de012a7", "pid": "14577838X", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["gre"], "qualifier": "", "identifier": "http://www.idref.fr/14577838X", "numeration": "", "variant_name": ["Priftis, Kostas N."], "preferred_name": "Priftis, Kostas N.", "authorized_access_point": "Priftis, Kostas N.", "biographical_information": ["Pneumologue-allergologue"]} 1 +2020-09-24 13:21:29.647345 2020-09-24 13:21:29.64735 79159cae-7acb-40be-bca1-a5c2cfc808e9 {"md5": "c7d324636e16cc43d453caf514add70c", "pid": "143120743", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/143120743", "numeration": "", "date_of_birth": "19XX", "preferred_name": "Saul, Matthew", "authorized_access_point": "Saul, Matthew", "biographical_information": ["Assistant en droit à Durham Law School, Université de Durham, en Angleterre (en 2010)", "Chercheur en droit à Department of Public and International Law, Université d'Oslo, Norvège (en 2014)"]} 1 +2020-09-24 13:21:33.491945 2020-09-24 13:21:33.491951 a354a66f-8469-4dd0-9b4a-845e6585f89e {"md5": "f24611dae2ff0cc217b2542e3c9d8c42", "pid": "129419915", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["spa"], "qualifier": "", "identifier": "http://www.idref.fr/129419915", "numeration": "", "preferred_name": "Velásquez, Rafael", "authorized_access_point": "Velásquez, Rafael", "biographical_information": ["Auteur cubain"]} 1 +2020-09-24 13:21:34.778688 2020-09-24 13:21:34.778694 b62e353f-5bdf-4bb0-b780-581c69fe0ae4 {"md5": "4b3230de49fe388ceff6c4ef67a11daf", "pid": "237257521", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/237257521", "numeration": "", "preferred_name": "Lapp, Axel", "authorized_access_point": "Lapp, Axel"} 1 +2020-09-24 13:21:36.306565 2020-09-24 13:21:36.306571 df1a9085-ff56-41fe-aa2b-e48b20651889 {"md5": "db4a192255272e9d1dca223adefd0407", "pid": "242007481", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/242007481", "numeration": "", "preferred_name": "Lindblad, Waldemar", "authorized_access_point": "Lindblad, Waldemar"} 1 +2020-09-24 13:21:36.946883 2020-09-24 13:21:36.946889 98768b9e-083d-4b69-86aa-2f9f9750fa54 {"md5": "21faea41d9ab4b86238b0fa71cde0b8d", "pid": "193181878", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/193181878", "numeration": "", "preferred_name": "Mir, Mark Stephen", "authorized_access_point": "Mir, Mark Stephen", "biographical_information": ["Archiviste"]} 1 +2020-09-24 13:21:37.704779 2020-09-24 13:21:37.704784 620f31b0-58db-47cb-bd20-8680ccbeff5d {"md5": "2fe99527ffbc3ad1c3c4a2ed2af5cc02", "pid": "071531149", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/071531149", "numeration": "", "variant_name": ["Arnold, G. C."], "date_of_birth": "1944", "preferred_name": "Arnold, Gregory C.", "authorized_access_point": "Arnold, Gregory C., 1944-...."} 1 +2020-09-24 13:21:40.325757 2020-09-24 13:21:40.325763 f80ccb85-a5bb-41b8-8785-b681207e509d {"md5": "d46adc669ee7aea1320285ee601d9039", "pid": "203120752", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "qualifier": "", "identifier": "http://www.idref.fr/203120752", "numeration": "", "preferred_name": "Lataste, Flore", "authorized_access_point": "Lataste, Flore"} 1 +2020-09-24 13:21:40.747115 2020-09-24 13:21:40.747121 d2ede041-0588-4b16-ab23-e39aeb7ddfa1 {"md5": "086f027999daef7fb008fc08adbf32cf", "pid": "221427767", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/221427767", "numeration": "", "date_of_birth": "19", "preferred_name": "Foulon, Véronique", "authorized_access_point": "Foulon, Véronique"} 1 +2020-09-24 13:21:41.633293 2020-09-24 13:21:41.633298 31ef6648-26a3-43fc-9794-cdc1d78c05ef {"md5": "0362628c7f6c7cd33c4b410296653909", "pid": "235057657", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/235057657", "numeration": "", "preferred_name": "Goldrach, Noah", "authorized_access_point": "Goldrach, Noah"} 1 +2020-09-24 13:21:42.482835 2020-09-24 13:21:42.48284 39f89d43-bd6f-4098-afb7-cc103e505c3c {"md5": "fceeb4beab1648468194e399ea970d2f", "pid": "242143814", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/242143814", "numeration": "", "preferred_name": "Murphy, James P.", "authorized_access_point": "Murphy, James P."} 1 +2020-09-24 13:21:44.479501 2020-09-24 13:21:44.479507 a736b1c8-4bbc-4b7c-b172-85db80e7d8b7 {"md5": "e1a34f1ae00f3cf022aed102ecf0ddf9", "pid": "234587989", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["jpn"], "qualifier": "", "identifier": "http://www.idref.fr/234587989", "numeration": "", "date_of_birth": "1924", "date_of_death": "2015", "preferred_name": "橋本, 義彦", "authorized_access_point": "橋本, 義彦, 1924-2015", "biographical_information": ["Transcription Hepburn modifié", "Historien japonais spécialiste de la noblesse et de la cour japonaises durant la période Heian"]} 1 +2020-09-24 13:21:44.958047 2020-09-24 13:21:44.958052 503d9e21-6c48-4bf5-b271-cca7350e9bb3 {"md5": "9af4a466ded3e67d914464b12eabf16c", "pid": "174571623", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["jpn"], "qualifier": "", "identifier": "http://www.idref.fr/174571623", "numeration": "", "date_of_birth": "1924", "date_of_death": "2006", "preferred_name": "大島, 清次", "authorized_access_point": "大島, 清次, 1924-2006", "biographical_information": ["Critique d'art"]} 1 +2020-09-24 13:21:45.809735 2020-09-24 13:21:45.80974 baf0986f-fdd1-42f5-b5db-f5dd5279bbfd {"md5": "ab8dce7f8d67bf36a8673e953ef199d8", "pid": "032801009", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/032801009", "numeration": "", "date_of_birth": "1908-11-04", "preferred_name": "Salisbury, Harrison Evans", "authorized_access_point": "Salisbury, Harrison Evans, 1908-1993", "biographical_information": ["Historien"]} 1 +2020-09-24 13:21:46.878039 2020-09-24 13:21:46.878045 aee05af8-fbde-454b-8a7c-8cbbbb4a9b09 {"md5": "55f2ac0e010c50f7e64899bb6c439526", "pid": "108090450", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/108090450", "numeration": "", "date_of_birth": "1914", "date_of_death": "1994", "preferred_name": "Cullen, Gordon", "authorized_access_point": "Cullen, Gordon, 1914-1994", "biographical_information": ["Architecte et urbaniste britannique"]} 1 +2020-09-24 13:21:48.474162 2020-09-24 13:21:48.474167 370744a6-41ac-498e-9556-6faa2b3d3fb4 {"md5": "4d886202f7e3bc53d2fc00af0e7d26a2", "pid": "082091943", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["ger"], "qualifier": "", "identifier": "http://www.idref.fr/082091943", "numeration": "", "date_of_birth": "1938", "preferred_name": "Normann, Reinhard von", "authorized_access_point": "Normann, Reinhard von, 1938-...."} 1 +2020-09-24 13:21:49.547571 2020-09-24 13:21:49.547575 609408a7-287b-419c-8da0-d2f6c1bffe11 {"md5": "64edd2e0f9e5535c86b78d15fd6167cd", "pid": "027019837", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/027019837", "numeration": "", "variant_name": ["Mayer, Arno J."], "date_of_birth": "1926", "preferred_name": "Mayer, Arno", "authorized_access_point": "Mayer, Arno, 1926-....", "biographical_information": ["Professeur d'histoire européenne à Princeton university, New Jersey (en 1990)"]} 1 +2020-09-24 13:21:50.25864 2020-09-24 13:21:50.258646 05177853-3741-435b-ad32-8ffa9b5b3844 {"md5": "e4fefdd2bd091c511276521d46ad8478", "pid": "028442717", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/028442717", "numeration": "", "date_of_birth": "1931", "preferred_name": "Echard, William E", "authorized_access_point": "Echard, William E, 1931-....", "biographical_information": ["Professeur d'histoire, Glendon college of York university, Toronto"]} 1 +2020-09-24 13:21:51.403675 2020-09-24 13:21:51.40368 df6263e2-31ba-4ccf-80d9-28e88b5330d1 {"md5": "f15f89265d7c4433fa8069d441a56d6a", "pid": "050212265", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "", "identifier": "http://www.idref.fr/050212265", "numeration": "", "preferred_name": "Kaplan, Robert B.", "authorized_access_point": "Kaplan, Robert B."} 1 +2020-09-24 13:21:52.542303 2020-09-24 13:21:52.542309 8e73ae5f-787b-4294-b5cb-33099a06a976 {"md5": "91ade20bdca57551a8c4d1556f23f36f", "pid": "071344241", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["jpn"], "qualifier": "", "identifier": "http://www.idref.fr/071344241", "numeration": "", "date_of_birth": "1952", "preferred_name": "Ihori, Toshihiro", "authorized_access_point": "Ihori, Toshihiro, 1952-....", "biographical_information": ["Écrit aussi en anglais", "Économiste. Professeur d'économie à l'Université de la Ville de Tokyo, Japon (en 1993)"]} 1 +2020-09-24 13:21:53.674228 2020-09-24 13:21:53.674233 1f6da084-c73f-4d05-93ad-a44a76ba6881 {"md5": "9f29b2f84b5d664553cc71dd5a97322e", "pid": "029598982", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["fre"], "qualifier": "", "identifier": "http://www.idref.fr/029598982", "numeration": "", "date_of_birth": "1943", "preferred_name": "Pestieau, Pierre", "authorized_access_point": "Pestieau, Pierre, 1943-....", "biographical_information": ["Ecrit aussi en anglais", "Docteur en sciences économiques. Professeur à l'Université de Liège (en 1989). Professeur émérite et membre du CORE (en 2017)"]} 1 +2020-09-24 13:21:56.223248 2020-09-24 13:21:56.223254 a1e64604-d115-4ca7-badc-88701b7d8edd {"md5": "b1116535772e3a61595e19729ce03ca6", "pid": "234715723", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["jpn"], "qualifier": "", "identifier": "http://www.idref.fr/234715723", "numeration": "", "date_of_birth": "1930", "date_of_death": "....", "preferred_name": "江口, 正弘", "authorized_access_point": "江口, 正弘, 1930-....", "biographical_information": ["Transcription Hepburn modifié"]} 1 +2020-09-24 13:21:57.786253 2020-09-24 13:21:57.786258 3ed07dab-ef28-4959-96c6-b605d919f600 {"md5": "f54004a1e7ce7e2134b22d619e715398", "pid": "079112943", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["eng"], "qualifier": "psychologue", "identifier": "http://www.idref.fr/079112943", "numeration": "", "date_of_birth": "1919", "preferred_name": "Lambert, William Wilson, psychologue", "authorized_access_point": "Lambert, William Wilson, 1919-...., psychologue", "biographical_information": ["Psychologue"]} 1 +2020-09-24 13:22:00.122829 2020-09-24 13:22:00.122834 e0140f73-b550-41d4-b29e-0d5c6b355ac3 {"md5": "cdb3e56a7232785097a1fb20a10acbdb", "pid": "139135723", "$schema": "https://mef.rero.ch/schemas/idref/idref-person-v0.0.1.json", "language": ["jpn"], "qualifier": "", "identifier": "http://www.idref.fr/139135723", "numeration": "", "date_of_birth": "1931", "preferred_name": "戸川, 芳郎", "authorized_access_point": "戸川, 芳郎, 1931-....", "biographical_information": ["Il a été membre du JCP (Japan Communist Party)"]} 1 diff --git a/tests/data/aidref_pidstore.csv b/tests/data/aidref_pidstore.csv new file mode 100644 index 00000000..82b998ef --- /dev/null +++ b/tests/data/aidref_pidstore.csv @@ -0,0 +1,265 @@ +2020-09-24 13:15:11.987653 2020-09-24 13:15:11.987659 idref 188652647 R rec 0c9e5345-f9a9-4d75-ad2c-e1eed4c5aa77 +2020-09-24 13:15:13.590842 2020-09-24 13:15:13.590848 idref 16961834X R rec d26682d0-800c-4a53-a66e-66adde35d835 +2020-09-24 13:15:13.950956 2020-09-24 13:15:13.950961 idref 053434080 R rec e9f3b3e5-2cec-40a6-b194-d5c896178eb8 +2020-09-24 13:15:17.291118 2020-09-24 13:15:17.291124 idref 201762641 R rec 3c75c6aa-3f01-4a01-bb75-18d249492e0a +2020-09-24 13:15:17.624926 2020-09-24 13:15:17.624932 idref 220828164 R rec f34d6930-42e2-4660-afee-18f4a7565039 +2020-09-24 13:15:18.19732 2020-09-24 13:15:18.197326 idref 223491071 R rec 2d46a515-2f5e-46c3-84e5-213ef73a105c +2020-09-24 13:15:18.728528 2020-09-24 13:15:18.728534 idref 224991523 R rec 0d2080c1-9abb-4204-b82c-1c69fdfc4512 +2020-09-24 13:15:19.448394 2020-09-24 13:15:19.448399 idref 235030929 R rec 1cd3c7d3-6f8a-497d-88d3-766a69e7f08c +2020-09-24 13:15:19.81291 2020-09-24 13:15:19.812915 idref 234246820 R rec 33912d20-6946-41ee-bd24-067f26dff1a1 +2020-09-24 13:15:20.160749 2020-09-24 13:15:20.160755 idref 240312724 R rec 67a37d14-9a2d-4235-a063-f546eec8ccfc +2020-09-24 13:15:21.26128 2020-09-24 13:15:21.261286 idref 241716853 R rec aee9105e-87b5-4203-bdfb-b3c57da15f86 +2020-09-24 13:15:22.332579 2020-09-24 13:15:22.332585 idref 030322995 R rec 249f6a13-968a-42bb-813d-c4b941d9b169 +2020-09-24 13:15:24.049613 2020-09-24 13:15:24.049619 idref 028495764 R rec ef7831a1-a0ba-4a41-b5c3-b9fae969aeb2 +2020-09-24 13:15:25.271879 2020-09-24 13:15:25.271884 idref 030254515 R rec 26fbd41c-5c40-48f2-b4b2-17d6ee5dd91c +2020-09-24 13:15:25.934889 2020-09-24 13:15:25.934895 idref 242158129 R rec 341bfab0-45af-4590-9ce0-44998132823c +2020-09-24 13:15:27.885713 2020-09-24 13:15:27.885719 idref 060167181 R rec faa12921-1643-43d7-aac0-fb4b107c1b29 +2020-09-24 13:15:28.550239 2020-09-24 13:15:28.550245 idref 115078630 R rec b4eefddf-6d98-49a5-8177-136ab4fca13e +2020-09-24 13:15:29.72991 2020-09-24 13:15:29.729916 idref 077437209 R rec 62403459-9c0d-489c-9a9c-527f99571208 +2020-09-24 13:15:30.988992 2020-09-24 13:15:30.988998 idref 026995050 R rec a371f1dc-ae18-4bc0-95ce-0c2557a21bc8 +2020-09-24 13:15:31.701706 2020-09-24 13:15:31.701712 idref 059213523 R rec 731469d3-d8bb-48c0-8286-0a69a84c4a7a +2020-09-24 13:15:32.33134 2020-09-24 13:15:32.331345 idref 199119961 R rec c44133c3-d4cd-40bd-b876-4a17c56ed489 +2020-09-24 13:15:32.762006 2020-09-24 13:15:32.762012 idref 167228862 R rec 3d09eb1f-47b4-441d-a345-b6e5ee709359 +2020-09-24 13:15:33.571096 2020-09-24 13:15:33.571101 idref 026994801 R rec 3ef3b7c7-bfaa-41dc-bab6-c17b75b13390 +2020-09-24 13:15:37.549724 2020-09-24 13:15:37.54973 idref 155746936 R rec 5889cc5d-1b94-4e1e-8ff9-6ef7913a2dca +2020-09-24 13:15:37.902145 2020-09-24 13:15:37.90215 idref 185108385 R rec 552e8c55-752f-4e7d-824a-64b386861716 +2020-09-24 13:15:38.654959 2020-09-24 13:15:38.654967 idref 080152503 R rec 10556cb7-a425-4d71-b98e-06708c8d88ed +2020-09-24 13:15:39.837257 2020-09-24 13:15:39.837263 idref 07101120X R rec 4165155e-3f57-4842-a968-4e96b232a366 +2020-09-24 13:15:43.196 2020-09-24 13:15:43.196005 idref 110185366 R rec af6e176d-c5df-4720-98f2-17819ad12bc0 +2020-09-24 13:15:46.480429 2020-09-24 13:15:46.480436 idref 135192013 R rec c3e4a95b-8a7c-4f6b-bd68-8e8542ca70c4 +2020-09-24 13:15:50.514932 2020-09-24 13:15:50.514938 idref 113738048 R rec 2f2141a4-58c0-4855-b83f-d2334ba14aa5 +2020-09-24 13:15:54.10114 2020-09-24 13:15:54.101146 idref 244888558 R rec 6a494ef0-9334-494d-a6fb-da68457257a4 +2020-09-24 13:15:54.458763 2020-09-24 13:15:54.458769 idref 060721995 R rec fce8b9d9-83c8-411f-8d13-5bd5bf19ffe5 +2020-09-24 13:15:54.849442 2020-09-24 13:15:54.849448 idref 128587679 R rec 2311f030-eb9e-457f-b4d5-b7e30de58105 +2020-09-24 13:15:56.233494 2020-09-24 13:15:56.2335 idref 155309668 R rec 7ae59b46-1018-44d0-ade2-2b743ad2c5b6 +2020-09-24 13:15:59.531415 2020-09-24 13:15:59.531421 idref 170128687 R rec dcfaa852-eab2-44d9-9af2-68fc566ef7c4 +2020-09-24 13:16:00.566788 2020-09-24 13:16:00.566794 idref 084028750 R rec cc1bbdf3-b81d-46ad-8e85-bc572e976999 +2020-09-24 13:16:01.822568 2020-09-24 13:16:01.822574 idref 168633248 R rec 03454ab9-eda2-4271-adc5-83d363fd077f +2020-09-24 13:16:02.61418 2020-09-24 13:16:02.614186 idref 070328005 R rec 59bda656-6628-4f17-af15-6046f156f8cb +2020-09-24 13:16:03.287451 2020-09-24 13:16:03.287457 idref 23527125X R rec 106caf6d-32cd-4825-99b6-f582218f69dd +2020-09-24 13:16:04.366837 2020-09-24 13:16:04.366843 idref 050225146 R rec e805319d-61e9-4d5f-afd0-d2b43b78e0fd +2020-09-24 13:16:06.496556 2020-09-24 13:16:06.496561 idref 082560757 R rec e56b85ae-1239-490f-acd2-3594664159f1 +2020-09-24 13:16:07.109795 2020-09-24 13:16:07.1098 idref 032638116 R rec 0a21dd42-cc49-4fbf-bb7e-14dd8655db19 +2020-09-24 13:16:08.434912 2020-09-24 13:16:08.434917 idref 147233429 R rec 96ff58d2-de42-4517-a5f3-c3807d468ecb +2020-09-24 13:16:09.148349 2020-09-24 13:16:09.148355 idref 058598928 R rec d3264b5c-cecb-418a-9c8f-ea0dbc8813d7 +2020-09-24 13:16:09.509968 2020-09-24 13:16:09.509973 idref 200141163 R rec 8168d0dd-37f3-4a29-806a-a5b9f527a035 +2020-09-24 13:16:10.414816 2020-09-24 13:16:10.414822 idref 149944586 R rec c136926b-8059-4977-96f8-30c5cd171fcb +2020-09-24 13:16:10.75694 2020-09-24 13:16:10.756946 idref 161367070 R rec 392a8402-8107-46aa-b5cf-2a15e10b24fa +2020-09-24 13:16:11.579574 2020-09-24 13:16:11.579579 idref 107090538 R rec 25040f76-3366-47e6-9aae-d0684fb8b1ab +2020-09-24 13:16:12.431976 2020-09-24 13:16:12.431981 idref 080608825 R rec 3b97b1be-050b-4a39-8e23-e7d738e49aeb +2020-09-24 13:16:15.441146 2020-09-24 13:16:15.441152 idref 056820151 R rec e8a96072-dea3-4d2b-962a-48674bca14ce +2020-09-24 13:16:16.993539 2020-09-24 13:16:16.993545 idref 121469395 R rec ae046224-2a36-4c3a-bd88-b09b24de8796 +2020-09-24 13:16:22.110487 2020-09-24 13:16:22.110493 idref 137405723 R rec c09580c1-87f1-4a35-9bd2-0ecd089513ca +2020-09-24 13:16:22.959842 2020-09-24 13:16:22.959848 idref 228263050 R rec 5288d293-fb47-4339-9ca5-2e09de02b5f0 +2020-09-24 13:16:24.38762 2020-09-24 13:16:24.387625 idref 162460163 R rec d3d78b9b-bb09-4fd4-a81d-7a7ce15c8fe5 +2020-09-24 13:16:25.212152 2020-09-24 13:16:25.212158 idref 185264352 R rec aad2cfc3-760c-43ad-9556-d3f8ce63da50 +2020-09-24 13:16:25.605691 2020-09-24 13:16:25.605697 idref 069064830 R rec 85c64be0-5247-4c22-b11a-afb5dcc20f4b +2020-09-24 13:16:31.306164 2020-09-24 13:16:31.30617 idref 145661806 R rec 9ef9a7c9-495b-43ab-8bde-fc9c9a4232d1 +2020-09-24 13:16:36.651813 2020-09-24 13:16:36.651819 idref 137773927 R rec 7a4778cc-207a-4439-aa91-fcb31c5bfb99 +2020-09-24 13:16:37.446126 2020-09-24 13:16:37.446132 idref 07505924X R rec 11f50ac5-9f51-45cd-84f4-21907d587b85 +2020-09-24 13:16:39.028675 2020-09-24 13:16:39.028681 idref 240748069 R rec edc41c90-9571-4247-9cbb-c1977cf60ea3 +2020-09-24 13:16:39.396365 2020-09-24 13:16:39.39637 idref 077813138 R rec 02743a0f-4691-4de6-abc1-4a2e4d7509d2 +2020-09-24 13:16:41.410166 2020-09-24 13:16:41.410172 idref 152016872 R rec b634e57f-91af-4813-b077-e105e2b10a7a +2020-09-24 13:16:42.321352 2020-09-24 13:16:42.321359 idref 197394795 R rec 550d9856-7bd9-4b11-b8f8-9959c2d16561 +2020-09-24 13:16:44.410429 2020-09-24 13:16:44.410435 idref 075899655 R rec d6710cce-bd15-4fe0-a5e2-822bfa95eb8e +2020-09-24 13:16:45.094976 2020-09-24 13:16:45.094982 idref 238704750 R rec c7bd7cf2-0a32-4268-85d4-9ae98b314ca8 +2020-09-24 13:16:45.92907 2020-09-24 13:16:45.929076 idref 192298348 R rec afe965f1-311b-406d-9d1c-ccc32f651d01 +2020-09-24 13:16:46.288435 2020-09-24 13:16:46.288441 idref 192776851 R rec 4f4a2744-472c-4488-9ffa-0f3d1ca81425 +2020-09-24 13:16:48.033487 2020-09-24 13:16:48.033492 idref 225803658 R rec 463a8ce8-943a-4a6e-8978-2e7fd0dddfc6 +2020-09-24 13:16:48.723132 2020-09-24 13:16:48.723138 idref 137790872 R rec 2705e88b-747b-4df6-b3d2-d90ebc1e4748 +2020-09-24 13:16:53.483769 2020-09-24 13:16:53.483775 idref 178055328 R rec 327c4c9b-0172-4b11-925c-a4b4b7d7e076 +2020-09-24 13:16:58.578248 2020-09-24 13:16:58.578253 idref 126698104 R rec 2ed57dcf-2545-4d85-abfe-204f5e8ed74d +2020-09-24 13:17:00.221146 2020-09-24 13:17:00.221152 idref 174162790 R rec ba10815b-9b1c-47d9-891d-89d0ad3beac8 +2020-09-24 13:17:03.889546 2020-09-24 13:17:03.889552 idref 121150283 R rec 91802099-0f89-4f97-a93e-9a5dcc43c13b +2020-09-24 13:17:04.528821 2020-09-24 13:17:04.528827 idref 119349043 R rec 80716633-440e-41e4-8538-47362ab8bdc9 +2020-09-24 13:17:05.590686 2020-09-24 13:17:05.590692 idref 242927351 R rec d39367d4-f9b5-4819-b03a-5ccea6243e30 +2020-09-24 13:17:06.665094 2020-09-24 13:17:06.6651 idref 132394065 R rec 48d18270-2b9b-41a7-9130-1b1c0a3449a8 +2020-09-24 13:17:07.794066 2020-09-24 13:17:07.794072 idref 132110520 R rec 11f4f94d-96f9-4e2f-b5f7-53683507c3ca +2020-09-24 13:17:08.9532 2020-09-24 13:17:08.953206 idref 150724527 R rec 48d19d49-f8b6-4cca-8974-062aadfacaad +2020-09-24 13:17:09.794299 2020-09-24 13:17:09.794305 idref 145209512 R rec 0cf106d7-8f3b-4353-8ba5-eea0d4a4997d +2020-09-24 13:17:10.309038 2020-09-24 13:17:10.309044 idref 140708987 R rec 80fccf65-0ec6-4a8a-acc9-424ba668130f +2020-09-24 13:17:12.07568 2020-09-24 13:17:12.075685 idref 167843052 R rec ab1a4993-fc37-499f-8d8e-ee7c7e101a9e +2020-09-24 13:17:15.140073 2020-09-24 13:17:15.140079 idref 143329790 R rec 96afa806-2c11-4968-83ef-d26f1820d382 +2020-09-24 13:17:18.592475 2020-09-24 13:17:18.592481 idref 199828121 R rec c304e45f-ea54-4376-93d2-9b7a99596949 +2020-09-24 13:17:18.943958 2020-09-24 13:17:18.943964 idref 199742022 R rec 5e0ce50a-e098-4849-b1d2-d21eb4bcf819 +2020-09-24 13:17:19.785439 2020-09-24 13:17:19.785444 idref 22749900X R rec 753108ef-fdcb-4d92-b44a-f3fbfa9804ac +2020-09-24 13:17:25.310555 2020-09-24 13:17:25.310561 idref 140489436 R rec fa146dad-d9e1-4fb0-bd20-1f8a21256aa2 +2020-09-24 13:17:25.989808 2020-09-24 13:17:25.989815 idref 079303315 R rec bc070c9d-5b98-4d92-af83-d7401c22ca20 +2020-09-24 13:17:27.069789 2020-09-24 13:17:27.069795 idref 032207107 R rec 4a2e4915-ea0d-4465-a96d-ce0fafd385ee +2020-09-24 13:17:27.675396 2020-09-24 13:17:27.675401 idref 034931929 R rec 0afdde1f-1624-4675-af8f-1bd1bcf600d5 +2020-09-24 13:17:35.402986 2020-09-24 13:17:35.402992 idref 243886179 R rec 93cfe746-accf-40dd-8540-0f1d59ffe213 +2020-09-24 13:17:46.213446 2020-09-24 13:17:46.213451 idref 162154224 R rec 4f36d238-3bfd-421a-b6a1-b44addb592ac +2020-09-24 13:17:47.411588 2020-09-24 13:17:47.411594 idref 139416846 R rec 4b1a8345-d7e8-41f7-a862-866e677eb2c0 +2020-09-24 13:17:49.123947 2020-09-24 13:17:49.123952 idref 150700768 R rec b33a7015-5d5a-4c6d-b78c-e2c578a7f7e8 +2020-09-24 13:17:52.414466 2020-09-24 13:17:52.414471 idref 232810265 R rec c6c2e9e0-76bd-4518-b5a2-6019c7ea49b6 +2020-09-24 13:17:53.184155 2020-09-24 13:17:53.184161 idref 150599811 R rec 3a266658-5c05-434b-9c16-fd107238af01 +2020-09-24 13:17:55.478431 2020-09-24 13:17:55.478437 idref 158552180 R rec 80ffc236-aef3-44ae-b5da-c6a61f44e344 +2020-09-24 13:17:56.127588 2020-09-24 13:17:56.127593 idref 136864473 R rec 8a07bcb9-579b-46ae-8a5e-e8dd9c333f1a +2020-09-24 13:17:57.204111 2020-09-24 13:17:57.204117 idref 232530343 R rec b22f24a7-3301-4516-b6be-2b6227ac5673 +2020-09-24 13:17:58.071233 2020-09-24 13:17:58.071238 idref 16737740X R rec 10894be1-abe3-4590-9878-42150ec459a3 +2020-09-24 13:17:59.295889 2020-09-24 13:17:59.295895 idref 148842836 R rec d0fd673f-919e-41f6-bc04-ef4aee1145c7 +2020-09-24 13:18:01.310946 2020-09-24 13:18:01.310951 idref 075866307 R rec 3c389c08-c708-40f3-a687-2e1d56f1f933 +2020-09-24 13:18:02.392398 2020-09-24 13:18:02.392403 idref 146874595 R rec aae89009-d121-4132-9d2e-c36e36e1603a +2020-09-24 13:18:04.59465 2020-09-24 13:18:04.594656 idref 195541855 R rec 8446b8f1-22b5-4c5e-88bd-ada9f4c35a8a +2020-09-24 13:18:05.015211 2020-09-24 13:18:05.015217 idref 203359321 R rec 7401792c-172a-40f6-9244-e998e11aa0c4 +2020-09-24 13:18:05.660186 2020-09-24 13:18:05.660192 idref 202648087 R rec 1a47044c-78e2-4c12-af99-b8e2db9ade70 +2020-09-24 13:18:06.240815 2020-09-24 13:18:06.240821 idref 224875868 R rec be3660f9-89ca-4aad-96fe-69669f51658f +2020-09-24 13:18:06.56825 2020-09-24 13:18:06.568256 idref 227583752 R rec 93c3a4f1-a4a4-4f57-8cfb-03022a6a992a +2020-09-24 13:18:06.901743 2020-09-24 13:18:06.901748 idref 227327551 R rec 484dd327-dd51-4fc2-950e-c84547105808 +2020-09-24 13:18:07.245166 2020-09-24 13:18:07.245171 idref 232656770 R rec aa39acc4-ce4c-4c83-9fc8-1cb194b14093 +2020-09-24 13:18:07.617056 2020-09-24 13:18:07.617062 idref 24245383X R rec 4073eb8e-406f-4a75-9228-1f1d5a2949e9 +2020-09-24 13:18:07.985882 2020-09-24 13:18:07.985887 idref 242274455 R rec e5e5e404-f0a3-426d-87bc-62358326df1e +2020-09-24 13:18:09.204738 2020-09-24 13:18:09.204745 idref 149955847 R rec 15e04003-ead9-426f-b3d6-2ac9ac08313a +2020-09-24 13:18:09.810656 2020-09-24 13:18:09.810662 idref 226149390 R rec b68cd120-3e3f-4499-8ecb-09df02a7674d +2020-09-24 13:18:10.208068 2020-09-24 13:18:10.208075 idref 101448597 R rec fcfa2a34-4f91-4928-96df-4bd6037cb714 +2020-09-24 13:18:11.35297 2020-09-24 13:18:11.352976 idref 138484945 R rec 5599fab6-f919-4fda-8615-f32c3325fec0 +2020-09-24 13:18:11.786506 2020-09-24 13:18:11.786511 idref 127334807 R rec bb28716b-358b-4907-a692-b76cc08b0bcb +2020-09-24 13:18:14.971366 2020-09-24 13:18:14.971372 idref 202681793 R rec def68704-8d62-4ea3-940f-0ccbaf0182b0 +2020-09-24 13:18:22.571987 2020-09-24 13:18:22.571993 idref 092359116 R rec 3aef88fe-ed54-4896-8990-e9770972e7ee +2020-09-24 13:18:24.581737 2020-09-24 13:18:24.581743 idref 169818098 R rec 14de83cf-4f8a-4b94-8236-84a18bb7ff30 +2020-09-24 13:18:24.916664 2020-09-24 13:18:24.916669 idref 143470280 R rec a23c910c-3d5f-4167-8a03-8ebbe4262d3d +2020-09-24 13:18:25.708974 2020-09-24 13:18:25.70898 idref 170457257 R rec 6a74fcfd-9f71-4cf7-86f8-276720f9ae55 +2020-09-24 13:18:26.629254 2020-09-24 13:18:26.62926 idref 18897394X R rec 61b2d62f-2735-4f70-b2ae-5bbd136b3c1a +2020-09-24 13:18:27.051865 2020-09-24 13:18:27.051871 idref 142996734 R rec 286dbc0e-2a31-4cb9-8ec5-4552e406843d +2020-09-24 13:18:27.380166 2020-09-24 13:18:27.380172 idref 148935710 R rec 2962480b-c991-41e0-bf97-74c685992ef9 +2020-09-24 13:18:27.804746 2020-09-24 13:18:27.804751 idref 135688590 R rec a1e354e6-9448-4a30-a862-1b31264ccb60 +2020-09-24 13:18:29.80645 2020-09-24 13:18:29.806455 idref 031854575 R rec 2114371d-3900-4e6b-b415-2d04c5a31143 +2020-09-24 13:18:30.825597 2020-09-24 13:18:30.825603 idref 128657642 R rec 194bdf77-385d-4073-a4c8-34978381c1b3 +2020-09-24 13:18:31.171489 2020-09-24 13:18:31.171494 idref 142638145 R rec 8281ac40-566c-4702-b899-f72ecbc5d7c7 +2020-09-24 13:18:31.856534 2020-09-24 13:18:31.85654 idref 164529640 R rec d1630fab-04a0-4baf-a8e1-a82a0c1198c1 +2020-09-24 13:18:32.202889 2020-09-24 13:18:32.202895 idref 160613701 R rec 1b45139c-569d-4101-91e5-52d7be892c43 +2020-09-24 13:18:38.875851 2020-09-24 13:18:38.875856 idref 095775757 R rec 4ba8c301-3be6-4972-9486-d0867353a0ec +2020-09-24 13:18:42.933859 2020-09-24 13:18:42.933864 idref 123474825 R rec f22363ad-88b4-4146-9f51-5ba4ecc35fbd +2020-09-24 13:18:43.627433 2020-09-24 13:18:43.627438 idref 175622914 R rec 8f0d16b8-689b-42a2-8b08-bc3d60236371 +2020-09-24 13:18:44.131675 2020-09-24 13:18:44.131681 idref 133972887 R rec 6ad7b501-418b-4f56-9973-3e2f07df1a0f +2020-09-24 13:18:46.052311 2020-09-24 13:18:46.052316 idref 176776613 R rec be0ab6c7-b8d1-490a-85ae-594fb5b7e504 +2020-09-24 13:18:46.902702 2020-09-24 13:18:46.902707 idref 032649789 R rec be38cc0a-43d7-435c-93ca-0e7f142dcf65 +2020-09-24 13:18:47.660694 2020-09-24 13:18:47.6607 idref 147644305 R rec d2fbd934-d6a7-4dca-8c86-0fc42d96d2b8 +2020-09-24 13:18:48.721543 2020-09-24 13:18:48.721548 idref 034388397 R rec 685312b7-4586-49a3-8581-cf55defd4d9d +2020-09-24 13:18:49.997158 2020-09-24 13:18:49.997164 idref 174469470 R rec 5913b77a-6e7c-46df-923e-305639155497 +2020-09-24 13:18:52.470687 2020-09-24 13:18:52.470693 idref 194445089 R rec 8e8f3eff-d6ce-464e-b52b-6d387156cfe9 +2020-09-24 13:18:53.095983 2020-09-24 13:18:53.095988 idref 081311249 R rec 7787838a-3caf-417a-8387-ce9c42e48429 +2020-09-24 13:18:53.849097 2020-09-24 13:18:53.849103 idref 204651913 R rec 4bc47035-c389-49fe-878f-81e47be461b5 +2020-09-24 13:18:55.139737 2020-09-24 13:18:55.139742 idref 22344250X R rec 54060a69-1681-4ca7-a8a3-1667ad61ab0a +2020-09-24 13:18:55.798052 2020-09-24 13:18:55.798059 idref 224210963 R rec 48de9965-c154-4b2b-9bad-b73547df32b4 +2020-09-24 13:18:56.14179 2020-09-24 13:18:56.141795 idref 230956866 R rec e8fb8a38-5f2c-4d7b-9fa0-989187e3a110 +2020-09-24 13:18:56.518344 2020-09-24 13:18:56.518349 idref 24172726X R rec c65eda75-e10b-46c2-8c22-08abc7c0cd87 +2020-09-24 13:18:57.092036 2020-09-24 13:18:57.092041 idref 113195931 R rec c661295a-0360-4ebb-a62d-614045535193 +2020-09-24 13:18:57.555283 2020-09-24 13:18:57.555289 idref 034085289 R rec bcdaf1fd-c6e0-4ce7-84a6-627b9cd3ef42 +2020-09-24 13:18:58.358658 2020-09-24 13:18:58.358664 idref 24507869X R rec b3cb188a-683b-4870-8137-f86ab6913b7f +2020-09-24 13:18:59.635943 2020-09-24 13:18:59.635949 idref 235301787 R rec 37fe510e-a09a-4e1c-89f7-6f8b5f17c583 +2020-09-24 13:19:06.797165 2020-09-24 13:19:06.79717 idref 243749120 R rec 4c103481-4d69-41cb-8c65-101aedf243e4 +2020-09-24 13:19:07.610587 2020-09-24 13:19:07.610593 idref 028766857 R rec b64dc9d5-d62c-4172-a360-e484176531cb +2020-09-24 13:19:12.150938 2020-09-24 13:19:12.150944 idref 181132931 R rec ba6b392c-2297-433e-8a4f-b0b6bc89f717 +2020-09-24 13:19:12.497988 2020-09-24 13:19:12.497994 idref 178642932 R rec 13dfd3f3-565a-40ae-a381-3de8da21fad6 +2020-09-24 13:19:13.564646 2020-09-24 13:19:13.564652 idref 028542770 R rec ffb03504-0cc8-4ab4-845d-b683bbc2569e +2020-09-24 13:19:15.358668 2020-09-24 13:19:15.358674 idref 033151571 R rec cac5bbcf-d739-4b74-8720-76317a74f915 +2020-09-24 13:19:17.401619 2020-09-24 13:19:17.401624 idref 23322758X R rec f2dd501e-61dd-4a63-8bc7-8bbfab1e81e5 +2020-09-24 13:19:18.321229 2020-09-24 13:19:18.321235 idref 24515969X R rec d23ef2d3-1443-41be-a8e6-3640f51e082d +2020-09-24 13:19:19.562878 2020-09-24 13:19:19.562885 idref 19529534X R rec 02fba38f-33e7-4d6e-a553-861c85d3376d +2020-09-24 13:19:20.188453 2020-09-24 13:19:20.188459 idref 19859318X R rec fd666167-bd07-424a-83b4-6f22f4fef8fa +2020-09-24 13:19:20.565407 2020-09-24 13:19:20.565413 idref 199258813 R rec 45de0d05-efd6-4ba3-a90e-1d9bf4520f8a +2020-09-24 13:19:20.987816 2020-09-24 13:19:20.987822 idref 199108617 R rec 05c16030-eb6a-4b92-be3e-f77e94c52cea +2020-09-24 13:19:21.564426 2020-09-24 13:19:21.564432 idref 226958728 R rec 1dae9da6-e56e-4703-b893-ffc6c41017a2 +2020-09-24 13:19:21.914546 2020-09-24 13:19:21.914552 idref 232804788 R rec 800eece6-1f9b-49dd-9d38-fa1c601e70a0 +2020-09-24 13:19:22.269486 2020-09-24 13:19:22.269491 idref 233220984 R rec 24c027db-b1ec-4535-82d2-d6425f0e636d +2020-09-24 13:19:22.610924 2020-09-24 13:19:22.61093 idref 238712435 R rec baaccb35-5beb-44c4-afac-bd6f572df783 +2020-09-24 13:19:22.950694 2020-09-24 13:19:22.9507 idref 242293557 R rec e023b502-ae58-4f66-a3a8-2adea728d563 +2020-09-24 13:19:25.973564 2020-09-24 13:19:25.97357 idref 133765687 R rec f35d1ba7-7ee2-4529-962d-4f25fdbe0da2 +2020-09-24 13:19:27.02608 2020-09-24 13:19:27.026086 idref 167467549 R rec 14b6184f-0870-4836-9b76-49be8d15004c +2020-09-24 13:19:28.106918 2020-09-24 13:19:28.106923 idref 182842819 R rec 92def445-9401-4cef-99a4-d6d1754c7582 +2020-09-24 13:19:29.247084 2020-09-24 13:19:29.24709 idref 245200142 R rec 838b3dff-9520-47f8-9d42-85fdb0e6708f +2020-09-24 13:19:32.354648 2020-09-24 13:19:32.354653 idref 199502994 R rec d7166f99-df7a-445b-94f5-a6c131ab3d85 +2020-09-24 13:19:37.293357 2020-09-24 13:19:37.293363 idref 032613237 R rec 896ea764-fb55-4f1b-aeef-32765edc685a +2020-09-24 13:19:39.335272 2020-09-24 13:19:39.335278 idref 075964686 R rec 5703f538-2a38-4adb-9e36-dbdeff4a3ce4 +2020-09-24 13:19:41.209046 2020-09-24 13:19:41.209052 idref 202400263 R rec d6be75e5-f5fd-42ff-a08c-0ce61b383286 +2020-09-24 13:19:45.451556 2020-09-24 13:19:45.451562 idref 202971511 R rec 0d1a4ff6-d512-4de8-b1c3-42dd10af3b66 +2020-09-24 13:19:45.863938 2020-09-24 13:19:45.863943 idref 202446573 R rec dac5fc05-ab76-4819-93b2-a86ec2a30553 +2020-09-24 13:19:46.606379 2020-09-24 13:19:46.606385 idref 220890056 R rec 42d69992-7349-418f-aca7-7ceade11e850 +2020-09-24 13:19:47.034211 2020-09-24 13:19:47.034216 idref 225402475 R rec f1989fc0-7d2b-4e3c-a401-c01b67f050c8 +2020-09-24 13:19:47.827425 2020-09-24 13:19:47.82743 idref 224789147 R rec 7a242725-0829-43fe-aa79-4317a61a15e5 +2020-09-24 13:19:49.03656 2020-09-24 13:19:49.036566 idref 234251433 R rec 50a9389c-c4c9-4ce1-8643-7ae4b25fd5ae +2020-09-24 13:19:49.41431 2020-09-24 13:19:49.414316 idref 241164168 R rec a53ed3c7-42b4-48a9-bf92-c20f7c27f9e0 +2020-09-24 13:19:49.837773 2020-09-24 13:19:49.837778 idref 241515033 R rec 7f29fc1c-66c0-4d4a-9238-cfbc05c8591c +2020-09-24 13:19:50.660585 2020-09-24 13:19:50.660591 idref 069782768 R rec c887b3ee-96d6-406e-9f8e-c2c1c144c59c +2020-09-24 13:19:52.10727 2020-09-24 13:19:52.107276 idref 145286444 R rec 5db33917-5628-48f0-8ebd-89d583a6fc90 +2020-09-24 13:19:53.48583 2020-09-24 13:19:53.485836 idref 136864554 R rec 92569657-cb4d-4935-8cd0-6662091b3eb4 +2020-09-24 13:19:54.450779 2020-09-24 13:19:54.450785 idref 157856283 R rec 6e76b53d-a9a0-4788-bfd0-aaff785c6b8f +2020-09-24 13:19:55.734187 2020-09-24 13:19:55.734193 idref 148833101 R rec 46dd7621-b745-4ed0-beb1-00daef11a8c2 +2020-09-24 13:19:57.404053 2020-09-24 13:19:57.404059 idref 238282694 R rec 3eae9467-cabd-420b-b0ec-86846b463089 +2020-09-24 13:19:57.793571 2020-09-24 13:19:57.793577 idref 168968614 R rec b0fc10b7-597c-45d4-b5cc-a7e8b14cbe74 +2020-09-24 13:19:58.217758 2020-09-24 13:19:58.217764 idref 129801577 R rec d05771c5-9a54-4c70-adba-4b5d2be240c0 +2020-09-24 13:19:58.948904 2020-09-24 13:19:58.94891 idref 15117430X R rec 70a6e809-09a6-43a9-a4f0-87b4cf5623fe +2020-09-24 13:19:59.765418 2020-09-24 13:19:59.765424 idref 089443675 R rec b280bd30-a3d9-49c8-b5c5-f23ff671fa6c +2020-09-24 13:20:01.840301 2020-09-24 13:20:01.840307 idref 085647640 R rec 6ed75c6f-94c5-46d9-91e3-d6ee0fc03359 +2020-09-24 13:20:04.437308 2020-09-24 13:20:04.437313 idref 153446544 R rec a7bb6288-13c8-4eae-a3f4-178017a22d6f +2020-09-24 13:20:05.695886 2020-09-24 13:20:05.695892 idref 123240638 R rec 5da569ad-56fb-4cef-85e2-23aded5edd58 +2020-09-24 13:20:06.890063 2020-09-24 13:20:06.890069 idref 167901842 R rec effdf3c7-8121-42fa-818a-2d28f2b65836 +2020-09-24 13:20:10.791394 2020-09-24 13:20:10.7914 idref 155852639 R rec fa9a24c4-7540-4639-8d7b-a6945fe05783 +2020-09-24 13:20:12.035959 2020-09-24 13:20:12.035966 idref 16583868X R rec 4166ad48-f347-4cfa-86d8-ea59c24ba1c2 +2020-09-24 13:20:13.519368 2020-09-24 13:20:13.519373 idref 136495117 R rec e2d5042e-30b1-40d9-bc53-1de337306924 +2020-09-24 13:20:15.119705 2020-09-24 13:20:15.119711 idref 134489500 R rec cf9d7526-5551-4809-a415-728b3bd50295 +2020-09-24 13:20:16.208393 2020-09-24 13:20:16.208399 idref 071535616 R rec 66d5a6ae-a941-485e-aa32-3ed9486d5646 +2020-09-24 13:20:18.051762 2020-09-24 13:20:18.051768 idref 232278431 R rec 720ff858-d86c-4679-b7bf-5c9a9ba79a24 +2020-09-24 13:20:18.680392 2020-09-24 13:20:18.680397 idref 190122277 R rec 0a6bc7ba-ad34-4c06-b747-cfcc4696764f +2020-09-24 13:20:19.87353 2020-09-24 13:20:19.873536 idref 142877832 R rec 6780b71c-a98d-4cbf-812c-cf5e4253140a +2020-09-24 13:20:20.992401 2020-09-24 13:20:20.992407 idref 154972673 R rec ab6a5194-54a4-4791-a686-9c78e042ccb3 +2020-09-24 13:20:22.476945 2020-09-24 13:20:22.476951 idref 11499899X R rec 92b1c655-cfeb-48e5-9881-259954f9d3c3 +2020-09-24 13:20:23.953916 2020-09-24 13:20:23.953922 idref 088397599 R rec a88b3d51-5170-40d0-af6e-7e81e6d3f36a +2020-09-24 13:20:24.327341 2020-09-24 13:20:24.327347 idref 033864357 R rec f08233af-b4cb-4347-bf4b-b2b7cd16cb52 +2020-09-24 13:20:24.913218 2020-09-24 13:20:24.913224 idref 193779587 R rec 045e80c9-d42e-4afa-9300-64ad7d045b28 +2020-09-24 13:20:25.836328 2020-09-24 13:20:25.836334 idref 149834802 R rec 5fa1af18-f9d6-4407-8b82-689ba14ded52 +2020-09-24 13:20:29.715647 2020-09-24 13:20:29.715653 idref 177081724 R rec bcfc6f87-0ae5-41ec-979f-b0468a30d776 +2020-09-24 13:20:31.572595 2020-09-24 13:20:31.572602 idref 19329074X R rec 0e143e8e-7080-4cfe-9f95-71cf7587c3fd +2020-09-24 13:20:31.932162 2020-09-24 13:20:31.932168 idref 193955482 R rec 490eb0a1-1235-479c-8c6a-d781841fa169 +2020-09-24 13:20:32.599433 2020-09-24 13:20:32.599438 idref 199679150 R rec a5b268e8-0827-4215-b1c7-8e348ef960ba +2020-09-24 13:20:33.032543 2020-09-24 13:20:33.03255 idref 200661531 R rec 7ce98dd5-de62-47cc-a8ff-42cba6ec1d16 +2020-09-24 13:20:33.4137 2020-09-24 13:20:33.413706 idref 201609924 R rec 2ba49ef0-281d-4c2f-9beb-82bcb3ccdf2a +2020-09-24 13:20:34.210167 2020-09-24 13:20:34.210173 idref 224794272 R rec 1a9119f2-9cb6-4d9c-b4a7-362882e0fa45 +2020-09-24 13:20:34.677947 2020-09-24 13:20:34.677953 idref 229619231 R rec 841c0ee6-5810-4994-9ba7-b102c4269b65 +2020-09-24 13:20:35.651981 2020-09-24 13:20:35.651987 idref 234195576 R rec 130da013-50db-4d1e-b2fd-ead9759fef50 +2020-09-24 13:20:42.10395 2020-09-24 13:20:42.103955 idref 147759420 R rec 67937376-50da-4c1b-aa82-3a0eafab0db6 +2020-09-24 13:20:46.492022 2020-09-24 13:20:46.492028 idref 152270345 R rec 70f02b72-5256-48d9-8ac4-ef6629e64618 +2020-09-24 13:20:48.139841 2020-09-24 13:20:48.139847 idref 226257444 R rec fc869ba1-e12c-4acf-915b-f6440f5c9ffe +2020-09-24 13:20:49.902472 2020-09-24 13:20:49.902478 idref 148637450 R rec 6797520b-c7c5-4455-be52-4984f2c37f25 +2020-09-24 13:20:50.374691 2020-09-24 13:20:50.374697 idref 136803784 R rec 078410be-5d8e-4669-b68b-abaf69daf403 +2020-09-24 13:20:52.23759 2020-09-24 13:20:52.237596 idref 221761942 R rec 67f98b20-479e-4c33-bf6a-95c576dda8da +2020-09-24 13:20:54.321937 2020-09-24 13:20:54.321943 idref 094563152 R rec f9afb0d4-28ab-46a3-b3c7-bb80e8d43f13 +2020-09-24 13:20:55.027461 2020-09-24 13:20:55.027467 idref 192856200 R rec 99b551e9-9f3d-4592-83bf-cb93672441be +2020-09-24 13:20:56.3102 2020-09-24 13:20:56.310206 idref 198193327 R rec 0308a752-e66d-4d38-88a5-f88f0df52228 +2020-09-24 13:20:57.376097 2020-09-24 13:20:57.376103 idref 031153909 R rec 064b229c-5bc0-4eb8-acf7-dbd1da5fb77a +2020-09-24 13:20:58.499098 2020-09-24 13:20:58.499105 idref 08589320X R rec a92a70d5-642d-4fe8-9f32-327d08e0b6ca +2020-09-24 13:20:59.914973 2020-09-24 13:20:59.914979 idref 071285571 R rec 65157acb-5a71-401f-936f-855232e6d308 +2020-09-24 13:21:01.189445 2020-09-24 13:21:01.18945 idref 18786893X R rec 34bbca55-5ee5-4255-a4d9-99a708e5a437 +2020-09-24 13:21:03.162388 2020-09-24 13:21:03.162394 idref 176929738 R rec 8d9d86d9-07a0-4443-b5da-0e5ae888b903 +2020-09-24 13:21:06.399462 2020-09-24 13:21:06.399468 idref 124217273 R rec c4cb29fe-e68a-4d2f-86f3-b88b484b7229 +2020-09-24 13:21:10.790204 2020-09-24 13:21:10.79021 idref 059412720 R rec 75d89e2c-952b-44ba-8b5e-bebb75bb16f0 +2020-09-24 13:21:17.879554 2020-09-24 13:21:17.87956 idref 108510638 R rec 1de63d53-7992-4b7c-b418-9aa5eaaedbba +2020-09-24 13:21:18.776898 2020-09-24 13:21:18.776904 idref 147906423 R rec 2dce2540-0ded-49de-8b8b-c6c05785e857 +2020-09-24 13:21:19.163186 2020-09-24 13:21:19.163192 idref 145729613 R rec 36834577-88c0-4efe-b509-988f166dc516 +2020-09-24 13:21:26.685406 2020-09-24 13:21:26.685412 idref 154889415 R rec c8f5dee2-8b1f-40ee-aea7-a5e43880ed11 +2020-09-24 13:21:28.388147 2020-09-24 13:21:28.388153 idref 14577838X R rec 951bc7e1-cd5f-40af-9fc9-c9736311156d +2020-09-24 13:21:29.638202 2020-09-24 13:21:29.638208 idref 143120743 R rec 79159cae-7acb-40be-bca1-a5c2cfc808e9 +2020-09-24 13:21:30.683019 2020-09-24 13:21:30.683025 idref 135683122 R rec 71b23435-af89-4c1b-a753-4b14f4150ed3 +2020-09-24 13:21:33.481448 2020-09-24 13:21:33.481454 idref 129419915 R rec a354a66f-8469-4dd0-9b4a-845e6585f89e +2020-09-24 13:21:34.7672 2020-09-24 13:21:34.767206 idref 237257521 R rec b62e353f-5bdf-4bb0-b780-581c69fe0ae4 +2020-09-24 13:21:36.297623 2020-09-24 13:21:36.297628 idref 242007481 R rec df1a9085-ff56-41fe-aa2b-e48b20651889 +2020-09-24 13:21:36.937307 2020-09-24 13:21:36.937313 idref 193181878 R rec 98768b9e-083d-4b69-86aa-2f9f9750fa54 +2020-09-24 13:21:37.697044 2020-09-24 13:21:37.697049 idref 071531149 R rec 620f31b0-58db-47cb-bd20-8680ccbeff5d +2020-09-24 13:21:40.317706 2020-09-24 13:21:40.317712 idref 203120752 R rec f80ccb85-a5bb-41b8-8785-b681207e509d +2020-09-24 13:21:40.738521 2020-09-24 13:21:40.738527 idref 221427767 R rec d2ede041-0588-4b16-ab23-e39aeb7ddfa1 +2020-09-24 13:21:41.625756 2020-09-24 13:21:41.625761 idref 235057657 R rec 31ef6648-26a3-43fc-9794-cdc1d78c05ef +2020-09-24 13:21:42.476933 2020-09-24 13:21:42.476939 idref 242143814 R rec 39f89d43-bd6f-4098-afb7-cc103e505c3c +2020-09-24 13:21:44.470843 2020-09-24 13:21:44.470849 idref 234587989 R rec a736b1c8-4bbc-4b7c-b172-85db80e7d8b7 +2020-09-24 13:21:44.950697 2020-09-24 13:21:44.950703 idref 174571623 R rec 503d9e21-6c48-4bf5-b271-cca7350e9bb3 +2020-09-24 13:21:45.802269 2020-09-24 13:21:45.802275 idref 032801009 R rec baf0986f-fdd1-42f5-b5db-f5dd5279bbfd +2020-09-24 13:21:46.866597 2020-09-24 13:21:46.866603 idref 108090450 R rec aee05af8-fbde-454b-8a7c-8cbbbb4a9b09 +2020-09-24 13:21:48.466283 2020-09-24 13:21:48.466288 idref 082091943 R rec 370744a6-41ac-498e-9556-6faa2b3d3fb4 +2020-09-24 13:21:49.540391 2020-09-24 13:21:49.540397 idref 027019837 R rec 609408a7-287b-419c-8da0-d2f6c1bffe11 +2020-09-24 13:21:50.252174 2020-09-24 13:21:50.25218 idref 028442717 R rec 05177853-3741-435b-ad32-8ffa9b5b3844 +2020-09-24 13:21:51.395755 2020-09-24 13:21:51.395761 idref 050212265 R rec df6263e2-31ba-4ccf-80d9-28e88b5330d1 +2020-09-24 13:21:52.5327 2020-09-24 13:21:52.532706 idref 071344241 R rec 8e73ae5f-787b-4294-b5cb-33099a06a976 +2020-09-24 13:21:53.665474 2020-09-24 13:21:53.66548 idref 029598982 R rec 1f6da084-c73f-4d05-93ad-a44a76ba6881 +2020-09-24 13:21:56.202669 2020-09-24 13:21:56.202675 idref 234715723 R rec a1e64604-d115-4ca7-badc-88701b7d8edd +2020-09-24 13:21:57.779369 2020-09-24 13:21:57.779375 idref 079112943 R rec 3ed07dab-ef28-4959-96c6-b605d919f600 +2020-09-24 13:22:00.114185 2020-09-24 13:22:00.114191 idref 139135723 R rec e0140f73-b550-41d4-b29e-0d5c6b355ac3 diff --git a/tests/data/mef_id.csv b/tests/data/mef_id.csv new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/mef_metadata.csv b/tests/data/mef_metadata.csv new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/mef_pidstore.csv b/tests/data/mef_pidstore.csv new file mode 100644 index 00000000..e69de29b diff --git a/tests/data/viaf.txt b/tests/data/viaf.txt new file mode 100644 index 00000000..7d598069 --- /dev/null +++ b/tests/data/viaf.txt @@ -0,0 +1,10000 @@ +http://viaf.org/viaf/100001249 PTBNP|835968 +http://viaf.org/viaf/100001249 ISNI|0000000069727399 +http://viaf.org/viaf/100009494 PTBNP|85905 +http://viaf.org/viaf/100012436 Identities@http://www.worldcat.org/identities/viaf-100012436 +http://viaf.org/viaf/100012436 ISNI|0000000068921720 +http://viaf.org/viaf/100012436 PTBNP|867238 +http://viaf.org/viaf/10001407 Identities@http://www.worldcat.org/identities/lccn-nb2002057643 +http://viaf.org/viaf/10001407 BNF@http://catalogue.bnf.fr/ark:/12148/cb13491530p +http://viaf.org/viaf/10001407 LC|nb2002057643 +http://viaf.org/viaf/10001407 SUDOC|188652647 +http://viaf.org/viaf/10001407 WKP|Q46479622 +http://viaf.org/viaf/10001407 ISNI|0000000055120174 +http://viaf.org/viaf/10001407 BNF|13491530 +http://viaf.org/viaf/10001407 NKC|jo20010086910 +http://viaf.org/viaf/10001407 Wikipedia@http://cs.wikipedia.org/wiki/Pavel_Hrach +http://viaf.org/viaf/1000144647708239898055 NTA|39551696X +http://viaf.org/viaf/1000144647708239898055 Identities@http://www.worldcat.org/identities/viaf-1000144647708239898055 +http://viaf.org/viaf/1000158915860350000005 XR|VIAFEXP1151067469 +http://viaf.org/viaf/100016171 PTBNP|87548 +http://viaf.org/viaf/100016171 ISNI|0000000070738546 +http://viaf.org/viaf/100016171 Identities@http://www.worldcat.org/identities/viaf-100016171 +http://viaf.org/viaf/100020004 PTBNP|88576 +http://viaf.org/viaf/100020004 ISNI|0000000069828368 +http://viaf.org/viaf/100020004 Identities@http://www.worldcat.org/identities/viaf-100020004 +http://viaf.org/viaf/100021346 ISNI|000000006861814X +http://viaf.org/viaf/100021346 PTBNP|889038 +http://viaf.org/viaf/100021346 BLBNB|000443707 +http://viaf.org/viaf/100022237 PTBNP|89045 +http://viaf.org/viaf/100022237 ISNI|0000000070132974 +http://viaf.org/viaf/100025900 BLBNB|001417415 +http://viaf.org/viaf/100025900 PTBNP|89835 +http://viaf.org/viaf/100025900 ISNI|0000000070234591 +http://viaf.org/viaf/100025900 Identities@http://www.worldcat.org/identities/viaf-100025900 +http://viaf.org/viaf/100029591 PTBNP|904472 +http://viaf.org/viaf/100029591 ISNI|0000000068922117 +http://viaf.org/viaf/100033424 PTBNP|90787 +http://viaf.org/viaf/100033424 ISNI|0000000070234823 +http://viaf.org/viaf/100036999 ISNI|0000000068013554 +http://viaf.org/viaf/100036999 PTBNP|911319 +http://viaf.org/viaf/100045458 PTBNP|917389 +http://viaf.org/viaf/100045502 ISNI|0000000070941376 +http://viaf.org/viaf/100045502 PTBNP|917402 +http://viaf.org/viaf/100048626 ISNI|0000000068418674 +http://viaf.org/viaf/100048626 PTBNP|918823 +http://viaf.org/viaf/100051695 ISNI|000000006892290X +http://viaf.org/viaf/100051695 PTBNP|920551 +http://viaf.org/viaf/100062431 PTBNP|932540 +http://viaf.org/viaf/100062431 ISNI|000000007023572X +http://viaf.org/viaf/100071297 ISNI|0000000069224871 +http://viaf.org/viaf/100071297 PTBNP|942876 +http://viaf.org/viaf/100074014 PTBNP|944937 +http://viaf.org/viaf/100074014 ISNI|0000000068720718 +http://viaf.org/viaf/100077589 PTBNP|947388 +http://viaf.org/viaf/100078524 PTBNP|948163 +http://viaf.org/viaf/100078524 ISNI|000000006892370X +http://viaf.org/viaf/100082033 PTBNP|950028 +http://viaf.org/viaf/100082033 ISNI|0000000070236247 +http://viaf.org/viaf/100084761 ISNI|0000000069627718 +http://viaf.org/viaf/100084761 PTBNP|95229 +http://viaf.org/viaf/100090827 PTBNP|955575 +http://viaf.org/viaf/100090827 ISNI|0000000070641330 +http://viaf.org/viaf/100092780 PTBNP|956852 +http://viaf.org/viaf/100092780 ISNI|0000000068317857 +http://viaf.org/viaf/100096795 ISNI|0000000069730117 +http://viaf.org/viaf/100096795 PTBNP|959446 +http://viaf.org/viaf/100104704 ISNI|0000000071002661 +http://viaf.org/viaf/100104704 PTBNP|964012 +http://viaf.org/viaf/100106937 ISNI|0000000068822730 +http://viaf.org/viaf/100106937 PTBNP|965367 +http://viaf.org/viaf/100109330 ISNI|0000000069730563 +http://viaf.org/viaf/100109330 PTBNP|96696 +http://viaf.org/viaf/100109330 Identities@http://www.worldcat.org/identities/viaf-100109330 +http://viaf.org/viaf/100111788 PTBNP|967930 +http://viaf.org/viaf/100111788 BLBNB|000379749 +http://viaf.org/viaf/100111788 ISNI|0000000069123659 +http://viaf.org/viaf/100113614 ISNI|000000006862075X +http://viaf.org/viaf/100113614 PTBNP|969054 +http://viaf.org/viaf/1001159234731203372537 RERO|A021643724 +http://viaf.org/viaf/1001159234731203372537 Identities@http://www.worldcat.org/identities/viaf-1001159234731203372537 +http://viaf.org/viaf/100118691 PTBNP|971997 +http://viaf.org/viaf/100118691 ISNI|0000000069933002 +http://viaf.org/viaf/100119582 ISNI|0000000070035146 +http://viaf.org/viaf/100119582 DNB@http://d-nb.info/gnd/1202813968 +http://viaf.org/viaf/100119582 Identities@http://www.worldcat.org/identities/lccn-no2013012140 +http://viaf.org/viaf/100119582 DNB|1202813968 +http://viaf.org/viaf/100119582 SUDOC|16961834X +http://viaf.org/viaf/100119582 PTBNP|972409 +http://viaf.org/viaf/100119582 LC|no2013012140 +http://viaf.org/viaf/100121589 ISNI|0000000071002899 +http://viaf.org/viaf/100121589 PTBNP|973044 +http://viaf.org/viaf/100121589 Identities@http://www.worldcat.org/identities/viaf-100121589 +http://viaf.org/viaf/100124757 ISNI|0000000069427484 +http://viaf.org/viaf/100124757 PTBNP|974575 +http://viaf.org/viaf/100130994 ISNI|0000000070338876 +http://viaf.org/viaf/100130994 PTBNP|980404 +http://viaf.org/viaf/10014052 BNF|13561620 +http://viaf.org/viaf/10014052 NUKAT|n 01090237 +http://viaf.org/viaf/10014052 LC|n 99000919 +http://viaf.org/viaf/10014052 SUDOC|053434080 +http://viaf.org/viaf/10014052 NII|DA12364977 +http://viaf.org/viaf/10014052 ISNI|0000000117423462 +http://viaf.org/viaf/10014052 Identities@http://www.worldcat.org/identities/lccn-n99000919 +http://viaf.org/viaf/10014052 BNF@http://catalogue.bnf.fr/ark:/12148/cb135616206 +http://viaf.org/viaf/10014052 LC@n99000919 +http://viaf.org/viaf/10014052 NUKAT@vtls000457356 +http://viaf.org/viaf/100142126 ISNI|0000000069427986 +http://viaf.org/viaf/100142126 PTBNP|990368 +http://viaf.org/viaf/100144403 DNB@http://d-nb.info/gnd/174361009 +http://viaf.org/viaf/100144403 Identities@http://www.worldcat.org/identities/viaf-100144403 +http://viaf.org/viaf/100144403 Wikipedia@http://pt.wikipedia.org/wiki/Teresa_Magalhães +http://viaf.org/viaf/100144403 PTBNP|9921 +http://viaf.org/viaf/100144403 Wikipedia@http://cy.wikipedia.org/wiki/Teresa_Magalhães +http://viaf.org/viaf/100144403 WKP|Q17280389 +http://viaf.org/viaf/100144403 ISNI|0000000069731443 +http://viaf.org/viaf/100144403 DNB|174361009 +http://viaf.org/viaf/100144928704054440114 DNB|1079471162 +http://viaf.org/viaf/100144928704054440114 WKP|Q94911098 +http://viaf.org/viaf/100144928704054440114 DNB@http://d-nb.info/gnd/1079471162 +http://viaf.org/viaf/100145003288961300710 Identities@http://www.worldcat.org/identities/lccn-nb2015022940 +http://viaf.org/viaf/100145003288961300710 J9U|987007374136205171 +http://viaf.org/viaf/100145003288961300710 CAOONL|ncf11894626 +http://viaf.org/viaf/100145003288961300710 LC|nb2015022940 +http://viaf.org/viaf/100145003893261340515 DNB@http://d-nb.info/gnd/1079820728 +http://viaf.org/viaf/100145003893261340515 DNB|1079820728 +http://viaf.org/viaf/100145304375678570834 Identities@http://www.worldcat.org/identities/viaf-100145304375678570834 +http://viaf.org/viaf/100145304375678570834 J9U|987007602452705171 +http://viaf.org/viaf/100145375917983681133 Identities@http://www.worldcat.org/identities/viaf-100145375917983681133 +http://viaf.org/viaf/100145375917983681133 NDL|001221153 +http://viaf.org/viaf/100146461532027731295 LC|no2016066566 +http://viaf.org/viaf/100146461532027731295 Identities@http://www.worldcat.org/identities/lccn-no2016066566 +http://viaf.org/viaf/100146997313418891705 Identities@http://www.worldcat.org/identities/viaf-100146997313418891705 +http://viaf.org/viaf/100146997313418891705 NII|DA06549468 +http://viaf.org/viaf/100146997314918891712 NII|DA06708958 +http://viaf.org/viaf/100146998580518942548 Identities@http://www.worldcat.org/identities/viaf-100146998580518942548 +http://viaf.org/viaf/100146998580518942548 NII|DA02777460 +http://viaf.org/viaf/100146998580518942548 RERO|A003342882 +http://viaf.org/viaf/100147094985625081522 DNB@http://d-nb.info/gnd/1109931689 +http://viaf.org/viaf/100147094985625081522 DNB|1109931689 +http://viaf.org/viaf/100147094985625081522 Identities@http://www.worldcat.org/identities/viaf-100147094985625081522 +http://viaf.org/viaf/100147266917535482493 Identities@http://www.worldcat.org/identities/viaf-100147266917535482493 +http://viaf.org/viaf/100147266917535482493 NTA|397410360 +http://viaf.org/viaf/100148094 ISNI|0000000070339473 +http://viaf.org/viaf/100148094 PTBNP|994817 +http://viaf.org/viaf/100149106157568491162 BIBSYS|7079367 +http://viaf.org/viaf/100149196248674790197 BIBSYS|2111641 +http://viaf.org/viaf/100149485484893420292 Identities@http://www.worldcat.org/identities/lccn-no2017058535 +http://viaf.org/viaf/100149485484893420292 LC|no2017058535 +http://viaf.org/viaf/100149804 DNB@http://d-nb.info/gnd/1057520837 +http://viaf.org/viaf/100149804 Identities@http://www.worldcat.org/identities/lccn-n00014441 +http://viaf.org/viaf/100149804 RERO|A026123991 +http://viaf.org/viaf/100149804 DNB|1057520837 +http://viaf.org/viaf/100149804 ISNI|0000000077305110 +http://viaf.org/viaf/100149804 LIH|LNB:CNY_r_;=B_y_ +http://viaf.org/viaf/100149804 LC|n 00014441 +http://viaf.org/viaf/100149804 BNF|14594357 +http://viaf.org/viaf/100149804 PTBNP|79066 +http://viaf.org/viaf/100149804 LIH@LNB:CNYr;=By +http://viaf.org/viaf/100149804 BNF@http://catalogue.bnf.fr/ark:/12148/cb145943576 +http://viaf.org/viaf/100149804 LC@n00014441 +http://viaf.org/viaf/100149841848702840707 J9U|987007351291805171 +http://viaf.org/viaf/100149841848702840707 Identities@http://www.worldcat.org/identities/viaf-100149841848702840707 +http://viaf.org/viaf/100150323640609970531 BLBNB|000394389 +http://viaf.org/viaf/100150468205904170242 ISNI|0000000460696652 +http://viaf.org/viaf/100150468205904170242 KRNLK|KAB201720760 +http://viaf.org/viaf/100150565742606252567 Identities@http://www.worldcat.org/identities/viaf-100150565742606252567 +http://viaf.org/viaf/100150565742606252567 SUDOC|201762641 +http://viaf.org/viaf/100151302888048660222 SUDOC|220828164 +http://viaf.org/viaf/100151302888048660222 Identities@http://www.worldcat.org/identities/viaf-100151302888048660222 +http://viaf.org/viaf/100151302955048662511 NDL|001278316 +http://viaf.org/viaf/100151351950252601011 KRNLK|KAC201758523 +http://viaf.org/viaf/100151351950252601011 ISNI|0000000464426975 +http://viaf.org/viaf/100151351953452600396 KRNLK|KAC201757531 +http://viaf.org/viaf/100151351953452600396 ISNI|0000000464263555 +http://viaf.org/viaf/100151351953452600396 Identities@http://www.worldcat.org/identities/viaf-100151351953452600396 +http://viaf.org/viaf/100151531 PTBNP|997675 +http://viaf.org/viaf/100151531 ISNI|0000000068016923 +http://viaf.org/viaf/100151836552720401901 Identities@http://www.worldcat.org/identities/viaf-100151836552720401901 +http://viaf.org/viaf/100151836552720401901 SUDOC|223491071 +http://viaf.org/viaf/100151963700600312596 J9U|987007380671505171 +http://viaf.org/viaf/100151963700600312596 Identities@http://www.worldcat.org/identities/viaf-100151963700600312596 +http://viaf.org/viaf/100152138642810981717 UIY|000003442 +http://viaf.org/viaf/100152380054401760785 BNF@FRBNF177326515 +http://viaf.org/viaf/100152380054401760785 Identities@http://www.worldcat.org/identities/viaf-100152380054401760785 +http://viaf.org/viaf/100152380054401760785 CAOONL|ncf11070808 +http://viaf.org/viaf/100152380054401760785 SUDOC|224991523 +http://viaf.org/viaf/100152380054401760785 BNF|17732651 +http://viaf.org/viaf/100152380054401760785 ISNI|0000000464903030 +http://viaf.org/viaf/100152742936727732126 DE663|pe30025428 +http://viaf.org/viaf/100153061353119201962 Identities@http://www.worldcat.org/identities/viaf-100153061353119201962 +http://viaf.org/viaf/100153061353119201962 NTA|418011168 +http://viaf.org/viaf/100153409743541581934 Identities@http://www.worldcat.org/identities/viaf-100153409743541581934 +http://viaf.org/viaf/100153409743541581934 ISNI|0000000467887566 +http://viaf.org/viaf/100153409743541581934 KRNLK|KAC201204372 +http://viaf.org/viaf/10015394 LC|no 00076901 +http://viaf.org/viaf/10015394 ISNI|0000000042695171 +http://viaf.org/viaf/10015394 Identities@http://www.worldcat.org/identities/lccn-no00076901 +http://viaf.org/viaf/10015394 BNF|13569302 +http://viaf.org/viaf/10015394 LC@no00076901 +http://viaf.org/viaf/10015394 BNF@http://catalogue.bnf.fr/ark:/12148/cb13569302c +http://viaf.org/viaf/100154013794909191838 KRNLK|KAC2018B4453 +http://viaf.org/viaf/100154013794909191838 ISNI|0000000468368426 +http://viaf.org/viaf/100154590155143081356 KRNLK|KAC2018D0105 +http://viaf.org/viaf/100154590155143081356 ISNI|0000000473532008 +http://viaf.org/viaf/100155767374427761206 SUDOC|235030929 +http://viaf.org/viaf/100155767374427761206 Identities@http://www.worldcat.org/identities/viaf-100155767374427761206 +http://viaf.org/viaf/100155997 PTBNP|999671 +http://viaf.org/viaf/100155997 ISNI|0000000068824074 +http://viaf.org/viaf/100156563459923241498 KRNLK|KAC201941056 +http://viaf.org/viaf/100156563459923241498 ISNI|000000047677044X +http://viaf.org/viaf/100157098566972552382 Identities@http://www.worldcat.org/identities/viaf-100157098566972552382 +http://viaf.org/viaf/100157098566972552382 SUDOC|234246820 +http://viaf.org/viaf/100157340811009922640 Identities@http://www.worldcat.org/identities/viaf-100157340811009922640 +http://viaf.org/viaf/100157340811009922640 SUDOC|240312724 +http://viaf.org/viaf/100157340812109922299 SUDOC|238452581 +http://viaf.org/viaf/100157643295338590006 XR|VIAFEXP1128728363 +http://viaf.org/viaf/100158125062614931187 SUDOC|241716853 +http://viaf.org/viaf/100158125062614931187 Identities@http://www.worldcat.org/identities/viaf-100158125062614931187 +http://viaf.org/viaf/100158185850020062409 ISNI|0000000480139159 +http://viaf.org/viaf/100158185850020062409 KRNLK|KAC2019E0137 +http://viaf.org/viaf/100158790734438852495 GRATEVE|174400 +http://viaf.org/viaf/100159032532901180164 DE663|51002935 +http://viaf.org/viaf/100159032778601182712 DE663|pe50037114 +http://viaf.org/viaf/1001689 RERO|A016695165 +http://viaf.org/viaf/1001689 LC|n 88147893 +http://viaf.org/viaf/1001689 J9U|987007278025805171 +http://viaf.org/viaf/1001689 ISNI|0000000025805287 +http://viaf.org/viaf/1001689 Identities@http://www.worldcat.org/identities/lccn-n88147893 +http://viaf.org/viaf/1001689 LC@n88147893 +http://viaf.org/viaf/100177876 DNB@http://d-nb.info/gnd/100068944 +http://viaf.org/viaf/100177876 DNB|100068944 +http://viaf.org/viaf/100177876 LC|n 88603570 +http://viaf.org/viaf/100177876 BLBNB|000181855 +http://viaf.org/viaf/100177876 NTA|102138931 +http://viaf.org/viaf/100177876 NSK|000168445 +http://viaf.org/viaf/100177876 NKC|ola2002153976 +http://viaf.org/viaf/100177876 SUDOC|030322995 +http://viaf.org/viaf/100177876 WKP|Q164470 +http://viaf.org/viaf/100177876 PTBNP|72455 +http://viaf.org/viaf/100177876 NUKAT|n 2013066398 +http://viaf.org/viaf/100177876 BNF|12176197 +http://viaf.org/viaf/100177876 PLWABN|9810543082405606 +http://viaf.org/viaf/100177876 ISNI|0000000083462323 +http://viaf.org/viaf/100177876 J9U|987007259300405171 +http://viaf.org/viaf/100177876 BAV|495_14385 +http://viaf.org/viaf/100177876 Wikipedia@http://de.wikipedia.org/wiki/Guillaume_Caoursin +http://viaf.org/viaf/100177876 Wikipedia@http://fr.wikipedia.org/wiki/Guillaume_Caoursin +http://viaf.org/viaf/100177876 Wikipedia@http://nl.wikipedia.org/wiki/Guillaume_Caoursin +http://viaf.org/viaf/100177876 Wikipedia@http://ru.wikipedia.org/wiki/Каурсин,_Гийом +http://viaf.org/viaf/100177876 Identities@http://www.worldcat.org/identities/lccn-n88603570 +http://viaf.org/viaf/100177876 LC@n88603570 +http://viaf.org/viaf/100177876 NUKAT@vtls010190858 +http://viaf.org/viaf/100177876 BNF@http://catalogue.bnf.fr/ark:/12148/cb121761970 +http://viaf.org/viaf/100177876 BAV@495/14385 +http://viaf.org/viaf/10018111 BNF|13595277 +http://viaf.org/viaf/10018111 BNF@http://catalogue.bnf.fr/ark:/12148/cb13595277n +http://viaf.org/viaf/10018111 Identities@http://www.worldcat.org/identities/lccn-n50002425 +http://viaf.org/viaf/10018111 NTA|173275656 +http://viaf.org/viaf/10018111 LC|n 50002425 +http://viaf.org/viaf/10018111 NII|DA0964327X +http://viaf.org/viaf/10018111 BIBSYS|3034874 +http://viaf.org/viaf/10018111 ISNI|0000000083561823 +http://viaf.org/viaf/10018111 J9U|987007371000205171 +http://viaf.org/viaf/10018111 LC@n50002425 +http://viaf.org/viaf/10018111 CAOONL|ncf11565056 +http://viaf.org/viaf/100181709 Identities@http://www.worldcat.org/identities/viaf-100181709 +http://viaf.org/viaf/100181709 DNB@http://d-nb.info/gnd/109790715 +http://viaf.org/viaf/100181709 DNB|109790715 +http://viaf.org/viaf/100182771 PLWABN|9811287167005606 +http://viaf.org/viaf/100182771 NTA|273863495 +http://viaf.org/viaf/100182771 NUKAT|n 2011077577 +http://viaf.org/viaf/100182771 ISNI|0000000114318894 +http://viaf.org/viaf/100182771 J9U|987007308515905171 +http://viaf.org/viaf/100182771 LC|nr 88000998 +http://viaf.org/viaf/100182771 ISNI|000000011867612X +http://viaf.org/viaf/100182771 DNB|1055795316 +http://viaf.org/viaf/100182771 Identities@http://www.worldcat.org/identities/lccn-nr88000998 +http://viaf.org/viaf/100182771 BAV@495/164781 +http://viaf.org/viaf/100182771 NUKAT@vtls007727924 +http://viaf.org/viaf/100182771 LC@nr88000998 +http://viaf.org/viaf/100182771 DNB@http://d-nb.info/gnd/1055795316 +http://viaf.org/viaf/100182771 BAV|495_164781 +http://viaf.org/viaf/100189954 LC|n 80039158 +http://viaf.org/viaf/100189954 Identities@http://www.worldcat.org/identities/lccn-n80039158 +http://viaf.org/viaf/100189954 NTA|068085737 +http://viaf.org/viaf/100189954 BNF@http://catalogue.bnf.fr/ark:/12148/cb120320116 +http://viaf.org/viaf/100189954 NII|DA04948586 +http://viaf.org/viaf/100189954 DNB|123731062 +http://viaf.org/viaf/100189954 BAV@495/147201 +http://viaf.org/viaf/100189954 BAV|495_147201 +http://viaf.org/viaf/100189954 ISNI|0000000118626464 +http://viaf.org/viaf/100189954 SUDOC|028495764 +http://viaf.org/viaf/100189954 BNF|12032011 +http://viaf.org/viaf/100189954 CAOONL|ncf11214252 +http://viaf.org/viaf/100189954 RERO|A003477398 +http://viaf.org/viaf/100189954 J9U|987007271776305171 +http://viaf.org/viaf/100189954 DNB@http://d-nb.info/gnd/123731062 +http://viaf.org/viaf/100189954 LC@n80039158 +http://viaf.org/viaf/100192572 ISNI|0000000118102089 +http://viaf.org/viaf/100192572 LC|nr2006003138 +http://viaf.org/viaf/100192572 Identities@http://www.worldcat.org/identities/lccn-nr2006003138 +http://viaf.org/viaf/100192572 J9U|987007306320705171 +http://viaf.org/viaf/100208187 BNC@.a10682752 +http://viaf.org/viaf/100208187 BNF@FRBNF121709963 +http://viaf.org/viaf/100208187 DNB@http://d-nb.info/gnd/118818805 +http://viaf.org/viaf/100208187 LC@n87825742 +http://viaf.org/viaf/100208187 SELIBR@xv8cgp7g5cn1fms +http://viaf.org/viaf/100208187 BNCHL@BNC10000000000000000285646 +http://viaf.org/viaf/100208187 LIH@LNB:xLp;=CE +http://viaf.org/viaf/100208187 B2Q|0000682846 +http://viaf.org/viaf/100208187 BNC|a10682752 +http://viaf.org/viaf/100208187 BNE|XX1087959 +http://viaf.org/viaf/100208187 BNF|12170996 +http://viaf.org/viaf/100208187 DNB|118818805 +http://viaf.org/viaf/100208187 ISNI|0000000121451757 +http://viaf.org/viaf/100208187 LC|n 87825742 +http://viaf.org/viaf/100208187 NKC|mzk2008458942 +http://viaf.org/viaf/100208187 NTA|07205283X +http://viaf.org/viaf/100208187 PTBNP|177758 +http://viaf.org/viaf/100208187 SELIBR|277004 +http://viaf.org/viaf/100208187 SUDOC|030254515 +http://viaf.org/viaf/100208187 WKP|Q1236889 +http://viaf.org/viaf/100208187 BNCHL|10000000000000000285646 +http://viaf.org/viaf/100208187 BIBSYS|90782274 +http://viaf.org/viaf/100208187 LIH|LNB:_x_L_p_;=CE +http://viaf.org/viaf/100208187 PLWABN|9810530734605606 +http://viaf.org/viaf/100208187 J9U|987007272730605171 +http://viaf.org/viaf/100208187 NII|DA02046567 +http://viaf.org/viaf/100208187 DE663|pe50040628 +http://viaf.org/viaf/100208187 GRATEVE|247945 +http://viaf.org/viaf/100208187 RERO|A003743887 +http://viaf.org/viaf/100208187 NDL|00743374 +http://viaf.org/viaf/100208187 CAOONL|ncf12081583 +http://viaf.org/viaf/100208187 Wikipedia@http://de.wikipedia.org/wiki/César-Pierre_Richelet +http://viaf.org/viaf/100208187 Wikipedia@http://en.wikipedia.org/wiki/César-Pierre_Richelet +http://viaf.org/viaf/100208187 Wikipedia@http://es.wikipedia.org/wiki/César-Pierre_Richelet +http://viaf.org/viaf/100208187 Wikipedia@http://fr.wikipedia.org/wiki/César-Pierre_Richelet +http://viaf.org/viaf/100208187 Wikipedia@http://la.wikipedia.org/wiki/Caesar_Petrus_Richelet +http://viaf.org/viaf/100208187 Wikipedia@http://ru.wikipedia.org/wiki/Ришле,_Сезар-Пьер +http://viaf.org/viaf/100208187 Identities@http://www.worldcat.org/identities/lccn-n87825742 +http://viaf.org/viaf/100211129 SUDOC|242158129 +http://viaf.org/viaf/100211129 BNCHL|10000000000000000080553 +http://viaf.org/viaf/100211129 PTBNP|265529 +http://viaf.org/viaf/100211129 Identities@http://www.worldcat.org/identities/lccn-n83219748 +http://viaf.org/viaf/100211129 LC@n83219748 +http://viaf.org/viaf/100211129 ISNI|0000000084033862 +http://viaf.org/viaf/100211129 GRATEVE|251211 +http://viaf.org/viaf/100211129 PLWABN|9810678422305606 +http://viaf.org/viaf/100211129 LC|n 83219748 +http://viaf.org/viaf/100211129 J9U|987007275741505171 +http://viaf.org/viaf/100211129 CAOONL|ncf12082141 +http://viaf.org/viaf/100211129 B2Q|0000088830 +http://viaf.org/viaf/100211129 BAV@495/39292 +http://viaf.org/viaf/100211129 NTA|074287559 +http://viaf.org/viaf/100211129 BNCHL@BNC10000000000000000080553 +http://viaf.org/viaf/100211129 RERO|A003782234 +http://viaf.org/viaf/100211129 N6I|vtls001281433 +http://viaf.org/viaf/100211129 BAV|495_39292 +http://viaf.org/viaf/1002145424555486830370 XR|VIAFWORK36149670 +http://viaf.org/viaf/1002145424555486830370 SZ@http://d-nb.info/gnd/1172505020 +http://viaf.org/viaf/1002145424555486830370 DNB@http://d-nb.info/gnd/1172505020 +http://viaf.org/viaf/1002145424555486830370 SZ|1172505020 +http://viaf.org/viaf/1002145424555486830370 DNB|1172505020 +http://viaf.org/viaf/1002154381147430292923 Identities@http://www.worldcat.org/identities/viaf-1002154381147430292923 +http://viaf.org/viaf/1002154381147430292923 PLWABN|9810670982505606 +http://viaf.org/viaf/1002154381147430292923 LIH|LNB:_g_Z_d_;=B1 +http://viaf.org/viaf/1002154381147430292923 LIH@LNB:gZd;=B1 +http://viaf.org/viaf/1002159233919103370026 RERO|A012368293 +http://viaf.org/viaf/1002159233919103370026 Identities@http://www.worldcat.org/identities/viaf-1002159233919103370026 +http://viaf.org/viaf/1002159234015703370473 Identities@http://www.worldcat.org/identities/viaf-1002159234015703370473 +http://viaf.org/viaf/1002159234015703370473 RERO|A020072662 +http://viaf.org/viaf/1002159474201827661520 CAOONL|ncf11995872 +http://viaf.org/viaf/100217141 ISNI|0000000118565630 +http://viaf.org/viaf/100217141 WKP|Q1782328 +http://viaf.org/viaf/100217141 Wikipedia@http://de.wikipedia.org/wiki/Konrad_Stolle +http://viaf.org/viaf/100217141 PLWABN|9810680652605606 +http://viaf.org/viaf/100217141 Identities@http://www.worldcat.org/identities/viaf-100217141 +http://viaf.org/viaf/10022846 RERO|A011493066 +http://viaf.org/viaf/10022846 DNB|122616243 +http://viaf.org/viaf/10022846 Identities@http://www.worldcat.org/identities/lccn-n99016132 +http://viaf.org/viaf/10022846 BNF@http://catalogue.bnf.fr/ark:/12148/cb13615969g +http://viaf.org/viaf/10022846 LC@n99016132 +http://viaf.org/viaf/10022846 DNB@http://d-nb.info/gnd/122616243 +http://viaf.org/viaf/10022846 LC|n 99016132 +http://viaf.org/viaf/10022846 ISNI|0000000032514314 +http://viaf.org/viaf/10022846 SUDOC|060167181 +http://viaf.org/viaf/10022846 BNF|13615969 +http://viaf.org/viaf/100232568 BNCHL|10000000000000000057649 +http://viaf.org/viaf/100232568 NII|DA0074984X +http://viaf.org/viaf/100232568 BIBSYS|90123770 +http://viaf.org/viaf/100232568 J9U|987007269744105171 +http://viaf.org/viaf/100232568 ICCU|RAVV040528 +http://viaf.org/viaf/100232568 NDL|00460534 +http://viaf.org/viaf/100232568 RERO|A003966124 +http://viaf.org/viaf/100232568 B2Q|ncf10951467 +http://viaf.org/viaf/100232568 ISNI|0000000115790146 +http://viaf.org/viaf/100232568 NTA|068012942 +http://viaf.org/viaf/100232568 LC|n 50002411 +http://viaf.org/viaf/100232568 NKC|xx0199531 +http://viaf.org/viaf/100232568 PTBNP|340197 +http://viaf.org/viaf/100232568 PLWABN|9810578559105606 +http://viaf.org/viaf/100232568 BNE|XX1057621 +http://viaf.org/viaf/100232568 CAOONL|ncf10951467 +http://viaf.org/viaf/100232568 SUDOC|115078630 +http://viaf.org/viaf/100232568 Identities@http://www.worldcat.org/identities/lccn-n50002411 +http://viaf.org/viaf/100232568 NUKAT@vtls000663135 +http://viaf.org/viaf/100232568 BNCHL@BNC10000000000000000057649 +http://viaf.org/viaf/100232568 ICCU@IT\ICCU\RAVV\040528 +http://viaf.org/viaf/100232568 LC@n50002411 +http://viaf.org/viaf/100232568 NUKAT|n 96637946 +http://viaf.org/viaf/100232612 Wikipedia@http://en.wikipedia.org/wiki/Paul_B._Thompson_(novelist) +http://viaf.org/viaf/100232612 Wikipedia@http://ar.wikipedia.org/wiki/بول_بي._تومسون_(روائي) +http://viaf.org/viaf/100232612 J9U|987007347006605171 +http://viaf.org/viaf/100232612 PLWABN|9810670812305606 +http://viaf.org/viaf/100232612 WKP|Q7149167 +http://viaf.org/viaf/100232612 SUDOC|077437209 +http://viaf.org/viaf/100232612 NUKAT|n 01106397 +http://viaf.org/viaf/100232612 NTA|117157910 +http://viaf.org/viaf/100232612 NKC|xx0077035 +http://viaf.org/viaf/100232612 NDL|00476146 +http://viaf.org/viaf/100232612 BNF@http://catalogue.bnf.fr/ark:/12148/cb131979165 +http://viaf.org/viaf/100232612 LC|no 99061256 +http://viaf.org/viaf/100232612 ISNI|0000000071402905 +http://viaf.org/viaf/100232612 BNF|13197916 +http://viaf.org/viaf/100232612 BNE|XX1058302 +http://viaf.org/viaf/100232612 LC@no99061256 +http://viaf.org/viaf/100232612 NUKAT@vtls000624338 +http://viaf.org/viaf/100232612 Identities@http://www.worldcat.org/identities/lccn-no99061256 +http://viaf.org/viaf/10025519 Identities@http://www.worldcat.org/identities/lccn-n99002008 +http://viaf.org/viaf/10025519 DNB|120175533 +http://viaf.org/viaf/10025519 ISNI|0000000032514381 +http://viaf.org/viaf/10025519 BNF@http://catalogue.bnf.fr/ark:/12148/cb13737756n +http://viaf.org/viaf/10025519 CAOONL|ncf11316520 +http://viaf.org/viaf/10025519 LC|n 99002008 +http://viaf.org/viaf/10025519 LC@n99002008 +http://viaf.org/viaf/10025519 BNF|13737756 +http://viaf.org/viaf/10025519 DNB@http://d-nb.info/gnd/120175533 +http://viaf.org/viaf/100268307 BNF|11913398 +http://viaf.org/viaf/100268307 LC|n 84803192 +http://viaf.org/viaf/100268307 NKC|mzk2013799209 +http://viaf.org/viaf/100268307 NSK|000007390 +http://viaf.org/viaf/100268307 SUDOC|026995050 +http://viaf.org/viaf/100268307 NUKAT|n 2017046084 +http://viaf.org/viaf/100268307 DNB|1159283095 +http://viaf.org/viaf/100268307 ISNI|0000000121452848 +http://viaf.org/viaf/100268307 PLWABN|9810664650505606 +http://viaf.org/viaf/100268307 J9U|987007271370805171 +http://viaf.org/viaf/100268307 RERO|A003531943 +http://viaf.org/viaf/100268307 Identities@http://www.worldcat.org/identities/lccn-n84803192 +http://viaf.org/viaf/100268307 BNF@http://catalogue.bnf.fr/ark:/12148/cb119133985 +http://viaf.org/viaf/100268307 LC@n84803192 +http://viaf.org/viaf/100268307 NUKAT@vtls015237810 +http://viaf.org/viaf/100268307 DNB@http://d-nb.info/gnd/1159283095 +http://viaf.org/viaf/10026905 RERO|A024255039 +http://viaf.org/viaf/10026905 SUDOC|059213523 +http://viaf.org/viaf/10026905 Identities@http://www.worldcat.org/identities/viaf-10026905 +http://viaf.org/viaf/10026905 BNF@http://catalogue.bnf.fr/ark:/12148/cb137447177 +http://viaf.org/viaf/10026905 ISNI|0000000000706418 +http://viaf.org/viaf/10026905 BNF|13744717 +http://viaf.org/viaf/100272267 SUDOC|199119961 +http://viaf.org/viaf/10030090 BNF|13762858 +http://viaf.org/viaf/10030090 ISNI|0000000000707461 +http://viaf.org/viaf/10030090 SUDOC|167228862 +http://viaf.org/viaf/10030090 BNF@http://catalogue.bnf.fr/ark:/12148/cb137628581 +http://viaf.org/viaf/10030090 Identities@http://www.worldcat.org/identities/viaf-10030090 +http://viaf.org/viaf/10030090 DNB|142116939 +http://viaf.org/viaf/10030090 DNB@http://d-nb.info/gnd/142116939 +http://viaf.org/viaf/100314260 J9U|987007274097305171 +http://viaf.org/viaf/100314260 SUDOC|026994801 +http://viaf.org/viaf/100314260 RERO|A003531595 +http://viaf.org/viaf/100314260 Wikipedia@http://it.wikipedia.org/wiki/Bernard_Lortat-Jacob +http://viaf.org/viaf/100314260 Wikipedia@http://sc.wikipedia.org/wiki/Bernard_Lortat-Jacob +http://viaf.org/viaf/100314260 DNB@http://d-nb.info/gnd/1126071935 +http://viaf.org/viaf/100314260 DNB|1126071935 +http://viaf.org/viaf/100314260 ICCU@IT\ICCU\LO1V\144801 +http://viaf.org/viaf/100314260 Wikipedia@http://fr.wikipedia.org/wiki/Bernard_Lortat-Jacob +http://viaf.org/viaf/100314260 Identities@http://www.worldcat.org/identities/lccn-n78088914 +http://viaf.org/viaf/100314260 NUKAT|n 2014197265 +http://viaf.org/viaf/100314260 WKP|Q18327490 +http://viaf.org/viaf/100314260 LC@n78088914 +http://viaf.org/viaf/100314260 BNF@http://catalogue.bnf.fr/ark:/12148/cb11913379w +http://viaf.org/viaf/100314260 NUKAT@vtls010540168 +http://viaf.org/viaf/100314260 NII|DA04533478 +http://viaf.org/viaf/100314260 ICCU|LO1V144801 +http://viaf.org/viaf/100314260 CAOONL|ncf11347590 +http://viaf.org/viaf/100314260 LC|n 78088914 +http://viaf.org/viaf/100314260 ISNI|0000000080293405 +http://viaf.org/viaf/100314260 NTA|068494319 +http://viaf.org/viaf/100314260 BNF|11913379 +http://viaf.org/viaf/100314260 BIBSYS|90312805 +http://viaf.org/viaf/1003145856878722920218 Identities@http://www.worldcat.org/identities/viaf-1003145856878722920218 +http://viaf.org/viaf/1003145856878722920218 DNB|1086281020 +http://viaf.org/viaf/1003145856878722920218 DNB@http://d-nb.info/gnd/1086281020 +http://viaf.org/viaf/1003151051977133530002 XR|VIAFWORK1001487841 +http://viaf.org/viaf/1003153239455429450006 DNB|1163061921 +http://viaf.org/viaf/1003153239455429450006 DNB@http://d-nb.info/gnd/1163061921 +http://viaf.org/viaf/1003153239455429450006 Identities@http://www.worldcat.org/identities/viaf-1003153239455429450006 +http://viaf.org/viaf/1003159234248603370992 Identities@http://www.worldcat.org/identities/viaf-1003159234248603370992 +http://viaf.org/viaf/1003159234248603370992 RERO|A018459512 +http://viaf.org/viaf/1003159234265203371222 RERO|A012368815 +http://viaf.org/viaf/100318770 LC@n83210693 +http://viaf.org/viaf/100318770 NLA|000036337712 +http://viaf.org/viaf/100318770 RERO|A003427813 +http://viaf.org/viaf/100318770 BIBSYS|90676353 +http://viaf.org/viaf/100318770 NTA|071349316 +http://viaf.org/viaf/100318770 LC|n 83210693 +http://viaf.org/viaf/100318770 ISNI|0000000107868089 +http://viaf.org/viaf/100318770 NDL|00444782 +http://viaf.org/viaf/100318770 J9U|987007449488105171 +http://viaf.org/viaf/100318770 DNB|133362817 +http://viaf.org/viaf/100318770 Identities@http://www.worldcat.org/identities/lccn-n83210693 +http://viaf.org/viaf/100318770 DNB@http://d-nb.info/gnd/133362817 +http://viaf.org/viaf/100319661 ISNI|0000000072523290 +http://viaf.org/viaf/100319661 BNF|14027396 +http://viaf.org/viaf/100319661 DNB|135226082 +http://viaf.org/viaf/100319661 WKP|Q16195085 +http://viaf.org/viaf/100319661 BIBSYS|7016798 +http://viaf.org/viaf/100319661 Wikipedia@http://ar.wikipedia.org/wiki/جون_غوسلينج +http://viaf.org/viaf/100319661 Wikipedia@http://en.wikipedia.org/wiki/John_Gosling_(Psychic_TV_musician) +http://viaf.org/viaf/100319661 Wikipedia@http://nn.wikipedia.org/wiki/John_Gosling +http://viaf.org/viaf/100319661 Identities@http://www.worldcat.org/identities/viaf-100319661 +http://viaf.org/viaf/100319661 DNB@http://d-nb.info/gnd/135226082 +http://viaf.org/viaf/100319661 BNF@http://catalogue.bnf.fr/ark:/12148/cb14027396h +http://viaf.org/viaf/100331018 LC@n2011052046 +http://viaf.org/viaf/100331018 DNB@http://d-nb.info/gnd/1147167125 +http://viaf.org/viaf/100331018 BNF|14888229 +http://viaf.org/viaf/100331018 PLWABN|9810608271505606 +http://viaf.org/viaf/100331018 ISNI|0000000071125709 +http://viaf.org/viaf/100331018 DNB|1147167125 +http://viaf.org/viaf/100331018 SUDOC|155746936 +http://viaf.org/viaf/100331018 Identities@http://www.worldcat.org/identities/lccn-n2011052046 +http://viaf.org/viaf/100331018 WKP|Q3264799 +http://viaf.org/viaf/100331018 BNF@FRBNF148882295 +http://viaf.org/viaf/100331018 Wikipedia@http://fr.wikipedia.org/wiki/Luc_Dochier +http://viaf.org/viaf/100331018 CAOONL|ncf11578286 +http://viaf.org/viaf/100331018 LC|n 2011052046 +http://viaf.org/viaf/100343998 Identities@http://www.worldcat.org/identities/viaf-100343998 +http://viaf.org/viaf/100343998 BNF|16130721 +http://viaf.org/viaf/100343998 BNF@http://catalogue.bnf.fr/ark:/12148/cb16130721p +http://viaf.org/viaf/100343998 SUDOC|185108385 +http://viaf.org/viaf/100343998 RERO|A024043552 +http://viaf.org/viaf/100343998 ISNI|0000000071283854 +http://viaf.org/viaf/100346391 BNF|16131791 +http://viaf.org/viaf/100346391 BNF@http://catalogue.bnf.fr/ark:/12148/cb161317913 +http://viaf.org/viaf/100346391 Identities@http://www.worldcat.org/identities/viaf-100346391 +http://viaf.org/viaf/100347282 WKP|Q60160312 +http://viaf.org/viaf/100347282 ISNI|000000007123362X +http://viaf.org/viaf/100347282 BNF@http://catalogue.bnf.fr/ark:/12148/cb16132007p +http://viaf.org/viaf/100347282 Identities@http://www.worldcat.org/identities/viaf-100347282 +http://viaf.org/viaf/100347282 ORCID@http://orcid.org/0000-0001-9280-9007 +http://viaf.org/viaf/100347282 SUDOC|080152503 +http://viaf.org/viaf/100347282 BNF|16132007 +http://viaf.org/viaf/100361411 BNF@http://catalogue.bnf.fr/ark:/12148/cb16137272w +http://viaf.org/viaf/100361411 Identities@http://www.worldcat.org/identities/viaf-100361411 +http://viaf.org/viaf/100361411 BNF|16137272 +http://viaf.org/viaf/100361862 BNF@http://catalogue.bnf.fr/ark:/12148/cb161374624 +http://viaf.org/viaf/100361862 Identities@http://www.worldcat.org/identities/viaf-100361862 +http://viaf.org/viaf/100361862 BNF|16137462 +http://viaf.org/viaf/100380122 BIBSYS|90640563 +http://viaf.org/viaf/100380122 NII|DA02593388 +http://viaf.org/viaf/100380122 NUKAT@vtls006425416 +http://viaf.org/viaf/100380122 LC@n50039654 +http://viaf.org/viaf/100380122 Identities@http://www.worldcat.org/identities/lccn-n50039654 +http://viaf.org/viaf/100380122 Wikipedia@http://en.wikipedia.org/wiki/George_Brown_(American_football) +http://viaf.org/viaf/100380122 Wikipedia@http://ar.wikipedia.org/wiki/جورج_براون_(لاعب_كرة_قدم_أمريكية) +http://viaf.org/viaf/100380122 RERO|A003048129 +http://viaf.org/viaf/100380122 J9U|987007273558505171 +http://viaf.org/viaf/100380122 NDL|00434537 +http://viaf.org/viaf/100380122 NLA|000035022691 +http://viaf.org/viaf/100380122 ISNI|0000000110793516 +http://viaf.org/viaf/100380122 LC|n 50039654 +http://viaf.org/viaf/100380122 NTA|073446270 +http://viaf.org/viaf/100380122 NUKAT|n 2010130120 +http://viaf.org/viaf/100380122 WKP|Q5537302 +http://viaf.org/viaf/100384137 J9U|987007394276405171 +http://viaf.org/viaf/100384137 LC|n 88164436 +http://viaf.org/viaf/100384137 LC@n88164436 +http://viaf.org/viaf/100387756 WKP|Q95164515 +http://viaf.org/viaf/100387756 NTA|266576613 +http://viaf.org/viaf/100387756 NKC|jk01013213 +http://viaf.org/viaf/100387756 ISNI|0000000080084769 +http://viaf.org/viaf/100387756 Identities@http://www.worldcat.org/identities/viaf-100387756 +http://viaf.org/viaf/100392200 PLWABN|9810559574905606 +http://viaf.org/viaf/100392200 J9U|987007277987305171 +http://viaf.org/viaf/100392200 RERO|A002971659 +http://viaf.org/viaf/100392200 DNB|134321707 +http://viaf.org/viaf/100392200 NLA|000035014389 +http://viaf.org/viaf/100392200 SUDOC|07101120X +http://viaf.org/viaf/100392200 BIBSYS|90103308 +http://viaf.org/viaf/100392200 NTA|074237993 +http://viaf.org/viaf/100392200 NII|DA07146864 +http://viaf.org/viaf/100392200 SELIBR|137356 +http://viaf.org/viaf/100392200 CAOONL|ncf11165235 +http://viaf.org/viaf/100392200 LC|n 81085647 +http://viaf.org/viaf/100392200 LC@n81085647 +http://viaf.org/viaf/100392200 SELIBR@0xbdcl4j05hxwcv +http://viaf.org/viaf/100392200 DNB@http://d-nb.info/gnd/134321707 +http://viaf.org/viaf/100392200 NUKAT@vtls009579527 +http://viaf.org/viaf/100392200 Identities@http://www.worldcat.org/identities/lccn-n81085647 +http://viaf.org/viaf/100392200 WKP|Q63769145 +http://viaf.org/viaf/100392200 NUKAT|n 2012183991 +http://viaf.org/viaf/100392200 ISNI|0000000084584787 +http://viaf.org/viaf/100394433 DNB|136380638 +http://viaf.org/viaf/100394433 ISNI|0000000091118581 +http://viaf.org/viaf/100394433 DNB@http://d-nb.info/gnd/136380638 +http://viaf.org/viaf/100394433 Identities@http://www.worldcat.org/identities/viaf-100394433 +http://viaf.org/viaf/100403360 DNB@http://d-nb.info/gnd/139094342 +http://viaf.org/viaf/100403360 DNB|139094342 +http://viaf.org/viaf/100403360 ISNI|0000000071236310 +http://viaf.org/viaf/100403360 Identities@http://www.worldcat.org/identities/viaf-100403360 +http://viaf.org/viaf/1004150323919909972232 Identities@http://www.worldcat.org/identities/viaf-1004150323919909972232 +http://viaf.org/viaf/1004150323919909972232 PLWABN|9810668992405606 +http://viaf.org/viaf/1004152636120820051808 DNB@http://d-nb.info/gnd/1159214239 +http://viaf.org/viaf/1004152636120820051808 DNB|1159214239 +http://viaf.org/viaf/1004152636120820051808 Identities@http://www.worldcat.org/identities/viaf-1004152636120820051808 +http://viaf.org/viaf/1004153954889905680006 XR|VIAFEXP1051727613 +http://viaf.org/viaf/1004154381051530292362 LIH@LNB:fjo;=CJ +http://viaf.org/viaf/1004154381051530292362 LIH|LNB:_f__j__o_;=CJ +http://viaf.org/viaf/1004159234088503370639 RERO|A012387266 +http://viaf.org/viaf/1004159478342927990009 CAOONL|ncf11233458 +http://viaf.org/viaf/100416285 WKP|Q54507417 +http://viaf.org/viaf/100416285 ISNI|0000000071183124 +http://viaf.org/viaf/100423737 DNB@http://d-nb.info/gnd/139117091 +http://viaf.org/viaf/100423737 DNB|139117091 +http://viaf.org/viaf/100423737 Identities@http://www.worldcat.org/identities/viaf-100423737 +http://viaf.org/viaf/100430865 Identities@http://www.worldcat.org/identities/viaf-100430865 +http://viaf.org/viaf/100430865 DNB@http://d-nb.info/gnd/13912523X +http://viaf.org/viaf/100430865 DNB|13912523X +http://viaf.org/viaf/100433538 BNF|16123307 +http://viaf.org/viaf/100433538 LC|n 81079752 +http://viaf.org/viaf/100433538 NTA|29423912X +http://viaf.org/viaf/100433538 LC@n81079752 +http://viaf.org/viaf/100433538 BNF@http://catalogue.bnf.fr/ark:/12148/cb16123307j +http://viaf.org/viaf/100433538 NDL|00063824 +http://viaf.org/viaf/100433538 DNB|139128557 +http://viaf.org/viaf/100433538 Identities@http://www.worldcat.org/identities/lccn-n81079752 +http://viaf.org/viaf/100433538 Wikipedia@http://ja.wikipedia.org/wiki/小和田哲男 +http://viaf.org/viaf/100433538 WKP|Q11459346 +http://viaf.org/viaf/100433538 DNB@http://d-nb.info/gnd/139128557 +http://viaf.org/viaf/100433538 RERO|A019010974 +http://viaf.org/viaf/100433538 SUDOC|110185366 +http://viaf.org/viaf/100433538 J9U|987007312254705171 +http://viaf.org/viaf/100433538 NII|DA00250256 +http://viaf.org/viaf/100433538 KRNLK|KAC200202776 +http://viaf.org/viaf/100433538 ISNI|0000000081698965 +http://viaf.org/viaf/100439055 Identities@http://www.worldcat.org/identities/viaf-100439055 +http://viaf.org/viaf/100439055 DNB@http://d-nb.info/gnd/139134816 +http://viaf.org/viaf/100439055 DNB|139134816 +http://viaf.org/viaf/100446183 DNB@http://d-nb.info/gnd/139142878 +http://viaf.org/viaf/100446183 DNB|139142878 +http://viaf.org/viaf/100472797 Identities@http://www.worldcat.org/identities/lccn-no2009196118 +http://viaf.org/viaf/100472797 DNB@http://d-nb.info/gnd/139173544 +http://viaf.org/viaf/100472797 LC|no2009196118 +http://viaf.org/viaf/100472797 DNB|139173544 +http://viaf.org/viaf/100478638 Identities@http://www.worldcat.org/identities/viaf-100478638 +http://viaf.org/viaf/100478638 DNB|139180060 +http://viaf.org/viaf/100478638 DNB@http://d-nb.info/gnd/139180060 +http://viaf.org/viaf/100492894 DNB@http://d-nb.info/gnd/139196269 +http://viaf.org/viaf/100492894 Identities@http://www.worldcat.org/identities/viaf-100492894 +http://viaf.org/viaf/100492894 DNB|139196269 +http://viaf.org/viaf/100492894 ISNI|0000000071345904 +http://viaf.org/viaf/100499626 NUKAT|n 2016242678 +http://viaf.org/viaf/100499626 DNB|139204105 +http://viaf.org/viaf/100499626 DNB@http://d-nb.info/gnd/139204105 +http://viaf.org/viaf/100499626 NUKAT@vtls014973786 +http://viaf.org/viaf/100499626 ISNI|0000000071188486 +http://viaf.org/viaf/100499626 PLWABN|9810678240405606 +http://viaf.org/viaf/100500759 LC|no2004062495 +http://viaf.org/viaf/100500759 SZ|139205527 +http://viaf.org/viaf/100500759 SUDOC|135192013 +http://viaf.org/viaf/100500759 Identities@http://www.worldcat.org/identities/lccn-no2004062495 +http://viaf.org/viaf/100500759 RERO|A013784156 +http://viaf.org/viaf/100500759 SZ@http://d-nb.info/gnd/139205527 +http://viaf.org/viaf/100500759 ISNI|0000000355614707 +http://viaf.org/viaf/100504043 Identities@http://www.worldcat.org/identities/viaf-100504043 +http://viaf.org/viaf/100504043 DNB|139209204 +http://viaf.org/viaf/100504043 DNB@http://d-nb.info/gnd/139209204 +http://viaf.org/viaf/100504043 RERO|A009279090 +http://viaf.org/viaf/1005146936840313782837 NLA|000057241303 +http://viaf.org/viaf/1005146936840313782837 Identities@http://www.worldcat.org/identities/viaf-1005146936840313782837 +http://viaf.org/viaf/1005152636060820050108 DNB@http://d-nb.info/gnd/115836346X +http://viaf.org/viaf/1005152636060820050108 Identities@http://www.worldcat.org/identities/viaf-1005152636060820050108 +http://viaf.org/viaf/1005152636060820050108 DNB|115836346X +http://viaf.org/viaf/1005155953617042630000 XR|VIAFWORK34443132 +http://viaf.org/viaf/1005156253562008110000 LIH@LNB:C5Jx;=Bg +http://viaf.org/viaf/1005156253562008110000 LIH|LNB:C5J_x_;=B_g_ +http://viaf.org/viaf/1005159234775303372730 RERO|A012346982 +http://viaf.org/viaf/1005159234775303372730 Identities@http://www.worldcat.org/identities/viaf-1005159234775303372730 +http://viaf.org/viaf/100529046 WKP|Q55859179 +http://viaf.org/viaf/100529046 DNB|139238034 +http://viaf.org/viaf/100529046 DNB@http://d-nb.info/gnd/139238034 +http://viaf.org/viaf/100529046 ISNI|0000000071190711 +http://viaf.org/viaf/100545903 DNB|139257012 +http://viaf.org/viaf/100545903 ISNI|000000007134985X +http://viaf.org/viaf/100545903 Identities@http://www.worldcat.org/identities/viaf-100545903 +http://viaf.org/viaf/100545903 DNB@http://d-nb.info/gnd/139257012 +http://viaf.org/viaf/100556271 Identities@http://www.worldcat.org/identities/viaf-100556271 +http://viaf.org/viaf/100556271 DNB@http://d-nb.info/gnd/139268456 +http://viaf.org/viaf/100556271 DNB|139268456 +http://viaf.org/viaf/100570356 DNB|139284575 +http://viaf.org/viaf/100570356 DNB@http://d-nb.info/gnd/139284575 +http://viaf.org/viaf/100570356 Identities@http://www.worldcat.org/identities/viaf-100570356 +http://viaf.org/viaf/100570356 WKP|Q94804853 +http://viaf.org/viaf/100571742 SUDOC|113738048 +http://viaf.org/viaf/100571742 DNB@http://d-nb.info/gnd/139286160 +http://viaf.org/viaf/100571742 DNB|139286160 +http://viaf.org/viaf/100571742 BNF|16581962 +http://viaf.org/viaf/100571742 Identities@http://www.worldcat.org/identities/lccn-nr2002013753 +http://viaf.org/viaf/100571742 BNF@http://catalogue.bnf.fr/ark:/12148/cb16581962s +http://viaf.org/viaf/100571742 NUKAT@vtls013380572 +http://viaf.org/viaf/100571742 LC|nr2002013753 +http://viaf.org/viaf/100571742 WKP|Q95349605 +http://viaf.org/viaf/100571742 NTA|315034246 +http://viaf.org/viaf/100571742 RERO|A014026079 +http://viaf.org/viaf/100571742 ISNI|0000000071082075 +http://viaf.org/viaf/100571742 NUKAT|n 2015146669 +http://viaf.org/viaf/100572138 LC@n2008014259 +http://viaf.org/viaf/100572138 ORCID@http://orcid.org/0000-0002-9665-9330 +http://viaf.org/viaf/100572138 Identities@http://www.worldcat.org/identities/lccn-n2008014259 +http://viaf.org/viaf/100572138 DNB@http://d-nb.info/gnd/139286659 +http://viaf.org/viaf/100572138 NTA|312863594 +http://viaf.org/viaf/100572138 DNB|139286659 +http://viaf.org/viaf/100572138 J9U|987007379473405171 +http://viaf.org/viaf/100572138 LC|n 2008014259 +http://viaf.org/viaf/100572138 ISNI|0000000116920942 +http://viaf.org/viaf/100574866 DNB@http://d-nb.info/gnd/139289690 +http://viaf.org/viaf/100574866 DNB|139289690 +http://viaf.org/viaf/100593126 DNB@http://d-nb.info/gnd/139310991 +http://viaf.org/viaf/100593126 DNB|139310991 +http://viaf.org/viaf/100599094 ISNI|0000000071299581 +http://viaf.org/viaf/100599094 Identities@http://www.worldcat.org/identities/viaf-100599094 +http://viaf.org/viaf/100599094 DNB|139317783 +http://viaf.org/viaf/100599094 DNB@http://d-nb.info/gnd/139317783 +http://viaf.org/viaf/100604286 Identities@http://www.worldcat.org/identities/viaf-100604286 +http://viaf.org/viaf/100604286 DNB|139323708 +http://viaf.org/viaf/100604286 DNB@http://d-nb.info/gnd/139323708 +http://viaf.org/viaf/10060763 BNF|14234453 +http://viaf.org/viaf/10060763 BNF@http://catalogue.bnf.fr/ark:/12148/cb14234453b +http://viaf.org/viaf/10060763 Identities@http://www.worldcat.org/identities/viaf-10060763 +http://viaf.org/viaf/100613196 DNB|139334114 +http://viaf.org/viaf/100613196 DNB@http://d-nb.info/gnd/139334114 +http://viaf.org/viaf/100613196 Identities@http://www.worldcat.org/identities/viaf-100613196 +http://viaf.org/viaf/100613196 ISNI|0000000071249728 +http://viaf.org/viaf/1006145856882222920257 DNB|1089339771 +http://viaf.org/viaf/1006145856882222920257 DNB@http://d-nb.info/gnd/1089339771 +http://viaf.org/viaf/1006149198207974940002 J9U|987007383314805171 +http://viaf.org/viaf/1006149198207974940002 SUDOC|244888558 +http://viaf.org/viaf/1006149198207974940002 BIBSYS|90111259 +http://viaf.org/viaf/1006149198207974940002 Identities@http://www.worldcat.org/identities/lccn-nb2010014150 +http://viaf.org/viaf/1006149198207974940002 LC|nb2010014150 +http://viaf.org/viaf/1006154380975030291195 LIH|LNB:C_o_XM;=B_t_ +http://viaf.org/viaf/1006154380975030291195 LIH@LNB:CoXM;=Bt +http://viaf.org/viaf/1006157527257627300009 BNC@.a19395772 +http://viaf.org/viaf/1006157527257627300009 BNC|a19395772 +http://viaf.org/viaf/1006157643297638590003 XR|VIAFWORK1128944310 +http://viaf.org/viaf/10061654 ISNI|0000000000720199 +http://viaf.org/viaf/10061654 SUDOC|060721995 +http://viaf.org/viaf/10061654 NTA|239368010 +http://viaf.org/viaf/10061654 BNF|14402115 +http://viaf.org/viaf/10061654 BNF@http://catalogue.bnf.fr/ark:/12148/cb144021156 +http://viaf.org/viaf/10061654 Identities@http://www.worldcat.org/identities/viaf-10061654 +http://viaf.org/viaf/10064822 NUKAT|n 2003038269 +http://viaf.org/viaf/10064822 Wikipedia@http://ht.wikipedia.org/wiki/Sidney_Redner +http://viaf.org/viaf/10064822 NTA|240405293 +http://viaf.org/viaf/10064822 WKP|Q7509301 +http://viaf.org/viaf/10064822 Identities@http://www.worldcat.org/identities/lccn-n00015989 +http://viaf.org/viaf/10064822 NUKAT@vtls001729430 +http://viaf.org/viaf/10064822 BNF@http://catalogue.bnf.fr/ark:/12148/cb14420880h +http://viaf.org/viaf/10064822 BIBSYS|2132518 +http://viaf.org/viaf/10064822 CAOONL|ncf11329298 +http://viaf.org/viaf/10064822 SUDOC|128587679 +http://viaf.org/viaf/10064822 RERO|A008584612 +http://viaf.org/viaf/10064822 NKC|ctu2015858321 +http://viaf.org/viaf/10064822 NII|DA1840729X +http://viaf.org/viaf/10064822 BNF|14420880 +http://viaf.org/viaf/10064822 Wikipedia@http://fa.wikipedia.org/wiki/سیدنی_ردنر +http://viaf.org/viaf/10064822 LC@n00015989 +http://viaf.org/viaf/10064822 ISNI|0000000115107896 +http://viaf.org/viaf/10064822 Wikipedia@http://en.wikipedia.org/wiki/Sidney_Redner +http://viaf.org/viaf/10064822 LC|n 00015989 +http://viaf.org/viaf/10064822 J9U|987007432126805171 +http://viaf.org/viaf/100649386 BNF@http://catalogue.bnf.fr/ark:/12148/cb14304921n +http://viaf.org/viaf/100649386 LC@n85064861 +http://viaf.org/viaf/100649386 BAV|495_129960 +http://viaf.org/viaf/100649386 J9U|987007413520505171 +http://viaf.org/viaf/100649386 BAV@495/129960 +http://viaf.org/viaf/100649386 NTA|313930392 +http://viaf.org/viaf/100649386 PTBNP|1189008 +http://viaf.org/viaf/100649386 Identities@http://www.worldcat.org/identities/lccn-n85064861 +http://viaf.org/viaf/100649386 RERO|A003300349 +http://viaf.org/viaf/100649386 Wikipedia@http://de.wikipedia.org/wiki/Giambattista_Giusti +http://viaf.org/viaf/100649386 NII|DA12301230 +http://viaf.org/viaf/100649386 Wikipedia@http://mg.wikipedia.org/wiki/Giambattista_Giusti +http://viaf.org/viaf/100649386 Wikipedia@http://it.wikipedia.org/wiki/Giambattista_Giusti +http://viaf.org/viaf/100649386 WKP|Q1522232 +http://viaf.org/viaf/100649386 DNB|1056159278 +http://viaf.org/viaf/100649386 ISNI|000000007268828X +http://viaf.org/viaf/100649386 BNF|14304921 +http://viaf.org/viaf/100649386 LC|n 85064861 +http://viaf.org/viaf/100649386 DNB@http://d-nb.info/gnd/1056159278 +http://viaf.org/viaf/100650546 LC|n 87907631 +http://viaf.org/viaf/100650546 Identities@http://www.worldcat.org/identities/lccn-n87907631 +http://viaf.org/viaf/100650546 LC@n87907631 +http://viaf.org/viaf/100650546 ISNI|0000000071089277 +http://viaf.org/viaf/100656063 Identities@http://www.worldcat.org/identities/lccn-n2009055364 +http://viaf.org/viaf/100656063 LC@n2009055364 +http://viaf.org/viaf/100656063 SUDOC|155309668 +http://viaf.org/viaf/100656063 LC|n 2009055364 +http://viaf.org/viaf/100656063 J9U|987007351998905171 +http://viaf.org/viaf/100656063 ISNI|0000000071089648 +http://viaf.org/viaf/100657729 ISNI|0000000071089904 +http://viaf.org/viaf/100657729 Identities@http://www.worldcat.org/identities/lccn-n2009055644 +http://viaf.org/viaf/100657729 LC@n2009055644 +http://viaf.org/viaf/100657729 LC|n 2009055644 +http://viaf.org/viaf/100660798 LC@n2009056160 +http://viaf.org/viaf/100660798 LC|n 2009056160 +http://viaf.org/viaf/100660798 BIBSYS|10028171 +http://viaf.org/viaf/100660798 J9U|987007351996605171 +http://viaf.org/viaf/100660798 CAOONL|ncf11566165 +http://viaf.org/viaf/100660798 Identities@http://www.worldcat.org/identities/lccn-n2009056160 +http://viaf.org/viaf/100663966 LC@n2009056689 +http://viaf.org/viaf/100663966 Identities@http://www.worldcat.org/identities/lccn-n2009056689 +http://viaf.org/viaf/100663966 LC|n 2009056689 +http://viaf.org/viaf/100668097 LC@n2009057362 +http://viaf.org/viaf/100668097 ISNI|0000000071149268 +http://viaf.org/viaf/100668097 LC|n 2009057362 +http://viaf.org/viaf/100668097 Identities@http://www.worldcat.org/identities/lccn-n2009057362 +http://viaf.org/viaf/100669807 DNB@http://d-nb.info/gnd/1089511663 +http://viaf.org/viaf/100669807 ARBABN|000043056 +http://viaf.org/viaf/100669807 J9U|987007351991705171 +http://viaf.org/viaf/100669807 NUKAT|n 2012063729 +http://viaf.org/viaf/100669807 DNB|1089511663 +http://viaf.org/viaf/100669807 LC|n 2009057642 +http://viaf.org/viaf/100669807 Identities@http://www.worldcat.org/identities/lccn-n2009057642 +http://viaf.org/viaf/100669807 NUKAT@vtls008552416 +http://viaf.org/viaf/100669807 LC@n2009057642 +http://viaf.org/viaf/100670643 Identities@http://www.worldcat.org/identities/lccn-n2009057779 +http://viaf.org/viaf/100670643 LC|n 2009057779 +http://viaf.org/viaf/100670643 LC@n2009057779 +http://viaf.org/viaf/100670643 ISNI|0000000373404690 +http://viaf.org/viaf/100680895 LC|n 2009059499 +http://viaf.org/viaf/100680895 DNB@http://d-nb.info/gnd/132327147 +http://viaf.org/viaf/100680895 DNB|132327147 +http://viaf.org/viaf/100680895 Identities@http://www.worldcat.org/identities/lccn-n2009059499 +http://viaf.org/viaf/100680895 ISNI|000000007115098X +http://viaf.org/viaf/100680895 LC@n2009059499 +http://viaf.org/viaf/100683117 ISNI|0000000071151368 +http://viaf.org/viaf/100683117 J9U|987007440837905171 +http://viaf.org/viaf/100683117 NUKAT@vtls008943992 +http://viaf.org/viaf/100683117 PLWABN|9810557640705606 +http://viaf.org/viaf/100683117 LC@n2009059848 +http://viaf.org/viaf/100683117 NUKAT|n 2012150305 +http://viaf.org/viaf/100683117 LC|n 2009059848 +http://viaf.org/viaf/100683117 Identities@http://www.worldcat.org/identities/lccn-n2009059848 +http://viaf.org/viaf/100686736 LC@n2009060411 +http://viaf.org/viaf/100686736 ISNI|0000000071362675 +http://viaf.org/viaf/100686736 LC|n 2009060411 +http://viaf.org/viaf/100686736 Identities@http://www.worldcat.org/identities/lccn-n2009060411 +http://viaf.org/viaf/100689085 LC@n2009060784 +http://viaf.org/viaf/100689085 DNB@http://d-nb.info/gnd/1139789902 +http://viaf.org/viaf/100689085 LC|n 2009060784 +http://viaf.org/viaf/100689085 ISNI|0000000071308994 +http://viaf.org/viaf/100689085 DNB|1139789902 +http://viaf.org/viaf/100689085 Identities@http://www.worldcat.org/identities/lccn-n2009060784 +http://viaf.org/viaf/100709523 Identities@http://www.worldcat.org/identities/lccn-n2009204845 +http://viaf.org/viaf/100709523 LC|n 2009204845 +http://viaf.org/viaf/100709523 LC@n2009204845 +http://viaf.org/viaf/100709974 LC@n2009206146 +http://viaf.org/viaf/100709974 Identities@http://www.worldcat.org/identities/lccn-n2009206146 +http://viaf.org/viaf/100709974 LC|n 2009206146 +http://viaf.org/viaf/1007151246512944130810 DNB|1146518064 +http://viaf.org/viaf/1007151246512944130810 Identities@http://www.worldcat.org/identities/viaf-1007151246512944130810 +http://viaf.org/viaf/1007151246512944130810 DNB@http://d-nb.info/gnd/1146518064 +http://viaf.org/viaf/1007152636063420051252 DNB|1158249543 +http://viaf.org/viaf/1007152636063420051252 Identities@http://www.worldcat.org/identities/viaf-1007152636063420051252 +http://viaf.org/viaf/1007152636063420051252 DNB@http://d-nb.info/gnd/1158249543 +http://viaf.org/viaf/1007156565714923500006 KRNLK|KAC201941386 +http://viaf.org/viaf/1007156565714923500006 ISNI|0000000476773675 +http://viaf.org/viaf/1007159234641603372283 Identities@http://www.worldcat.org/identities/viaf-1007159234641603372283 +http://viaf.org/viaf/1007159234641603372283 RERO|A018395567 +http://viaf.org/viaf/100718389 Identities@http://www.worldcat.org/identities/lccn-nb99048911 +http://viaf.org/viaf/100718389 LC|nb 99048911 +http://viaf.org/viaf/100718389 LC@nb99048911 +http://viaf.org/viaf/100720935 Identities@http://www.worldcat.org/identities/lccn-nb2009022020 +http://viaf.org/viaf/100720935 LC|nb2009022020 +http://viaf.org/viaf/100725561 LC|nb2009022901 +http://viaf.org/viaf/100725561 Identities@http://www.worldcat.org/identities/lccn-nb2009022901 +http://viaf.org/viaf/100726001 LC|nb2009022985 +http://viaf.org/viaf/100726001 Identities@http://www.worldcat.org/identities/lccn-nb2009022985 +http://viaf.org/viaf/100727794 LC|nb2009023289 +http://viaf.org/viaf/100727794 ISNI|0000000071313646 +http://viaf.org/viaf/100727794 Identities@http://www.worldcat.org/identities/lccn-nb2009023289 +http://viaf.org/viaf/100729576 LC|nb2009023618 +http://viaf.org/viaf/10073237 BNF|14466164 +http://viaf.org/viaf/10073237 NTA|153087528 +http://viaf.org/viaf/10073237 LC|n 96802633 +http://viaf.org/viaf/10073237 BIBSYS|90938984 +http://viaf.org/viaf/10073237 NUKAT|n 2005106301 +http://viaf.org/viaf/10073237 ISNI|0000000117424166 +http://viaf.org/viaf/10073237 Identities@http://www.worldcat.org/identities/lccn-n96802633 +http://viaf.org/viaf/10073237 LC@n96802633 +http://viaf.org/viaf/10073237 NUKAT@vtls003394786 +http://viaf.org/viaf/10073237 BNF@http://catalogue.bnf.fr/ark:/12148/cb14466164m +http://viaf.org/viaf/100742319 DNB|1032029374 +http://viaf.org/viaf/100742319 J9U|987007520407905171 +http://viaf.org/viaf/100742319 BIBSYS|99021033 +http://viaf.org/viaf/100742319 LC|no2009138236 +http://viaf.org/viaf/100742319 NTA|298100886 +http://viaf.org/viaf/100742319 SUDOC|170128687 +http://viaf.org/viaf/100742319 Identities@http://www.worldcat.org/identities/lccn-no2009138236 +http://viaf.org/viaf/100742319 ISNI|0000000071102144 +http://viaf.org/viaf/100742319 CAOONL|ncf11570951 +http://viaf.org/viaf/100742319 BNF|16569199 +http://viaf.org/viaf/100742319 RERO|A009426238 +http://viaf.org/viaf/100742319 BNF@http://catalogue.bnf.fr/ark:/12148/cb16569199f +http://viaf.org/viaf/100742319 DNB@http://d-nb.info/gnd/1032029374 +http://viaf.org/viaf/100745938 LC|no2009138801 +http://viaf.org/viaf/100745938 Identities@http://www.worldcat.org/identities/lccn-no2009138801 +http://viaf.org/viaf/100750833 NUKAT@vtls014811190 +http://viaf.org/viaf/100750833 Wikipedia@http://azb.wikipedia.org/wiki/جیمز_ماوریس +http://viaf.org/viaf/100750833 Wikipedia@http://ar.wikipedia.org/wiki/جيمس_موريس_(سياسي) +http://viaf.org/viaf/100750833 Wikipedia@http://de.wikipedia.org/wiki/James_Maurice +http://viaf.org/viaf/100750833 WKP|Q111581 +http://viaf.org/viaf/100750833 Identities@http://www.worldcat.org/identities/lccn-no2009139573 +http://viaf.org/viaf/100750833 NUKAT|n 2016011789 +http://viaf.org/viaf/100750833 LC|no2009139573 +http://viaf.org/viaf/100750833 Wikipedia@http://en.wikipedia.org/wiki/James_Maurice +http://viaf.org/viaf/100757692 Identities@http://www.worldcat.org/identities/lccn-no2009140637 +http://viaf.org/viaf/100757692 LC|no2009140637 +http://viaf.org/viaf/100757692 ISNI|0000000071104713 +http://viaf.org/viaf/100758132 LC|no2009140710 +http://viaf.org/viaf/100758132 ISNI|0000000071104828 +http://viaf.org/viaf/100758132 Identities@http://www.worldcat.org/identities/lccn-no2009140710 +http://viaf.org/viaf/100762092 LC|no2009141395 +http://viaf.org/viaf/100762092 Identities@http://www.worldcat.org/identities/lccn-no2009141395 +http://viaf.org/viaf/100799173 NTA|186140754 +http://viaf.org/viaf/100799173 NLA|000036554407 +http://viaf.org/viaf/100799173 RERO|A005821830 +http://viaf.org/viaf/100799173 ISNI|0000000071166631 +http://viaf.org/viaf/100799173 Identities@http://www.worldcat.org/identities/lccn-no2009147721 +http://viaf.org/viaf/100799173 NII|DA04413545 +http://viaf.org/viaf/100799173 N6I|vtls001394821 +http://viaf.org/viaf/100799173 BIBSYS|5001682 +http://viaf.org/viaf/100799173 LC|no2009147721 +http://viaf.org/viaf/100802583 ISNI|0000000071112027 +http://viaf.org/viaf/100802583 Identities@http://www.worldcat.org/identities/lccn-no2009148334 +http://viaf.org/viaf/100802583 LC|no2009148334 +http://viaf.org/viaf/100809810 ISNI|0000000071272266 +http://viaf.org/viaf/100809810 SUDOC|084028750 +http://viaf.org/viaf/100809810 Identities@http://www.worldcat.org/identities/lccn-no2009149456 +http://viaf.org/viaf/100809810 BNF@http://catalogue.bnf.fr/ark:/12148/cb16941358r +http://viaf.org/viaf/100809810 LC|no2009149456 +http://viaf.org/viaf/100809810 BNF|16941358 +http://viaf.org/viaf/100813770 Identities@http://www.worldcat.org/identities/lccn-no2009150087 +http://viaf.org/viaf/100813770 LC|no2009150087 +http://viaf.org/viaf/100813770 ISNI|0000000071272864 +http://viaf.org/viaf/1008145857087522921925 DNB|1086469933 +http://viaf.org/viaf/1008145857087522921925 RERO|A027608462 +http://viaf.org/viaf/1008145857087522921925 Identities@http://www.worldcat.org/identities/viaf-1008145857087522921925 +http://viaf.org/viaf/1008145857087522921925 DNB@http://d-nb.info/gnd/1086469933 +http://viaf.org/viaf/1008152636057720050692 DNB|1158559291 +http://viaf.org/viaf/1008152636057720050692 DNB@http://d-nb.info/gnd/1158559291 +http://viaf.org/viaf/1008159234265103371174 RERO|A012409616 +http://viaf.org/viaf/1008159234265103371174 Identities@http://www.worldcat.org/identities/viaf-1008159234265103371174 +http://viaf.org/viaf/100819567 Identities@http://www.worldcat.org/identities/lccn-no2009151023 +http://viaf.org/viaf/100819567 LC|no2009151023 +http://viaf.org/viaf/100819611 Identities@http://www.worldcat.org/identities/lccn-no2009151030 +http://viaf.org/viaf/100819611 LC|no2009151030 +http://viaf.org/viaf/100826695 Identities@http://www.worldcat.org/identities/lccn-no2009152178 +http://viaf.org/viaf/100826695 ISNI|0000000071274624 +http://viaf.org/viaf/100826695 LC|no2009152178 +http://viaf.org/viaf/100833372 Identities@http://www.worldcat.org/identities/lccn-no2009153152 +http://viaf.org/viaf/100833372 LC|no2009153152 +http://viaf.org/viaf/10083533 CAOONL|ncf10302912 +http://viaf.org/viaf/10083533 NII|DA18591858 +http://viaf.org/viaf/10083533 J9U|987007314435305171 +http://viaf.org/viaf/10083533 Identities@http://www.worldcat.org/identities/lccn-no93002591 +http://viaf.org/viaf/10083533 BNF@http://catalogue.bnf.fr/ark:/12148/cb14520391z +http://viaf.org/viaf/10083533 LC@no93002591 +http://viaf.org/viaf/10083533 BIBSYS|90819862 +http://viaf.org/viaf/10083533 SUDOC|168633248 +http://viaf.org/viaf/10083533 LC|no 93002591 +http://viaf.org/viaf/10083533 ISNI|0000000073641512 +http://viaf.org/viaf/10083533 BNF|14520391 +http://viaf.org/viaf/10083533 B2Q|0000280102 +http://viaf.org/viaf/100837387 Identities@http://www.worldcat.org/identities/lccn-no2009153802 +http://viaf.org/viaf/100837387 LC|no2009153802 +http://viaf.org/viaf/100838278 LC|no2009153932 +http://viaf.org/viaf/100838278 Identities@http://www.worldcat.org/identities/lccn-no2009153932 +http://viaf.org/viaf/10084875 LC|n 84017050 +http://viaf.org/viaf/10084875 Wikipedia@http://ar.wikipedia.org/wiki/هلال_ناجي +http://viaf.org/viaf/10084875 BNF|14528041 +http://viaf.org/viaf/10084875 J9U|987007276337405171 +http://viaf.org/viaf/10084875 DNB@http://d-nb.info/gnd/103624163 +http://viaf.org/viaf/10084875 LC@n84017050 +http://viaf.org/viaf/10084875 Identities@http://www.worldcat.org/identities/lccn-n84017050 +http://viaf.org/viaf/10084875 BNF@http://catalogue.bnf.fr/ark:/12148/cb14528041h +http://viaf.org/viaf/10084875 SUDOC|070328005 +http://viaf.org/viaf/10084875 DNB|103624163 +http://viaf.org/viaf/10084875 EGAXA|vtls000879631 +http://viaf.org/viaf/10084875 NII|DA13556598 +http://viaf.org/viaf/10084875 LNL|7820 +http://viaf.org/viaf/10084875 RERO|A018477130 +http://viaf.org/viaf/10084875 NTA|089163389 +http://viaf.org/viaf/10084875 WKP|Q12250021 +http://viaf.org/viaf/10084875 ISNI|0000000121204684 +http://viaf.org/viaf/100864936 ISNI|0000000071173858 +http://viaf.org/viaf/100864936 NKC|xx0102599 +http://viaf.org/viaf/100864936 Identities@http://www.worldcat.org/identities/viaf-100864936 +http://viaf.org/viaf/100866718 NKC|xx0102835 +http://viaf.org/viaf/100866718 WKP|Q95242299 +http://viaf.org/viaf/100869562 NKC|xx0103182 +http://viaf.org/viaf/100872955 ISNI|0000000071278465 +http://viaf.org/viaf/100872955 NKC|xx0103565 +http://viaf.org/viaf/100878021 LC@n84063592 +http://viaf.org/viaf/100878021 BNF|15030066 +http://viaf.org/viaf/100878021 J9U|987007296798305171 +http://viaf.org/viaf/100878021 LNL|11745 +http://viaf.org/viaf/100878021 ISNI|0000000121454907 +http://viaf.org/viaf/100878021 LC|n 84063592 +http://viaf.org/viaf/100878021 NTA|358168333 +http://viaf.org/viaf/100878021 EGAXA|vtls000051851 +http://viaf.org/viaf/100878021 Identities@http://www.worldcat.org/identities/lccn-n84063592 +http://viaf.org/viaf/100878021 RERO|A021918604 +http://viaf.org/viaf/100878021 BNF@http://catalogue.bnf.fr/ark:/12148/cb15030066d +http://viaf.org/viaf/100878021 SUDOC|23527125X +http://viaf.org/viaf/10088934 BNF@http://catalogue.bnf.fr/ark:/12148/cb145495390 +http://viaf.org/viaf/10088934 BNF|14549539 +http://viaf.org/viaf/10088934 Identities@http://www.worldcat.org/identities/viaf-10088934 +http://viaf.org/viaf/10088934 ISNI|0000000000729513 +http://viaf.org/viaf/100893943 SELIBR|326838 +http://viaf.org/viaf/100893943 ISNI|0000000071333647 +http://viaf.org/viaf/100893943 Identities@http://www.worldcat.org/identities/viaf-100893943 +http://viaf.org/viaf/100893943 SELIBR@20dhnpql2vq2cbq +http://viaf.org/viaf/100902870 N6I|vtls001352172 +http://viaf.org/viaf/100902870 BNF|13491591 +http://viaf.org/viaf/100902870 BIBSYS|2111354 +http://viaf.org/viaf/100902870 DNB|139380027 +http://viaf.org/viaf/100902870 RERO|A003364295 +http://viaf.org/viaf/100902870 NTA|072346892 +http://viaf.org/viaf/100902870 NLA|000035967424 +http://viaf.org/viaf/100902870 LC|n 98019677 +http://viaf.org/viaf/100902870 BAV|495_152856 +http://viaf.org/viaf/100902870 WKP|Q56007289 +http://viaf.org/viaf/100902870 NUKAT|n 2002019601 +http://viaf.org/viaf/100902870 J9U|987007285813905171 +http://viaf.org/viaf/100902870 NKC|jx20100607006 +http://viaf.org/viaf/100902870 SUDOC|050225146 +http://viaf.org/viaf/100902870 ISNI|0000000110318221 +http://viaf.org/viaf/100902870 Identities@http://www.worldcat.org/identities/lccn-n98019677 +http://viaf.org/viaf/100902870 BNF@http://catalogue.bnf.fr/ark:/12148/cb13491591w +http://viaf.org/viaf/100902870 DNB@http://d-nb.info/gnd/139380027 +http://viaf.org/viaf/100902870 LC@n98019677 +http://viaf.org/viaf/100902870 BAV@495/152856 +http://viaf.org/viaf/100902870 NUKAT@vtls001355255 +http://viaf.org/viaf/100902870 PLWABN|9810583496105606 +http://viaf.org/viaf/100905048 Identities@http://www.worldcat.org/identities/lccn-no2019134338 +http://viaf.org/viaf/100905048 LC|no2019134338 +http://viaf.org/viaf/100905048 DNB|137858825 +http://viaf.org/viaf/100905048 DNB@http://d-nb.info/gnd/137858825 +http://viaf.org/viaf/1009146997343318892105 NII|DA18063918 +http://viaf.org/viaf/1009146997343318892105 Identities@http://www.worldcat.org/identities/viaf-1009146997343318892105 +http://viaf.org/viaf/1009154260897124480004 DNB@http://d-nb.info/gnd/1171152183 +http://viaf.org/viaf/1009154260897124480004 DNB|1171152183 +http://viaf.org/viaf/1009154260897124480004 Identities@http://www.worldcat.org/identities/viaf-1009154260897124480004 +http://viaf.org/viaf/1009157527285027300007 KRNLK|KAB201726474 +http://viaf.org/viaf/1009159234410703371526 Identities@http://www.worldcat.org/identities/viaf-1009159234410703371526 +http://viaf.org/viaf/1009159234410703371526 RERO|A012378544 +http://viaf.org/viaf/1009159474196027661274 CAOONL|ncf11998379 +http://viaf.org/viaf/100917577 ISNI|0000000443012431 +http://viaf.org/viaf/100925145 Identities@http://www.worldcat.org/identities/viaf-100925145 +http://viaf.org/viaf/100925145 BNE|XX1755940 +http://viaf.org/viaf/100930815 BNF|16551472 +http://viaf.org/viaf/100930815 WKP|Q3186037 +http://viaf.org/viaf/100930815 BNE|XX4831556 +http://viaf.org/viaf/100930815 DBC|87097969688349 +http://viaf.org/viaf/100930815 PLWABN|9810607241005606 +http://viaf.org/viaf/100930815 DNB|1022552112 +http://viaf.org/viaf/100930815 LC|no 98100073 +http://viaf.org/viaf/100930815 ISNI|0000000071734942 +http://viaf.org/viaf/100930815 Identities@http://www.worldcat.org/identities/lccn-no98100073 +http://viaf.org/viaf/100930815 BNF@http://catalogue.bnf.fr/ark:/12148/cb165514723 +http://viaf.org/viaf/100930815 Wikipedia@http://fr.wikipedia.org/wiki/Joshua_Seftel +http://viaf.org/viaf/100930815 LC@no98100073 +http://viaf.org/viaf/100930815 BIBSYS|10028196 +http://viaf.org/viaf/100930815 DBC@870979.69688349 +http://viaf.org/viaf/100930815 DNB@http://d-nb.info/gnd/1022552112 +http://viaf.org/viaf/100930815 Wikipedia@http://en.wikipedia.org/wiki/Joshua_Seftel +http://viaf.org/viaf/100934055 BNE|XX4835017 +http://viaf.org/viaf/100934055 Identities@http://www.worldcat.org/identities/viaf-100934055 +http://viaf.org/viaf/100936332 Wikipedia@http://fr.wikipedia.org/wiki/Denise_Nicholas +http://viaf.org/viaf/100936332 Identities@http://www.worldcat.org/identities/lccn-n91047489 +http://viaf.org/viaf/100936332 NUKAT@vtls017909661 +http://viaf.org/viaf/100936332 WKP|Q919604 +http://viaf.org/viaf/100936332 BIBSYS|7043317 +http://viaf.org/viaf/100936332 NTA|302318798 +http://viaf.org/viaf/100936332 BNE|XX4837261 +http://viaf.org/viaf/100936332 J9U|987007449484505171 +http://viaf.org/viaf/100936332 Wikipedia@http://arz.wikipedia.org/wiki/دينيسى_نيكولاس +http://viaf.org/viaf/100936332 BNF@http://catalogue.bnf.fr/ark:/12148/cb14211033g +http://viaf.org/viaf/100936332 BNF|14211033 +http://viaf.org/viaf/100936332 LC@n91047489 +http://viaf.org/viaf/100936332 Wikipedia@http://en.wikipedia.org/wiki/Denise_Nicholas +http://viaf.org/viaf/100936332 Wikipedia@http://af.wikipedia.org/wiki/Denise_Nicholas +http://viaf.org/viaf/100936332 Wikipedia@http://fa.wikipedia.org/wiki/دنیس_نیکلاس +http://viaf.org/viaf/100936332 Wikipedia@http://ar.wikipedia.org/wiki/دينيسي_نيكولاس +http://viaf.org/viaf/100936332 LC|n 91047489 +http://viaf.org/viaf/100936332 NUKAT|n 2018287845 +http://viaf.org/viaf/100936332 Wikipedia@http://azb.wikipedia.org/wiki/دنیس_نیکلاس +http://viaf.org/viaf/100936332 ISNI|0000000078270052 +http://viaf.org/viaf/100955043 LC|n 2015034892 +http://viaf.org/viaf/100955043 BNE|XX955489 +http://viaf.org/viaf/100955043 ISNI|0000000071547821 +http://viaf.org/viaf/100955043 LC@n2015034892 +http://viaf.org/viaf/100955043 Identities@http://www.worldcat.org/identities/lccn-n2015034892 +http://viaf.org/viaf/10095611 RERO|A010938873 +http://viaf.org/viaf/10095611 BNF|14585276 +http://viaf.org/viaf/10095611 BNF@http://catalogue.bnf.fr/ark:/12148/cb145852767 +http://viaf.org/viaf/10095611 SUDOC|082560757 +http://viaf.org/viaf/10095611 ISNI|0000000000732149 +http://viaf.org/viaf/10095611 Identities@http://www.worldcat.org/identities/viaf-10095611 +http://viaf.org/viaf/10096007 CAOONL|ncf11527579 +http://viaf.org/viaf/10096007 BNF@http://catalogue.bnf.fr/ark:/12148/cb14586701z +http://viaf.org/viaf/10096007 Identities@http://www.worldcat.org/identities/lccn-nb2003104004 +http://viaf.org/viaf/10096007 BNF|14586701 +http://viaf.org/viaf/10096007 LC|nb2003104004 +http://viaf.org/viaf/10096007 NSK|000646432 +http://viaf.org/viaf/10096007 ISNI|0000000042696350 +http://viaf.org/viaf/10096007 BIBSYS|3104467 +http://viaf.org/viaf/100970019 Wikipedia@http://en.wikipedia.org/wiki/Frederick_Kaplan +http://viaf.org/viaf/100970019 LC@n89668438 +http://viaf.org/viaf/100970019 PLWABN|9810588041705606 +http://viaf.org/viaf/100970019 LC|n 89668438 +http://viaf.org/viaf/100970019 J9U|987007398126205171 +http://viaf.org/viaf/100970019 SUDOC|032638116 +http://viaf.org/viaf/100970019 NTA|100635911 +http://viaf.org/viaf/100970019 SELIBR|192588 +http://viaf.org/viaf/100970019 ISNI|0000000071548218 +http://viaf.org/viaf/100970019 BNF|12363022 +http://viaf.org/viaf/100970019 WKP|Q61944713 +http://viaf.org/viaf/100970019 NUKAT|n 2013051848 +http://viaf.org/viaf/100970019 Identities@http://www.worldcat.org/identities/lccn-n89668438 +http://viaf.org/viaf/100970019 NUKAT@vtls009891999 +http://viaf.org/viaf/100970019 BNF@http://catalogue.bnf.fr/ark:/12148/cb123630227 +http://viaf.org/viaf/100970019 SELIBR@20dghpkl0sswp5t +http://viaf.org/viaf/10097349 NUKAT|n 2004098822 +http://viaf.org/viaf/10097349 WKP|Q77041344 +http://viaf.org/viaf/10097349 Identities@http://www.worldcat.org/identities/lccn-no2017128270 +http://viaf.org/viaf/10097349 ISNI|000000011593746X +http://viaf.org/viaf/10097349 LIH@LNB:V*43790;=BJ +http://viaf.org/viaf/10097349 BNF@http://catalogue.bnf.fr/ark:/12148/cb14594111b +http://viaf.org/viaf/10097349 SELIBR|247696 +http://viaf.org/viaf/10097349 LC|no2017128270 +http://viaf.org/viaf/10097349 DNB|188694811 +http://viaf.org/viaf/10097349 BIBSYS|90951461 +http://viaf.org/viaf/10097349 BNF|14594111 +http://viaf.org/viaf/10097349 SELIBR@0xbdhpqj3g34w57 +http://viaf.org/viaf/10097349 DNB@http://d-nb.info/gnd/188694811 +http://viaf.org/viaf/10097349 LIH|LNB:V-43790;=BJ +http://viaf.org/viaf/10097349 NUKAT@vtls002070421 +http://viaf.org/viaf/100983934 Identities@http://www.worldcat.org/identities/viaf-100983934 +http://viaf.org/viaf/100983934 DNB|134851617 +http://viaf.org/viaf/100983934 DNB@http://d-nb.info/gnd/134851617 +http://viaf.org/viaf/100983934 ISNI|0000000072493415 +http://viaf.org/viaf/100987174 BNF|13993094 +http://viaf.org/viaf/100987174 NTA|070824932 +http://viaf.org/viaf/100987174 Wikipedia@http://fr.wikipedia.org/wiki/Howard_W._Koch +http://viaf.org/viaf/100987174 Wikipedia@http://it.wikipedia.org/wiki/Howard_W._Koch +http://viaf.org/viaf/100987174 Wikipedia@http://pl.wikipedia.org/wiki/Howard_W._Koch +http://viaf.org/viaf/100987174 Wikipedia@http://sw.wikipedia.org/wiki/Howard_W._Koch +http://viaf.org/viaf/100987174 Wikipedia@http://fa.wikipedia.org/wiki/هاوارد_دبلیو_کوخ +http://viaf.org/viaf/100987174 Wikipedia@http://en.wikipedia.org/wiki/Howard_W._Koch +http://viaf.org/viaf/100987174 Identities@http://www.worldcat.org/identities/lccn-no95058064 +http://viaf.org/viaf/100987174 LC@no95058064 +http://viaf.org/viaf/100987174 BNC|a11409125 +http://viaf.org/viaf/100987174 WKP|Q982710 +http://viaf.org/viaf/100987174 DNB|108951431X +http://viaf.org/viaf/100987174 DNB@http://d-nb.info/gnd/108951431X +http://viaf.org/viaf/100987174 BNC@.a11409125 +http://viaf.org/viaf/100987174 Wikipedia@http://de.wikipedia.org/wiki/Howard_W._Koch +http://viaf.org/viaf/100987174 PLWABN|9810560876105606 +http://viaf.org/viaf/100987174 Wikipedia@http://arz.wikipedia.org/wiki/هوارد_دبليو._كوش +http://viaf.org/viaf/100987174 Wikipedia@http://ar.wikipedia.org/wiki/هوارد_دبليو._كوش +http://viaf.org/viaf/100987174 BNF@http://catalogue.bnf.fr/ark:/12148/cb13993094w +http://viaf.org/viaf/100987174 ISNI|0000000072524461 +http://viaf.org/viaf/100987174 LC|no 95058064 +http://viaf.org/viaf/101001941 Identities@http://www.worldcat.org/identities/viaf-101001941 +http://viaf.org/viaf/101001941 ISNI|0000000072264508 +http://viaf.org/viaf/101001941 BNF@http://catalogue.bnf.fr/ark:/12148/cb16112505z +http://viaf.org/viaf/101001941 BNF|16112505 +http://viaf.org/viaf/101001941 NII|DA10794487 +http://viaf.org/viaf/101006072 BNF|16141379 +http://viaf.org/viaf/101006072 NII|DA17224614 +http://viaf.org/viaf/101006072 BNF@http://catalogue.bnf.fr/ark:/12148/cb16141379b +http://viaf.org/viaf/101006072 RERO|A016816789 +http://viaf.org/viaf/101006072 LC|no2009113382 +http://viaf.org/viaf/101006072 CAOONL|ncf11570734 +http://viaf.org/viaf/101006072 Identities@http://www.worldcat.org/identities/lccn-no2009113382 +http://viaf.org/viaf/101006072 SUDOC|147233429 +http://viaf.org/viaf/101006072 ISNI|0000000119534975 +http://viaf.org/viaf/10100759 BNF@http://catalogue.bnf.fr/ark:/12148/cb14610387p +http://viaf.org/viaf/10100759 LC|n 98012425 +http://viaf.org/viaf/10100759 BIBSYS|1065367 +http://viaf.org/viaf/10100759 BNF|14610387 +http://viaf.org/viaf/10100759 ISNI|0000000080895297 +http://viaf.org/viaf/10100759 CAOONL|ncf11331604 +http://viaf.org/viaf/10100759 NII|DA11727281 +http://viaf.org/viaf/10100759 SUDOC|058598928 +http://viaf.org/viaf/10100759 Identities@http://www.worldcat.org/identities/lccn-n98012425 +http://viaf.org/viaf/10100759 LC@n98012425 +http://viaf.org/viaf/10100759 NTA|227395670 +http://viaf.org/viaf/10100759 J9U|987007433449405171 +http://viaf.org/viaf/101011247 Identities@http://www.worldcat.org/identities/viaf-101011247 +http://viaf.org/viaf/101011247 BNE|XX4836336 +http://viaf.org/viaf/101013029 BNF@http://catalogue.bnf.fr/ark:/12148/cb161444540 +http://viaf.org/viaf/101013029 Identities@http://www.worldcat.org/identities/viaf-101013029 +http://viaf.org/viaf/101013029 ISNI|0000000072003308 +http://viaf.org/viaf/101013029 BNF|16144454 +http://viaf.org/viaf/101013029 NDL|01065385 +http://viaf.org/viaf/101013029 NTA|314927913 +http://viaf.org/viaf/101013029 NII|DA18839625 +http://viaf.org/viaf/1010145857061122921005 NUKAT@vtls000690993 +http://viaf.org/viaf/1010145857061122921005 NUKAT|n 98069693 +http://viaf.org/viaf/101019041 BNF@http://catalogue.bnf.fr/ark:/12148/cb161464414 +http://viaf.org/viaf/101019041 BNF|16146441 +http://viaf.org/viaf/101019041 Identities@http://www.worldcat.org/identities/viaf-101019041 +http://viaf.org/viaf/101019492 BNF@http://catalogue.bnf.fr/ark:/12148/cb16146715d +http://viaf.org/viaf/101019492 BNF|16146715 +http://viaf.org/viaf/101019492 ISNI|0000000071825377 +http://viaf.org/viaf/101019492 Identities@http://www.worldcat.org/identities/viaf-101019492 +http://viaf.org/viaf/101020201 Identities@http://www.worldcat.org/identities/viaf-101020201 +http://viaf.org/viaf/101020201 BNF|16146999 +http://viaf.org/viaf/101020201 SUDOC|200141163 +http://viaf.org/viaf/101020201 BNF@http://catalogue.bnf.fr/ark:/12148/cb16146999t +http://viaf.org/viaf/101020201 ISNI|0000000071550780 +http://viaf.org/viaf/101021048 BNF@http://catalogue.bnf.fr/ark:/12148/cb161472456 +http://viaf.org/viaf/101021048 CAOONL|ncf10904783 +http://viaf.org/viaf/101021048 LC|n 00093273 +http://viaf.org/viaf/101021048 DNB@http://d-nb.info/gnd/1146703015 +http://viaf.org/viaf/101021048 NKC|xx0073535 +http://viaf.org/viaf/101021048 Identities@http://www.worldcat.org/identities/lccn-n00093273 +http://viaf.org/viaf/101021048 LC@n00093273 +http://viaf.org/viaf/101021048 DNB|1146703015 +http://viaf.org/viaf/101021048 B2Q|ncf10904783 +http://viaf.org/viaf/101021048 BNF|16147245 +http://viaf.org/viaf/101021048 ISNI|0000000114535709 +http://viaf.org/viaf/101024711 ISNI|000000007191410X +http://viaf.org/viaf/101024711 BNF@http://catalogue.bnf.fr/ark:/12148/cb161493887 +http://viaf.org/viaf/101024711 Identities@http://www.worldcat.org/identities/viaf-101024711 +http://viaf.org/viaf/101024711 Wikipedia@http://de.wikipedia.org/wiki/Giampaolo_Lomi +http://viaf.org/viaf/101024711 WKP|Q1522244 +http://viaf.org/viaf/101024711 BNF|16149388 +http://viaf.org/viaf/101024711 Wikipedia@http://it.wikipedia.org/wiki/Giampaolo_Lomi +http://viaf.org/viaf/101025558 LC|n 97847823 +http://viaf.org/viaf/101025558 BNF|16149790 +http://viaf.org/viaf/101025558 SUDOC|149944586 +http://viaf.org/viaf/101025558 ISNI|0000000071825780 +http://viaf.org/viaf/101025558 Identities@http://www.worldcat.org/identities/lccn-n97847823 +http://viaf.org/viaf/101025558 LC@n97847823 +http://viaf.org/viaf/101025558 BNF@http://catalogue.bnf.fr/ark:/12148/cb16149790w +http://viaf.org/viaf/101025602 SUDOC|161367070 +http://viaf.org/viaf/101025602 BNF@http://catalogue.bnf.fr/ark:/12148/cb161497979 +http://viaf.org/viaf/101025602 ISNI|0000000071739161 +http://viaf.org/viaf/101025602 BNF|16149797 +http://viaf.org/viaf/101025602 Identities@http://www.worldcat.org/identities/viaf-101025602 +http://viaf.org/viaf/101040254 ISNI|0000000116924484 +http://viaf.org/viaf/101040254 SUDOC|107090538 +http://viaf.org/viaf/101040254 NUKAT@vtls005187826 +http://viaf.org/viaf/101040254 NUKAT|n 2008106935 +http://viaf.org/viaf/101040254 J9U|987007279105605171 +http://viaf.org/viaf/101040254 Identities@http://www.worldcat.org/identities/lccn-n80145405 +http://viaf.org/viaf/101040254 PLWABN|9810625936505606 +http://viaf.org/viaf/101040254 DNB@http://d-nb.info/gnd/1035018888 +http://viaf.org/viaf/101040254 NTA|068531621 +http://viaf.org/viaf/101040254 LC@n80145405 +http://viaf.org/viaf/101040254 LC|n 80145405 +http://viaf.org/viaf/101040254 DNB|1035018888 +http://viaf.org/viaf/10104043 BNF@http://catalogue.bnf.fr/ark:/12148/cb14628171w +http://viaf.org/viaf/10104043 LIH@LNB:B3Op;=Ba +http://viaf.org/viaf/10104043 SIMACOB|140283747 +http://viaf.org/viaf/10104043 NUKAT@vtls017869559 +http://viaf.org/viaf/10104043 LIH|LNB:B3O_p_;=B_a_ +http://viaf.org/viaf/10104043 LC|no 00097792 +http://viaf.org/viaf/10104043 CAOONL|ncf11388960 +http://viaf.org/viaf/10104043 NII|DA17144854 +http://viaf.org/viaf/10104043 SUDOC|080608825 +http://viaf.org/viaf/10104043 DNB|1026199441 +http://viaf.org/viaf/10104043 ISNI|0000000055201353 +http://viaf.org/viaf/10104043 NUKAT|n 2018287161 +http://viaf.org/viaf/10104043 WKP|Q4956650 +http://viaf.org/viaf/10104043 J9U|987007263518005171 +http://viaf.org/viaf/10104043 RERO|A009687650 +http://viaf.org/viaf/10104043 BNF|14628171 +http://viaf.org/viaf/10104043 DNB@http://d-nb.info/gnd/1026199441 +http://viaf.org/viaf/10104043 Wikipedia@http://en.wikipedia.org/wiki/Branden_W._Joseph +http://viaf.org/viaf/10104043 LC@no00097792 +http://viaf.org/viaf/10104043 NKC|jo2008464887 +http://viaf.org/viaf/10104043 NTA|242972780 +http://viaf.org/viaf/10104043 Identities@http://www.worldcat.org/identities/lccn-no00097792 +http://viaf.org/viaf/10104043 BIBSYS|4031249 +http://viaf.org/viaf/101042531 Identities@http://www.worldcat.org/identities/viaf-101042531 +http://viaf.org/viaf/101042531 NUKAT@vtls006682269 +http://viaf.org/viaf/101042531 DNB@http://d-nb.info/gnd/136017282 +http://viaf.org/viaf/101042531 DNB|136017282 +http://viaf.org/viaf/101042531 ISNI|0000000117774529 +http://viaf.org/viaf/101042531 NUKAT|n 2010087368 +http://viaf.org/viaf/101055005 DNB|137769032 +http://viaf.org/viaf/101055005 Identities@http://www.worldcat.org/identities/viaf-101055005 +http://viaf.org/viaf/101055005 DNB@http://d-nb.info/gnd/137769032 +http://viaf.org/viaf/101057733 Identities@http://www.worldcat.org/identities/viaf-101057733 +http://viaf.org/viaf/101057733 DNB@http://d-nb.info/gnd/134550412 +http://viaf.org/viaf/101057733 DNB|134550412 +http://viaf.org/viaf/101069316 LC|no 96003003 +http://viaf.org/viaf/101069316 NUKAT|n 2018285431 +http://viaf.org/viaf/101069316 Wikipedia@http://de.wikipedia.org/wiki/Carlferdinand_Zech +http://viaf.org/viaf/101069316 Identities@http://www.worldcat.org/identities/lccn-no96003003 +http://viaf.org/viaf/101069316 DNB@http://d-nb.info/gnd/134619102 +http://viaf.org/viaf/101069316 WKP|Q77036650 +http://viaf.org/viaf/101069316 ISNI|0000000072606408 +http://viaf.org/viaf/101069316 NUKAT@vtls017731279 +http://viaf.org/viaf/101069316 DNB|134619102 +http://viaf.org/viaf/101069316 LC@no96003003 +http://viaf.org/viaf/101069316 SIMACOB|146877283 +http://viaf.org/viaf/101069316 GRATEVE|72522 +http://viaf.org/viaf/101079568 Identities@http://www.worldcat.org/identities/lccn-n94093686 +http://viaf.org/viaf/101079568 NTA|094301298 +http://viaf.org/viaf/101079568 LC|n 94093686 +http://viaf.org/viaf/101079568 DNB|120498464 +http://viaf.org/viaf/101079568 BIBSYS|90596676 +http://viaf.org/viaf/101079568 SELIBR|265950 +http://viaf.org/viaf/101079568 SUDOC|056820151 +http://viaf.org/viaf/101079568 ISNI|0000000115792088 +http://viaf.org/viaf/101079568 NUKAT|n 97012239 +http://viaf.org/viaf/101079568 NUKAT@vtls000248307 +http://viaf.org/viaf/101079568 SELIBR@gdsvzth005vvcq6 +http://viaf.org/viaf/101079568 DNB@http://d-nb.info/gnd/120498464 +http://viaf.org/viaf/101079568 WKP|Q59610497 +http://viaf.org/viaf/101079568 PLWABN|9810687711105606 +http://viaf.org/viaf/101079568 J9U|987007388981005171 +http://viaf.org/viaf/101079568 LC@n94093686 +http://viaf.org/viaf/101079568 NII|DA12150805 +http://viaf.org/viaf/101079568 RERO|A003265730 +http://viaf.org/viaf/101079612 ISNI|0000000110010745 +http://viaf.org/viaf/101079612 LC@n79146178 +http://viaf.org/viaf/101079612 DNB@http://d-nb.info/gnd/134563166 +http://viaf.org/viaf/101079612 Identities@http://www.worldcat.org/identities/lccn-n79146178 +http://viaf.org/viaf/101079612 Wikipedia@http://de.wikipedia.org/wiki/Peter_Zacher +http://viaf.org/viaf/101079612 PLWABN|9810594274605606 +http://viaf.org/viaf/101079612 WKP|Q1385568 +http://viaf.org/viaf/101079612 NKC|mzk2010602715 +http://viaf.org/viaf/101079612 LC|n 79146178 +http://viaf.org/viaf/101079612 DNB|134563166 +http://viaf.org/viaf/101091591 LC|n 2005007981 +http://viaf.org/viaf/101091591 ISNI|0000000114535864 +http://viaf.org/viaf/101091591 NTA|277169240 +http://viaf.org/viaf/101091591 SUDOC|121469395 +http://viaf.org/viaf/101091591 LNB|LNC10-000238571 +http://viaf.org/viaf/101091591 CAOONL|ncf10532953 +http://viaf.org/viaf/101091591 DNB|12981752X +http://viaf.org/viaf/101091591 RERO|A011736857 +http://viaf.org/viaf/101091591 Identities@http://www.worldcat.org/identities/lccn-n2005007981 +http://viaf.org/viaf/101091591 BNF@http://catalogue.bnf.fr/ark:/12148/cb155498060 +http://viaf.org/viaf/101091591 DNB@http://d-nb.info/gnd/12981752X +http://viaf.org/viaf/101091591 BNF|15549806 +http://viaf.org/viaf/101091591 LC@n2005007981 +http://viaf.org/viaf/101091591 NKC|xx0048186 +http://viaf.org/viaf/101092482 ISNI|0000000072661538 +http://viaf.org/viaf/101092482 DNB|130556939 +http://viaf.org/viaf/101092482 LC|n 2003095497 +http://viaf.org/viaf/101092482 Identities@http://www.worldcat.org/identities/lccn-n2003095497 +http://viaf.org/viaf/101092482 LC@n2003095497 +http://viaf.org/viaf/101092482 DNB@http://d-nb.info/gnd/130556939 +http://viaf.org/viaf/101100842 DNB|139350101 +http://viaf.org/viaf/101100842 Identities@http://www.worldcat.org/identities/viaf-101100842 +http://viaf.org/viaf/101100842 DNB@http://d-nb.info/gnd/139350101 +http://viaf.org/viaf/101100842 NUKAT@vtls010581671 +http://viaf.org/viaf/101100842 NUKAT|n 2014053023 +http://viaf.org/viaf/101105748 DNB|139355820 +http://viaf.org/viaf/101105748 DNB@http://d-nb.info/gnd/139355820 +http://viaf.org/viaf/101105748 WKP|Q55847175 +http://viaf.org/viaf/101105748 ISNI|000000007165431X +http://viaf.org/viaf/101110643 Identities@http://www.worldcat.org/identities/viaf-101110643 +http://viaf.org/viaf/101110643 DNB@http://d-nb.info/gnd/139361405 +http://viaf.org/viaf/101110643 DNB|139361405 +http://viaf.org/viaf/101110643 ISNI|0000000071917060 +http://viaf.org/viaf/1011154380939030290659 LIH|LNB:N6_k_;=BV +http://viaf.org/viaf/1011154380939030290659 LIH@LNB:N6k;=BV +http://viaf.org/viaf/1011159474342727662643 CAOONL|ncf11319658 +http://viaf.org/viaf/101123568 DNB@http://d-nb.info/gnd/139376119 +http://viaf.org/viaf/101123568 Identities@http://www.worldcat.org/identities/viaf-101123568 +http://viaf.org/viaf/101123568 DNB|139376119 +http://viaf.org/viaf/101128969 DNB@http://d-nb.info/gnd/13938233X +http://viaf.org/viaf/101128969 DNB|13938233X +http://viaf.org/viaf/101128969 ISNI|0000000072092662 +http://viaf.org/viaf/101129580 DNB@http://d-nb.info/gnd/139383050 +http://viaf.org/viaf/101129580 Identities@http://www.worldcat.org/identities/lccn-no2010155772 +http://viaf.org/viaf/101129580 DNB|139383050 +http://viaf.org/viaf/101129580 ISNI|0000000082854659 +http://viaf.org/viaf/101129580 LC|no2010155772 +http://viaf.org/viaf/101144898564250290020 DNB|1079304231 +http://viaf.org/viaf/101144898564250290020 DNB@http://d-nb.info/gnd/1079304231 +http://viaf.org/viaf/101144898564250290020 Identities@http://www.worldcat.org/identities/viaf-101144898564250290020 +http://viaf.org/viaf/101145003303961301747 Identities@http://www.worldcat.org/identities/lccn-nb2015023221 +http://viaf.org/viaf/101145003303961301747 LC|nb2015023221 +http://viaf.org/viaf/101145375897283680074 ISNI|0000000464720285 +http://viaf.org/viaf/101145375897283680074 KRNLK|KAC201310114 +http://viaf.org/viaf/101145375897283680074 Identities@http://www.worldcat.org/identities/viaf-101145375897283680074 +http://viaf.org/viaf/101145542602896641846 BNF@http://catalogue.bnf.fr/ark:/12148/cb17021723c +http://viaf.org/viaf/101145542602896641846 BNF|17021723 +http://viaf.org/viaf/101145663044505071356 DNB@http://d-nb.info/gnd/1084358085 +http://viaf.org/viaf/101145663044505071356 DNB|1084358085 +http://viaf.org/viaf/101145857061522921649 BNCHL@BNC10000000000000000100347 +http://viaf.org/viaf/101145857061522921649 BNCHL|10000000000000000100347 +http://viaf.org/viaf/101145857061522921649 Identities@http://www.worldcat.org/identities/viaf-101145857061522921649 +http://viaf.org/viaf/101145970351332252793 BIBSYS|14046537 +http://viaf.org/viaf/101145970351332252793 W2Z|14046537 +http://viaf.org/viaf/101146216689909092054 DNB|1098168984 +http://viaf.org/viaf/101146216689909092054 DNB@http://d-nb.info/gnd/1098168984 +http://viaf.org/viaf/101146461596427732091 Identities@http://www.worldcat.org/identities/viaf-101146461596427732091 +http://viaf.org/viaf/101146461596427732091 ISNI|0000000466758156 +http://viaf.org/viaf/101146461596427732091 KRNLK|KAC201600471 +http://viaf.org/viaf/101146462687227771964 DNB@http://d-nb.info/gnd/1101364238 +http://viaf.org/viaf/101146462687227771964 DNB|1101364238 +http://viaf.org/viaf/101146997256418891416 NII|DA06867565 +http://viaf.org/viaf/101147266978835482588 NTA|152136479 +http://viaf.org/viaf/101147266978835482588 SUDOC|137405723 +http://viaf.org/viaf/101147266978835482588 LC|no2016008077 +http://viaf.org/viaf/101147266978835482588 Identities@http://www.worldcat.org/identities/lccn-no2016008077 +http://viaf.org/viaf/101147662851460550591 LC|no2016127360 +http://viaf.org/viaf/101147662851460550591 Identities@http://www.worldcat.org/identities/lccn-no2016127360 +http://viaf.org/viaf/101148269756705230000 XR|VIAFEXP961193396 +http://viaf.org/viaf/101148449943715692717 WKP|Q3218986 +http://viaf.org/viaf/101148449943715692717 Wikipedia@http://fr.wikipedia.org/wiki/Laurent_(coloriste) +http://viaf.org/viaf/101148449943715692717 Identities@http://www.worldcat.org/identities/viaf-101148449943715692717 +http://viaf.org/viaf/101148449943715692717 NUKAT@vtls015178123 +http://viaf.org/viaf/101148449943715692717 DNB@http://d-nb.info/gnd/1146337116 +http://viaf.org/viaf/101148449943715692717 DNB|1146337116 +http://viaf.org/viaf/101148449943715692717 NUKAT|n 2017165054 +http://viaf.org/viaf/101150323660209971643 BLBNB|000197334 +http://viaf.org/viaf/101150323822509972528 BLBNB|000207538 +http://viaf.org/viaf/101150323822509972528 Identities@http://www.worldcat.org/identities/viaf-101150323822509972528 +http://viaf.org/viaf/101150468351704172605 KRNLK|KAB201719397 +http://viaf.org/viaf/101150468351704172605 Identities@http://www.worldcat.org/identities/viaf-101150468351704172605 +http://viaf.org/viaf/101150468351704172605 ISNI|0000000460671826 +http://viaf.org/viaf/101151351956752601297 ISNI|0000000464526896 +http://viaf.org/viaf/101151351956752601297 KRNLK|KAC201758530 +http://viaf.org/viaf/101151351956752601297 Identities@http://www.worldcat.org/identities/viaf-101151351956752601297 +http://viaf.org/viaf/101151963646200311016 J9U|987007373456905171 +http://viaf.org/viaf/101151963646200311016 Identities@http://www.worldcat.org/identities/viaf-101151963646200311016 +http://viaf.org/viaf/101152138612210980213 UIY|000004621 +http://viaf.org/viaf/101152138640910982901 LC|no2018032524 +http://viaf.org/viaf/101152138640910982901 Identities@http://www.worldcat.org/identities/lccn-no2018032524 +http://viaf.org/viaf/101152682535523311315 Identities@http://www.worldcat.org/identities/viaf-101152682535523311315 +http://viaf.org/viaf/101152682535523311315 PLWABN|9810571972105606 +http://viaf.org/viaf/101152742890527730249 DE663|pe30053320 +http://viaf.org/viaf/101152742998527731672 Identities@http://www.worldcat.org/identities/viaf-101152742998527731672 +http://viaf.org/viaf/101152742998527731672 J9U|987007395779505171 +http://viaf.org/viaf/101153124270024490533 SUDOC|228263050 +http://viaf.org/viaf/101153124270024490533 Identities@http://www.worldcat.org/identities/viaf-101153124270024490533 +http://viaf.org/viaf/101153409663941580133 ISNI|0000000467889465 +http://viaf.org/viaf/101153409663941580133 KRNLK|KAC201213622 +http://viaf.org/viaf/101153409669141580362 ISNI|0000000467745584 +http://viaf.org/viaf/101153409669141580362 KRNLK|KAC201849697 +http://viaf.org/viaf/101154013725609190017 ISNI|0000000468296370 +http://viaf.org/viaf/101154013725609190017 KRNLK|KAC2018A3935 +http://viaf.org/viaf/101154440110035340101 Identities@http://www.worldcat.org/identities/viaf-101154440110035340101 +http://viaf.org/viaf/101154440110035340101 SIMACOB|33425507 +http://viaf.org/viaf/101154590087743080747 ISNI|0000000472430763 +http://viaf.org/viaf/101154590087743080747 KRNLK|KAC2018A2303 +http://viaf.org/viaf/101154590166643081790 KRNLK|KAC2018D9227 +http://viaf.org/viaf/101154590166643081790 Identities@http://www.worldcat.org/identities/viaf-101154590166643081790 +http://viaf.org/viaf/101154590166643081790 ISNI|0000000473471903 +http://viaf.org/viaf/101156009848749580391 PLWABN|9810618253605606 +http://viaf.org/viaf/101156009848749580391 Identities@http://www.worldcat.org/identities/viaf-101156009848749580391 +http://viaf.org/viaf/101156009961549581875 PLWABN|9810605425305606 +http://viaf.org/viaf/101156009961549581875 Identities@http://www.worldcat.org/identities/viaf-101156009961549581875 +http://viaf.org/viaf/101156009969949581956 PLWABN|9810689136405606 +http://viaf.org/viaf/101156565741423500007 ISNI|0000000466654867 +http://viaf.org/viaf/101156565741423500007 KRNLK|KAC201927671 +http://viaf.org/viaf/101156674912033580061 NUKAT|n 2019009771 +http://viaf.org/viaf/101156674912033580061 NUKAT@vtls018465797 +http://viaf.org/viaf/101156674912033580061 Identities@http://www.worldcat.org/identities/viaf-101156674912033580061 +http://viaf.org/viaf/101158185724120061143 Identities@http://www.worldcat.org/identities/viaf-101158185724120061143 +http://viaf.org/viaf/101158185724120061143 KRNLK|KAC2019F2687 +http://viaf.org/viaf/101158185724120061143 ISNI|0000000479208778 +http://viaf.org/viaf/101158185726120061486 ISNI|0000000480024749 +http://viaf.org/viaf/101158185726120061486 Identities@http://www.worldcat.org/identities/viaf-101158185726120061486 +http://viaf.org/viaf/101158669865927201507 Identities@http://www.worldcat.org/identities/lccn-no2020048911 +http://viaf.org/viaf/101158669865927201507 LC|no2020048911 +http://viaf.org/viaf/101159233916303370161 Identities@http://www.worldcat.org/identities/viaf-101159233916303370161 +http://viaf.org/viaf/101159233916303370161 RERO|A002942098 +http://viaf.org/viaf/101159474046627660165 BAV|493_4056 +http://viaf.org/viaf/101159474046627660165 BAV@493/4056 +http://viaf.org/viaf/101159478272427990009 CAOONL|ncf10969701 +http://viaf.org/viaf/101160918 LC|no2009172389 +http://viaf.org/viaf/101160918 DNB|139418598 +http://viaf.org/viaf/101160918 Identities@http://www.worldcat.org/identities/lccn-no2009172389 +http://viaf.org/viaf/101160918 DNB@http://d-nb.info/gnd/139418598 +http://viaf.org/viaf/101164158 SZ@http://d-nb.info/gnd/139422102 +http://viaf.org/viaf/101164158 BNF@http://catalogue.bnf.fr/ark:/12148/cb16228354f +http://viaf.org/viaf/101164158 LC|no2010130397 +http://viaf.org/viaf/101164158 Identities@http://www.worldcat.org/identities/lccn-no2010130397 +http://viaf.org/viaf/101164158 ISNI|000000008170478X +http://viaf.org/viaf/101164158 DNB|139422102 +http://viaf.org/viaf/101164158 BNF|16228354 +http://viaf.org/viaf/101164158 NII|DA18451520 +http://viaf.org/viaf/101164158 SUDOC|162460163 +http://viaf.org/viaf/101164158 J9U|987007449479605171 +http://viaf.org/viaf/101164158 SZ|139422102 +http://viaf.org/viaf/101164158 DNB@http://d-nb.info/gnd/139422102 +http://viaf.org/viaf/101173112 DNB|13943237X +http://viaf.org/viaf/101173112 NSK|000444749 +http://viaf.org/viaf/101173112 LC|nb2005002289 +http://viaf.org/viaf/101173112 Identities@http://www.worldcat.org/identities/lccn-nb2005002289 +http://viaf.org/viaf/101173112 PLWABN|9811344601405606 +http://viaf.org/viaf/101173112 LIH@LNB:sdu;=CW +http://viaf.org/viaf/101173112 BNF@http://catalogue.bnf.fr/ark:/12148/cb15099216t +http://viaf.org/viaf/101173112 BIBSYS|5088266 +http://viaf.org/viaf/101173112 DNB@http://d-nb.info/gnd/13943237X +http://viaf.org/viaf/101173112 SELIBR@wt79946f1v6n17q +http://viaf.org/viaf/101173112 LIH|LNB:_s__d__u_;=CW +http://viaf.org/viaf/101173112 ISNI|0000000078486240 +http://viaf.org/viaf/101173112 NTA|27387246X +http://viaf.org/viaf/101173112 BNF|15099216 +http://viaf.org/viaf/101173112 SELIBR|181603 +http://viaf.org/viaf/101173112 LNB|LNC10-000129189 +http://viaf.org/viaf/101189700 NTA|251995836 +http://viaf.org/viaf/101189700 Identities@http://www.worldcat.org/identities/viaf-101189700 +http://viaf.org/viaf/101189700 ISNI|0000000390307163 +http://viaf.org/viaf/101200139 LC|no2010023172 +http://viaf.org/viaf/101200139 SUDOC|185264352 +http://viaf.org/viaf/101200139 Identities@http://www.worldcat.org/identities/lccn-no2010023172 +http://viaf.org/viaf/101200139 WKP|Q29918731 +http://viaf.org/viaf/101200139 CAOONL|ncf11521002 +http://viaf.org/viaf/101200139 J9U|987007314710405171 +http://viaf.org/viaf/101200139 Wikipedia@http://en.wikipedia.org/wiki/Stephen_W._Keckler +http://viaf.org/viaf/10120900 Wikipedia@http://fr.wikipedia.org/wiki/Jean-Émile_Buland +http://viaf.org/viaf/10120900 BNF|14970768 +http://viaf.org/viaf/10120900 ISNI|0000000001532843 +http://viaf.org/viaf/10120900 PLWABN|9810582588405606 +http://viaf.org/viaf/10120900 Identities@http://www.worldcat.org/identities/viaf-10120900 +http://viaf.org/viaf/10120900 BNF@http://catalogue.bnf.fr/ark:/12148/cb149707688 +http://viaf.org/viaf/10120900 SUDOC|069064830 +http://viaf.org/viaf/10120900 WKP|Q20035884 +http://viaf.org/viaf/101211326 ISNI|0000000071657801 +http://viaf.org/viaf/101211326 Identities@http://www.worldcat.org/identities/viaf-101211326 +http://viaf.org/viaf/101211326 DNB|139476091 +http://viaf.org/viaf/101211326 DNB@http://d-nb.info/gnd/139476091 +http://viaf.org/viaf/1012149198283274940002 DNB|1129394662 +http://viaf.org/viaf/1012149198283274940002 DNB@http://d-nb.info/gnd/1129394662 +http://viaf.org/viaf/101214945 DNB@http://d-nb.info/gnd/139480056 +http://viaf.org/viaf/101214945 J9U|987007262769905171 +http://viaf.org/viaf/101214945 ISNI|000000007236260X +http://viaf.org/viaf/101214945 DNB|139480056 +http://viaf.org/viaf/101214945 Identities@http://www.worldcat.org/identities/viaf-101214945 +http://viaf.org/viaf/1012150323740809970720 DNB@http://d-nb.info/gnd/1187368121 +http://viaf.org/viaf/1012150323740809970720 LNB|LNC10-000250278 +http://viaf.org/viaf/1012150323740809970720 ERRR|a11918214 +http://viaf.org/viaf/1012150323740809970720 DNB|1187368121 +http://viaf.org/viaf/1012150323740809970720 Identities@http://www.worldcat.org/identities/viaf-1012150323740809970720 +http://viaf.org/viaf/1012151246632344132972 NUKAT@vtls017032006 +http://viaf.org/viaf/1012151246632344132972 DNB@http://d-nb.info/gnd/1146809913 +http://viaf.org/viaf/1012151246632344132972 DNB|1146809913 +http://viaf.org/viaf/1012151246632344132972 NUKAT|n 2018167100 +http://viaf.org/viaf/1012151246632344132972 Identities@http://www.worldcat.org/identities/viaf-1012151246632344132972 +http://viaf.org/viaf/1012159234798103372836 RERO|A020351109 +http://viaf.org/viaf/1012159234798103372836 Identities@http://www.worldcat.org/identities/viaf-1012159234798103372836 +http://viaf.org/viaf/101227914 Identities@http://www.worldcat.org/identities/viaf-101227914 +http://viaf.org/viaf/101227914 DNB|139494626 +http://viaf.org/viaf/101227914 DNB@http://d-nb.info/gnd/139494626 +http://viaf.org/viaf/101232314 DNB@http://d-nb.info/gnd/139499571 +http://viaf.org/viaf/101232314 Identities@http://www.worldcat.org/identities/viaf-101232314 +http://viaf.org/viaf/101232314 ISNI|0000000071921780 +http://viaf.org/viaf/101232314 DNB|139499571 +http://viaf.org/viaf/101235438 Identities@http://www.worldcat.org/identities/viaf-101235438 +http://viaf.org/viaf/101235438 DNB@http://d-nb.info/gnd/139503072 +http://viaf.org/viaf/101235438 WKP|Q55843009 +http://viaf.org/viaf/101235438 DNB|139503072 +http://viaf.org/viaf/101235438 ISNI|0000000072011156 +http://viaf.org/viaf/101240289 LC|n 2009014048 +http://viaf.org/viaf/101240289 ISNI|0000000385246407 +http://viaf.org/viaf/101240289 Identities@http://www.worldcat.org/identities/lccn-n2009014048 +http://viaf.org/viaf/101240289 LC@n2009014048 +http://viaf.org/viaf/101244348 ISNI|0000000071659444 +http://viaf.org/viaf/101244348 DNB|139512950 +http://viaf.org/viaf/101244348 Identities@http://www.worldcat.org/identities/viaf-101244348 +http://viaf.org/viaf/101244348 Wikipedia@http://de.wikipedia.org/wiki/Franz_Friedrich_Ruhstrat +http://viaf.org/viaf/101244348 WKP|Q25802599 +http://viaf.org/viaf/101244348 DNB@http://d-nb.info/gnd/139512950 +http://viaf.org/viaf/101264445 Identities@http://www.worldcat.org/identities/viaf-101264445 +http://viaf.org/viaf/101264445 DNB|139535489 +http://viaf.org/viaf/101264445 DNB@http://d-nb.info/gnd/139535489 +http://viaf.org/viaf/101264445 ISNI|0000000071747276 +http://viaf.org/viaf/101267118 DNB|139538461 +http://viaf.org/viaf/101267118 DNB@http://d-nb.info/gnd/139538461 +http://viaf.org/viaf/101270231 ISNI|0000000071923591 +http://viaf.org/viaf/101270231 LC@n2011082103 +http://viaf.org/viaf/101270231 LC|n 2011082103 +http://viaf.org/viaf/101270231 DNB|139542043 +http://viaf.org/viaf/101270231 Identities@http://www.worldcat.org/identities/lccn-n2011082103 +http://viaf.org/viaf/101270231 DNB@http://d-nb.info/gnd/139542043 +http://viaf.org/viaf/101270231 SUDOC|145661806 +http://viaf.org/viaf/101270231 NSK|000622571 +http://viaf.org/viaf/101272013 DNB@http://d-nb.info/gnd/13954402X +http://viaf.org/viaf/101272013 Identities@http://www.worldcat.org/identities/viaf-101272013 +http://viaf.org/viaf/101272013 ISNI|0000000110011326 +http://viaf.org/viaf/101272013 PLWABN|9810668194605606 +http://viaf.org/viaf/101272013 NUKAT|n 2007004790 +http://viaf.org/viaf/101272013 DNB|13954402X +http://viaf.org/viaf/101272013 NUKAT@vtls004579568 +http://viaf.org/viaf/101276974 Identities@http://www.worldcat.org/identities/viaf-101276974 +http://viaf.org/viaf/101276974 DNB@http://d-nb.info/gnd/139549498 +http://viaf.org/viaf/101276974 ISNI|0000000072365464 +http://viaf.org/viaf/101276974 DNB|139549498 +http://viaf.org/viaf/101277090 Identities@http://www.worldcat.org/identities/viaf-101277090 +http://viaf.org/viaf/101277090 DNB@http://d-nb.info/gnd/139549625 +http://viaf.org/viaf/101277090 RERO|A003971618 +http://viaf.org/viaf/101277090 DNB|139549625 +http://viaf.org/viaf/101282760 DNB|139555803 +http://viaf.org/viaf/101282760 DNB@http://d-nb.info/gnd/139555803 +http://viaf.org/viaf/10129046 BNF|15031302 +http://viaf.org/viaf/10129046 ISNI|000000011742481X +http://viaf.org/viaf/10129046 BIBSYS|6041661 +http://viaf.org/viaf/10129046 NUKAT@vtls003400727 +http://viaf.org/viaf/10129046 BNF@http://catalogue.bnf.fr/ark:/12148/cb150313027 +http://viaf.org/viaf/10129046 Identities@http://www.worldcat.org/identities/lccn-no2004087885 +http://viaf.org/viaf/10129046 LC|no2004087885 +http://viaf.org/viaf/10129046 NUKAT|n 2005038695 +http://viaf.org/viaf/101297467 DNB|139571736 +http://viaf.org/viaf/101297467 ISNI|0000000071661712 +http://viaf.org/viaf/101297467 Identities@http://www.worldcat.org/identities/viaf-101297467 +http://viaf.org/viaf/101297467 DNB@http://d-nb.info/gnd/139571736 +http://viaf.org/viaf/101297962 DNB|139572309 +http://viaf.org/viaf/101297962 Identities@http://www.worldcat.org/identities/viaf-101297962 +http://viaf.org/viaf/101297962 DNB@http://d-nb.info/gnd/139572309 +http://viaf.org/viaf/1013154380978730291607 LIH|LNB:_b__v_R;=B6 +http://viaf.org/viaf/1013154380978730291607 LIH@LNB:bvR;=B6 +http://viaf.org/viaf/1013159234257403371147 RERO|A012494600 +http://viaf.org/viaf/101333943 DNB@http://d-nb.info/gnd/139612483 +http://viaf.org/viaf/101333943 DNB|139612483 +http://viaf.org/viaf/101333943 Identities@http://www.worldcat.org/identities/viaf-101333943 +http://viaf.org/viaf/101333943 ISNI|000000007183760X +http://viaf.org/viaf/101341511 DNB@http://d-nb.info/gnd/139621156 +http://viaf.org/viaf/101341511 WKP|Q94802214 +http://viaf.org/viaf/101341511 Identities@http://www.worldcat.org/identities/viaf-101341511 +http://viaf.org/viaf/101341511 DNB|139621156 +http://viaf.org/viaf/101341962 DNB@http://d-nb.info/gnd/139621652 +http://viaf.org/viaf/101341962 ISNI|000000007227874X +http://viaf.org/viaf/101341962 DNB|139621652 +http://viaf.org/viaf/101341962 Identities@http://www.worldcat.org/identities/viaf-101341962 +http://viaf.org/viaf/101342853 DNB@http://d-nb.info/gnd/139622675 +http://viaf.org/viaf/101342853 Identities@http://www.worldcat.org/identities/viaf-101342853 +http://viaf.org/viaf/101342853 RERO|A018087920 +http://viaf.org/viaf/101342853 DNB|139622675 +http://viaf.org/viaf/101342853 NKC|mub2012712423 +http://viaf.org/viaf/101345977 DNB@http://d-nb.info/gnd/139626417 +http://viaf.org/viaf/101345977 LC@n2008084907 +http://viaf.org/viaf/101345977 JPG|500252097 +http://viaf.org/viaf/101345977 LC|n 2008084907 +http://viaf.org/viaf/101345977 NTA|363773975 +http://viaf.org/viaf/101345977 DNB|139626417 +http://viaf.org/viaf/101345977 SUDOC|137773927 +http://viaf.org/viaf/101345977 BIBSYS|9052477 +http://viaf.org/viaf/101345977 CAOONL|ncf11521463 +http://viaf.org/viaf/101345977 ISNI|0000000084040456 +http://viaf.org/viaf/101345977 Identities@http://www.worldcat.org/identities/lccn-n2008084907 +http://viaf.org/viaf/101346417 BNE|XX4822306 +http://viaf.org/viaf/101346417 DNB@http://d-nb.info/gnd/13962693X +http://viaf.org/viaf/101346417 BNF@http://catalogue.bnf.fr/ark:/12148/cb165257530 +http://viaf.org/viaf/101346417 Identities@http://www.worldcat.org/identities/lccn-no2008001385 +http://viaf.org/viaf/101346417 Wikipedia@http://fr.wikipedia.org/wiki/Arturo_Goetz +http://viaf.org/viaf/101346417 Wikipedia@http://es.wikipedia.org/wiki/Arturo_Goetz +http://viaf.org/viaf/101346417 Wikipedia@http://en.wikipedia.org/wiki/Arturo_Goetz +http://viaf.org/viaf/101346417 Wikipedia@http://de.wikipedia.org/wiki/Arturo_L._Goetz +http://viaf.org/viaf/101346417 Wikipedia@http://ar.wikipedia.org/wiki/أرتور_غوتز +http://viaf.org/viaf/101346417 J9U|987007379336905171 +http://viaf.org/viaf/101346417 WKP|Q4801746 +http://viaf.org/viaf/101346417 SUDOC|07505924X +http://viaf.org/viaf/101346417 LC|no2008001385 +http://viaf.org/viaf/101346417 ISNI|0000000121456849 +http://viaf.org/viaf/101346417 DNB|13962693X +http://viaf.org/viaf/101346417 BNF|16525753 +http://viaf.org/viaf/101349261 DNB|139630147 +http://viaf.org/viaf/101349261 BAV|495_348753 +http://viaf.org/viaf/101349261 J9U|987007424795705171 +http://viaf.org/viaf/101349261 BNF|16659915 +http://viaf.org/viaf/101349261 RERO|A021514179 +http://viaf.org/viaf/101349261 BAV@495/348753 +http://viaf.org/viaf/101349261 BNF@http://catalogue.bnf.fr/ark:/12148/cb16659915r +http://viaf.org/viaf/101349261 DNB@http://d-nb.info/gnd/139630147 +http://viaf.org/viaf/101349261 LC|no2011194125 +http://viaf.org/viaf/101349261 Identities@http://www.worldcat.org/identities/lccn-no2011194125 +http://viaf.org/viaf/101349261 ORCID@http://orcid.org/0000-0001-8145-5434 +http://viaf.org/viaf/101354436 Identities@http://www.worldcat.org/identities/viaf-101354436 +http://viaf.org/viaf/101354436 EGAXA|vtls000834542 +http://viaf.org/viaf/101359837 Identities@http://www.worldcat.org/identities/viaf-101359837 +http://viaf.org/viaf/101359837 EGAXA|vtls001020003 +http://viaf.org/viaf/101365579 Identities@http://www.worldcat.org/identities/viaf-101365579 +http://viaf.org/viaf/101365579 EGAXA|vtls001178131 +http://viaf.org/viaf/101386567 LC|n 2009064142 +http://viaf.org/viaf/101386567 LC@n2009064142 +http://viaf.org/viaf/101386567 Identities@http://www.worldcat.org/identities/lccn-n2009064142 +http://viaf.org/viaf/101386567 ISNI|0000000072018171 +http://viaf.org/viaf/101386567 J9U|987007319570505171 +http://viaf.org/viaf/101386611 LC@n2009064150 +http://viaf.org/viaf/101386611 LC|n 2009064150 +http://viaf.org/viaf/101386611 ISNI|0000000071567881 +http://viaf.org/viaf/101386611 Identities@http://www.worldcat.org/identities/lccn-n2009064150 +http://viaf.org/viaf/101391011 Identities@http://www.worldcat.org/identities/lccn-n2009064857 +http://viaf.org/viaf/101391011 LC|n 2009064857 +http://viaf.org/viaf/101391011 ISNI|0000000071754177 +http://viaf.org/viaf/101391011 LC@n2009064857 +http://viaf.org/viaf/101395026 W2Z|98005685 +http://viaf.org/viaf/101395026 Identities@http://www.worldcat.org/identities/lccn-n2009065455 +http://viaf.org/viaf/101395026 LC@n2009065455 +http://viaf.org/viaf/101395026 DNB@http://d-nb.info/gnd/1173303146 +http://viaf.org/viaf/101395026 SUDOC|240748069 +http://viaf.org/viaf/101395026 ISNI|0000000072104774 +http://viaf.org/viaf/101395026 BIBSYS|98005685 +http://viaf.org/viaf/101395026 LC|n 2009065455 +http://viaf.org/viaf/101395026 DNB|1173303146 +http://viaf.org/viaf/101401280 LC|n 2009066392 +http://viaf.org/viaf/101401280 BLBNB|001425670 +http://viaf.org/viaf/101401280 ISNI|0000000071569211 +http://viaf.org/viaf/101401280 LC@n2009066392 +http://viaf.org/viaf/101401280 Identities@http://www.worldcat.org/identities/lccn-n2009066392 +http://viaf.org/viaf/101412747 J9U|987007422976805171 +http://viaf.org/viaf/101412747 LC@n2009068286 +http://viaf.org/viaf/101412747 LC|n 2009068286 +http://viaf.org/viaf/101412747 Identities@http://www.worldcat.org/identities/lccn-n2009068286 +http://viaf.org/viaf/10141349 Identities@http://www.worldcat.org/identities/lccn-no2006098876 +http://viaf.org/viaf/10141349 BNF@http://catalogue.bnf.fr/ark:/12148/cb15096741p +http://viaf.org/viaf/10141349 NUKAT@vtls005016128 +http://viaf.org/viaf/10141349 CAOONL|ncf11430123 +http://viaf.org/viaf/10141349 SUDOC|077813138 +http://viaf.org/viaf/10141349 NII|DA1936513X +http://viaf.org/viaf/10141349 LC|no2006098876 +http://viaf.org/viaf/10141349 BIBSYS|8039232 +http://viaf.org/viaf/10141349 ISNI|0000000115598250 +http://viaf.org/viaf/10141349 RERO|A012591999 +http://viaf.org/viaf/10141349 NTA|298903881 +http://viaf.org/viaf/10141349 BNF|15096741 +http://viaf.org/viaf/10141349 J9U|987007298459905171 +http://viaf.org/viaf/10141349 NUKAT|n 2008143175 +http://viaf.org/viaf/1014145857884823020404 BNCHL@BNC10000000000000000217586 +http://viaf.org/viaf/1014145857884823020404 BNCHL|10000000000000000217586 +http://viaf.org/viaf/1014151052061233530002 DNB@http://d-nb.info/gnd/1143635876 +http://viaf.org/viaf/1014151052061233530002 Identities@http://www.worldcat.org/identities/viaf-1014151052061233530002 +http://viaf.org/viaf/1014151052061233530002 DNB|1143635876 +http://viaf.org/viaf/1014155191919682440000 WKP|Q57005893 +http://viaf.org/viaf/1014155191919682440000 ORCID@http://orcid.org/0000-0001-5349-2158 +http://viaf.org/viaf/1014155191919682440000 Identities@http://www.worldcat.org/identities/viaf-1014155191919682440000 +http://viaf.org/viaf/1014155191919682440000 DNB@http://d-nb.info/gnd/1147618305 +http://viaf.org/viaf/1014155191919682440000 DNB|1147618305 +http://viaf.org/viaf/1014159234751603372573 RERO|A018617749 +http://viaf.org/viaf/101416806 DNB|1104279754 +http://viaf.org/viaf/101416806 LC@n2009068928 +http://viaf.org/viaf/101416806 DNB@http://d-nb.info/gnd/1104279754 +http://viaf.org/viaf/101416806 LC|n 2009068928 +http://viaf.org/viaf/101416806 Identities@http://www.worldcat.org/identities/lccn-n2009068928 +http://viaf.org/viaf/101416806 J9U|987007319588905171 +http://viaf.org/viaf/101420766 LC|n 2009069569 +http://viaf.org/viaf/101420766 BNF@http://catalogue.bnf.fr/ark:/12148/cb166041844 +http://viaf.org/viaf/101420766 LC@n2009069569 +http://viaf.org/viaf/101420766 SUDOC|152016872 +http://viaf.org/viaf/101420766 ISNI|0000000072373990 +http://viaf.org/viaf/101420766 CAOONL|ncf11565818 +http://viaf.org/viaf/101420766 BNF|16604184 +http://viaf.org/viaf/101420766 Identities@http://www.worldcat.org/identities/lccn-n2009069569 +http://viaf.org/viaf/101423439 LC@n2009162915 +http://viaf.org/viaf/101423439 LC|n 2009162915 +http://viaf.org/viaf/101423439 Identities@http://www.worldcat.org/identities/lccn-n2009162915 +http://viaf.org/viaf/101429000 Identities@http://www.worldcat.org/identities/lccn-n2009184425 +http://viaf.org/viaf/101429000 LC@n2009184425 +http://viaf.org/viaf/101429000 LC|n 2009184425 +http://viaf.org/viaf/101441259 ISNI|0000000072196648 +http://viaf.org/viaf/101441259 Identities@http://www.worldcat.org/identities/lccn-nb2009024765 +http://viaf.org/viaf/101441259 LC|nb2009024765 +http://viaf.org/viaf/101445813 LC|nb2009025649 +http://viaf.org/viaf/101445813 DNB|1020513020 +http://viaf.org/viaf/101445813 DNB@http://d-nb.info/gnd/1020513020 +http://viaf.org/viaf/101445813 Identities@http://www.worldcat.org/identities/lccn-nb2009025649 +http://viaf.org/viaf/101445813 J9U|987007412603805171 +http://viaf.org/viaf/101446209 LC|nb2009025713 +http://viaf.org/viaf/101446209 DNB|184035503 +http://viaf.org/viaf/101446209 SUDOC|197394795 +http://viaf.org/viaf/101446209 DNB@http://d-nb.info/gnd/184035503 +http://viaf.org/viaf/10144648140063139800 BNF@http://catalogue.bnf.fr/ark:/12148/cb14647026z +http://viaf.org/viaf/10144648140063139800 BNF|14647026 +http://viaf.org/viaf/10145003597061340022 LC|n 2015069384 +http://viaf.org/viaf/10145003597061340022 LC@n2015069384 +http://viaf.org/viaf/10145003613761340064 NLA|000035981104 +http://viaf.org/viaf/101450169 DNB|1025155637 +http://viaf.org/viaf/101450169 LC|nb2009026380 +http://viaf.org/viaf/101450169 BIBSYS|8063573 +http://viaf.org/viaf/101450169 Identities@http://www.worldcat.org/identities/lccn-nb2009026380 +http://viaf.org/viaf/101450169 DNB@http://d-nb.info/gnd/1025155637 +http://viaf.org/viaf/101450169 CAOONL|ncf11034688 +http://viaf.org/viaf/10145304359278570326 DBC|87097969887376 +http://viaf.org/viaf/10145304359278570326 Identities@http://www.worldcat.org/identities/viaf-10145304359278570326 +http://viaf.org/viaf/10145304359278570326 DBC@870979.69887376 +http://viaf.org/viaf/10145375903883680574 KRNLK|KAC201201285 +http://viaf.org/viaf/10145375903883680574 ISNI|0000000463230591 +http://viaf.org/viaf/10145375903883680574 Identities@http://www.worldcat.org/identities/viaf-10145375903883680574 +http://viaf.org/viaf/10145424475686830757 DNB|1081682752 +http://viaf.org/viaf/10145424475686830757 DNB@http://d-nb.info/gnd/1081682752 +http://viaf.org/viaf/10145541703196600848 BNF@http://catalogue.bnf.fr/ark:/12148/cb168441849 +http://viaf.org/viaf/10145541703196600848 BNF|16844184 +http://viaf.org/viaf/10145602335301360992 DNB|1081429097 +http://viaf.org/viaf/10145602335301360992 DNB@http://d-nb.info/gnd/1081429097 +http://viaf.org/viaf/10145602335301360992 WKP|Q94922064 +http://viaf.org/viaf/10145602335301360992 Identities@http://www.worldcat.org/identities/viaf-10145602335301360992 +http://viaf.org/viaf/10145857061622921719 DNB@http://d-nb.info/gnd/153247908 +http://viaf.org/viaf/10145857061622921719 DNB|153247908 +http://viaf.org/viaf/10145857061622921719 BNCHL|10000000000000000011587 +http://viaf.org/viaf/10145857061622921719 BNCHL@BNC10000000000000000011587 +http://viaf.org/viaf/10145857815723021445 DNB@http://d-nb.info/gnd/10359475-9 +http://viaf.org/viaf/10145857815723021445 DNB|990766160 +http://viaf.org/viaf/10145857815723021445 Identities@http://www.worldcat.org/identities/viaf-10145857815723021445 +http://viaf.org/viaf/10145903 J9U|987007432126005171 +http://viaf.org/viaf/10145903 ISNI|0000000079831093 +http://viaf.org/viaf/10145903 LC@n2003098342 +http://viaf.org/viaf/10145903 NTA|254940803 +http://viaf.org/viaf/10145903 BNF|15119026 +http://viaf.org/viaf/10145903 BNF@http://catalogue.bnf.fr/ark:/12148/cb151190263 +http://viaf.org/viaf/10145903 Identities@http://www.worldcat.org/identities/lccn-n2003098342 +http://viaf.org/viaf/10145903 BIBSYS|4007432 +http://viaf.org/viaf/10145903 LC|n 2003098342 +http://viaf.org/viaf/10145903 RERO|A009519020 +http://viaf.org/viaf/10145903 SUDOC|075899655 +http://viaf.org/viaf/10145970173032251413 SUDOC|238704750 +http://viaf.org/viaf/10145970173032251413 Identities@http://www.worldcat.org/identities/viaf-10145970173032251413 +http://viaf.org/viaf/10145970173032251413 WKP|Q59770282 +http://viaf.org/viaf/10145970173032251413 BIBSYS|10068281 +http://viaf.org/viaf/10145970173032251413 W2Z|10068281 +http://viaf.org/viaf/10145970173032251413 B2Q|ncf10921259 +http://viaf.org/viaf/10145970173032251413 ORCID@http://orcid.org/0000-0002-2816-0773 +http://viaf.org/viaf/10145971365832331500 Identities@http://www.worldcat.org/identities/viaf-10145971365832331500 +http://viaf.org/viaf/10145971365832331500 DNB@http://d-nb.info/gnd/1095234463 +http://viaf.org/viaf/10145971365832331500 DNB|1095234463 +http://viaf.org/viaf/10146029524435821949 BNF|17032657 +http://viaf.org/viaf/10146029524435821949 Identities@http://www.worldcat.org/identities/viaf-10146029524435821949 +http://viaf.org/viaf/10146029524435821949 BNF@http://catalogue.bnf.fr/ark:/12148/cb17032657v +http://viaf.org/viaf/10146030647535862820 LC|no2006025458 +http://viaf.org/viaf/10146030647535862820 ICCU@IT\ICCU\CUBV\141672 +http://viaf.org/viaf/10146030647535862820 SUDOC|192298348 +http://viaf.org/viaf/10146030647535862820 ICCU|CUBV141672 +http://viaf.org/viaf/10146030647535862820 Identities@http://www.worldcat.org/identities/lccn-no2006025458 +http://viaf.org/viaf/10146285348915370004 SUDOC|192776851 +http://viaf.org/viaf/10146285348915370004 Identities@http://www.worldcat.org/identities/viaf-10146285348915370004 +http://viaf.org/viaf/10146331848918691424 LC|nb2016008799 +http://viaf.org/viaf/10146331848918691424 Identities@http://www.worldcat.org/identities/lccn-nb2016008799 +http://viaf.org/viaf/101463589 Identities@http://www.worldcat.org/identities/lccn-no2009155441 +http://viaf.org/viaf/101463589 LC|no2009155441 +http://viaf.org/viaf/10146461534027731433 LC|nb2016010120 +http://viaf.org/viaf/10146461534027731433 Identities@http://www.worldcat.org/identities/lccn-nb2016010120 +http://viaf.org/viaf/10146573916038101832 Identities@http://www.worldcat.org/identities/viaf-10146573916038101832 +http://viaf.org/viaf/10146573916038101832 NDL|001232750 +http://viaf.org/viaf/10146575006738152761 DNB@http://d-nb.info/gnd/1102915556 +http://viaf.org/viaf/10146575006738152761 DNB|1102915556 +http://viaf.org/viaf/10146635574641981633 BIBSYS|1460961539178 +http://viaf.org/viaf/10146635574641981633 W2Z|1460961539178 +http://viaf.org/viaf/101466757 LC|no2009155984 +http://viaf.org/viaf/101466757 Identities@http://www.worldcat.org/identities/lccn-no2009155984 +http://viaf.org/viaf/10146708110900841439 XR|VIAFEXP948668484 +http://viaf.org/viaf/10146937738313830914 DNB|1072961296 +http://viaf.org/viaf/10146937738313830914 DNB@http://d-nb.info/gnd/1072961296 +http://viaf.org/viaf/10146937810813832356 DNB|1073033198 +http://viaf.org/viaf/10146937810813832356 DNB@http://d-nb.info/gnd/1073033198 +http://viaf.org/viaf/10147121673026390600 LC|no2016090381 +http://viaf.org/viaf/10147121673026390600 Identities@http://www.worldcat.org/identities/lccn-no2016090381 +http://viaf.org/viaf/101472994 LC|no2009156957 +http://viaf.org/viaf/101472994 Identities@http://www.worldcat.org/identities/lccn-no2009156957 +http://viaf.org/viaf/101472994 ISNI|0000000071936894 +http://viaf.org/viaf/10147310055537851216 NKC|xx0205623 +http://viaf.org/viaf/10147310055537851216 WKP|Q12771161 +http://viaf.org/viaf/10147310055537851216 Identities@http://www.worldcat.org/identities/viaf-10147310055537851216 +http://viaf.org/viaf/10147310055537851216 Wikipedia@http://sk.wikipedia.org/wiki/Martin_Sarvaš +http://viaf.org/viaf/10147423074144881567 LC|n 2016047208 +http://viaf.org/viaf/10147423074144881567 Identities@http://www.worldcat.org/identities/lccn-n2016047208 +http://viaf.org/viaf/10147423074144881567 LC@n2016047208 +http://viaf.org/viaf/101474325 Identities@http://www.worldcat.org/identities/lccn-no2009157191 +http://viaf.org/viaf/101474325 LC|no2009157191 +http://viaf.org/viaf/10147602592957641826 NDL|001243441 +http://viaf.org/viaf/10147602592957641826 Identities@http://www.worldcat.org/identities/viaf-10147602592957641826 +http://viaf.org/viaf/101476107 Identities@http://www.worldcat.org/identities/lccn-no2009157467 +http://viaf.org/viaf/101476107 WKP|Q18530420 +http://viaf.org/viaf/101476107 LC|no2009157467 +http://viaf.org/viaf/10147905162079092048 BNE|XX5637591 +http://viaf.org/viaf/10147905162079092048 Identities@http://www.worldcat.org/identities/viaf-10147905162079092048 +http://viaf.org/viaf/10148207731800341531 DBC|87097919006247 +http://viaf.org/viaf/10148207731800341531 Identities@http://www.worldcat.org/identities/viaf-10148207731800341531 +http://viaf.org/viaf/10148207731800341531 DBC@870979.19006247 +http://viaf.org/viaf/10148207866300342491 Identities@http://www.worldcat.org/identities/viaf-10148207866300342491 +http://viaf.org/viaf/10148207866300342491 CAOONL|ncf10638599 +http://viaf.org/viaf/101483686 Identities@http://www.worldcat.org/identities/lccn-no2009158710 +http://viaf.org/viaf/101483686 LC|no2009158710 +http://viaf.org/viaf/10148389448410711942 Identities@http://www.worldcat.org/identities/viaf-10148389448410711942 +http://viaf.org/viaf/10148389448410711942 NLA|000058763302 +http://viaf.org/viaf/10148449721215691642 Identities@http://www.worldcat.org/identities/viaf-10148449721215691642 +http://viaf.org/viaf/10148449721215691642 BNF|17091391 +http://viaf.org/viaf/10148449721215691642 ISNI|0000000459799582 +http://viaf.org/viaf/10148449721215691642 BNF@http://catalogue.bnf.fr/ark:/12148/cb170913916 +http://viaf.org/viaf/101484621 LC|no2009158840 +http://viaf.org/viaf/101485512 LC|no2009159087 +http://viaf.org/viaf/101485512 Identities@http://www.worldcat.org/identities/lccn-no2009159087 +http://viaf.org/viaf/10148570593524311529 LC@n2017003229 +http://viaf.org/viaf/10148570593524311529 Identities@http://www.worldcat.org/identities/lccn-n2017003229 +http://viaf.org/viaf/10148570593524311529 LC|n 2017003229 +http://viaf.org/viaf/101485963 LC|no2009159156 +http://viaf.org/viaf/101485963 Identities@http://www.worldcat.org/identities/lccn-no2009159156 +http://viaf.org/viaf/10148703980236930645 LC@n2017006624 +http://viaf.org/viaf/10148703980236930645 LC|n 2017006624 +http://viaf.org/viaf/101487745 LC|no2009159393 +http://viaf.org/viaf/10148812821045212032 DNB@http://d-nb.info/gnd/1177717379 +http://viaf.org/viaf/10148812821045212032 RERO|A027698830 +http://viaf.org/viaf/10148812821045212032 CAOONL|ncf11913937 +http://viaf.org/viaf/10148812821045212032 J9U|987007390671105171 +http://viaf.org/viaf/10148812821045212032 ERRR|a11937208 +http://viaf.org/viaf/10148812821045212032 NII|DA19118185 +http://viaf.org/viaf/10148812821045212032 NDL|001319298 +http://viaf.org/viaf/10148812821045212032 Identities@http://www.worldcat.org/identities/lccn-no2017020891 +http://viaf.org/viaf/10148812821045212032 BNF@FRBNF171692484 +http://viaf.org/viaf/10148812821045212032 NUKAT@vtls017605950 +http://viaf.org/viaf/10148812821045212032 BNF|17169248 +http://viaf.org/viaf/10148812821045212032 SUDOC|225803658 +http://viaf.org/viaf/10148812821045212032 DNB|1177717379 +http://viaf.org/viaf/10148812821045212032 LC|no2017020891 +http://viaf.org/viaf/10148812821045212032 NTA|413490238 +http://viaf.org/viaf/10148812821045212032 NUKAT|n 2018133309 +http://viaf.org/viaf/10148812821045212032 LNB|LNC10-000257610 +http://viaf.org/viaf/10148812821045212032 ISNI|000000046411332X +http://viaf.org/viaf/10148874308149620476 LC|no2017025214 +http://viaf.org/viaf/10148874308149620476 BLBNB|001429197 +http://viaf.org/viaf/10148874308149620476 Identities@http://www.worldcat.org/identities/lccn-no2017025214 +http://viaf.org/viaf/10148874660349622415 LC@n2017011850 +http://viaf.org/viaf/10148874660349622415 LC|n 2017011850 +http://viaf.org/viaf/10148874660349622415 Identities@http://www.worldcat.org/identities/lccn-n2017011850 +http://viaf.org/viaf/10148933550854301740 BNF@http://catalogue.bnf.fr/ark:/12148/cb11407534c +http://viaf.org/viaf/10148933550854301740 BNF|11407534 +http://viaf.org/viaf/101489527 LC|no2009159669 +http://viaf.org/viaf/101489527 Identities@http://www.worldcat.org/identities/lccn-no2009159669 +http://viaf.org/viaf/10149196255574790451 BIBSYS|1002090 +http://viaf.org/viaf/10149196257174790534 BIBSYS|10026199 +http://viaf.org/viaf/101493531 SUDOC|137790872 +http://viaf.org/viaf/101493531 ISNI|0000000072112037 +http://viaf.org/viaf/101493531 CAOONL|ncf11566989 +http://viaf.org/viaf/101493531 Identities@http://www.worldcat.org/identities/lccn-no2009160311 +http://viaf.org/viaf/101493531 RERO|A016513981 +http://viaf.org/viaf/101493531 NTA|32339003X +http://viaf.org/viaf/101493531 LC|no2009160311 +http://viaf.org/viaf/10149414923189550908 LC|nb2017009432 +http://viaf.org/viaf/10149414923189550908 Identities@http://www.worldcat.org/identities/lccn-nb2017009432 +http://viaf.org/viaf/10149415183489552067 Identities@http://www.worldcat.org/identities/lccn-no2017055166 +http://viaf.org/viaf/10149415183489552067 LC|no2017055166 +http://viaf.org/viaf/10149594 BNF|15364887 +http://viaf.org/viaf/10149594 Identities@http://www.worldcat.org/identities/viaf-10149594 +http://viaf.org/viaf/10149594 BNF@http://catalogue.bnf.fr/ark:/12148/cb15364887p +http://viaf.org/viaf/10149717187110950689 CYT|AC000429796 +http://viaf.org/viaf/10149842002802842943 KRNLK|KAC201712111 +http://viaf.org/viaf/10149842002802842943 Identities@http://www.worldcat.org/identities/viaf-10149842002802842943 +http://viaf.org/viaf/10149842002802842943 ISNI|0000000460422790 +http://viaf.org/viaf/10149912603706212665 LC|no2017079421 +http://viaf.org/viaf/10150083707014940171 LC|no2017091400 +http://viaf.org/viaf/10150170557300011660 NTA|411206796 +http://viaf.org/viaf/10150170557300011660 Identities@http://www.worldcat.org/identities/viaf-10150170557300011660 +http://viaf.org/viaf/101501847 LC|no2009161699 +http://viaf.org/viaf/101501847 Identities@http://www.worldcat.org/identities/lccn-no2009161699 +http://viaf.org/viaf/101501847 J9U|987007412604405171 +http://viaf.org/viaf/10150202235103112015 CYT|AC000616511 +http://viaf.org/viaf/10150323636209970013 BLBNB|000191021 +http://viaf.org/viaf/101503629 WKP|Q1507267 +http://viaf.org/viaf/101503629 Identities@http://www.worldcat.org/identities/lccn-no2009161966 +http://viaf.org/viaf/101503629 Wikipedia@http://en.wikipedia.org/wiki/George_E._Outland +http://viaf.org/viaf/101503629 Wikipedia@http://pl.wikipedia.org/wiki/George_E._Outland +http://viaf.org/viaf/101503629 LC|no2009161966 +http://viaf.org/viaf/101503629 Wikipedia@http://arz.wikipedia.org/wiki/چورچ_اى._اوتلاند +http://viaf.org/viaf/101503629 Wikipedia@http://azb.wikipedia.org/wiki/جورج_ئی._وتلاند +http://viaf.org/viaf/101503629 Wikipedia@http://de.wikipedia.org/wiki/George_E._Outland +http://viaf.org/viaf/101504240 Wikipedia@http://fr.wikipedia.org/wiki/Asanali_Ashimov +http://viaf.org/viaf/101504240 LC|no2009162086 +http://viaf.org/viaf/101504240 Wikipedia@http://ru.wikipedia.org/wiki/Ашимов,_Асанали_Ашимович +http://viaf.org/viaf/101504240 Identities@http://www.worldcat.org/identities/lccn-no2009162086 +http://viaf.org/viaf/101504240 WKP|Q4073467 +http://viaf.org/viaf/101504240 Wikipedia@http://kk.wikipedia.org/wiki/Асанәлі_Әшімұлы_Әшімов +http://viaf.org/viaf/101504240 Wikipedia@http://arz.wikipedia.org/wiki/اسانالى_اشيموڤ +http://viaf.org/viaf/10150516500803440798 DNB@http://d-nb.info/gnd/1139311719 +http://viaf.org/viaf/10150516500803440798 DNB|1139311719 +http://viaf.org/viaf/10150516500803440798 UIY|000002430 +http://viaf.org/viaf/10150516500803440798 LC|nb2017018678 +http://viaf.org/viaf/10150516500803440798 Identities@http://www.worldcat.org/identities/lccn-nb2017018678 +http://viaf.org/viaf/10150516568803441449 Identities@http://www.worldcat.org/identities/lccn-no2017115158 +http://viaf.org/viaf/10150516568803441449 LC|no2017115158 +http://viaf.org/viaf/10150516620403441637 Identities@http://www.worldcat.org/identities/lccn-n2017053568 +http://viaf.org/viaf/10150516620403441637 LC@n2017053568 +http://viaf.org/viaf/10150516620403441637 LC|n 2017053568 +http://viaf.org/viaf/10150516625303441286 Identities@http://www.worldcat.org/identities/viaf-10150516625303441286 +http://viaf.org/viaf/10150516625303441286 NUKAT@vtls015841982 +http://viaf.org/viaf/10150516625303441286 NUKAT|n 2017028369 +http://viaf.org/viaf/10150565530406250931 Identities@http://www.worldcat.org/identities/lccn-nb2017018264 +http://viaf.org/viaf/10150565530406250931 LC|nb2017018264 +http://viaf.org/viaf/10150565549906250769 LC|no2017120064 +http://viaf.org/viaf/101506022 ISNI|0000000071763348 +http://viaf.org/viaf/101506022 LC|no2009162329 +http://viaf.org/viaf/101506022 Identities@http://www.worldcat.org/identities/lccn-no2009162329 +http://viaf.org/viaf/10150644935210621186 DNB@http://d-nb.info/gnd/1140075810 +http://viaf.org/viaf/10150644935210621186 DNB|1140075810 +http://viaf.org/viaf/10150686389512540452 DNB@http://d-nb.info/gnd/1140557696 +http://viaf.org/viaf/10150686389512540452 Identities@http://www.worldcat.org/identities/viaf-10150686389512540452 +http://viaf.org/viaf/10150686389512540452 DNB|1140557696 +http://viaf.org/viaf/10150807202618861441 CYT|AC000454334 +http://viaf.org/viaf/10150807246218860103 DNB@http://d-nb.info/gnd/1117731855 +http://viaf.org/viaf/10150807246218860103 Identities@http://www.worldcat.org/identities/lccn-n2017061296 +http://viaf.org/viaf/10150807246218860103 LC|n 2017061296 +http://viaf.org/viaf/10150807246218860103 LC@n2017061296 +http://viaf.org/viaf/10150807246218860103 DNB|1117731855 +http://viaf.org/viaf/10150868237822071873 LC|n 2017062148 +http://viaf.org/viaf/10150868237822071873 LC@n2017062148 +http://viaf.org/viaf/10150999493029870577 DNB|1143266722 +http://viaf.org/viaf/10150999493029870577 Identities@http://www.worldcat.org/identities/viaf-10150999493029870577 +http://viaf.org/viaf/10150999493029870577 DNB@http://d-nb.info/gnd/1143266722 +http://viaf.org/viaf/10150999567529871911 LC|n 2017188710 +http://viaf.org/viaf/10150999567529871911 LC@n2017188710 +http://viaf.org/viaf/10151302829548661625 BLBNB|000238390 +http://viaf.org/viaf/10151302904848662522 BLBNB|000241558 +http://viaf.org/viaf/10151351933852600332 DNB|1148121404 +http://viaf.org/viaf/10151351933852600332 Identities@http://www.worldcat.org/identities/viaf-10151351933852600332 +http://viaf.org/viaf/10151351933852600332 DNB@http://d-nb.info/gnd/1148121404 +http://viaf.org/viaf/10151352032852602768 DNB@http://d-nb.info/gnd/1148667989 +http://viaf.org/viaf/10151352032852602768 Identities@http://www.worldcat.org/identities/viaf-10151352032852602768 +http://viaf.org/viaf/10151352032852602768 DNB|1148667989 +http://viaf.org/viaf/10151352040752602953 Identities@http://www.worldcat.org/identities/viaf-10151352040752602953 +http://viaf.org/viaf/10151352040752602953 CYT|AC000618243 +http://viaf.org/viaf/10151352043452602250 Identities@http://www.worldcat.org/identities/viaf-10151352043452602250 +http://viaf.org/viaf/10151352043452602250 KRNLK|KAC201718288 +http://viaf.org/viaf/10151431542256300547 Identities@http://www.worldcat.org/identities/lccn-no2017165621 +http://viaf.org/viaf/10151431542256300547 LC|no2017165621 +http://viaf.org/viaf/1015146284314315331072 DNB@http://d-nb.info/gnd/1099730872 +http://viaf.org/viaf/1015146284314315331072 DNB|1099730872 +http://viaf.org/viaf/1015146284314315331072 Identities@http://www.worldcat.org/identities/viaf-1015146284314315331072 +http://viaf.org/viaf/1015146997175918890374 NII|DA16739801 +http://viaf.org/viaf/1015152636074320051553 DNB@http://d-nb.info/gnd/1158574614 +http://viaf.org/viaf/1015152636074320051553 DNB|1158574614 +http://viaf.org/viaf/1015152636074320051553 Identities@http://www.worldcat.org/identities/viaf-1015152636074320051553 +http://viaf.org/viaf/101515383 LC|no2009163944 +http://viaf.org/viaf/101515383 Identities@http://www.worldcat.org/identities/lccn-no2009163944 +http://viaf.org/viaf/1015154387101530970006 LIH|LNB:BA_z__p_;=B9 +http://viaf.org/viaf/1015154387101530970006 LIH@LNB:BAzp;=B9 +http://viaf.org/viaf/1015159234253603371194 RERO|A012353728 +http://viaf.org/viaf/1015159234413803371561 RERO|A012527993 +http://viaf.org/viaf/10151715575213782073 DNB|1151079529 +http://viaf.org/viaf/10151715575213782073 DNB@http://d-nb.info/gnd/1151079529 +http://viaf.org/viaf/10151715632413781391 Identities@http://www.worldcat.org/identities/viaf-10151715632413781391 +http://viaf.org/viaf/10151715632413781391 J9U|987007382947405171 +http://viaf.org/viaf/10151776747518011450 LC|no2018012396 +http://viaf.org/viaf/10151776747518011450 Identities@http://www.worldcat.org/identities/lccn-no2018012396 +http://viaf.org/viaf/101520558 LC|no2009164808 +http://viaf.org/viaf/101520558 Identities@http://www.worldcat.org/identities/lccn-no2009164808 +http://viaf.org/viaf/101520558 ISNI|0000000071852308 +http://viaf.org/viaf/101520602 SUDOC|178055328 +http://viaf.org/viaf/101520602 BNF|16209618 +http://viaf.org/viaf/101520602 LC|no2009164816 +http://viaf.org/viaf/101520602 BIBSYS|10048859 +http://viaf.org/viaf/101520602 ISNI|0000000080089156 +http://viaf.org/viaf/101520602 NTA|322997798 +http://viaf.org/viaf/101520602 Identities@http://www.worldcat.org/identities/lccn-no2009164816 +http://viaf.org/viaf/101520602 BNF@http://catalogue.bnf.fr/ark:/12148/cb162096187 +http://viaf.org/viaf/10152199158914280768 DNB@http://d-nb.info/gnd/1154802817 +http://viaf.org/viaf/10152199158914280768 DNB|1154802817 +http://viaf.org/viaf/10152199158914280768 Identities@http://www.worldcat.org/identities/viaf-10152199158914280768 +http://viaf.org/viaf/10152259538416981203 Identities@http://www.worldcat.org/identities/lccn-no2018037691 +http://viaf.org/viaf/10152259538416981203 LC|no2018037691 +http://viaf.org/viaf/10152329221002672350 BNE|XX5739670 +http://viaf.org/viaf/10152329221002672350 Identities@http://www.worldcat.org/identities/viaf-10152329221002672350 +http://viaf.org/viaf/10152561536315440900 Identities@http://www.worldcat.org/identities/lccn-n2018025204 +http://viaf.org/viaf/10152561536315440900 LC|n 2018025204 +http://viaf.org/viaf/10152561536315440900 LC@n2018025204 +http://viaf.org/viaf/10152742994227732787 DE663|pe20001940 +http://viaf.org/viaf/101527461 LC|no2009166036 +http://viaf.org/viaf/101527461 DNB|142695076 +http://viaf.org/viaf/101527461 DNB@http://d-nb.info/gnd/142695076 +http://viaf.org/viaf/101527461 ISNI|0000000072292971 +http://viaf.org/viaf/101527461 SIMACOB|1400675 +http://viaf.org/viaf/101527461 NSK|000579351 +http://viaf.org/viaf/101527461 Identities@http://www.worldcat.org/identities/lccn-no2009166036 +http://viaf.org/viaf/101527461 WKP|Q66055457 +http://viaf.org/viaf/10152820094100680549 Identities@http://www.worldcat.org/identities/lccn-no2018072326 +http://viaf.org/viaf/10152820094100680549 DNB@http://d-nb.info/gnd/171898966 +http://viaf.org/viaf/10152820094100680549 DNB|171898966 +http://viaf.org/viaf/10152820094100680549 LC|no2018072326 +http://viaf.org/viaf/10152930858609671031 LC|n 2018223847 +http://viaf.org/viaf/10152930858609671031 Identities@http://www.worldcat.org/identities/lccn-n2018223847 +http://viaf.org/viaf/10152930858609671031 LC@n2018223847 +http://viaf.org/viaf/10152930872009671936 DNB@http://d-nb.info/gnd/1160946140 +http://viaf.org/viaf/10152930872009671936 Identities@http://www.worldcat.org/identities/viaf-10152930872009671936 +http://viaf.org/viaf/10152930872009671936 DNB|1160946140 +http://viaf.org/viaf/10152986616812670909 Identities@http://www.worldcat.org/identities/lccn-no2018080198 +http://viaf.org/viaf/10152986616812670909 LC|no2018080198 +http://viaf.org/viaf/10153470810045080505 Identities@http://www.worldcat.org/identities/lccn-no2018106414 +http://viaf.org/viaf/10153470810045080505 LC|no2018106414 +http://viaf.org/viaf/10153470810045080505 J9U|987007400147105171 +http://viaf.org/viaf/10153530916048701834 DNB@http://d-nb.info/gnd/1165269503 +http://viaf.org/viaf/10153530916048701834 DNB|1165269503 +http://viaf.org/viaf/10153530925848702231 DNB@http://d-nb.info/gnd/1165187388 +http://viaf.org/viaf/10153530925848702231 DNB|1165187388 +http://viaf.org/viaf/10153530925848702231 Identities@http://www.worldcat.org/identities/viaf-10153530925848702231 +http://viaf.org/viaf/10153530948748702145 Identities@http://www.worldcat.org/identities/lccn-nb2018016545 +http://viaf.org/viaf/10153530948748702145 LC|nb2018016545 +http://viaf.org/viaf/10153593739351671558 DNB|1165547821 +http://viaf.org/viaf/10153593739351671558 DNB@http://d-nb.info/gnd/1165547821 +http://viaf.org/viaf/10153651664055781528 LC|n 2018051801 +http://viaf.org/viaf/10153651664055781528 LC@n2018051801 +http://viaf.org/viaf/10153651664055781528 Identities@http://www.worldcat.org/identities/lccn-n2018051801 +http://viaf.org/viaf/10153651711055782032 BNF|17815296 +http://viaf.org/viaf/10153651711055782032 BNF@FRBNF178152964 +http://viaf.org/viaf/10153651711055782032 DNB@http://d-nb.info/gnd/1166105709 +http://viaf.org/viaf/10153651711055782032 Identities@http://www.worldcat.org/identities/viaf-10153651711055782032 +http://viaf.org/viaf/10153651711055782032 DNB|1166105709 +http://viaf.org/viaf/10153713776258661420 BNE|XX5785081 +http://viaf.org/viaf/10153713819758662316 CAOONL|ncf10650832 +http://viaf.org/viaf/10153893604702291156 DNB|1168178509 +http://viaf.org/viaf/10153893604702291156 DNB@http://d-nb.info/gnd/1168178509 +http://viaf.org/viaf/10153893604702291156 Identities@http://www.worldcat.org/identities/viaf-10153893604702291156 +http://viaf.org/viaf/10153953154405560767 DNB@http://d-nb.info/gnd/1168683211 +http://viaf.org/viaf/10153953154405560767 Identities@http://www.worldcat.org/identities/viaf-10153953154405560767 +http://viaf.org/viaf/10153953154405560767 DNB|1168683211 +http://viaf.org/viaf/10153953253805561841 LC|no2018134499 +http://viaf.org/viaf/10153953253805561841 Identities@http://www.worldcat.org/identities/lccn-no2018134499 +http://viaf.org/viaf/10154074361811740644 Identities@http://www.worldcat.org/identities/lccn-nb2018020793 +http://viaf.org/viaf/10154074361811740644 LC|nb2018020793 +http://viaf.org/viaf/10154196689220111433 BNF|14672255 +http://viaf.org/viaf/10154196689220111433 Identities@http://www.worldcat.org/identities/viaf-10154196689220111433 +http://viaf.org/viaf/10154196689220111433 BNF@FRBNF146722559 +http://viaf.org/viaf/101542437 LC|no2009168227 +http://viaf.org/viaf/101542437 Identities@http://www.worldcat.org/identities/lccn-no2009168227 +http://viaf.org/viaf/10154590231543082411 KRNLK|KAC201811091 +http://viaf.org/viaf/10154590231543082411 Identities@http://www.worldcat.org/identities/viaf-10154590231543082411 +http://viaf.org/viaf/10154590237943082600 Identities@http://www.worldcat.org/identities/viaf-10154590237943082600 +http://viaf.org/viaf/10154590237943082600 KRNLK|KAC201769683 +http://viaf.org/viaf/101546172 Identities@http://www.worldcat.org/identities/lccn-no2009168771 +http://viaf.org/viaf/101546172 LC|no2009168771 +http://viaf.org/viaf/10154620790644590549 LC|no2018174071 +http://viaf.org/viaf/10154620883044592744 LC|no2018172767 +http://viaf.org/viaf/10154620883044592744 Identities@http://www.worldcat.org/identities/lccn-no2018172767 +http://viaf.org/viaf/10154620888444592756 LC|no2018173578 +http://viaf.org/viaf/10154620888444592756 Identities@http://www.worldcat.org/identities/lccn-no2018173578 +http://viaf.org/viaf/10154739761652990150 Identities@http://www.worldcat.org/identities/viaf-10154739761652990150 +http://viaf.org/viaf/10154739761652990150 BNF@FRBNF177802697 +http://viaf.org/viaf/10154739761652990150 BNF|17780269 +http://viaf.org/viaf/101549340 LC|no2009169230 +http://viaf.org/viaf/101549340 DNB@http://d-nb.info/gnd/1050328639 +http://viaf.org/viaf/101549340 Identities@http://www.worldcat.org/identities/lccn-no2009169230 +http://viaf.org/viaf/101549340 DNB|1050328639 +http://viaf.org/viaf/10154981717167741469 BNF@FRBNF177888486 +http://viaf.org/viaf/10154981717167741469 Identities@http://www.worldcat.org/identities/viaf-10154981717167741469 +http://viaf.org/viaf/10154981717167741469 BNF|17788848 +http://viaf.org/viaf/10154981797567742309 Identities@http://www.worldcat.org/identities/viaf-10154981797567742309 +http://viaf.org/viaf/10154981797567742309 BNF|13153745 +http://viaf.org/viaf/10154981797567742309 BNF@FRBNF131537451 +http://viaf.org/viaf/101554191 Identities@http://www.worldcat.org/identities/lccn-no2009169994 +http://viaf.org/viaf/101554191 ISNI|0000000072116863 +http://viaf.org/viaf/101554191 LC|no2009169994 +http://viaf.org/viaf/10155706996522411597 ISNI|0000000474748476 +http://viaf.org/viaf/10155706996522411597 Identities@http://www.worldcat.org/identities/viaf-10155706996522411597 +http://viaf.org/viaf/10155706996522411597 KRNLK|KAC201903388 +http://viaf.org/viaf/10155767393127761815 BNF@FRBNF178101717 +http://viaf.org/viaf/10155767393127761815 Identities@http://www.worldcat.org/identities/viaf-10155767393127761815 +http://viaf.org/viaf/10155767393127761815 BNF|17810171 +http://viaf.org/viaf/10156219147204741895 Identities@http://www.worldcat.org/identities/lccn-n2019035399 +http://viaf.org/viaf/10156219147204741895 LC@n2019035399 +http://viaf.org/viaf/10156219147204741895 LC|n 2019035399 +http://viaf.org/viaf/10156271 DNB|132272105 +http://viaf.org/viaf/10156271 BNF@http://catalogue.bnf.fr/ark:/12148/cb155268343 +http://viaf.org/viaf/10156271 LC@n2005065943 +http://viaf.org/viaf/10156271 DNB@http://d-nb.info/gnd/132272105 +http://viaf.org/viaf/10156271 Identities@http://www.worldcat.org/identities/lccn-n2005065943 +http://viaf.org/viaf/10156271 BNF|15526834 +http://viaf.org/viaf/10156271 RERO|A023114350 +http://viaf.org/viaf/10156271 ISNI|000000010953658X +http://viaf.org/viaf/10156271 NKC|jx20110118014 +http://viaf.org/viaf/10156271 NTA|297009486 +http://viaf.org/viaf/10156271 LC|n 2005065943 +http://viaf.org/viaf/10156271 SUDOC|126698104 +http://viaf.org/viaf/10156372373107541090 Identities@http://www.worldcat.org/identities/lccn-no2019101749 +http://viaf.org/viaf/10156372373107541090 LC|no2019101749 +http://viaf.org/viaf/10156372373107541090 J9U|987007399134405171 +http://viaf.org/viaf/10156372486707542544 Identities@http://www.worldcat.org/identities/lccn-no2019101456 +http://viaf.org/viaf/10156372486707542544 LC|no2019101456 +http://viaf.org/viaf/10156495354917561472 Identities@http://www.worldcat.org/identities/viaf-10156495354917561472 +http://viaf.org/viaf/10156495354917561472 EGAXA|Balis3082066 +http://viaf.org/viaf/10156760314340851028 Identities@http://www.worldcat.org/identities/lccn-n2020032563 +http://viaf.org/viaf/10156760314340851028 DNB@http://d-nb.info/gnd/1193659566 +http://viaf.org/viaf/10156760314340851028 LC@n2020032563 +http://viaf.org/viaf/10156760314340851028 LC|n 2020032563 +http://viaf.org/viaf/10156760314340851028 DNB|1193659566 +http://viaf.org/viaf/10156760621240852535 Identities@http://www.worldcat.org/identities/lccn-no2019123172 +http://viaf.org/viaf/10156760621240852535 LC|no2019123172 +http://viaf.org/viaf/101568826 ISNI|0000000084585931 +http://viaf.org/viaf/101568826 Wikipedia@http://arz.wikipedia.org/wiki/نوريهى_ميكى +http://viaf.org/viaf/101568826 Wikipedia@http://ja.wikipedia.org/wiki/三木のり平 +http://viaf.org/viaf/101568826 Wikipedia@http://no.wikipedia.org/wiki/Norihei_Miki +http://viaf.org/viaf/101568826 Wikipedia@http://zh.wikipedia.org/wiki/三木紀平 +http://viaf.org/viaf/101568826 Identities@http://www.worldcat.org/identities/lccn-no2009172333 +http://viaf.org/viaf/101568826 BNF@http://catalogue.bnf.fr/ark:/12148/cb16969164g +http://viaf.org/viaf/101568826 NDL|00043292 +http://viaf.org/viaf/101568826 BNF|16969164 +http://viaf.org/viaf/101568826 NII|DA12100192 +http://viaf.org/viaf/101568826 LC|no2009172333 +http://viaf.org/viaf/101568826 J9U|987007459799805171 +http://viaf.org/viaf/101568826 WKP|Q11355570 +http://viaf.org/viaf/10156988781461000950 LC|n 2019057580 +http://viaf.org/viaf/10156988781461000950 LC@n2019057580 +http://viaf.org/viaf/10156988781461000950 Identities@http://www.worldcat.org/identities/lccn-n2019057580 +http://viaf.org/viaf/10156988870261001118 LC|nb2019018150 +http://viaf.org/viaf/10156988870261001118 Identities@http://www.worldcat.org/identities/lccn-nb2019018150 +http://viaf.org/viaf/10156988901761001914 LIH@LNB:C51y;=BY +http://viaf.org/viaf/10156988901761001914 LIH|LNB:C51_y_;=BY +http://viaf.org/viaf/101570102 SUDOC|174162790 +http://viaf.org/viaf/101570102 Identities@http://www.worldcat.org/identities/lccn-no2009172550 +http://viaf.org/viaf/101570102 LC|no2009172550 +http://viaf.org/viaf/101570102 BNF|16521770 +http://viaf.org/viaf/101570102 DNB|137960344 +http://viaf.org/viaf/101570102 ISNI|0000000121457374 +http://viaf.org/viaf/101570102 DNB@http://d-nb.info/gnd/137960344 +http://viaf.org/viaf/101570102 BNF@http://catalogue.bnf.fr/ark:/12148/cb16521770m +http://viaf.org/viaf/101570102 RERO|A025983847 +http://viaf.org/viaf/101570102 NTA|323929435 +http://viaf.org/viaf/10157037867266860794 BNF@FRBNF178391875 +http://viaf.org/viaf/10157037867266860794 BNF|17839187 +http://viaf.org/viaf/10157037867266860794 Identities@http://www.worldcat.org/identities/viaf-10157037867266860794 +http://viaf.org/viaf/10157098410072551821 LC|n 2019060664 +http://viaf.org/viaf/10157098410072551821 LC@n2019060664 +http://viaf.org/viaf/10157098410072551821 Identities@http://www.worldcat.org/identities/lccn-n2019060664 +http://viaf.org/viaf/10157098411172551524 Identities@http://www.worldcat.org/identities/lccn-n2019187114 +http://viaf.org/viaf/10157098411172551524 LC|n 2019187114 +http://viaf.org/viaf/10157098411172551524 LC@n2019187114 +http://viaf.org/viaf/101571895 LC|no2009172853 +http://viaf.org/viaf/10157222617084970371 LC|n 2019063387 +http://viaf.org/viaf/10157222617084970371 LC@n2019063387 +http://viaf.org/viaf/10157222687284970950 Identities@http://www.worldcat.org/identities/viaf-10157222687284970950 +http://viaf.org/viaf/10157222687284970950 NDL|001331464 +http://viaf.org/viaf/101572335 Identities@http://www.worldcat.org/identities/lccn-no2009172922 +http://viaf.org/viaf/101572335 LC|no2009172922 +http://viaf.org/viaf/10157413397916050830 CYT|AC000562207 +http://viaf.org/viaf/10157701767144222394 Identities@http://www.worldcat.org/identities/viaf-10157701767144222394 +http://viaf.org/viaf/10157701767144222394 DNB@http://d-nb.info/gnd/1201779243 +http://viaf.org/viaf/10157701767144222394 DNB|1201779243 +http://viaf.org/viaf/101581245 NKC|js20091030004 +http://viaf.org/viaf/10158185562420060889 BLBNB|001496588 +http://viaf.org/viaf/10158185695320061639 BLBNB|001134728 +http://viaf.org/viaf/10158185798620062152 BLBNB|001489998 +http://viaf.org/viaf/10158259362002301504 LC|no2020020696 +http://viaf.org/viaf/101583027 NKC|jx20091030017 +http://viaf.org/viaf/101583027 BLBNB|000481444 +http://viaf.org/viaf/101583027 Identities@http://www.worldcat.org/identities/viaf-101583027 +http://viaf.org/viaf/10158367643101281349 BNF|17869422 +http://viaf.org/viaf/10158367643101281349 BNF@FRBNF178694228 +http://viaf.org/viaf/10158367782201282873 Identities@http://www.worldcat.org/identities/viaf-10158367782201282873 +http://viaf.org/viaf/10158367782201282873 CYT|AC000033712 +http://viaf.org/viaf/10158427883806061357 EGAXA|Balis759279747 +http://viaf.org/viaf/10158733101233052862 NUKAT|n 2020002796 +http://viaf.org/viaf/10158733101233052862 Identities@http://www.worldcat.org/identities/viaf-10158733101233052862 +http://viaf.org/viaf/10158733101233052862 NUKAT@vtls019178009 +http://viaf.org/viaf/10158855782944141859 LC|no2020053938 +http://viaf.org/viaf/101589490 ISNI|0000000072297908 +http://viaf.org/viaf/101589490 Identities@http://www.worldcat.org/identities/viaf-101589490 +http://viaf.org/viaf/101589490 NKC|mzk2009544416 +http://viaf.org/viaf/10158978840655791892 DNB@http://d-nb.info/gnd/1210233460 +http://viaf.org/viaf/10158978840655791892 DNB|1210233460 +http://viaf.org/viaf/10159032769501182472 DE663|17910 +http://viaf.org/viaf/10159276799207952079 LC|no2020073046 +http://viaf.org/viaf/101593774 NKC|stk2009493277 +http://viaf.org/viaf/10159397306819300280 B2Q|ncf10791322 +http://viaf.org/viaf/10159397306819300280 CAOONL|ncf10791322 +http://viaf.org/viaf/10159610579840541708 SELIBR|s4ljhk49qz2mh7h0 +http://viaf.org/viaf/101597789 NKC|xx0104129 +http://viaf.org/viaf/101611160 Identities@http://www.worldcat.org/identities/viaf-101611160 +http://viaf.org/viaf/101611160 ISNI|0000000071682804 +http://viaf.org/viaf/101611160 NKC|xx0105758 +http://viaf.org/viaf/1016152636064920050408 DNB|115845760X +http://viaf.org/viaf/1016152636064920050408 DNB@http://d-nb.info/gnd/115845760X +http://viaf.org/viaf/1016152636174820052241 Identities@http://www.worldcat.org/identities/viaf-1016152636174820052241 +http://viaf.org/viaf/1016152636174820052241 DNB|115909358X +http://viaf.org/viaf/1016152636174820052241 DNB@http://d-nb.info/gnd/115909358X +http://viaf.org/viaf/1016159234081103370679 Identities@http://www.worldcat.org/identities/viaf-1016159234081103370679 +http://viaf.org/viaf/1016159234081103370679 RERO|A017173033 +http://viaf.org/viaf/1016159477612727990001 LC|no2013048249 +http://viaf.org/viaf/101624085 DNB@http://d-nb.info/gnd/1061016382 +http://viaf.org/viaf/101624085 Identities@http://www.worldcat.org/identities/lccn-nb2013012844 +http://viaf.org/viaf/101624085 LC|nb2013012844 +http://viaf.org/viaf/101624085 BNF|12389346 +http://viaf.org/viaf/101624085 J9U|987007300858805171 +http://viaf.org/viaf/101624085 ISNI|0000000116927968 +http://viaf.org/viaf/101624085 DNB|1061016382 +http://viaf.org/viaf/101624085 BNF@http://catalogue.bnf.fr/ark:/12148/cb12389346x +http://viaf.org/viaf/10163228 RERO|A009590113 +http://viaf.org/viaf/10163228 SZ@http://d-nb.info/gnd/14275210X +http://viaf.org/viaf/10163228 NUKAT@vtls016134244 +http://viaf.org/viaf/10163228 DNB@http://d-nb.info/gnd/14275210X +http://viaf.org/viaf/10163228 BNF@http://catalogue.bnf.fr/ark:/12148/cb155652717 +http://viaf.org/viaf/10163228 Identities@http://www.worldcat.org/identities/lccn-no2009036463 +http://viaf.org/viaf/10163228 Wikipedia@http://fr.wikipedia.org/wiki/Jean-François_Haas +http://viaf.org/viaf/10163228 CAOONL|ncf10667701 +http://viaf.org/viaf/10163228 NTA|312812388 +http://viaf.org/viaf/10163228 LC|no2009036463 +http://viaf.org/viaf/10163228 ISNI|0000000109536723 +http://viaf.org/viaf/10163228 DNB|14275210X +http://viaf.org/viaf/10163228 BNF|15565271 +http://viaf.org/viaf/10163228 WKP|Q3165641 +http://viaf.org/viaf/10163228 SUDOC|121150283 +http://viaf.org/viaf/10163228 NUKAT|n 2017014896 +http://viaf.org/viaf/10163228 SZ|14275210X +http://viaf.org/viaf/10164119 SUDOC|119349043 +http://viaf.org/viaf/10164119 RERO|A013753495 +http://viaf.org/viaf/10164119 BNF@http://catalogue.bnf.fr/ark:/12148/cb15569231z +http://viaf.org/viaf/10164119 Identities@http://www.worldcat.org/identities/viaf-10164119 +http://viaf.org/viaf/10164119 ISNI|0000000001552318 +http://viaf.org/viaf/10164119 BNF|15569231 +http://viaf.org/viaf/101643615 Identities@http://www.worldcat.org/identities/viaf-101643615 +http://viaf.org/viaf/101643615 NTA|316337382 +http://viaf.org/viaf/101643615 NUKAT|n 00044571 +http://viaf.org/viaf/101643615 NUKAT@vtls000659817 +http://viaf.org/viaf/101643615 PLWABN|9810583822705606 +http://viaf.org/viaf/101643615 ISNI|0000000071684965 +http://viaf.org/viaf/101648241 NUKAT@vtls000355744 +http://viaf.org/viaf/101648241 Identities@http://www.worldcat.org/identities/viaf-101648241 +http://viaf.org/viaf/101648241 NUKAT|n 00053174 +http://viaf.org/viaf/101648241 ISNI|0000000072391435 +http://viaf.org/viaf/101648241 PLWABN|9810587831405606 +http://viaf.org/viaf/101659708 J9U|987007322052905171 +http://viaf.org/viaf/101659708 LC|nb2013017041 +http://viaf.org/viaf/101659708 Identities@http://www.worldcat.org/identities/lccn-nb2013017041 +http://viaf.org/viaf/101659708 NUKAT|n 00096448 +http://viaf.org/viaf/101659708 PLWABN|9810665590805606 +http://viaf.org/viaf/101659708 NUKAT@vtls000702663 +http://viaf.org/viaf/101659708 BIBSYS|13036898 +http://viaf.org/viaf/101659708 ISNI|0000000071773933 +http://viaf.org/viaf/101665945 Identities@http://www.worldcat.org/identities/viaf-101665945 +http://viaf.org/viaf/101665945 NUKAT|n 01013710 +http://viaf.org/viaf/101665945 PLWABN|9810575365405606 +http://viaf.org/viaf/101665945 ISNI|0000000072212345 +http://viaf.org/viaf/101665945 NUKAT@vtls000283427 +http://viaf.org/viaf/101668618 Wikipedia@http://pl.wikipedia.org/wiki/Jerzy_Sperka +http://viaf.org/viaf/101668618 SUDOC|242927351 +http://viaf.org/viaf/101668618 NKC|js2012688942 +http://viaf.org/viaf/101668618 WKP|Q11725426 +http://viaf.org/viaf/101668618 DNB|117948682X +http://viaf.org/viaf/101668618 NUKAT@vtls000590489 +http://viaf.org/viaf/101668618 LIH@LNB:gBz;=Bz +http://viaf.org/viaf/101668618 ISNI|0000000116929226 +http://viaf.org/viaf/101668618 LC|n 2003040595 +http://viaf.org/viaf/101668618 NUKAT|n 01018690 +http://viaf.org/viaf/101668618 NII|DA1736379X +http://viaf.org/viaf/101668618 PLWABN|9810651678605606 +http://viaf.org/viaf/101668618 LIH|LNB:_g_B_z_;=B_z_ +http://viaf.org/viaf/101668618 LC@n2003040595 +http://viaf.org/viaf/101668618 DNB@http://d-nb.info/gnd/117948682X +http://viaf.org/viaf/101668618 Identities@http://www.worldcat.org/identities/lccn-n2003040595 +http://viaf.org/viaf/101670840 ISNI|0000000082856742 +http://viaf.org/viaf/101670840 DNB|1032305649 +http://viaf.org/viaf/101670840 NKC|js2010600162 +http://viaf.org/viaf/101670840 NUKAT|n 01023378 +http://viaf.org/viaf/101670840 WKP|Q5515590 +http://viaf.org/viaf/101670840 LIH|LNB:CNZP;=BX +http://viaf.org/viaf/101670840 PLWABN|9810544331505606 +http://viaf.org/viaf/101670840 J9U|987007289449205171 +http://viaf.org/viaf/101670840 Wikipedia@http://en.wikipedia.org/wiki/Gabriel_Czechowicz +http://viaf.org/viaf/101670840 Wikipedia@http://pl.wikipedia.org/wiki/Gabriel_Czechowicz +http://viaf.org/viaf/101670840 Identities@http://www.worldcat.org/identities/lccn-no2004026190 +http://viaf.org/viaf/101670840 DNB@http://d-nb.info/gnd/1032305649 +http://viaf.org/viaf/101670840 NUKAT@vtls000194753 +http://viaf.org/viaf/101670840 LC|no2004026190 +http://viaf.org/viaf/101675746 Identities@http://www.worldcat.org/identities/viaf-101675746 +http://viaf.org/viaf/101675746 NUKAT|n 01033215 +http://viaf.org/viaf/101675746 PLWABN|9810540973105606 +http://viaf.org/viaf/101675746 NUKAT@vtls000326558 +http://viaf.org/viaf/101675746 ISNI|0000000072037890 +http://viaf.org/viaf/101676637 Wikipedia@http://bg.wikipedia.org/wiki/Анджей_Михалек +http://viaf.org/viaf/101676637 LC|nr2004004186 +http://viaf.org/viaf/101676637 ISNI|0000000117323306 +http://viaf.org/viaf/101676637 NUKAT|n 01035603 +http://viaf.org/viaf/101676637 RERO|A023668772 +http://viaf.org/viaf/101676637 WKP|Q9152918 +http://viaf.org/viaf/101676637 NUKAT@vtls000439895 +http://viaf.org/viaf/101676637 PLWABN|9810703475305606 +http://viaf.org/viaf/101676637 Identities@http://www.worldcat.org/identities/lccn-nr2004004186 +http://viaf.org/viaf/101676637 Wikipedia@http://pl.wikipedia.org/wiki/Andrzej_Michałek +http://viaf.org/viaf/101681532 NUKAT|n 01044263 +http://viaf.org/viaf/101681532 ISNI|0000000072124660 +http://viaf.org/viaf/101681532 Identities@http://www.worldcat.org/identities/viaf-101681532 +http://viaf.org/viaf/101681532 NUKAT@vtls000585812 +http://viaf.org/viaf/101696239 ISNI|0000000116930083 +http://viaf.org/viaf/101696239 LC|n 2001113306 +http://viaf.org/viaf/101696239 PLWABN|9810595258005606 +http://viaf.org/viaf/101696239 Identities@http://www.worldcat.org/identities/lccn-n2001113306 +http://viaf.org/viaf/101696239 LC@n2001113306 +http://viaf.org/viaf/101696239 NUKAT@vtls000237830 +http://viaf.org/viaf/101696239 NUKAT|n 01108697 +http://viaf.org/viaf/101703384 NUKAT@vtls000100244 +http://viaf.org/viaf/101703384 ISNI|0000000071593780 +http://viaf.org/viaf/101703384 PLWABN|9810700346105606 +http://viaf.org/viaf/101703384 NUKAT|n 02022698 +http://viaf.org/viaf/101703384 Identities@http://www.worldcat.org/identities/viaf-101703384 +http://viaf.org/viaf/10170356 ISNI|0000000001555359 +http://viaf.org/viaf/10170356 BNF|15603821 +http://viaf.org/viaf/10170356 Identities@http://www.worldcat.org/identities/lccn-no2007075882 +http://viaf.org/viaf/10170356 BNF@http://catalogue.bnf.fr/ark:/12148/cb15603821s +http://viaf.org/viaf/10170356 LC|no2007075882 +http://viaf.org/viaf/10170356 SUDOC|132394065 +http://viaf.org/viaf/101705166 ISNI|0000000072039917 +http://viaf.org/viaf/101705166 Identities@http://www.worldcat.org/identities/viaf-101705166 +http://viaf.org/viaf/101705166 NUKAT@vtls000242501 +http://viaf.org/viaf/101705166 PLWABN|9810581798305606 +http://viaf.org/viaf/101705166 NUKAT|n 02031528 +http://viaf.org/viaf/101709720 PLWABN|9810652502905606 +http://viaf.org/viaf/101709720 ISNI|0000000072215204 +http://viaf.org/viaf/101709720 Identities@http://www.worldcat.org/identities/viaf-101709720 +http://viaf.org/viaf/101709720 NUKAT|n 02064177 +http://viaf.org/viaf/101709720 NUKAT@vtls000399569 +http://viaf.org/viaf/1017154381054630292274 LIH@LNB:NZp;=Bu +http://viaf.org/viaf/1017154381054630292274 LIH|LNB:NZ_p_;=B_u_ +http://viaf.org/viaf/1017159234435903371706 Identities@http://www.worldcat.org/identities/viaf-1017159234435903371706 +http://viaf.org/viaf/1017159234435903371706 RERO|A016768352 +http://viaf.org/viaf/101719477 CAOONL|ncf11744341 +http://viaf.org/viaf/101719477 NII|DA12778211 +http://viaf.org/viaf/101719477 RERO|A018475973 +http://viaf.org/viaf/101719477 DNB|1063814340 +http://viaf.org/viaf/101719477 NSK|000163474 +http://viaf.org/viaf/101719477 SUDOC|132110520 +http://viaf.org/viaf/101719477 WKP|Q2790182 +http://viaf.org/viaf/101719477 NUKAT|n 93100097 +http://viaf.org/viaf/101719477 NTA|071181822 +http://viaf.org/viaf/101719477 LC|n 86123244 +http://viaf.org/viaf/101719477 NKC|mub2012695754 +http://viaf.org/viaf/101719477 BNF|12881250 +http://viaf.org/viaf/101719477 ISNI|0000000116930657 +http://viaf.org/viaf/101719477 PTBNP|1713562 +http://viaf.org/viaf/101719477 PTBNP|1711581 +http://viaf.org/viaf/101719477 LIH|LNB:VM1;=BA +http://viaf.org/viaf/101719477 PLWABN|9810699587805606 +http://viaf.org/viaf/101719477 J9U|987007271998505171 +http://viaf.org/viaf/101719477 BAV@495/182936 +http://viaf.org/viaf/101719477 BNF@http://catalogue.bnf.fr/ark:/12148/cb12881250t +http://viaf.org/viaf/101719477 LC@n86123244 +http://viaf.org/viaf/101719477 NUKAT@vtls000133893 +http://viaf.org/viaf/101719477 DNB@http://d-nb.info/gnd/1063814340 +http://viaf.org/viaf/101719477 Identities@http://www.worldcat.org/identities/lccn-n86123244 +http://viaf.org/viaf/101719477 Wikipedia@http://ru.wikipedia.org/wiki/Белявский,_Юзеф +http://viaf.org/viaf/101719477 Wikipedia@http://pl.wikipedia.org/wiki/Józef_Bielawski_(arabista) +http://viaf.org/viaf/101719477 Wikipedia@http://en.wikipedia.org/wiki/Józef_Bielawski +http://viaf.org/viaf/101719477 BAV|495_182936 +http://viaf.org/viaf/10172138 BNF|15615140 +http://viaf.org/viaf/10172138 ISNI|0000000034832578 +http://viaf.org/viaf/10172138 LC@n2005092067 +http://viaf.org/viaf/10172138 LC|n 2005092067 +http://viaf.org/viaf/10172138 Identities@http://www.worldcat.org/identities/lccn-n2005092067 +http://viaf.org/viaf/10172138 BNF@http://catalogue.bnf.fr/ark:/12148/cb15615140t +http://viaf.org/viaf/101728387 WKP|Q8861750 +http://viaf.org/viaf/101728387 Wikipedia@http://pl.wikipedia.org/wiki/Izabela_Horodecka +http://viaf.org/viaf/101728387 Identities@http://www.worldcat.org/identities/lccn-n94112301 +http://viaf.org/viaf/101728387 NUKAT@vtls000303016 +http://viaf.org/viaf/101728387 LC@n94112301 +http://viaf.org/viaf/101728387 PLWABN|9810542641005606 +http://viaf.org/viaf/101728387 ISNI|0000000079059603 +http://viaf.org/viaf/101728387 NUKAT|n 93126706 +http://viaf.org/viaf/101728387 LC|n 94112301 +http://viaf.org/viaf/101737341 DNB|117143553 +http://viaf.org/viaf/101737341 BNF|11156905 +http://viaf.org/viaf/101737341 BAV@495/221335 +http://viaf.org/viaf/101737341 NUKAT@vtls000451458 +http://viaf.org/viaf/101737341 LC@no92020250 +http://viaf.org/viaf/101737341 DNB@http://d-nb.info/gnd/117143553 +http://viaf.org/viaf/101737341 BNF@http://catalogue.bnf.fr/ark:/12148/cb111569055 +http://viaf.org/viaf/101737341 Identities@http://www.worldcat.org/identities/lccn-no92020250 +http://viaf.org/viaf/101737341 Wikipedia@http://pl.wikipedia.org/wiki/Marian_Morelowski +http://viaf.org/viaf/101737341 Wikipedia@http://be.wikipedia.org/wiki/Марыян_Маралёўскі +http://viaf.org/viaf/101737341 BAV|495_221335 +http://viaf.org/viaf/101737341 J9U|987007281718405171 +http://viaf.org/viaf/101737341 LIH|LNB:LPG;=1A +http://viaf.org/viaf/101737341 WKP|Q11769579 +http://viaf.org/viaf/101737341 SUDOC|150724527 +http://viaf.org/viaf/101737341 NUKAT|n 94001408 +http://viaf.org/viaf/101737341 NTA|147356237 +http://viaf.org/viaf/101737341 NKC|xx0116204 +http://viaf.org/viaf/101737341 LC|no 92020250 +http://viaf.org/viaf/101737341 ISNI|0000000077784764 +http://viaf.org/viaf/101737341 PLWABN|9810634572005606 +http://viaf.org/viaf/10174866 ISNI|0000000039977610 +http://viaf.org/viaf/10174866 BNF|15663691 +http://viaf.org/viaf/10174866 LC@n2007015594 +http://viaf.org/viaf/10174866 BNF@http://catalogue.bnf.fr/ark:/12148/cb15663691n +http://viaf.org/viaf/10174866 Identities@http://www.worldcat.org/identities/lccn-n2007015594 +http://viaf.org/viaf/10174866 J9U|987007324302905171 +http://viaf.org/viaf/10174866 BIBSYS|7059511 +http://viaf.org/viaf/10174866 NTA|314402918 +http://viaf.org/viaf/10174866 LC|n 2007015594 +http://viaf.org/viaf/101759176 LC|n 91077388 +http://viaf.org/viaf/101759176 LC@n91077388 +http://viaf.org/viaf/101759176 Identities@http://www.worldcat.org/identities/lccn-n91077388 +http://viaf.org/viaf/101759176 PLWABN|9810650823305606 +http://viaf.org/viaf/101759176 NUKAT@vtls000703164 +http://viaf.org/viaf/101759176 NUKAT|n 94200395 +http://viaf.org/viaf/101759176 ISNI|0000000071956801 +http://viaf.org/viaf/101770588 LC@n78042902 +http://viaf.org/viaf/101770588 Wikipedia@http://pl.wikipedia.org/wiki/Henryk_Rochnowski +http://viaf.org/viaf/101770588 ISNI|0000000072308507 +http://viaf.org/viaf/101770588 LC|n 78042902 +http://viaf.org/viaf/101770588 PLWABN|9810655766605606 +http://viaf.org/viaf/101770588 NUKAT|n 94206595 +http://viaf.org/viaf/101770588 WKP|Q11709078 +http://viaf.org/viaf/101770588 Identities@http://www.worldcat.org/identities/lccn-n78042902 +http://viaf.org/viaf/101770588 NUKAT@vtls000541475 +http://viaf.org/viaf/101773305 PLWABN|9810644009805606 +http://viaf.org/viaf/101773305 LIH|LNB:B___m_D;=BT +http://viaf.org/viaf/101773305 NUKAT|n 94209009 +http://viaf.org/viaf/101773305 Identities@http://www.worldcat.org/identities/viaf-101773305 +http://viaf.org/viaf/101773305 LIH@LNB:B+mD;=BT +http://viaf.org/viaf/101773305 NUKAT@vtls000504924 +http://viaf.org/viaf/101773305 ISNI|0000000072218499 +http://viaf.org/viaf/101780884 ISNI|0000000385938761 +http://viaf.org/viaf/101780884 PLWABN|9810660571905606 +http://viaf.org/viaf/101780884 CAOONL|ncf11583679 +http://viaf.org/viaf/101780884 Wikipedia@http://pl.wikipedia.org/wiki/Cezary_Madryas +http://viaf.org/viaf/101780884 Identities@http://www.worldcat.org/identities/lccn-n2008051964 +http://viaf.org/viaf/101780884 LC@n2008051964 +http://viaf.org/viaf/101780884 NUKAT@vtls000417619 +http://viaf.org/viaf/101780884 DNB@http://d-nb.info/gnd/1038798124 +http://viaf.org/viaf/101780884 DNB|1038798124 +http://viaf.org/viaf/101780884 BIBSYS|13027729 +http://viaf.org/viaf/101780884 WKP|Q16535650 +http://viaf.org/viaf/101780884 NKC|ntk2012703652 +http://viaf.org/viaf/101780884 NUKAT|n 94301230 +http://viaf.org/viaf/101780884 LC|n 2008051964 +http://viaf.org/viaf/101782215 ISNI|0000000071869396 +http://viaf.org/viaf/101782215 NUKAT|n 94302090 +http://viaf.org/viaf/101782215 NUKAT@vtls000163484 +http://viaf.org/viaf/101782215 Identities@http://www.worldcat.org/identities/viaf-101782215 +http://viaf.org/viaf/101782215 PLWABN|9810658453405606 +http://viaf.org/viaf/101789849 LC|no2011125435 +http://viaf.org/viaf/101789849 ISNI|0000000071781896 +http://viaf.org/viaf/101789849 NUKAT|n 95001164 +http://viaf.org/viaf/101789849 NUKAT@vtls000223709 +http://viaf.org/viaf/101789849 LIH@LNB:CGql;=B3 +http://viaf.org/viaf/101789849 Identities@http://www.worldcat.org/identities/lccn-no2011125435 +http://viaf.org/viaf/101789849 PLWABN|9810555921005606 +http://viaf.org/viaf/101789849 LIH|LNB:CG_q__l_;=B3 +http://viaf.org/viaf/101789849 SUDOC|145209512 +http://viaf.org/viaf/101800052 NUKAT|n 95005781 +http://viaf.org/viaf/101800052 Identities@http://www.worldcat.org/identities/viaf-101800052 +http://viaf.org/viaf/101800052 NUKAT@vtls000221081 +http://viaf.org/viaf/101800052 ISNI|000000007213181X +http://viaf.org/viaf/101800052 PLWABN|9810566586305606 +http://viaf.org/viaf/1018145858288823022773 WKP|Q16017755 +http://viaf.org/viaf/1018145858288823022773 LC|no2016023185 +http://viaf.org/viaf/1018145858288823022773 Wikipedia@http://en.wikipedia.org/wiki/Bill_Flemming +http://viaf.org/viaf/1018145858288823022773 Identities@http://www.worldcat.org/identities/lccn-no2016023185 +http://viaf.org/viaf/1018146997343318892107 NII|DA18080928 +http://viaf.org/viaf/1018152744562227850007 Identities@http://www.worldcat.org/identities/lccn-n2018029412 +http://viaf.org/viaf/1018152744562227850007 LC@n2018029412 +http://viaf.org/viaf/1018152744562227850007 LC|n 2018029412 +http://viaf.org/viaf/1018154381060030291790 LIH|LNB:C_r_1_h_;=B_u_ +http://viaf.org/viaf/1018154381060030291790 LIH@LNB:Cr1h;=Bu +http://viaf.org/viaf/1018159234773803372814 RERO|A022476006 +http://viaf.org/viaf/101817487 PLWABN|9810604417205606 +http://viaf.org/viaf/101817487 NUKAT@vtls000389669 +http://viaf.org/viaf/101817487 NUKAT|n 95209748 +http://viaf.org/viaf/101817487 ISNI|0000000373477566 +http://viaf.org/viaf/101817487 Identities@http://www.worldcat.org/identities/viaf-101817487 +http://viaf.org/viaf/101823273 NUKAT|n 95301561 +http://viaf.org/viaf/101823273 Identities@http://www.worldcat.org/identities/lccn-no2009140833 +http://viaf.org/viaf/101823273 LC|no2009140833 +http://viaf.org/viaf/101823273 NUKAT@vtls000238933 +http://viaf.org/viaf/101823273 NII|DA1478884X +http://viaf.org/viaf/101823273 PLWABN|9810672725405606 +http://viaf.org/viaf/101823273 CAOONL|ncf10676612 +http://viaf.org/viaf/101823273 ISNI|0000000116933866 +http://viaf.org/viaf/101827288 ISNI|0000000072401306 +http://viaf.org/viaf/101827288 PLWABN|9810536110005606 +http://viaf.org/viaf/101827288 NUKAT|n 95402090 +http://viaf.org/viaf/101827288 SUDOC|140708987 +http://viaf.org/viaf/101827288 NUKAT@vtls000658534 +http://viaf.org/viaf/101827288 Identities@http://www.worldcat.org/identities/viaf-101827288 +http://viaf.org/viaf/101842759 Identities@http://www.worldcat.org/identities/lccn-n78089997 +http://viaf.org/viaf/101842759 DNB@http://d-nb.info/gnd/103453296 +http://viaf.org/viaf/101842759 LC@n78089997 +http://viaf.org/viaf/101842759 NUKAT@vtls000475302 +http://viaf.org/viaf/101842759 DNB|103453296 +http://viaf.org/viaf/101842759 ISNI|0000000071872878 +http://viaf.org/viaf/101842759 LC|n 78089997 +http://viaf.org/viaf/101842759 NUKAT|n 96019406 +http://viaf.org/viaf/101842759 PLWABN|9810537404805606 +http://viaf.org/viaf/101858121 NUKAT|n 96100225 +http://viaf.org/viaf/101858121 LIH|LNB:C_q__l__t_;=C_e_ +http://viaf.org/viaf/101858121 NKC|mzk2012722619 +http://viaf.org/viaf/101858121 LIH@LNB:Cqlt;=Ce +http://viaf.org/viaf/101858121 LC|n 81118560 +http://viaf.org/viaf/101858121 Identities@http://www.worldcat.org/identities/lccn-n81118560 +http://viaf.org/viaf/101858121 NUKAT@vtls000551588 +http://viaf.org/viaf/101858121 LC@n81118560 +http://viaf.org/viaf/101858121 Wikipedia@http://pl.wikipedia.org/wiki/Witold_Rychter +http://viaf.org/viaf/101858121 PLWABN|9810605852705606 +http://viaf.org/viaf/101858121 WKP|Q9375824 +http://viaf.org/viaf/101858121 ISNI|0000000071962136 +http://viaf.org/viaf/101870424 NUKAT@vtls000416049 +http://viaf.org/viaf/101870424 PLWABN|9810666915905606 +http://viaf.org/viaf/101870424 ISNI|0000000071874515 +http://viaf.org/viaf/101870424 LC@n00096184 +http://viaf.org/viaf/101870424 LIH@LNB:aYL;=Bc +http://viaf.org/viaf/101870424 LIH|LNB:_a_YL;=B_c_ +http://viaf.org/viaf/101870424 LC|n 00096184 +http://viaf.org/viaf/101870424 Identities@http://www.worldcat.org/identities/lccn-n00096184 +http://viaf.org/viaf/101870424 NUKAT|n 96208352 +http://viaf.org/viaf/10187835 LC@n2004039127 +http://viaf.org/viaf/10187835 WKP|Q3219275 +http://viaf.org/viaf/10187835 LC|n 2004039127 +http://viaf.org/viaf/10187835 W2Z|98016707 +http://viaf.org/viaf/10187835 NUKAT|n 2004030683 +http://viaf.org/viaf/10187835 BIBSYS|98016707 +http://viaf.org/viaf/10187835 DNB|1055200525 +http://viaf.org/viaf/10187835 ISNI|0000000117425417 +http://viaf.org/viaf/10187835 NTA|16403935X +http://viaf.org/viaf/10187835 Wikipedia@http://en.wikipedia.org/wiki/Laurents_Hallager +http://viaf.org/viaf/10187835 Wikipedia@http://fr.wikipedia.org/wiki/Laurent_Hallager +http://viaf.org/viaf/10187835 PLWABN|9810551031305606 +http://viaf.org/viaf/10187835 Wikipedia@http://nn.wikipedia.org/wiki/Laurents_Hallager +http://viaf.org/viaf/10187835 Wikipedia@http://no.wikipedia.org/wiki/Laurents_Hallager +http://viaf.org/viaf/10187835 Wikipedia@http://sv.wikipedia.org/wiki/Laurents_Hallager +http://viaf.org/viaf/10187835 Identities@http://www.worldcat.org/identities/lccn-n2004039127 +http://viaf.org/viaf/10187835 DNB@http://d-nb.info/gnd/1055200525 +http://viaf.org/viaf/10187835 NUKAT@vtls001860082 +http://viaf.org/viaf/101880225 Wikipedia@http://pl.wikipedia.org/wiki/Andrzej_Nowicki_(pisarz) +http://viaf.org/viaf/101880225 PLWABN|9810651487105606 +http://viaf.org/viaf/101880225 LIH|LNB:YP4;=BJ +http://viaf.org/viaf/101880225 BIBSYS|13066941 +http://viaf.org/viaf/101880225 WKP|Q4759676 +http://viaf.org/viaf/101880225 Wikipedia@http://en.wikipedia.org/wiki/Andrzej_Nowicki_(writer) +http://viaf.org/viaf/101880225 ISNI|0000000082857235 +http://viaf.org/viaf/101880225 NUKAT|n 96221929 +http://viaf.org/viaf/101880225 NSK|000345475 +http://viaf.org/viaf/101880225 LC|n 93015243 +http://viaf.org/viaf/101880225 NUKAT@vtls000473040 +http://viaf.org/viaf/101880225 LC@n93015243 +http://viaf.org/viaf/101880225 Identities@http://www.worldcat.org/identities/lccn-n93015243 +http://viaf.org/viaf/101882458 DNB@http://d-nb.info/gnd/103712011 +http://viaf.org/viaf/101882458 Identities@http://www.worldcat.org/identities/viaf-101882458 +http://viaf.org/viaf/101882458 DNB|103712011 +http://viaf.org/viaf/101882458 ISNI|0000000072049664 +http://viaf.org/viaf/101882458 NUKAT@vtls000431676 +http://viaf.org/viaf/101882458 NUKAT|n 96225006 +http://viaf.org/viaf/101883844 NUKAT@vtls000522817 +http://viaf.org/viaf/101883844 NUKAT|n 96226816 +http://viaf.org/viaf/101883844 PLWABN|9810594254205606 +http://viaf.org/viaf/101883844 Identities@http://www.worldcat.org/identities/viaf-101883844 +http://viaf.org/viaf/101883844 ISNI|000000007153465X +http://viaf.org/viaf/101887903 NUKAT@vtls000223396 +http://viaf.org/viaf/101887903 Identities@http://www.worldcat.org/identities/viaf-101887903 +http://viaf.org/viaf/101887903 NUKAT|n 96344139 +http://viaf.org/viaf/101887903 PLWABN|9810644334405606 +http://viaf.org/viaf/101887903 ISNI|0000000071606799 +http://viaf.org/viaf/1019145857894623020675 BNCHL|10000000000000000203382 +http://viaf.org/viaf/1019145857894623020675 BNCHL@BNC10000000000000000203382 +http://viaf.org/viaf/1019154380934630290601 LIH|LNB:_b_M_v_;=B1 +http://viaf.org/viaf/1019154380934630290601 LIH@LNB:bMv;=B1 +http://viaf.org/viaf/1019159474274427661250 NUKAT|n 2020206544 +http://viaf.org/viaf/1019159474274427661250 NUKAT@vtls019336338 +http://viaf.org/viaf/101916432 Identities@http://www.worldcat.org/identities/viaf-101916432 +http://viaf.org/viaf/101916432 NUKAT|n 97009784 +http://viaf.org/viaf/101916432 WKP|Q39063758 +http://viaf.org/viaf/101916432 ISNI|0000000072051983 +http://viaf.org/viaf/101916432 NUKAT@vtls000155483 +http://viaf.org/viaf/101916432 ORCID@http://orcid.org/0000-0001-6757-9211 +http://viaf.org/viaf/101916432 PLWABN|9810697850505606 +http://viaf.org/viaf/101923065 SUDOC|167843052 +http://viaf.org/viaf/101923065 DNB@http://d-nb.info/gnd/127283447 +http://viaf.org/viaf/101923065 PLWABN|9810672405905606 +http://viaf.org/viaf/101923065 DNB|127283447 +http://viaf.org/viaf/101923065 ISNI|0000000117778976 +http://viaf.org/viaf/101923065 LIH@LNB:9p+;=BZ +http://viaf.org/viaf/101923065 WKP|Q9154101 +http://viaf.org/viaf/101923065 NUKAT|n 97015478 +http://viaf.org/viaf/101923065 LC|no2006134952 +http://viaf.org/viaf/101923065 NUKAT@vtls000691923 +http://viaf.org/viaf/101923065 LIH|LNB:9_p___;=BZ +http://viaf.org/viaf/101923065 Wikipedia@http://pl.wikipedia.org/wiki/Andrzej_Zbierski +http://viaf.org/viaf/101923065 Identities@http://www.worldcat.org/identities/lccn-no2006134952 +http://viaf.org/viaf/101927124 Identities@http://www.worldcat.org/identities/viaf-101927124 +http://viaf.org/viaf/101927124 ISNI|0000000072052564 +http://viaf.org/viaf/101928015 NUKAT|n 97019843 +http://viaf.org/viaf/101928015 LC|nr 92010264 +http://viaf.org/viaf/101928015 NUKAT@vtls000507923 +http://viaf.org/viaf/101928015 LC@nr92010264 +http://viaf.org/viaf/101928015 Identities@http://www.worldcat.org/identities/lccn-nr92010264 +http://viaf.org/viaf/101928015 ISNI|000000007856013X +http://viaf.org/viaf/10193126 ISNI|000000008017895X +http://viaf.org/viaf/10193126 LC|n 85053993 +http://viaf.org/viaf/10193126 N6I|vtls000275606 +http://viaf.org/viaf/10193126 NLA|000035856187 +http://viaf.org/viaf/10193126 LC@n85053993 +http://viaf.org/viaf/10193126 Identities@http://www.worldcat.org/identities/lccn-n85053993 +http://viaf.org/viaf/101940769 PLWABN|9810595903505606 +http://viaf.org/viaf/101940769 Identities@http://www.worldcat.org/identities/viaf-101940769 +http://viaf.org/viaf/101940769 ISNI|0000000071967180 +http://viaf.org/viaf/101940769 NUKAT@vtls000377055 +http://viaf.org/viaf/101940769 NUKAT|n 97030506 +http://viaf.org/viaf/101942271 PLWABN|9810618907205606 +http://viaf.org/viaf/101942271 ISNI|0000000071611213 +http://viaf.org/viaf/101942271 LC|nb2018007284 +http://viaf.org/viaf/101942271 DNB|1131218620 +http://viaf.org/viaf/101942271 NUKAT|n 97031480 +http://viaf.org/viaf/101942271 Wikipedia@http://pl.wikipedia.org/wiki/Jerzy_Wróblewski_(rysownik) +http://viaf.org/viaf/101942271 Identities@http://www.worldcat.org/identities/lccn-nb2018007284 +http://viaf.org/viaf/101942271 NUKAT@vtls000679775 +http://viaf.org/viaf/101942271 WKP|Q11725704 +http://viaf.org/viaf/101942271 DNB@http://d-nb.info/gnd/1131218620 +http://viaf.org/viaf/101943162 LC|no2006098515 +http://viaf.org/viaf/101943162 Identities@http://www.worldcat.org/identities/lccn-no2006098515 +http://viaf.org/viaf/101943162 Wikipedia@http://pl.wikipedia.org/wiki/Anna_Krajewska_(ekonomistka) +http://viaf.org/viaf/101943162 PLWABN|9810586796505606 +http://viaf.org/viaf/101943162 NTA|157884309 +http://viaf.org/viaf/101943162 WKP|Q68942738 +http://viaf.org/viaf/101945890 NUKAT|n 97034427 +http://viaf.org/viaf/101945890 PLWABN|9810689116005606 +http://viaf.org/viaf/101945890 Identities@http://www.worldcat.org/identities/viaf-101945890 +http://viaf.org/viaf/101945890 NUKAT@vtls000123907 +http://viaf.org/viaf/101945890 ISNI|0000000072228929 +http://viaf.org/viaf/101948068 NUKAT@vtls000620140 +http://viaf.org/viaf/101948068 LC|no 90016013 +http://viaf.org/viaf/101948068 NUKAT|n 97036100 +http://viaf.org/viaf/101948068 PLWABN|9810697265205606 +http://viaf.org/viaf/101948068 Identities@http://www.worldcat.org/identities/lccn-no90016013 +http://viaf.org/viaf/101948068 ISNI|0000000072053700 +http://viaf.org/viaf/101948068 LC@no90016013 +http://viaf.org/viaf/101949003 ISNI|0000000071791496 +http://viaf.org/viaf/101949003 PLWABN|9810573054005606 +http://viaf.org/viaf/101949003 Identities@http://www.worldcat.org/identities/viaf-101949003 +http://viaf.org/viaf/101949003 NUKAT|n 97037018 +http://viaf.org/viaf/101949003 NUKAT@vtls000145562 +http://viaf.org/viaf/101955240 PLWABN|9810631788705606 +http://viaf.org/viaf/101955240 NUKAT@vtls000610001 +http://viaf.org/viaf/101955240 Identities@http://www.worldcat.org/identities/viaf-101955240 +http://viaf.org/viaf/101955240 NUKAT|n 97060294 +http://viaf.org/viaf/101955240 ISNI|0000000071968140 +http://viaf.org/viaf/101961757 ISNI|0000000072054746 +http://viaf.org/viaf/101961757 Identities@http://www.worldcat.org/identities/viaf-101961757 +http://viaf.org/viaf/101961757 NUKAT@vtls000488004 +http://viaf.org/viaf/101961757 PLWABN|9810556620605606 +http://viaf.org/viaf/101961757 NUKAT|n 97065703 +http://viaf.org/viaf/101965492 Identities@http://www.worldcat.org/identities/viaf-101965492 +http://viaf.org/viaf/101965492 PLWABN|9810689423705606 +http://viaf.org/viaf/101965492 NUKAT|n 97070361 +http://viaf.org/viaf/101965492 ISNI|0000000071880456 +http://viaf.org/viaf/101965492 NUKAT@vtls000277436 +http://viaf.org/viaf/101967274 ISNI|0000000072055124 +http://viaf.org/viaf/101967274 PLWABN|9810532400205606 +http://viaf.org/viaf/101967274 Identities@http://www.worldcat.org/identities/viaf-101967274 +http://viaf.org/viaf/101967274 NUKAT@vtls000431339 +http://viaf.org/viaf/101967274 NUKAT|n 97071763 +http://viaf.org/viaf/10197636 DNB@http://d-nb.info/gnd/100634346 +http://viaf.org/viaf/10197636 Identities@http://www.worldcat.org/identities/lccn-n85029500 +http://viaf.org/viaf/10197636 LC|n 85029500 +http://viaf.org/viaf/10197636 DNB|100634346 +http://viaf.org/viaf/10197636 SKMASNL|vtls000715552 +http://viaf.org/viaf/10197636 LC@n85029500 +http://viaf.org/viaf/101989153 PLWABN|9810572422905606 +http://viaf.org/viaf/101989153 ISNI|0000000072410974 +http://viaf.org/viaf/101989153 NUKAT|n 98011360 +http://viaf.org/viaf/101989153 Identities@http://www.worldcat.org/identities/viaf-101989153 +http://viaf.org/viaf/101989153 NUKAT@vtls000580635 +http://viaf.org/viaf/101989928 NUKAT@vtls000527514 +http://viaf.org/viaf/101989928 PLWABN|9810581243705606 +http://viaf.org/viaf/101989928 NUKAT|n 98012552 +http://viaf.org/viaf/101989928 ISNI|0000000072321859 +http://viaf.org/viaf/101989928 Identities@http://www.worldcat.org/identities/viaf-101989928 +http://viaf.org/viaf/101990269 Identities@http://www.worldcat.org/identities/viaf-101990269 +http://viaf.org/viaf/101990269 PLWABN|9810617264805606 +http://viaf.org/viaf/101990269 NUKAT@vtls000429887 +http://viaf.org/viaf/101990269 NUKAT|n 98013353 +http://viaf.org/viaf/101990269 ISNI|0000000072143634 +http://viaf.org/viaf/101997947 PLWABN|9810577294205606 +http://viaf.org/viaf/101997947 NUKAT@vtls000562418 +http://viaf.org/viaf/101997947 NUKAT|n 98031024 +http://viaf.org/viaf/101997947 ISNI|0000000072057082 +http://viaf.org/viaf/101997947 Identities@http://www.worldcat.org/identities/viaf-101997947 +http://viaf.org/viaf/101998838 NUKAT@vtls000216673 +http://viaf.org/viaf/101998838 Wikipedia@http://pl.wikipedia.org/wiki/Aleksander_Drwęcki +http://viaf.org/viaf/101998838 Identities@http://www.worldcat.org/identities/viaf-101998838 +http://viaf.org/viaf/101998838 PLWABN|9810578790805606 +http://viaf.org/viaf/101998838 ISNI|000000007223259X +http://viaf.org/viaf/101998838 NUKAT|n 98031956 +http://viaf.org/viaf/101998838 WKP|Q11685012 +http://viaf.org/viaf/102001434 ISNI|0000000072144223 +http://viaf.org/viaf/102001434 PLWABN|9810558330805606 +http://viaf.org/viaf/102001434 Identities@http://www.worldcat.org/identities/viaf-102001434 +http://viaf.org/viaf/102001434 NUKAT@vtls000120753 +http://viaf.org/viaf/102001434 NUKAT|n 98035084 +http://viaf.org/viaf/102009184 ISNI|0000000072412208 +http://viaf.org/viaf/102009184 NUKAT|n 98048359 +http://viaf.org/viaf/102009184 Identities@http://www.worldcat.org/identities/viaf-102009184 +http://viaf.org/viaf/102009184 PLWABN|9810681905105606 +http://viaf.org/viaf/102009184 NUKAT@vtls000661001 +http://viaf.org/viaf/102012577 ISNI|0000000071971876 +http://viaf.org/viaf/102012577 NII|DA15775581 +http://viaf.org/viaf/102012577 NUKAT|n 98081469 +http://viaf.org/viaf/102012577 PLWABN|9810535781505606 +http://viaf.org/viaf/102012577 Identities@http://www.worldcat.org/identities/viaf-102012577 +http://viaf.org/viaf/102012577 NUKAT@vtls000341052 +http://viaf.org/viaf/102014359 NUKAT@vtls000442652 +http://viaf.org/viaf/102014359 LC@nr87000025 +http://viaf.org/viaf/102014359 DNB@http://d-nb.info/gnd/170064344 +http://viaf.org/viaf/102014359 Identities@http://www.worldcat.org/identities/lccn-nr87000025 +http://viaf.org/viaf/102014359 LC|nr 87000025 +http://viaf.org/viaf/102014359 NKC|mub2018981074 +http://viaf.org/viaf/102014359 NII|DA01642262 +http://viaf.org/viaf/102014359 NUKAT|n 98085672 +http://viaf.org/viaf/102014359 RERO|A003594199 +http://viaf.org/viaf/102014359 ISNI|0000000072412558 +http://viaf.org/viaf/102014359 PLWABN|9810605087105606 +http://viaf.org/viaf/102014359 DNB|170064344 +http://viaf.org/viaf/1020145857884923020408 DNB|109123471X +http://viaf.org/viaf/1020145857884923020408 DNB@http://d-nb.info/gnd/109123471X +http://viaf.org/viaf/1020146997265218891242 NII|DA17789350 +http://viaf.org/viaf/1020154380936430290412 LIH|LNB:R7_h_;=BX +http://viaf.org/viaf/1020154380936430290412 LIH@LNB:R7h;=BX +http://viaf.org/viaf/1020154381063830292487 LIH|LNB:_b__j__k_;=CB +http://viaf.org/viaf/1020154381063830292487 LIH@LNB:bjk;=CB +http://viaf.org/viaf/1020159234092003370594 RERO|A012346177 +http://viaf.org/viaf/1020159234092003370594 Identities@http://www.worldcat.org/identities/viaf-1020159234092003370594 +http://viaf.org/viaf/1020159234553503371963 RERO|A020122584 +http://viaf.org/viaf/1020159521631933070001 XR|VIAFWORK1021305017 +http://viaf.org/viaf/102017527 ISNI|0000000113066998 +http://viaf.org/viaf/102017527 LC@n81041943 +http://viaf.org/viaf/102017527 NUKAT@vtls000340013 +http://viaf.org/viaf/102017527 Identities@http://www.worldcat.org/identities/lccn-n81041943 +http://viaf.org/viaf/102017527 RERO|A025723446 +http://viaf.org/viaf/102017527 LC|n 81041943 +http://viaf.org/viaf/102017527 NUKAT|n 97033169 +http://viaf.org/viaf/102020145 NUKAT@vtls000178268 +http://viaf.org/viaf/102020145 Identities@http://www.worldcat.org/identities/viaf-102020145 +http://viaf.org/viaf/102020145 Wikipedia@http://pl.wikipedia.org/wiki/Leon_Chrapko +http://viaf.org/viaf/102020145 NUKAT|n 99002256 +http://viaf.org/viaf/102020145 WKP|Q11754216 +http://viaf.org/viaf/102020145 ISNI|0000000072058608 +http://viaf.org/viaf/102020145 PLWABN|9810575772805606 +http://viaf.org/viaf/102024655 LNB|LNC10-000226116 +http://viaf.org/viaf/102024655 ISNI|0000000386875555 +http://viaf.org/viaf/102024655 NUKAT|n 99009084 +http://viaf.org/viaf/102024655 NUKAT@vtls000193097 +http://viaf.org/viaf/102024655 LC|nb2007028618 +http://viaf.org/viaf/102024655 PLWABN|9810693002805606 +http://viaf.org/viaf/102024655 Identities@http://www.worldcat.org/identities/lccn-nb2007028618 +http://viaf.org/viaf/102036238 NUKAT|n 99030414 +http://viaf.org/viaf/102036238 NUKAT@vtls000139698 +http://viaf.org/viaf/102036238 ISNI|0000000071973644 +http://viaf.org/viaf/102036238 Identities@http://www.worldcat.org/identities/viaf-102036238 +http://viaf.org/viaf/102036238 PLWABN|9810595436205606 +http://viaf.org/viaf/102037129 NUKAT@vtls000657306 +http://viaf.org/viaf/102037129 ISNI|0000000117926553 +http://viaf.org/viaf/102037129 LC|nr2005025506 +http://viaf.org/viaf/102037129 PLWABN|9810661368505606 +http://viaf.org/viaf/102037129 NUKAT|n 99031598 +http://viaf.org/viaf/102037129 Identities@http://www.worldcat.org/identities/lccn-nr2005025506 +http://viaf.org/viaf/102042024 NUKAT|n 97086569 +http://viaf.org/viaf/102042024 PLWABN|9810559463505606 +http://viaf.org/viaf/102042024 ISNI|0000000072325278 +http://viaf.org/viaf/102042024 Identities@http://www.worldcat.org/identities/viaf-102042024 +http://viaf.org/viaf/102042024 NUKAT@vtls000547801 +http://viaf.org/viaf/10204286 ISNI|000000006312145X +http://viaf.org/viaf/102045148 NUKAT@vtls000335584 +http://viaf.org/viaf/102045148 NUKAT|n 99046822 +http://viaf.org/viaf/102045148 NSK|000214254 +http://viaf.org/viaf/102045148 ISNI|0000000072060310 +http://viaf.org/viaf/102045148 Identities@http://www.worldcat.org/identities/viaf-102045148 +http://viaf.org/viaf/102045148 PLWABN|9810693054605606 +http://viaf.org/viaf/102047876 BNF|12953134 +http://viaf.org/viaf/102047876 LC|n 82043443 +http://viaf.org/viaf/102047876 NTA|203398319 +http://viaf.org/viaf/102047876 NUKAT|n 99053525 +http://viaf.org/viaf/102047876 SUDOC|143329790 +http://viaf.org/viaf/102047876 WKP|Q17544578 +http://viaf.org/viaf/102047876 NII|DA13157785 +http://viaf.org/viaf/102047876 DNB|1153744600 +http://viaf.org/viaf/102047876 LIH|LNB:_g__w__d_;=CM +http://viaf.org/viaf/102047876 PLWABN|9810668736905606 +http://viaf.org/viaf/102047876 BAV|495_208419 +http://viaf.org/viaf/102047876 Wikipedia@http://pl.wikipedia.org/wiki/Jerzy_Kruppé +http://viaf.org/viaf/102047876 Identities@http://www.worldcat.org/identities/lccn-n82043443 +http://viaf.org/viaf/102047876 BNF@http://catalogue.bnf.fr/ark:/12148/cb12953134b +http://viaf.org/viaf/102047876 LC@n82043443 +http://viaf.org/viaf/102047876 NUKAT@vtls000378772 +http://viaf.org/viaf/102047876 DNB@http://d-nb.info/gnd/1153744600 +http://viaf.org/viaf/102047876 LIH@LNB:gwd;=CM +http://viaf.org/viaf/102047876 BAV@495/208419 +http://viaf.org/viaf/102047876 ISNI|0000000078357633 +http://viaf.org/viaf/102051880 NUKAT|n 99091630 +http://viaf.org/viaf/102051880 DNB|113575661 +http://viaf.org/viaf/102051880 ISNI|0000000071619901 +http://viaf.org/viaf/102051880 Identities@http://www.worldcat.org/identities/viaf-102051880 +http://viaf.org/viaf/102051880 NUKAT@vtls000589460 +http://viaf.org/viaf/102051880 DNB@http://d-nb.info/gnd/113575661 +http://viaf.org/viaf/102051880 PLWABN|9810560600105606 +http://viaf.org/viaf/102056786 NUKAT@vtls000626779 +http://viaf.org/viaf/102056786 ISNI|0000000072326289 +http://viaf.org/viaf/102056786 NUKAT|n 99711828 +http://viaf.org/viaf/102056786 Identities@http://www.worldcat.org/identities/viaf-102056786 +http://viaf.org/viaf/102059459 NUKAT|n 2002034654 +http://viaf.org/viaf/102059459 NUKAT@vtls001155760 +http://viaf.org/viaf/102059459 Identities@http://www.worldcat.org/identities/viaf-102059459 +http://viaf.org/viaf/102059459 ISNI|0000000072061444 +http://viaf.org/viaf/102059459 PLWABN|9810702537405606 +http://viaf.org/viaf/102059503 ISNI|0000000072415433 +http://viaf.org/viaf/102059503 NUKAT@vtls001156041 +http://viaf.org/viaf/102059503 Identities@http://www.worldcat.org/identities/viaf-102059503 +http://viaf.org/viaf/102059503 PLWABN|9810569161905606 +http://viaf.org/viaf/102059503 NUKAT|n 2002034695 +http://viaf.org/viaf/102064354 NUKAT@vtls001175470 +http://viaf.org/viaf/102064354 Identities@http://www.worldcat.org/identities/viaf-102064354 +http://viaf.org/viaf/102064354 ISNI|0000000071799148 +http://viaf.org/viaf/102064354 PLWABN|9810687609805606 +http://viaf.org/viaf/102064354 NUKAT|n 2002049417 +http://viaf.org/viaf/102065245 Identities@http://www.worldcat.org/identities/viaf-102065245 +http://viaf.org/viaf/102065245 NUKAT@vtls001137266 +http://viaf.org/viaf/102065245 PLWABN|9810630624605606 +http://viaf.org/viaf/102065245 ISNI|0000000071620929 +http://viaf.org/viaf/102065245 NUKAT|n 2002064818 +http://viaf.org/viaf/102065245 Wikipedia@http://pl.wikipedia.org/wiki/Stanisław_Pasławski +http://viaf.org/viaf/102065245 WKP|Q9342770 +http://viaf.org/viaf/102066587 PLWABN|9810639675005606 +http://viaf.org/viaf/102066587 NUKAT|n 2002067315 +http://viaf.org/viaf/102066587 ISNI|0000000373394269 +http://viaf.org/viaf/102066587 NUKAT@vtls001184430 +http://viaf.org/viaf/102066587 Identities@http://www.worldcat.org/identities/viaf-102066587 +http://viaf.org/viaf/102071031 NUKAT@vtls001187250 +http://viaf.org/viaf/102071031 LC|n 2001113290 +http://viaf.org/viaf/102071031 ISNI|0000000117780910 +http://viaf.org/viaf/102071031 NUKAT|n 2002095543 +http://viaf.org/viaf/102071031 Identities@http://www.worldcat.org/identities/lccn-n2001113290 +http://viaf.org/viaf/102071031 LC@n2001113290 +http://viaf.org/viaf/102080716 Wikipedia@http://pl.wikipedia.org/wiki/Leszek_Fidusiewicz +http://viaf.org/viaf/102080716 NUKAT@vtls001486856 +http://viaf.org/viaf/102080716 LC@n2020008105 +http://viaf.org/viaf/102080716 Identities@http://www.worldcat.org/identities/lccn-n2020008105 +http://viaf.org/viaf/102080716 WKP|Q11754952 +http://viaf.org/viaf/102080716 NUKAT|n 2003032448 +http://viaf.org/viaf/102080716 ISNI|0000000072149577 +http://viaf.org/viaf/102080716 PLWABN|9810547944405606 +http://viaf.org/viaf/102080716 LC|n 2020008105 +http://viaf.org/viaf/102085298 Wikipedia@http://pl.wikipedia.org/wiki/Ludwik_Zielonka +http://viaf.org/viaf/102085298 NUKAT@vtls001762854 +http://viaf.org/viaf/102085298 Identities@http://www.worldcat.org/identities/viaf-102085298 +http://viaf.org/viaf/102085298 ISNI|0000000071713324 +http://viaf.org/viaf/102085298 NUKAT|n 2003039370 +http://viaf.org/viaf/102085298 WKP|Q11764002 +http://viaf.org/viaf/102085298 PLWABN|9810581922805606 +http://viaf.org/viaf/102085298 RERO|A003421797 +http://viaf.org/viaf/102090517 NUKAT|n 2003047287 +http://viaf.org/viaf/102090517 ISNI|0000000071713834 +http://viaf.org/viaf/102090517 Identities@http://www.worldcat.org/identities/viaf-102090517 +http://viaf.org/viaf/102090517 NUKAT@vtls001545628 +http://viaf.org/viaf/102090517 PLWABN|9810677804705606 +http://viaf.org/viaf/102096034 ISNI|0000000072150770 +http://viaf.org/viaf/102096034 NUKAT|n 2003064963 +http://viaf.org/viaf/102096034 PLWABN|9810687515705606 +http://viaf.org/viaf/102096034 Identities@http://www.worldcat.org/identities/viaf-102096034 +http://viaf.org/viaf/102096034 NUKAT@vtls001525333 +http://viaf.org/viaf/10209687 Identities@http://www.worldcat.org/identities/viaf-10209687 +http://viaf.org/viaf/10209687 DNB@http://d-nb.info/gnd/101235739 +http://viaf.org/viaf/10209687 DNB|101235739 +http://viaf.org/viaf/10209687 RERO|A003768835 +http://viaf.org/viaf/102104845 PLWABN|9810641358305606 +http://viaf.org/viaf/102104845 ISNI|0000000071802263 +http://viaf.org/viaf/102104845 NKC|jcu2011660005 +http://viaf.org/viaf/102104845 NUKAT@vtls001739922 +http://viaf.org/viaf/102104845 NUKAT|n 2003086361 +http://viaf.org/viaf/102104845 Identities@http://www.worldcat.org/identities/viaf-102104845 +http://viaf.org/viaf/102109020 ISNI|0000000072065103 +http://viaf.org/viaf/102109020 NUKAT|n 2003094295 +http://viaf.org/viaf/102109020 NUKAT@vtls001510048 +http://viaf.org/viaf/102109020 Identities@http://www.worldcat.org/identities/viaf-102109020 +http://viaf.org/viaf/102109020 PLWABN|9810537251805606 +http://viaf.org/viaf/102111027 Identities@http://www.worldcat.org/identities/viaf-102111027 +http://viaf.org/viaf/102111027 NUKAT@vtls001606700 +http://viaf.org/viaf/102111027 PLWABN|9810583311905606 +http://viaf.org/viaf/102111027 NUKAT|n 2003097403 +http://viaf.org/viaf/102111027 ISNI|0000000072152055 +http://viaf.org/viaf/1021149544567700490006 NUKAT|n 2017036659 +http://viaf.org/viaf/1021149544567700490006 ERRR|a11152734 +http://viaf.org/viaf/1021149544567700490006 LIH|LNB:B_b_P8;=BS +http://viaf.org/viaf/1021149544567700490006 WKP|Q16406753 +http://viaf.org/viaf/1021149544567700490006 Wikipedia@http://et.wikipedia.org/wiki/Ülle-Marike_Papp +http://viaf.org/viaf/1021149544567700490006 LIH@LNB:BbP8;=BS +http://viaf.org/viaf/1021149544567700490006 NUKAT@vtls016404804 +http://viaf.org/viaf/1021149544567700490006 Identities@http://www.worldcat.org/identities/viaf-1021149544567700490006 +http://viaf.org/viaf/1021154380968230291237 LIH|LNB:JH_x_;=B_g_ +http://viaf.org/viaf/1021154380968230291237 LIH@LNB:JHx;=Bg +http://viaf.org/viaf/1021158188175920260002 GeoNames@http://www.geonames.org/3463401 +http://viaf.org/viaf/1021158188175920260002 BLBNB|001526946 +http://viaf.org/viaf/1021158188175920260002 WKP|Q22045154 +http://viaf.org/viaf/1021158188175920260002 Wikipedia@http://sv.wikipedia.org/wiki/Ilha_do_Ferro +http://viaf.org/viaf/1021158188175920260002 Wikipedia@http://ceb.wikipedia.org/wiki/Ilha_do_Ferro +http://viaf.org/viaf/1021159234571303372037 Identities@http://www.worldcat.org/identities/viaf-1021159234571303372037 +http://viaf.org/viaf/1021159234571303372037 RERO|A013094655 +http://viaf.org/viaf/1021159234629703372251 Identities@http://www.worldcat.org/identities/viaf-1021159234629703372251 +http://viaf.org/viaf/1021159234629703372251 RERO|A021975601 +http://viaf.org/viaf/1021159234720103372491 Identities@http://www.worldcat.org/identities/viaf-1021159234720103372491 +http://viaf.org/viaf/1021159234720103372491 RERO|A018331793 +http://viaf.org/viaf/1021159248374304870004 RERO|A009968806 +http://viaf.org/viaf/1021159474067827660894 CAOONL|ncf11756883 +http://viaf.org/viaf/102120388 PLWABN|9810663141905606 +http://viaf.org/viaf/102120388 NUKAT|n 2004030143 +http://viaf.org/viaf/102120388 Identities@http://www.worldcat.org/identities/viaf-102120388 +http://viaf.org/viaf/102120388 NUKAT@vtls001814673 +http://viaf.org/viaf/102120388 ISNI|0000000071803311 +http://viaf.org/viaf/102124898 NUKAT@vtls002071677 +http://viaf.org/viaf/102124898 PLWABN|9810701604305606 +http://viaf.org/viaf/102124898 ISNI|0000000072331870 +http://viaf.org/viaf/102124898 NUKAT|n 2004036849 +http://viaf.org/viaf/102124898 Identities@http://www.worldcat.org/identities/viaf-102124898 +http://viaf.org/viaf/102127291 LC@n2017187379 +http://viaf.org/viaf/102127291 NUKAT@vtls002181882 +http://viaf.org/viaf/102127291 Identities@http://www.worldcat.org/identities/lccn-n2017187379 +http://viaf.org/viaf/102127291 LC|n 2017187379 +http://viaf.org/viaf/102127291 ISNI|0000000071891518 +http://viaf.org/viaf/102127291 PLWABN|9810650813005606 +http://viaf.org/viaf/102127291 NUKAT|n 2004044232 +http://viaf.org/viaf/102132510 PLWABN|9810583301105606 +http://viaf.org/viaf/102132510 Identities@http://www.worldcat.org/identities/viaf-102132510 +http://viaf.org/viaf/102140980 NUKAT|n 2004085651 +http://viaf.org/viaf/102140980 ISNI|0000000071804699 +http://viaf.org/viaf/102140980 Identities@http://www.worldcat.org/identities/lccn-no2014158335 +http://viaf.org/viaf/102140980 NUKAT@vtls002129294 +http://viaf.org/viaf/102140980 LC|no2014158335 +http://viaf.org/viaf/102144647637782974050 BNF|16990042 +http://viaf.org/viaf/102144647637782974050 Identities@http://www.worldcat.org/identities/viaf-102144647637782974050 +http://viaf.org/viaf/102144647637782974050 BNF@http://catalogue.bnf.fr/ark:/12148/cb16990042b +http://viaf.org/viaf/102144647643764520252 BNF|16232784 +http://viaf.org/viaf/102144647643764520252 BNF@http://catalogue.bnf.fr/ark:/12148/cb162327847 +http://viaf.org/viaf/102145003783861341145 WKP|Q95277169 +http://viaf.org/viaf/102145003783861341145 DNB@http://d-nb.info/gnd/1079732772 +http://viaf.org/viaf/102145003783861341145 DNB|1079732772 +http://viaf.org/viaf/102145304386078570052 PLWABN|9810630883105606 +http://viaf.org/viaf/102145304386078570052 Identities@http://www.worldcat.org/identities/viaf-102145304386078570052 +http://viaf.org/viaf/102145541815796600992 DNB@http://d-nb.info/gnd/1131199715 +http://viaf.org/viaf/102145541815796600992 Identities@http://www.worldcat.org/identities/lccn-n2016002517 +http://viaf.org/viaf/102145541815796600992 J9U|987007394607505171 +http://viaf.org/viaf/102145541815796600992 LC|n 2016002517 +http://viaf.org/viaf/102145541815796600992 CAOONL|ncf12063741 +http://viaf.org/viaf/102145541815796600992 DNB|1131199715 +http://viaf.org/viaf/102145541815796600992 LC@n2016002517 +http://viaf.org/viaf/102145541816696600730 LC@n2016003873 +http://viaf.org/viaf/102145541816696600730 Identities@http://www.worldcat.org/identities/lccn-n2016003873 +http://viaf.org/viaf/102145541816696600730 LC|n 2016003873 +http://viaf.org/viaf/102145541821096600477 LC|no2015165497 +http://viaf.org/viaf/102145541821096600477 Identities@http://www.worldcat.org/identities/lccn-no2015165497 +http://viaf.org/viaf/102145541831196601696 Identities@http://www.worldcat.org/identities/lccn-no2015167646 +http://viaf.org/viaf/102145541831196601696 LC|no2015167646 +http://viaf.org/viaf/102145857077122922103 BNCHL@BNC10000000000000000097177 +http://viaf.org/viaf/102145857077122922103 Identities@http://www.worldcat.org/identities/viaf-102145857077122922103 +http://viaf.org/viaf/102145857077122922103 BNCHL|10000000000000000097177 +http://viaf.org/viaf/102145857109622922779 BNCHL|10000000000000000277598 +http://viaf.org/viaf/102145857109622922779 Identities@http://www.worldcat.org/identities/viaf-102145857109622922779 +http://viaf.org/viaf/102145857109622922779 BNCHL@BNC10000000000000000277598 +http://viaf.org/viaf/102145970053532250748 W2Z|1453362516993 +http://viaf.org/viaf/102145970053532250748 BIBSYS|1453362516993 +http://viaf.org/viaf/102146634401541931725 DNB|1103471996 +http://viaf.org/viaf/102146634401541931725 DNB@http://d-nb.info/gnd/1103471996 +http://viaf.org/viaf/102146634401541931725 Identities@http://www.worldcat.org/identities/viaf-102146634401541931725 +http://viaf.org/viaf/102147662848360550478 Wikipedia@http://pl.wikipedia.org/wiki/Grzegorz_Król_(artysta_ludowy) +http://viaf.org/viaf/102147662848360550478 Identities@http://www.worldcat.org/identities/viaf-102147662848360550478 +http://viaf.org/viaf/102147662848360550478 PLWABN|9810579521505606 +http://viaf.org/viaf/102147662848360550478 WKP|Q20029457 +http://viaf.org/viaf/102147662954260550860 PLWABN|9810664003505606 +http://viaf.org/viaf/102147662954260550860 Identities@http://www.worldcat.org/identities/viaf-102147662954260550860 +http://viaf.org/viaf/102148207847000341490 PLWABN|9810638995005606 +http://viaf.org/viaf/102148207847000341490 NUKAT|n 2020208085 +http://viaf.org/viaf/102148207847000341490 NUKAT@vtls019407726 +http://viaf.org/viaf/102148207847000341490 Identities@http://www.worldcat.org/identities/viaf-102148207847000341490 +http://viaf.org/viaf/102148207973700342818 PLWABN|9810704894205606 +http://viaf.org/viaf/102148207973700342818 Identities@http://www.worldcat.org/identities/viaf-102148207973700342818 +http://viaf.org/viaf/102148995761559750807 BIBSYS|90298290 +http://viaf.org/viaf/102149066565865601619 BIBSYS|11080770 +http://viaf.org/viaf/102149105998768490163 BIBSYS|58451 +http://viaf.org/viaf/102149106275168492382 BIBSYS|9006004 +http://viaf.org/viaf/102149196496674791823 BIBSYS|15044009 +http://viaf.org/viaf/102149196508574791996 BIBSYS|3028461 +http://viaf.org/viaf/102149196553474792619 BIBSYS|3086081 +http://viaf.org/viaf/102149717568510951522 Identities@http://www.worldcat.org/identities/viaf-102149717568510951522 +http://viaf.org/viaf/102149717568510951522 SUDOC|199828121 +http://viaf.org/viaf/102149717632910952374 Identities@http://www.worldcat.org/identities/viaf-102149717632910952374 +http://viaf.org/viaf/102149717632910952374 SUDOC|199742022 +http://viaf.org/viaf/102149945 ISNI|0000000071893185 +http://viaf.org/viaf/102149945 NUKAT@vtls002170457 +http://viaf.org/viaf/102149945 Identities@http://www.worldcat.org/identities/viaf-102149945 +http://viaf.org/viaf/102149945 PLWABN|9810579530605606 +http://viaf.org/viaf/102149945 NUKAT|n 2004251045 +http://viaf.org/viaf/102152138554010980156 PLWABN|9810609199305606 +http://viaf.org/viaf/102152138554010980156 Identities@http://www.worldcat.org/identities/viaf-102152138554010980156 +http://viaf.org/viaf/102152561621615442609 LC|no2018059101 +http://viaf.org/viaf/102152561621615442609 Identities@http://www.worldcat.org/identities/lccn-no2018059101 +http://viaf.org/viaf/102152636060720050702 Identities@http://www.worldcat.org/identities/viaf-102152636060720050702 +http://viaf.org/viaf/102152636060720050702 DNB|1157699162 +http://viaf.org/viaf/102152636060720050702 DNB@http://d-nb.info/gnd/1157699162 +http://viaf.org/viaf/102152636205720052767 NII|DA18885156 +http://viaf.org/viaf/102152742899927731271 DE663|pe30039770 +http://viaf.org/viaf/102153003 PLWABN|9810559349505606 +http://viaf.org/viaf/102153003 ISNI|0000000071893388 +http://viaf.org/viaf/102153003 LC|no2007058101 +http://viaf.org/viaf/102153003 Identities@http://www.worldcat.org/identities/lccn-no2007058101 +http://viaf.org/viaf/102153003 NUKAT|n 2004259245 +http://viaf.org/viaf/102153003 NUKAT@vtls002314598 +http://viaf.org/viaf/102153124263324490687 SUDOC|22749900X +http://viaf.org/viaf/102153124263324490687 Identities@http://www.worldcat.org/identities/viaf-102153124263324490687 +http://viaf.org/viaf/102153409681941580271 KRNLK|KAC201856630 +http://viaf.org/viaf/102153409681941580271 ISNI|0000000467802905 +http://viaf.org/viaf/102153409755741582404 ISNI|0000000467728127 +http://viaf.org/viaf/102153409755741582404 Identities@http://www.worldcat.org/identities/viaf-102153409755741582404 +http://viaf.org/viaf/102153409755741582404 KRNLK|KAC201841465 +http://viaf.org/viaf/102153409779941582767 KRNLK|KAC201852404 +http://viaf.org/viaf/102153409779941582767 ISNI|000000046777414X +http://viaf.org/viaf/102154075974911860005 DNB@http://d-nb.info/gnd/1169953743 +http://viaf.org/viaf/102154075974911860005 Wikipedia@http://de.wikipedia.org/wiki/Christian_Schlichter +http://viaf.org/viaf/102154075974911860005 WKP|Q1081742 +http://viaf.org/viaf/102154075974911860005 DNB|1169953743 +http://viaf.org/viaf/102154380991530291442 LIH|LNB:B65C;=_l_R +http://viaf.org/viaf/102154380991530291442 LIH@LNB:B65C;=lR +http://viaf.org/viaf/102154381047930291917 LIH@LNB:7Qq;=Bf +http://viaf.org/viaf/102154381047930291917 LIH|LNB:7Q_q_;=B_f_ +http://viaf.org/viaf/102154590090343080852 KRNLK|KAC2018E3651 +http://viaf.org/viaf/102154590090343080852 ISNI|0000000473546848 +http://viaf.org/viaf/102154590232443082385 ISNI|0000000474003511 +http://viaf.org/viaf/102154590232443082385 KRNLK|KAC2018E1908 +http://viaf.org/viaf/102155707143122411725 SELIBR|s3v9z21wq61gsj27 +http://viaf.org/viaf/102156563347923240509 ISNI|0000000476824612 +http://viaf.org/viaf/102156563347923240509 KRNLK|KAC201944911 +http://viaf.org/viaf/102156563347923240509 Identities@http://www.worldcat.org/identities/viaf-102156563347923240509 +http://viaf.org/viaf/102158790785638852712 LC|no2020052494 +http://viaf.org/viaf/102158790785638852712 Identities@http://www.worldcat.org/identities/lccn-no2020052494 +http://viaf.org/viaf/102158855 PLWABN|9810587203605606 +http://viaf.org/viaf/102158855 ISNI|000000007180615X +http://viaf.org/viaf/102158855 NUKAT@vtls002394831 +http://viaf.org/viaf/102158855 NUKAT|n 2005031516 +http://viaf.org/viaf/102158855 Identities@http://www.worldcat.org/identities/viaf-102158855 +http://viaf.org/viaf/102159032817301182362 Identities@http://www.worldcat.org/identities/lccn-no2020061471 +http://viaf.org/viaf/102159032817301182362 LC|no2020061471 +http://viaf.org/viaf/102159234074403370558 RERO|A003055215 +http://viaf.org/viaf/102159234074403370558 Identities@http://www.worldcat.org/identities/viaf-102159234074403370558 +http://viaf.org/viaf/102159397447719301796 Identities@http://www.worldcat.org/identities/viaf-102159397447719301796 +http://viaf.org/viaf/102159397447719301796 CAOONL|ncf10824317 +http://viaf.org/viaf/102159397447719301796 B2Q|ncf10824317 +http://viaf.org/viaf/102165983 NTA|128176075 +http://viaf.org/viaf/102172660 NKC|mzk2013748308 +http://viaf.org/viaf/102172660 ISNI|0000000072069868 +http://viaf.org/viaf/102172660 WKP|Q23071643 +http://viaf.org/viaf/102172660 PLWABN|9810696978805606 +http://viaf.org/viaf/102172660 Wikipedia@http://pl.wikipedia.org/wiki/Grzegorz_Dowlasz +http://viaf.org/viaf/102172660 Identities@http://www.worldcat.org/identities/viaf-102172660 +http://viaf.org/viaf/102172660 NUKAT|n 2005113177 +http://viaf.org/viaf/102172660 NUKAT@vtls002420720 +http://viaf.org/viaf/102175784 PLWABN|9810601770905606 +http://viaf.org/viaf/102175784 NUKAT|n 2005121545 +http://viaf.org/viaf/102175784 NUKAT@vtls002813352 +http://viaf.org/viaf/102175784 Identities@http://www.worldcat.org/identities/viaf-102175784 +http://viaf.org/viaf/102175784 ISNI|0000000072070092 +http://viaf.org/viaf/102176224 LIH|LNB:CX0_o_;=B_g_ +http://viaf.org/viaf/102176224 NUKAT|n 2005122604 +http://viaf.org/viaf/102176224 ISNI|0000000071895260 +http://viaf.org/viaf/102176224 PLWABN|9810629330105606 +http://viaf.org/viaf/102176224 NUKAT@vtls003125744 +http://viaf.org/viaf/102176224 RERO|A012086274 +http://viaf.org/viaf/102176224 LIH@LNB:CX0o;=Bg +http://viaf.org/viaf/102176224 Identities@http://www.worldcat.org/identities/viaf-102176224 +http://viaf.org/viaf/102176224 NKC|js2014837429 +http://viaf.org/viaf/102185909 LNB|LNC10-000130391 +http://viaf.org/viaf/102185909 Identities@http://www.worldcat.org/identities/viaf-102185909 +http://viaf.org/viaf/102185909 PLWABN|9810639907705606 +http://viaf.org/viaf/102185909 NUKAT@vtls003601396 +http://viaf.org/viaf/102185909 NUKAT|n 2006001261 +http://viaf.org/viaf/102198554 ISNI|0000000072247281 +http://viaf.org/viaf/102198554 NUKAT@vtls003726027 +http://viaf.org/viaf/102198554 Identities@http://www.worldcat.org/identities/viaf-102198554 +http://viaf.org/viaf/102198554 NUKAT|n 2006097597 +http://viaf.org/viaf/102214438 ISNI|0000000071810669 +http://viaf.org/viaf/1022145424602586830819 XR|VIAFWORK24870684 +http://viaf.org/viaf/1022145857003022921052 DNB|1085836894 +http://viaf.org/viaf/1022145857003022921052 Identities@http://www.worldcat.org/identities/viaf-1022145857003022921052 +http://viaf.org/viaf/1022145857003022921052 DNB@http://d-nb.info/gnd/1085836894 +http://viaf.org/viaf/1022159234413103371649 Identities@http://www.worldcat.org/identities/viaf-1022159234413103371649 +http://viaf.org/viaf/1022159234413103371649 RERO|A023116917 +http://viaf.org/viaf/1022159234641703372289 RERO|A018556919 +http://viaf.org/viaf/102218173 LIH@LNB:V*354037;=BI +http://viaf.org/viaf/102218173 NUKAT|n 2007006405 +http://viaf.org/viaf/102218173 ISNI|0000000071723661 +http://viaf.org/viaf/102218173 RERO|A006389498 +http://viaf.org/viaf/102218173 PLWABN|9810692232405606 +http://viaf.org/viaf/102218173 LIH|LNB:V-354037;=BI +http://viaf.org/viaf/102218173 WKP|Q4183585 +http://viaf.org/viaf/102218173 Wikipedia@http://ru.wikipedia.org/wiki/Загорский,_Аполинарий +http://viaf.org/viaf/102218173 Identities@http://www.worldcat.org/identities/viaf-102218173 +http://viaf.org/viaf/102218173 NUKAT@vtls004621730 +http://viaf.org/viaf/10222925 RERO|A009306109 +http://viaf.org/viaf/10222925 Identities@http://www.worldcat.org/identities/viaf-10222925 +http://viaf.org/viaf/10222925 DNB|101844654 +http://viaf.org/viaf/10222925 DNB@http://d-nb.info/gnd/101844654 +http://viaf.org/viaf/102240772 PLWABN|9810631396505606 +http://viaf.org/viaf/102240772 ISNI|0000000071725296 +http://viaf.org/viaf/102240772 NUKAT|n 2007144833 +http://viaf.org/viaf/102240772 Identities@http://www.worldcat.org/identities/viaf-102240772 +http://viaf.org/viaf/102240772 NUKAT@vtls004405003 +http://viaf.org/viaf/102251013 PLWABN|9810592944005606 +http://viaf.org/viaf/102255028 Identities@http://www.worldcat.org/identities/viaf-102255028 +http://viaf.org/viaf/102255028 ISNI|0000000072341825 +http://viaf.org/viaf/102255028 NUKAT|n 2008080009 +http://viaf.org/viaf/102255028 NUKAT@vtls004888074 +http://viaf.org/viaf/102262651 NUKAT|n 2008112846 +http://viaf.org/viaf/102262651 Identities@http://www.worldcat.org/identities/viaf-102262651 +http://viaf.org/viaf/102262651 ISNI|000000007225238X +http://viaf.org/viaf/102262651 NUKAT@vtls005409841 +http://viaf.org/viaf/102262651 PLWABN|9810627975005606 +http://viaf.org/viaf/102268943 NUKAT@vtls005403271 +http://viaf.org/viaf/102268943 NUKAT|n 2008135266 +http://viaf.org/viaf/102268943 ISNI|0000000116947328 +http://viaf.org/viaf/102268943 NTA|29276538X +http://viaf.org/viaf/102268943 Identities@http://www.worldcat.org/identities/viaf-102268943 +http://viaf.org/viaf/102269834 Identities@http://www.worldcat.org/identities/viaf-102269834 +http://viaf.org/viaf/102269834 ISNI|0000000373417053 +http://viaf.org/viaf/102269834 PLWABN|9810695379205606 +http://viaf.org/viaf/102269834 NUKAT|n 2008138365 +http://viaf.org/viaf/102269834 NUKAT@vtls005511389 +http://viaf.org/viaf/102277853 Identities@http://www.worldcat.org/identities/viaf-102277853 +http://viaf.org/viaf/102277853 NUKAT@vtls005935344 +http://viaf.org/viaf/102277853 PLWABN|9810565939205606 +http://viaf.org/viaf/102277853 Wikipedia@http://pl.wikipedia.org/wiki/Janusz_Tartyłło +http://viaf.org/viaf/102277853 NUKAT|n 2009046309 +http://viaf.org/viaf/102277853 ISNI|0000000071641017 +http://viaf.org/viaf/102277853 WKP|Q11720527 +http://viaf.org/viaf/102283144 NUKAT|n 2009082811 +http://viaf.org/viaf/102283144 Identities@http://www.worldcat.org/identities/viaf-102283144 +http://viaf.org/viaf/102283144 NUKAT@vtls005783202 +http://viaf.org/viaf/102283144 ISNI|0000000071903507 +http://viaf.org/viaf/102283144 PLWABN|9810607327205606 +http://viaf.org/viaf/102293891 PLWABN|9810577972805606 +http://viaf.org/viaf/102293891 NUKAT@vtls005699483 +http://viaf.org/viaf/102293891 Identities@http://www.worldcat.org/identities/viaf-102293891 +http://viaf.org/viaf/102293891 ISNI|0000000072079097 +http://viaf.org/viaf/102293891 NUKAT|n 2009121560 +http://viaf.org/viaf/102293891 BLBNB|000468333 +http://viaf.org/viaf/102295222 NUKAT@vtls005810176 +http://viaf.org/viaf/102295222 LC|n 2005049095 +http://viaf.org/viaf/102295222 NUKAT|n 2009125176 +http://viaf.org/viaf/102295222 Wikipedia@http://de.wikipedia.org/wiki/Josef_Schüßlburner +http://viaf.org/viaf/102295222 ISNI|0000000078724069 +http://viaf.org/viaf/102295222 DNB@http://d-nb.info/gnd/12864852X +http://viaf.org/viaf/102295222 DNB|12864852X +http://viaf.org/viaf/102295222 PLWABN|9810589480805606 +http://viaf.org/viaf/102295222 WKP|Q1705735 +http://viaf.org/viaf/102295222 LC@n2005049095 +http://viaf.org/viaf/102295222 Identities@http://www.worldcat.org/identities/lccn-n2005049095 +http://viaf.org/viaf/102295673 NUKAT@vtls005872577 +http://viaf.org/viaf/102295673 ISNI|0000000071540718 +http://viaf.org/viaf/102295673 DNB|137111223 +http://viaf.org/viaf/102295673 DNB@http://d-nb.info/gnd/137111223 +http://viaf.org/viaf/102295673 Identities@http://www.worldcat.org/identities/viaf-102295673 +http://viaf.org/viaf/102295673 Wikipedia@http://pl.wikipedia.org/wiki/Benedykt_Woyna +http://viaf.org/viaf/102295673 Wikipedia@http://lt.wikipedia.org/wiki/Benediktas_Vaina +http://viaf.org/viaf/102295673 Wikipedia@http://be_x_old.wikipedia.org/wiki/Бэнэдыкт_Война +http://viaf.org/viaf/102295673 LIH@LNB:BxN2;=Bg +http://viaf.org/viaf/102295673 Wikipedia@http://be.wikipedia.org/wiki/Бенедыкт_Война +http://viaf.org/viaf/102295673 NUKAT|n 2009126984 +http://viaf.org/viaf/102295673 LIH|LNB:B_x_N2;=B_g_ +http://viaf.org/viaf/102295673 PLWABN|9810702266405606 +http://viaf.org/viaf/102295673 WKP|Q3919537 +http://viaf.org/viaf/102298797 NUKAT@vtls005662989 +http://viaf.org/viaf/102298797 ISNI|0000000072167150 +http://viaf.org/viaf/102298797 PLWABN|9810586277905606 +http://viaf.org/viaf/102298797 Identities@http://www.worldcat.org/identities/viaf-102298797 +http://viaf.org/viaf/102298797 NUKAT|n 2009140703 +http://viaf.org/viaf/102313339 BIBSYS|9068559 +http://viaf.org/viaf/102313339 SELIBR|328772 +http://viaf.org/viaf/102313339 ISNI|0000000084586555 +http://viaf.org/viaf/102313339 BNF@http://catalogue.bnf.fr/ark:/12148/cb16551746c +http://viaf.org/viaf/102313339 SELIBR@jgvz47c20dtb6fd +http://viaf.org/viaf/102313339 LC|nb2010019461 +http://viaf.org/viaf/102313339 BNF|16551746 +http://viaf.org/viaf/102313339 Identities@http://www.worldcat.org/identities/lccn-nb2010019461 +http://viaf.org/viaf/1023145424673586830207 XR|VIAFWORK1383182 +http://viaf.org/viaf/1023145857875623020718 BNCHL|10000000000000000210766 +http://viaf.org/viaf/1023145857875623020718 BNCHL@BNC10000000000000000210766 +http://viaf.org/viaf/1023153184539027100002 DNB|1162523271 +http://viaf.org/viaf/1023153184539027100002 Identities@http://www.worldcat.org/identities/viaf-1023153184539027100002 +http://viaf.org/viaf/1023153184539027100002 DNB@http://d-nb.info/gnd/1162523271 +http://viaf.org/viaf/1023154381057930291993 LIH@LNB:PmU;=Bo +http://viaf.org/viaf/1023154381057930291993 LIH|LNB:P_m_U;=B_o_ +http://viaf.org/viaf/1023155284785587061414 RERO|A025694319 +http://viaf.org/viaf/1023155284785587061414 DNB|107738338X +http://viaf.org/viaf/1023155284785587061414 Identities@http://www.worldcat.org/identities/viaf-1023155284785587061414 +http://viaf.org/viaf/1023155284785587061414 DNB@http://d-nb.info/gnd/107738338X +http://viaf.org/viaf/1023157470192722640004 DNB@http://d-nb.info/gnd/1200034201 +http://viaf.org/viaf/1023157470192722640004 DNB|1200034201 +http://viaf.org/viaf/1023159234404603371469 RERO|A012443563 +http://viaf.org/viaf/1023159234404603371469 Identities@http://www.worldcat.org/identities/viaf-1023159234404603371469 +http://viaf.org/viaf/1023159234567403371975 RERO|A020103298 +http://viaf.org/viaf/1023159234567403371975 Identities@http://www.worldcat.org/identities/viaf-1023159234567403371975 +http://viaf.org/viaf/1023159234871303372962 RERO|A012462643 +http://viaf.org/viaf/1023159234871303372962 Identities@http://www.worldcat.org/identities/viaf-1023159234871303372962 +http://viaf.org/viaf/102340069 BNF@http://catalogue.bnf.fr/ark:/12148/cb13181860q +http://viaf.org/viaf/102340069 LIH|LNB:RXH;=BO +http://viaf.org/viaf/102340069 KRNLK|KAC200802022 +http://viaf.org/viaf/102340069 NSK|000666424 +http://viaf.org/viaf/102340069 PLWABN|9810550989705606 +http://viaf.org/viaf/102340069 J9U|987007579341805171 +http://viaf.org/viaf/102340069 CAOONL|ncf10862498 +http://viaf.org/viaf/102340069 RERO|A009309124 +http://viaf.org/viaf/102340069 RERO|A003345261 +http://viaf.org/viaf/102340069 Identities@http://www.worldcat.org/identities/lccn-nb97078083 +http://viaf.org/viaf/102340069 DBC@870979.68388422 +http://viaf.org/viaf/102340069 SUDOC|140489436 +http://viaf.org/viaf/102340069 LC@nb97078083 +http://viaf.org/viaf/102340069 NUKAT@vtls000287269 +http://viaf.org/viaf/102340069 PTBNP|707969 +http://viaf.org/viaf/102340069 NUKAT|n 01020068 +http://viaf.org/viaf/102340069 NTA|148246559 +http://viaf.org/viaf/102340069 NKC|xx0017153 +http://viaf.org/viaf/102340069 LNB|LNC10-000038379 +http://viaf.org/viaf/102340069 LC|nb 97078083 +http://viaf.org/viaf/102340069 ISNI|0000000121458932 +http://viaf.org/viaf/102340069 EGAXA|vtls002417106 +http://viaf.org/viaf/102340069 DBC|87097968388422 +http://viaf.org/viaf/102340069 BNF|13181860 +http://viaf.org/viaf/102340069 B2Q|0000683766 +http://viaf.org/viaf/102344128 BNE|XX1596774 +http://viaf.org/viaf/102344128 Identities@http://www.worldcat.org/identities/viaf-102344128 +http://viaf.org/viaf/102344128 ISNI|0000000073212953 +http://viaf.org/viaf/102359050 Identities@http://www.worldcat.org/identities/viaf-102359050 +http://viaf.org/viaf/102359050 BNE|XX4867732 +http://viaf.org/viaf/102360210 BNE|XX4869144 +http://viaf.org/viaf/102360210 SUDOC|079303315 +http://viaf.org/viaf/102360210 WKP|Q55835433 +http://viaf.org/viaf/102360210 Identities@http://www.worldcat.org/identities/viaf-102360210 +http://viaf.org/viaf/102360661 Identities@http://www.worldcat.org/identities/viaf-102360661 +http://viaf.org/viaf/102360661 BNE|XX4869369 +http://viaf.org/viaf/102368735 LC|n 80074373 +http://viaf.org/viaf/102368735 BNE|XX825417 +http://viaf.org/viaf/102368735 NTA|073650536 +http://viaf.org/viaf/102368735 NDL|01069769 +http://viaf.org/viaf/102368735 Identities@http://www.worldcat.org/identities/lccn-n80074373 +http://viaf.org/viaf/102368735 LC@n80074373 +http://viaf.org/viaf/102368735 NII|DA02101778 +http://viaf.org/viaf/102373586 RERO|A008729062 +http://viaf.org/viaf/102373586 BNF|11100901 +http://viaf.org/viaf/102373586 ISNI|0000000072783949 +http://viaf.org/viaf/102373586 Identities@http://www.worldcat.org/identities/viaf-102373586 +http://viaf.org/viaf/102373586 BNF@http://catalogue.bnf.fr/ark:/12148/cb111009019 +http://viaf.org/viaf/102374477 LC|n 2012034610 +http://viaf.org/viaf/102374477 ISNI|0000000073105066 +http://viaf.org/viaf/102374477 BNF|11691630 +http://viaf.org/viaf/102374477 Identities@http://www.worldcat.org/identities/lccn-n2012034610 +http://viaf.org/viaf/102374477 LC@n2012034610 +http://viaf.org/viaf/102374477 BNF@http://catalogue.bnf.fr/ark:/12148/cb116916301 +http://viaf.org/viaf/102382496 NLA|000035524035 +http://viaf.org/viaf/102383882 Identities@http://www.worldcat.org/identities/lccn-n88601274 +http://viaf.org/viaf/102383882 DNB@http://d-nb.info/gnd/1055348328 +http://viaf.org/viaf/102383882 BNF@http://catalogue.bnf.fr/ark:/12148/cb12328287r +http://viaf.org/viaf/102383882 Wikipedia@http://ru.wikipedia.org/wiki/Лавуа,_Анри_Мишель +http://viaf.org/viaf/102383882 Wikipedia@http://it.wikipedia.org/wiki/Henri_Michel_Lavoix +http://viaf.org/viaf/102383882 RERO|A000103142 +http://viaf.org/viaf/102383882 NTA|074680420 +http://viaf.org/viaf/102383882 BNF|12328287 +http://viaf.org/viaf/102383882 WKP|Q3784862 +http://viaf.org/viaf/102383882 DNB|1055348328 +http://viaf.org/viaf/102383882 J9U|987007278010505171 +http://viaf.org/viaf/102383882 SUDOC|032207107 +http://viaf.org/viaf/102383882 NLA|000035243680 +http://viaf.org/viaf/102383882 NII|DA13265890 +http://viaf.org/viaf/102383882 LC|n 88601274 +http://viaf.org/viaf/102383882 ISNI|0000000081709660 +http://viaf.org/viaf/102383882 RERO|A003501471 +http://viaf.org/viaf/102383882 LIH|LNB:BS7G;=1A +http://viaf.org/viaf/102383882 PTBNP|1743619 +http://viaf.org/viaf/102383882 LC@n88601274 +http://viaf.org/viaf/102388337 BNF|12563225 +http://viaf.org/viaf/102388337 BIBSYS|90970365 +http://viaf.org/viaf/102388337 LC|n 98062982 +http://viaf.org/viaf/102388337 ISNI|0000000073160639 +http://viaf.org/viaf/102388337 Identities@http://www.worldcat.org/identities/lccn-n98062982 +http://viaf.org/viaf/102388337 BNF@http://catalogue.bnf.fr/ark:/12148/cb125632255 +http://viaf.org/viaf/102388337 SELIBR@53hkl8lp3vbd65j +http://viaf.org/viaf/102388337 LC@n98062982 +http://viaf.org/viaf/102388337 SELIBR|205131 +http://viaf.org/viaf/102388337 SUDOC|034931929 +http://viaf.org/viaf/1024150325518210090000 BLBNB|000620392 +http://viaf.org/viaf/1024152636064720051266 DNB@http://d-nb.info/gnd/1158387253 +http://viaf.org/viaf/1024152636064720051266 DNB|1158387253 +http://viaf.org/viaf/1024152636064720051266 Identities@http://www.worldcat.org/identities/viaf-1024152636064720051266 +http://viaf.org/viaf/1024152636074320051555 DNB@http://d-nb.info/gnd/1158577125 +http://viaf.org/viaf/1024152636074320051555 DNB|1158577125 +http://viaf.org/viaf/1024152636074320051555 Identities@http://www.worldcat.org/identities/lccn-no00065641 +http://viaf.org/viaf/1024154380969430291398 LIH|LNB:N_h_E;=BR +http://viaf.org/viaf/1024154380969430291398 LIH@LNB:NhE;=BR +http://viaf.org/viaf/102428828 Identities@http://www.worldcat.org/identities/lccn-no2011041301 +http://viaf.org/viaf/102428828 BNF@http://catalogue.bnf.fr/ark:/12148/cb16159067n +http://viaf.org/viaf/102428828 LC|no2011041301 +http://viaf.org/viaf/102428828 BNF|16159067 +http://viaf.org/viaf/102428828 ISNI|0000000072786242 +http://viaf.org/viaf/102442589 DNB@http://d-nb.info/gnd/132490846 +http://viaf.org/viaf/102442589 DNB|132490846 +http://viaf.org/viaf/102442589 ISNI|0000000072947050 +http://viaf.org/viaf/102443524 Identities@http://www.worldcat.org/identities/viaf-102443524 +http://viaf.org/viaf/102443524 WKP|Q95137915 +http://viaf.org/viaf/102443524 NKC|jn20001227757 +http://viaf.org/viaf/102444910 PLWABN|9811300549705606 +http://viaf.org/viaf/102444910 BAV|495_253915 +http://viaf.org/viaf/102444910 LC|n 90719386 +http://viaf.org/viaf/102444910 BNF|16906860 +http://viaf.org/viaf/102444910 ISNI|0000000117782940 +http://viaf.org/viaf/102444910 Identities@http://www.worldcat.org/identities/lccn-n90719386 +http://viaf.org/viaf/102444910 DNB@http://d-nb.info/gnd/11947428X +http://viaf.org/viaf/102444910 BAV@495/253915 +http://viaf.org/viaf/102444910 DNB|104084464 +http://viaf.org/viaf/102444910 LC@n90719386 +http://viaf.org/viaf/102444910 BNF@http://catalogue.bnf.fr/ark:/12148/cb169068602 +http://viaf.org/viaf/102444910 DNB@http://d-nb.info/gnd/104084464 +http://viaf.org/viaf/102444910 DNB|11947428X +http://viaf.org/viaf/102444910 WKP|Q87070021 +http://viaf.org/viaf/102445306 ORCID@http://orcid.org/0000-0001-5594-2220 +http://viaf.org/viaf/102445306 DNB|13905216X +http://viaf.org/viaf/102445306 WKP|Q85878499 +http://viaf.org/viaf/102445306 DNB@http://d-nb.info/gnd/13905216X +http://viaf.org/viaf/102451994 DNB@http://d-nb.info/gnd/134845870 +http://viaf.org/viaf/102451994 Identities@http://www.worldcat.org/identities/viaf-102451994 +http://viaf.org/viaf/102451994 DNB|134845870 +http://viaf.org/viaf/102461795 DNB@http://d-nb.info/gnd/120759241 +http://viaf.org/viaf/102461795 LC@n00037163 +http://viaf.org/viaf/102461795 Identities@http://www.worldcat.org/identities/lccn-n00037163 +http://viaf.org/viaf/102461795 DNB|120759241 +http://viaf.org/viaf/102461795 RERO|A005732208 +http://viaf.org/viaf/102461795 ISNI|0000000073163979 +http://viaf.org/viaf/102461795 LC|n 00037163 +http://viaf.org/viaf/102467636 NKC|jx20080708032 +http://viaf.org/viaf/102470254 NKC|xx0100524 +http://viaf.org/viaf/102471640 LC|n 85349900 +http://viaf.org/viaf/102471640 NTA|072149418 +http://viaf.org/viaf/102471640 DNB|134624149 +http://viaf.org/viaf/102471640 ISNI|0000000117783126 +http://viaf.org/viaf/102471640 NUKAT|n 2007009343 +http://viaf.org/viaf/102471640 LC@n85349900 +http://viaf.org/viaf/102471640 NUKAT@vtls004731833 +http://viaf.org/viaf/102471640 DNB@http://d-nb.info/gnd/134624149 +http://viaf.org/viaf/102471640 Identities@http://www.worldcat.org/identities/lccn-n85349900 +http://viaf.org/viaf/102471640 RERO|A027582518 +http://viaf.org/viaf/102471640 J9U|987007335056305171 +http://viaf.org/viaf/102472531 B2Q|0000095651 +http://viaf.org/viaf/102472531 Identities@http://www.worldcat.org/identities/lccn-n81100542 +http://viaf.org/viaf/102472531 LC|n 81100542 +http://viaf.org/viaf/102472531 CAOONL|ncf10002415 +http://viaf.org/viaf/102472531 LC@n81100542 +http://viaf.org/viaf/102472531 ISNI|000000007390145X +http://viaf.org/viaf/102475204 Identities@http://www.worldcat.org/identities/lccn-n2005060521 +http://viaf.org/viaf/102475204 LC@n2005060521 +http://viaf.org/viaf/102475204 J9U|987007435187905171 +http://viaf.org/viaf/102475204 LC|n 2005060521 +http://viaf.org/viaf/102482288 NKC|xx0002089 +http://viaf.org/viaf/102493024 NLA|000035841986 +http://viaf.org/viaf/10249386 DNB|102987750 +http://viaf.org/viaf/10249386 BIBSYS|99052347 +http://viaf.org/viaf/10249386 DNB@http://d-nb.info/gnd/102987750 +http://viaf.org/viaf/102512527 ISNI|0000000073219338 +http://viaf.org/viaf/102512527 DNB@http://d-nb.info/gnd/139649263 +http://viaf.org/viaf/102512527 Identities@http://www.worldcat.org/identities/viaf-102512527 +http://viaf.org/viaf/102512527 DNB|139649263 +http://viaf.org/viaf/1025145857140122922950 DNB|1089267177 +http://viaf.org/viaf/1025145857140122922950 Identities@http://www.worldcat.org/identities/viaf-1025145857140122922950 +http://viaf.org/viaf/1025145857140122922950 DNB@http://d-nb.info/gnd/1089267177 +http://viaf.org/viaf/1025154381143130292844 LIH|LNB:_o_P_e_;=B0 +http://viaf.org/viaf/1025154381143130292844 LIH@LNB:oPe;=B0 +http://viaf.org/viaf/1025156012372749700001 NLA|000040241458 +http://viaf.org/viaf/1025156012372749700001 Identities@http://www.worldcat.org/identities/viaf-1025156012372749700001 +http://viaf.org/viaf/1025156012372749700001 PLWABN|9810584600305606 +http://viaf.org/viaf/1025159234108003370715 Identities@http://www.worldcat.org/identities/viaf-1025159234108003370715 +http://viaf.org/viaf/1025159234108003370715 RERO|A020317114 +http://viaf.org/viaf/1025159234579803372003 Identities@http://www.worldcat.org/identities/viaf-1025159234579803372003 +http://viaf.org/viaf/1025159234579803372003 RERO|A016484771 +http://viaf.org/viaf/1025159474070727660558 CAOONL|ncf11442887 +http://viaf.org/viaf/1025159521678033070008 XR|VIAFEXP1155807875 +http://viaf.org/viaf/102517153 DNB|139654526 +http://viaf.org/viaf/102517153 DE663|pe30062395 +http://viaf.org/viaf/102517153 DNB@http://d-nb.info/gnd/139654526 +http://viaf.org/viaf/102517153 Identities@http://www.worldcat.org/identities/viaf-102517153 +http://viaf.org/viaf/102517928 DNB@http://d-nb.info/gnd/139655395 +http://viaf.org/viaf/102517928 DNB|139655395 +http://viaf.org/viaf/102521437 DNB|139659382 +http://viaf.org/viaf/102521437 Identities@http://www.worldcat.org/identities/viaf-102521437 +http://viaf.org/viaf/102521437 DNB@http://d-nb.info/gnd/139659382 +http://viaf.org/viaf/102521437 ISNI|0000000073111212 +http://viaf.org/viaf/102529187 DNB@http://d-nb.info/gnd/139668136 +http://viaf.org/viaf/102529187 DNB|139668136 +http://viaf.org/viaf/10253390 SUDOC|243886179 +http://viaf.org/viaf/10253390 DNB|103169547 +http://viaf.org/viaf/10253390 ISNI|000000002226303X +http://viaf.org/viaf/10253390 LC@n82033644 +http://viaf.org/viaf/10253390 RERO|A013505146 +http://viaf.org/viaf/10253390 LC|n 82033644 +http://viaf.org/viaf/10253390 DNB@http://d-nb.info/gnd/103169547 +http://viaf.org/viaf/10253390 NTA|131858815 +http://viaf.org/viaf/10253390 Identities@http://www.worldcat.org/identities/lccn-n82033644 +http://viaf.org/viaf/102552721 DNB@http://d-nb.info/gnd/139695125 +http://viaf.org/viaf/102552721 ISNI|0000000073112442 +http://viaf.org/viaf/102552721 DNB|139695125 +http://viaf.org/viaf/102552721 Identities@http://www.worldcat.org/identities/viaf-102552721 +http://viaf.org/viaf/102552721 NII|DA04047480 +http://viaf.org/viaf/102552721 WKP|Q11364586 +http://viaf.org/viaf/102552721 Wikipedia@http://ja.wikipedia.org/wiki/中島竦 +http://viaf.org/viaf/102552721 NDL|00053517 +http://viaf.org/viaf/102561587 Identities@http://www.worldcat.org/identities/viaf-102561587 +http://viaf.org/viaf/102561587 ISNI|0000000073112805 +http://viaf.org/viaf/102561587 DNB|139705104 +http://viaf.org/viaf/102561587 DNB@http://d-nb.info/gnd/139705104 +http://viaf.org/viaf/102564304 RERO|A011817228 +http://viaf.org/viaf/102564304 Identities@http://www.worldcat.org/identities/viaf-102564304 +http://viaf.org/viaf/102564304 DNB|139708162 +http://viaf.org/viaf/102564304 WKP|Q21415856 +http://viaf.org/viaf/102564304 DNB@http://d-nb.info/gnd/139708162 +http://viaf.org/viaf/102564304 NUKAT@vtls018295440 +http://viaf.org/viaf/102564304 NUKAT|n 2019207566 +http://viaf.org/viaf/102564755 DNB@http://d-nb.info/gnd/139708669 +http://viaf.org/viaf/102564755 WKP|Q21415557 +http://viaf.org/viaf/102564755 DNB|139708669 +http://viaf.org/viaf/102567428 BNF@http://catalogue.bnf.fr/ark:/12148/cb16195053t +http://viaf.org/viaf/102567428 LC@n2010021221 +http://viaf.org/viaf/102567428 Identities@http://www.worldcat.org/identities/lccn-n2010021221 +http://viaf.org/viaf/102567428 ISNI|0000000077804235 +http://viaf.org/viaf/102567428 NTA|322331390 +http://viaf.org/viaf/102567428 DNB|13971166X +http://viaf.org/viaf/102567428 BNF|16195053 +http://viaf.org/viaf/102567428 LC|n 2010021221 +http://viaf.org/viaf/102567428 DNB@http://d-nb.info/gnd/13971166X +http://viaf.org/viaf/102572774 DNB|139717676 +http://viaf.org/viaf/102572774 DNB@http://d-nb.info/gnd/139717676 +http://viaf.org/viaf/102574105 Identities@http://www.worldcat.org/identities/viaf-102574105 +http://viaf.org/viaf/102574105 ISNI|0000000073113322 +http://viaf.org/viaf/102574105 DNB|139719156 +http://viaf.org/viaf/102574105 DNB@http://d-nb.info/gnd/139719156 +http://viaf.org/viaf/102586634 DNB@http://d-nb.info/gnd/139733256 +http://viaf.org/viaf/102586634 DNB|139733256 +http://viaf.org/viaf/102587525 DNB@http://d-nb.info/gnd/139734325 +http://viaf.org/viaf/102587525 DNB|139734325 +http://viaf.org/viaf/102598712 DNB|139746927 +http://viaf.org/viaf/102598712 DNB@http://d-nb.info/gnd/139746927 +http://viaf.org/viaf/102598712 WKP|Q21415769 +http://viaf.org/viaf/102602969 BIBSYS|3107829 +http://viaf.org/viaf/102602969 DNB@http://d-nb.info/gnd/139751661 +http://viaf.org/viaf/102602969 Identities@http://www.worldcat.org/identities/viaf-102602969 +http://viaf.org/viaf/102602969 DNB|139751661 +http://viaf.org/viaf/1026144647678082309403 Identities@http://www.worldcat.org/identities/viaf-1026144647678082309403 +http://viaf.org/viaf/1026144647678082309403 NTA|395472679 +http://viaf.org/viaf/1026145857953423021263 DNB|108703776X +http://viaf.org/viaf/1026145857953423021263 Identities@http://www.worldcat.org/identities/viaf-1026145857953423021263 +http://viaf.org/viaf/1026145857953423021263 DNB@http://d-nb.info/gnd/108703776X +http://viaf.org/viaf/1026159474203427661458 CAOONL|ncf11496392 +http://viaf.org/viaf/102616054 ISNI|000000007270004X +http://viaf.org/viaf/102616054 DNB@http://d-nb.info/gnd/13976674X +http://viaf.org/viaf/102616054 Identities@http://www.worldcat.org/identities/viaf-102616054 +http://viaf.org/viaf/102616054 DNB|13976674X +http://viaf.org/viaf/102618287 DNB@http://d-nb.info/gnd/139769366 +http://viaf.org/viaf/102618287 ISNI|0000000080092937 +http://viaf.org/viaf/102618287 DNB|139769366 +http://viaf.org/viaf/102618287 Identities@http://www.worldcat.org/identities/viaf-102618287 +http://viaf.org/viaf/102618287 RERO|A017565309 +http://viaf.org/viaf/102620789 Identities@http://www.worldcat.org/identities/viaf-102620789 +http://viaf.org/viaf/102620789 NTA|157599825 +http://viaf.org/viaf/102620789 ISNI|0000000073114958 +http://viaf.org/viaf/102620789 DNB@http://d-nb.info/gnd/139772103 +http://viaf.org/viaf/102620789 DNB|139772103 +http://viaf.org/viaf/102623182 Identities@http://www.worldcat.org/identities/viaf-102623182 +http://viaf.org/viaf/102623182 DNB|139774807 +http://viaf.org/viaf/102623182 DNB@http://d-nb.info/gnd/139774807 +http://viaf.org/viaf/10263966 LC|n 94069625 +http://viaf.org/viaf/10263966 LC@n94069625 +http://viaf.org/viaf/10263966 NUKAT|n 97029213 +http://viaf.org/viaf/10263966 PLWABN|9810637183405606 +http://viaf.org/viaf/10263966 J9U|987007268091505171 +http://viaf.org/viaf/10263966 DNB@http://d-nb.info/gnd/103602100 +http://viaf.org/viaf/10263966 Identities@http://www.worldcat.org/identities/lccn-n94069625 +http://viaf.org/viaf/10263966 NUKAT@vtls000589626 +http://viaf.org/viaf/10263966 DNB|103602100 +http://viaf.org/viaf/10263966 ISNI|0000000117425679 +http://viaf.org/viaf/102640435 W2Z|90729794 +http://viaf.org/viaf/102640435 DNB|139794204 +http://viaf.org/viaf/102640435 BIBSYS|90729794 +http://viaf.org/viaf/102640435 Identities@http://www.worldcat.org/identities/viaf-102640435 +http://viaf.org/viaf/102640435 DNB@http://d-nb.info/gnd/139794204 +http://viaf.org/viaf/102642217 DNB@http://d-nb.info/gnd/139796282 +http://viaf.org/viaf/102642217 ISNI|0000000073061606 +http://viaf.org/viaf/102642217 DNB|139796282 +http://viaf.org/viaf/102642217 Identities@http://www.worldcat.org/identities/viaf-102642217 +http://viaf.org/viaf/102645836 Identities@http://www.worldcat.org/identities/viaf-102645836 +http://viaf.org/viaf/102645836 NTA|303681993 +http://viaf.org/viaf/102645836 ISNI|000000039174236X +http://viaf.org/viaf/102665438 ISNI|0000000072795472 +http://viaf.org/viaf/102665438 Identities@http://www.worldcat.org/identities/viaf-102665438 +http://viaf.org/viaf/102665438 DNB@http://d-nb.info/gnd/139822542 +http://viaf.org/viaf/102665438 DNB|139822542 +http://viaf.org/viaf/102672115 WKP|Q15430458 +http://viaf.org/viaf/102672115 Wikipedia@http://de.wikipedia.org/wiki/Felicitas_Ritsch +http://viaf.org/viaf/102672115 Identities@http://www.worldcat.org/identities/viaf-102672115 +http://viaf.org/viaf/102672115 DNB@http://d-nb.info/gnd/13983043X +http://viaf.org/viaf/102672115 DNB|13983043X +http://viaf.org/viaf/102672115 ISNI|0000000072847308 +http://viaf.org/viaf/10268916 CAOONL|ncf11881424 +http://viaf.org/viaf/10268916 Wikipedia@http://en.wikipedia.org/wiki/Richard_Yardumian +http://viaf.org/viaf/10268916 LC@n85186922 +http://viaf.org/viaf/10268916 DNB@http://d-nb.info/gnd/103807349 +http://viaf.org/viaf/10268916 Identities@http://www.worldcat.org/identities/lccn-n85186922 +http://viaf.org/viaf/10268916 Wikipedia@http://ja.wikipedia.org/wiki/リチャード・ヤルドゥミアン +http://viaf.org/viaf/10268916 Wikipedia@http://hy.wikipedia.org/wiki/Ռիչարդ_Յարդումյան +http://viaf.org/viaf/10268916 DNB|103807349 +http://viaf.org/viaf/10268916 NTA|097446793 +http://viaf.org/viaf/10268916 NKC|xx0208524 +http://viaf.org/viaf/10268916 ISNI|0000000024156561 +http://viaf.org/viaf/10268916 WKP|Q5976896 +http://viaf.org/viaf/10268916 LC|n 85186922 +http://viaf.org/viaf/10268916 J9U|987007337430305171 +http://viaf.org/viaf/102694940 Wikipedia@http://mg.wikipedia.org/wiki/Julius_Popp +http://viaf.org/viaf/102694940 Wikipedia@http://ru.wikipedia.org/wiki/Попп,_Юлиус +http://viaf.org/viaf/102694940 Wikipedia@http://zh.wikipedia.org/wiki/朱利葉斯·波普 +http://viaf.org/viaf/102694940 Identities@http://www.worldcat.org/identities/lccn-no2010142108 +http://viaf.org/viaf/102694940 DNB@http://d-nb.info/gnd/139856072 +http://viaf.org/viaf/102694940 DNB|139856072 +http://viaf.org/viaf/102694940 WKP|Q90805 +http://viaf.org/viaf/102694940 SUDOC|162154224 +http://viaf.org/viaf/102694940 ISNI|0000000081712624 +http://viaf.org/viaf/102694940 LC|no2010142108 +http://viaf.org/viaf/102694940 Wikipedia@http://arz.wikipedia.org/wiki/چوليوس_پوپ +http://viaf.org/viaf/102694940 Wikipedia@http://de.wikipedia.org/wiki/Julius_Popp_(Künstler) +http://viaf.org/viaf/102694940 Wikipedia@http://en.wikipedia.org/wiki/Julius_Popp +http://viaf.org/viaf/10269807 Identities@http://www.worldcat.org/identities/lccn-no2004005388 +http://viaf.org/viaf/10269807 NUKAT|n 2015200360 +http://viaf.org/viaf/10269807 LC|no2004005388 +http://viaf.org/viaf/10269807 NKC|xx0157835 +http://viaf.org/viaf/10269807 ISNI|0000000109537670 +http://viaf.org/viaf/10269807 PLWABN|9810631981105606 +http://viaf.org/viaf/10269807 DNB|103843914 +http://viaf.org/viaf/10269807 WKP|Q55854512 +http://viaf.org/viaf/10269807 NUKAT@vtls013317668 +http://viaf.org/viaf/10269807 DNB@http://d-nb.info/gnd/103843914 +http://viaf.org/viaf/102699071 LC|n 2009066148 +http://viaf.org/viaf/102699071 NUKAT|n 2014051400 +http://viaf.org/viaf/102699071 ISNI|0000000081712632 +http://viaf.org/viaf/102699071 DNB|13986072X +http://viaf.org/viaf/102699071 NII|DA17263398 +http://viaf.org/viaf/102699071 CAOONL|ncf11552753 +http://viaf.org/viaf/102699071 SUDOC|139416846 +http://viaf.org/viaf/102699071 BIBSYS|12045332 +http://viaf.org/viaf/102699071 BNF@http://catalogue.bnf.fr/ark:/12148/cb162307911 +http://viaf.org/viaf/102699071 LC@n2009066148 +http://viaf.org/viaf/102699071 DNB@http://d-nb.info/gnd/13986072X +http://viaf.org/viaf/102699071 NUKAT@vtls010392233 +http://viaf.org/viaf/102699071 Identities@http://www.worldcat.org/identities/lccn-n2009066148 +http://viaf.org/viaf/102699071 BNF|16230791 +http://viaf.org/viaf/102700528 DNB|139862269 +http://viaf.org/viaf/102700528 WKP|Q19963177 +http://viaf.org/viaf/102700528 Wikipedia@http://de.wikipedia.org/wiki/Eduard_Schifferdecker +http://viaf.org/viaf/102700528 DNB@http://d-nb.info/gnd/139862269 +http://viaf.org/viaf/102701419 DNB|139863249 +http://viaf.org/viaf/102701419 DNB@http://d-nb.info/gnd/139863249 +http://viaf.org/viaf/102701419 WKP|Q94806489 +http://viaf.org/viaf/102702030 Identities@http://www.worldcat.org/identities/lccn-no2010097746 +http://viaf.org/viaf/102702030 DNB@http://d-nb.info/gnd/139863915 +http://viaf.org/viaf/102702030 DNB|139863915 +http://viaf.org/viaf/102702030 ISNI|0000000080202120 +http://viaf.org/viaf/102702030 LC|no2010097746 +http://viaf.org/viaf/102702030 WKP|Q1174138 +http://viaf.org/viaf/102702030 Wikipedia@http://de.wikipedia.org/wiki/David_D._Lauer +http://viaf.org/viaf/102711715 ISNI|0000000120319228 +http://viaf.org/viaf/102711715 SUDOC|150700768 +http://viaf.org/viaf/102711715 BNF|16517192 +http://viaf.org/viaf/102711715 BNF@http://catalogue.bnf.fr/ark:/12148/cb16517192h +http://viaf.org/viaf/102711715 Identities@http://www.worldcat.org/identities/viaf-102711715 +http://viaf.org/viaf/102712282 DNB|139875484 +http://viaf.org/viaf/102712282 ISNI|0000000073173122 +http://viaf.org/viaf/102712282 Identities@http://www.worldcat.org/identities/viaf-102712282 +http://viaf.org/viaf/102712282 DNB@http://d-nb.info/gnd/139875484 +http://viaf.org/viaf/1027147553252953800006 Identities@http://www.worldcat.org/identities/viaf-1027147553252953800006 +http://viaf.org/viaf/1027147553252953800006 DNB|111476518X +http://viaf.org/viaf/1027147553252953800006 DNB@http://d-nb.info/gnd/111476518X +http://viaf.org/viaf/1027154380999230291350 LIH|LNB:O_o_S;=B_n_ +http://viaf.org/viaf/1027154380999230291350 Identities@http://www.worldcat.org/identities/lccn-n78046943 +http://viaf.org/viaf/1027154380999230291350 LC@n78046943 +http://viaf.org/viaf/1027154380999230291350 LIH@LNB:OoS;=Bn +http://viaf.org/viaf/1027154380999230291350 LC|n 78046943 +http://viaf.org/viaf/1027156619139728780002 XR|VIAFEXP1107219716 +http://viaf.org/viaf/102716297 WKP|Q95750833 +http://viaf.org/viaf/102716297 DNB|139879994 +http://viaf.org/viaf/102716297 Identities@http://www.worldcat.org/identities/viaf-102716297 +http://viaf.org/viaf/102716297 DNB@http://d-nb.info/gnd/139879994 +http://viaf.org/viaf/102722902 DNB|139887741 +http://viaf.org/viaf/102722902 Identities@http://www.worldcat.org/identities/viaf-102722902 +http://viaf.org/viaf/102722902 DNB@http://d-nb.info/gnd/139887741 +http://viaf.org/viaf/102722902 ISNI|0000000073011991 +http://viaf.org/viaf/102724360 DNB@http://d-nb.info/gnd/139889345 +http://viaf.org/viaf/102724360 DNB|139889345 +http://viaf.org/viaf/102728870 DNB|139894535 +http://viaf.org/viaf/102728870 LC|no2016140013 +http://viaf.org/viaf/102728870 Identities@http://www.worldcat.org/identities/lccn-no2016140013 +http://viaf.org/viaf/102728870 DNB@http://d-nb.info/gnd/139894535 +http://viaf.org/viaf/102729266 SUDOC|232810265 +http://viaf.org/viaf/102729266 DNB|139894977 +http://viaf.org/viaf/102729266 BNF|16275685 +http://viaf.org/viaf/102729266 ISNI|0000000072741722 +http://viaf.org/viaf/102729266 Identities@http://www.worldcat.org/identities/viaf-102729266 +http://viaf.org/viaf/102729266 DNB@http://d-nb.info/gnd/139894977 +http://viaf.org/viaf/102729266 BNF@http://catalogue.bnf.fr/ark:/12148/cb16275685v +http://viaf.org/viaf/102729266 RERO|A027664950 +http://viaf.org/viaf/102760324 LC@n85014871 +http://viaf.org/viaf/102760324 Identities@http://www.worldcat.org/identities/lccn-n85014871 +http://viaf.org/viaf/102760324 ISNI|0000000072957953 +http://viaf.org/viaf/102760324 LC|n 85014871 +http://viaf.org/viaf/102760324 CAOONL|ncf10093096 +http://viaf.org/viaf/102761710 ISNI|0000000073119724 +http://viaf.org/viaf/102761710 Identities@http://www.worldcat.org/identities/lccn-no2009175858 +http://viaf.org/viaf/102761710 LC|no2009175858 +http://viaf.org/viaf/102761710 CAOONL|ncf10181673 +http://viaf.org/viaf/102761710 SUDOC|150599811 +http://viaf.org/viaf/1027627 DNB@http://d-nb.info/gnd/127205233 +http://viaf.org/viaf/1027627 DNB|127205233 +http://viaf.org/viaf/1027627 ISNI|0000000023905241 +http://viaf.org/viaf/1027627 NTA|248241273 +http://viaf.org/viaf/1027627 Identities@http://www.worldcat.org/identities/viaf-1027627 +http://viaf.org/viaf/102763899 ISNI|0000000072799326 +http://viaf.org/viaf/102763899 Identities@http://www.worldcat.org/identities/viaf-102763899 +http://viaf.org/viaf/102763899 B2Q|0000297497 +http://viaf.org/viaf/102763899 CAOONL|ncf10311803 +http://viaf.org/viaf/102770125 Identities@http://www.worldcat.org/identities/viaf-102770125 +http://viaf.org/viaf/102770125 CAOONL|ncf10490444 +http://viaf.org/viaf/102783996 Identities@http://www.worldcat.org/identities/lccn-no2014117158 +http://viaf.org/viaf/102783996 CAOONL|ncf10565202 +http://viaf.org/viaf/102783996 LC|no2014117158 +http://viaf.org/viaf/102787280 CAOONL|ncf10565526 +http://viaf.org/viaf/102787280 Identities@http://www.worldcat.org/identities/viaf-102787280 +http://viaf.org/viaf/102787280 ISNI|0000000073176892 +http://viaf.org/viaf/102796019 CAOONL|ncf10574328 +http://viaf.org/viaf/102796019 Identities@http://www.worldcat.org/identities/viaf-102796019 +http://viaf.org/viaf/102796019 ISNI|0000000072853230 +http://viaf.org/viaf/102803939 Identities@http://www.worldcat.org/identities/viaf-102803939 +http://viaf.org/viaf/102803939 CAOONL|ncf10571702 +http://viaf.org/viaf/102803939 ISNI|0000000073068955 +http://viaf.org/viaf/102805441 CAOONL|ncf10575003 +http://viaf.org/viaf/102805441 Identities@http://www.worldcat.org/identities/viaf-102805441 +http://viaf.org/viaf/102807179 CAOONL|ncf10568751 +http://viaf.org/viaf/102807179 Identities@http://www.worldcat.org/identities/viaf-102807179 +http://viaf.org/viaf/10280895 DNB|10432063X +http://viaf.org/viaf/10280895 Identities@http://www.worldcat.org/identities/viaf-10280895 +http://viaf.org/viaf/10280895 DNB@http://d-nb.info/gnd/10432063X +http://viaf.org/viaf/102809005 B2Q|0000833784 +http://viaf.org/viaf/102809005 Identities@http://www.worldcat.org/identities/viaf-102809005 +http://viaf.org/viaf/102809005 ISNI|0000000072802580 +http://viaf.org/viaf/102809005 CAOONL|ncf10572302 +http://viaf.org/viaf/1028145424558386830705 XR|VIAFEXP893911059 +http://viaf.org/viaf/1028151246518844130829 DNB@http://d-nb.info/gnd/1146583117 +http://viaf.org/viaf/1028151246518844130829 DNB|1146583117 +http://viaf.org/viaf/102815242 Wikipedia@http://it.wikipedia.org/wiki/Robert_Cuffley +http://viaf.org/viaf/102815242 Identities@http://www.worldcat.org/identities/lccn-no2008180182 +http://viaf.org/viaf/102815242 WKP|Q1111978 +http://viaf.org/viaf/102815242 LC|no2008180182 +http://viaf.org/viaf/102815242 CAOONL|ncf10575174 +http://viaf.org/viaf/102815242 ISNI|0000000072907438 +http://viaf.org/viaf/102815242 PLWABN|9810623849905606 +http://viaf.org/viaf/102815242 Wikipedia@http://en.wikipedia.org/wiki/Robert_Cuffley +http://viaf.org/viaf/1028154260549524480007 DNB|117125184X +http://viaf.org/viaf/1028154260549524480007 DNB@http://d-nb.info/gnd/117125184X +http://viaf.org/viaf/1028159474068227660883 CAOONL|ncf11599337 +http://viaf.org/viaf/1028159474068427660397 CAOONL|ncf11722150 +http://viaf.org/viaf/102821803 Identities@http://www.worldcat.org/identities/viaf-102821803 +http://viaf.org/viaf/102821803 Wikipedia@http://arz.wikipedia.org/wiki/چون_ريتكى +http://viaf.org/viaf/102821803 Wikipedia@http://en.wikipedia.org/wiki/Jon_Ritchie +http://viaf.org/viaf/102821803 ISNI|0000000072962672 +http://viaf.org/viaf/102821803 CAOONL|ncf10569389 +http://viaf.org/viaf/102821803 WKP|Q14950153 +http://viaf.org/viaf/102827771 CAOONL|ncf10572154 +http://viaf.org/viaf/102827771 NUKAT@vtls010572420 +http://viaf.org/viaf/102827771 BNF|16704928 +http://viaf.org/viaf/102827771 ISNI|0000000073125120 +http://viaf.org/viaf/102827771 Identities@http://www.worldcat.org/identities/viaf-102827771 +http://viaf.org/viaf/102827771 B2Q|0000871424 +http://viaf.org/viaf/102827771 SUDOC|158552180 +http://viaf.org/viaf/102827771 NUKAT|n 2014077214 +http://viaf.org/viaf/102827771 BNF@http://catalogue.bnf.fr/ark:/12148/cb167049281 +http://viaf.org/viaf/102827771 RERO|A022553969 +http://viaf.org/viaf/102830713 Identities@http://www.worldcat.org/identities/viaf-102830713 +http://viaf.org/viaf/102830713 CAOONL|ncf10568929 +http://viaf.org/viaf/102830713 ISNI|0000000072963288 +http://viaf.org/viaf/102833062 ISNI|0000000072749281 +http://viaf.org/viaf/102833062 CAOONL|ncf10573701 +http://viaf.org/viaf/102833062 Identities@http://www.worldcat.org/identities/viaf-102833062 +http://viaf.org/viaf/102838012 Identities@http://www.worldcat.org/identities/viaf-102838012 +http://viaf.org/viaf/102838012 CAOONL|ncf10574389 +http://viaf.org/viaf/102840019 Identities@http://www.worldcat.org/identities/viaf-102840019 +http://viaf.org/viaf/102840019 CAOONL|ncf10568790 +http://viaf.org/viaf/102840019 ISNI|0000000072856749 +http://viaf.org/viaf/102845096 B2Q|0000887020 +http://viaf.org/viaf/102845096 Identities@http://www.worldcat.org/identities/viaf-102845096 +http://viaf.org/viaf/102845096 CAOONL|ncf10578921 +http://viaf.org/viaf/102845096 ISNI|0000000072909871 +http://viaf.org/viaf/102845915 Identities@http://www.worldcat.org/identities/viaf-102845915 +http://viaf.org/viaf/102845915 B2Q|0000887147 +http://viaf.org/viaf/102845915 CAOONL|ncf10580537 +http://viaf.org/viaf/102857949 CAOONL|ncf10584387 +http://viaf.org/viaf/102857949 Identities@http://www.worldcat.org/identities/viaf-102857949 +http://viaf.org/viaf/102860567 SUDOC|136864473 +http://viaf.org/viaf/102860567 RERO|A018613224 +http://viaf.org/viaf/102860567 CAOONL|ncf10579774 +http://viaf.org/viaf/102860567 Identities@http://www.worldcat.org/identities/viaf-102860567 +http://viaf.org/viaf/102860567 ISNI|0000000072911015 +http://viaf.org/viaf/102860611 CAOONL|ncf10579862 +http://viaf.org/viaf/102860611 B2Q|0000922923 +http://viaf.org/viaf/102860611 Identities@http://www.worldcat.org/identities/viaf-102860611 +http://viaf.org/viaf/102862349 Identities@http://www.worldcat.org/identities/lccn-n2017043670 +http://viaf.org/viaf/102862349 LC@n2017043670 +http://viaf.org/viaf/102862349 CAOONL|ncf10583217 +http://viaf.org/viaf/102862349 LC|n 2017043670 +http://viaf.org/viaf/102871259 Identities@http://www.worldcat.org/identities/viaf-102871259 +http://viaf.org/viaf/102871259 CAOONL|ncf10580889 +http://viaf.org/viaf/102875813 B2Q|0001379103 +http://viaf.org/viaf/102875813 LC|no2019035844 +http://viaf.org/viaf/102875813 CAOONL|ncf10580591 +http://viaf.org/viaf/102875813 Identities@http://www.worldcat.org/identities/lccn-no2019035844 +http://viaf.org/viaf/102876209 ISNI|0000000072966630 +http://viaf.org/viaf/102876209 Identities@http://www.worldcat.org/identities/viaf-102876209 +http://viaf.org/viaf/102876209 CAOONL|ncf10581374 +http://viaf.org/viaf/102884723 WKP|Q55722420 +http://viaf.org/viaf/102884723 ISNI|0000000081713061 +http://viaf.org/viaf/102884723 BNF@http://catalogue.bnf.fr/ark:/12148/cb140595876 +http://viaf.org/viaf/102884723 CAOONL|ncf10587231 +http://viaf.org/viaf/102884723 Identities@http://www.worldcat.org/identities/viaf-102884723 +http://viaf.org/viaf/102884723 B2Q|0000900684 +http://viaf.org/viaf/102884723 BNF|14059587 +http://viaf.org/viaf/102905233 NKC|js20090410008 +http://viaf.org/viaf/1029154380941330290436 LIH@LNB:Mm1;=BR +http://viaf.org/viaf/1029154380941330290436 LIH|LNB:M_m_1;=BR +http://viaf.org/viaf/1029158070665808780002 J9U|987007266717605171 +http://viaf.org/viaf/1029159474208027661838 CAOONL|ncf12008011 +http://viaf.org/viaf/102918653 LC@n2009070935 +http://viaf.org/viaf/102918653 WKP|Q21288176 +http://viaf.org/viaf/102918653 NUKAT|n 2007138827 +http://viaf.org/viaf/102918653 LC|n 2009070935 +http://viaf.org/viaf/102918653 Wikipedia@http://pl.wikipedia.org/wiki/Ludwik_Łepkowski +http://viaf.org/viaf/102918653 ISNI|000000007296896X +http://viaf.org/viaf/102918653 PLWABN|9810558753405606 +http://viaf.org/viaf/102918653 NUKAT@vtls004260435 +http://viaf.org/viaf/102918653 Identities@http://www.worldcat.org/identities/lccn-n2009070935 +http://viaf.org/viaf/102919995 LC|n 2009071142 +http://viaf.org/viaf/102919995 LC@n2009071142 +http://viaf.org/viaf/102919995 Identities@http://www.worldcat.org/identities/lccn-n2009071142 +http://viaf.org/viaf/102923828 LC@n2009071783 +http://viaf.org/viaf/102923828 Identities@http://www.worldcat.org/identities/lccn-n2009071783 +http://viaf.org/viaf/102923828 LC|n 2009071783 +http://viaf.org/viaf/102923828 ISNI|0000000073239961 +http://viaf.org/viaf/102931072 LC@n2009072916 +http://viaf.org/viaf/102931072 LC|n 2009072916 +http://viaf.org/viaf/102931072 Identities@http://www.worldcat.org/identities/lccn-n2009072916 +http://viaf.org/viaf/102935131 ISNI|0000000073077464 +http://viaf.org/viaf/102935131 DNB@http://d-nb.info/gnd/1159284946 +http://viaf.org/viaf/102935131 LC@n2009073563 +http://viaf.org/viaf/102935131 Identities@http://www.worldcat.org/identities/lccn-n2009073563 +http://viaf.org/viaf/102935131 SUDOC|232530343 +http://viaf.org/viaf/102935131 DNB|1159284946 +http://viaf.org/viaf/102935131 LC|n 2009073563 +http://viaf.org/viaf/102944816 LC|n 2009075123 +http://viaf.org/viaf/102944816 ISNI|0000000121460442 +http://viaf.org/viaf/102944816 BNF@http://catalogue.bnf.fr/ark:/12148/cb16521078f +http://viaf.org/viaf/102944816 Identities@http://www.worldcat.org/identities/lccn-n2009075123 +http://viaf.org/viaf/102944816 BNF|16521078 +http://viaf.org/viaf/102944816 LC@n2009075123 +http://viaf.org/viaf/102944816 CAOONL|ncf11583357 +http://viaf.org/viaf/102952835 Identities@http://www.worldcat.org/identities/lccn-n2009165410 +http://viaf.org/viaf/102952835 LC@n2009165410 +http://viaf.org/viaf/102952835 LC|n 2009165410 +http://viaf.org/viaf/102955184 Identities@http://www.worldcat.org/identities/lccn-n2009184787 +http://viaf.org/viaf/102955184 LC@n2009184787 +http://viaf.org/viaf/102955184 LC|n 2009184787 +http://viaf.org/viaf/102960359 LC@n2009216023 +http://viaf.org/viaf/102960359 LC|n 2009216023 +http://viaf.org/viaf/102960359 DNB@http://d-nb.info/gnd/1047508257 +http://viaf.org/viaf/102960359 ISNI|0000000073242685 +http://viaf.org/viaf/102960359 SUDOC|16737740X +http://viaf.org/viaf/102960359 DNB|1047508257 +http://viaf.org/viaf/102960359 Identities@http://www.worldcat.org/identities/lccn-n2009216023 +http://viaf.org/viaf/102964869 Identities@http://www.worldcat.org/identities/lccn-nb2009024654 +http://viaf.org/viaf/102964869 LC|nb2009024654 +http://viaf.org/viaf/102971546 LC|nb2009028607 +http://viaf.org/viaf/102984191 NKC|jo2004249800 +http://viaf.org/viaf/102984191 NUKAT|n 2008038694 +http://viaf.org/viaf/102984191 WKP|Q95368531 +http://viaf.org/viaf/102984191 NUKAT@vtls005565443 +http://viaf.org/viaf/102984191 ISNI|0000000110016581 +http://viaf.org/viaf/102990752 LC|no2009175036 +http://viaf.org/viaf/102990752 Identities@http://www.worldcat.org/identities/lccn-no2009175036 +http://viaf.org/viaf/102990752 ISNI|0000000072974788 +http://viaf.org/viaf/102993876 ISNI|0000000072711638 +http://viaf.org/viaf/102993876 LC|no2009175550 +http://viaf.org/viaf/102993876 Identities@http://www.worldcat.org/identities/lccn-no2009175550 +http://viaf.org/viaf/102996549 LC|no2009175975 +http://viaf.org/viaf/102996549 Identities@http://www.worldcat.org/identities/lccn-no2009175975 +http://viaf.org/viaf/102996549 ISNI|0000000073192518 +http://viaf.org/viaf/102997160 LC|no2009176076 +http://viaf.org/viaf/102997160 Identities@http://www.worldcat.org/identities/lccn-no2009176076 +http://viaf.org/viaf/102998051 Identities@http://www.worldcat.org/identities/lccn-no2009176222 +http://viaf.org/viaf/102998051 LC|no2009176222 +http://viaf.org/viaf/103001136 ISNI|0000000371816392 +http://viaf.org/viaf/103001136 CAOONL|ncf12055364 +http://viaf.org/viaf/103001136 DNB|1089778236 +http://viaf.org/viaf/103001136 BNF|17782173 +http://viaf.org/viaf/103001136 LC|no2009176683 +http://viaf.org/viaf/103001136 Identities@http://www.worldcat.org/identities/lccn-no2009176683 +http://viaf.org/viaf/103001136 NSK|000552677 +http://viaf.org/viaf/103001136 DNB@http://d-nb.info/gnd/1089778236 +http://viaf.org/viaf/103001136 WKP|Q64707100 +http://viaf.org/viaf/103001136 BNF@FRBNF177821733 +http://viaf.org/viaf/103006988 SUDOC|148842836 +http://viaf.org/viaf/103006988 RERO|A003037886 +http://viaf.org/viaf/103006988 LC|no2009177652 +http://viaf.org/viaf/103006988 Identities@http://www.worldcat.org/identities/lccn-no2009177652 +http://viaf.org/viaf/103006988 ISNI|0000000073082298 +http://viaf.org/viaf/103008319 Identities@http://www.worldcat.org/identities/lccn-no2009177858 +http://viaf.org/viaf/103008319 LC|no2009177858 +http://viaf.org/viaf/103010046 NUKAT|n 2006088117 +http://viaf.org/viaf/103010046 NUKAT@vtls003825323 +http://viaf.org/viaf/103010046 Identities@http://www.worldcat.org/identities/lccn-no2009178152 +http://viaf.org/viaf/103010046 Wikipedia@http://uk.wikipedia.org/wiki/Магда_Умер +http://viaf.org/viaf/103010046 Wikipedia@http://ru.wikipedia.org/wiki/Умер,_Магда +http://viaf.org/viaf/103010046 Wikipedia@http://pl.wikipedia.org/wiki/Magda_Umer +http://viaf.org/viaf/103010046 ISNI|0000000079112187 +http://viaf.org/viaf/103010046 Wikipedia@http://myv.wikipedia.org/wiki/Умер,_Магда +http://viaf.org/viaf/103010046 Wikipedia@http://hy.wikipedia.org/wiki/Մագդա_Ումեր +http://viaf.org/viaf/103010046 Wikipedia@http://en.wikipedia.org/wiki/Magda_Umer +http://viaf.org/viaf/103010046 Wikipedia@http://arz.wikipedia.org/wiki/ماجدا_ومير +http://viaf.org/viaf/103010046 LC|no2009178152 +http://viaf.org/viaf/103010046 PLWABN|9810645758005606 +http://viaf.org/viaf/103010046 WKP|Q1965113 +http://viaf.org/viaf/103013665 J9U|987007435187705171 +http://viaf.org/viaf/103013665 N6I|vtls000802925 +http://viaf.org/viaf/1030145856887522920450 Identities@http://www.worldcat.org/identities/viaf-1030145856887522920450 +http://viaf.org/viaf/1030145856887522920450 DNB|1090111223 +http://viaf.org/viaf/1030145856887522920450 DNB@http://d-nb.info/gnd/1090111223 +http://viaf.org/viaf/103014600 LC|no2009178870 +http://viaf.org/viaf/103014600 Identities@http://www.worldcat.org/identities/lccn-no2009178870 +http://viaf.org/viaf/1030154380956030290844 LIH|LNB:_g__t_N;=B5 +http://viaf.org/viaf/1030154380956030290844 LIH@LNB:gtN;=B5 +http://viaf.org/viaf/1030154380956030290844 Identities@http://www.worldcat.org/identities/viaf-1030154380956030290844 +http://viaf.org/viaf/1030159234294003371358 RERO|A022533394 +http://viaf.org/viaf/1030159234294003371358 Identities@http://www.worldcat.org/identities/viaf-1030159234294003371358 +http://viaf.org/viaf/1030159234410803371521 Identities@http://www.worldcat.org/identities/viaf-1030159234410803371521 +http://viaf.org/viaf/1030159234410803371521 RERO|A012396940 +http://viaf.org/viaf/1030159478044827990000 CAOONL|ncf11841550 +http://viaf.org/viaf/103016833 Wikipedia@http://en.wikipedia.org/wiki/David_William +http://viaf.org/viaf/103016833 WKP|Q5241106 +http://viaf.org/viaf/103016833 Identities@http://www.worldcat.org/identities/lccn-no2009179182 +http://viaf.org/viaf/103016833 LC|no2009179182 +http://viaf.org/viaf/103017229 ISNI|0000000373454997 +http://viaf.org/viaf/103017229 Identities@http://www.worldcat.org/identities/lccn-no2009179236 +http://viaf.org/viaf/103017229 LC|no2009179236 +http://viaf.org/viaf/103025699 WKP|Q7921971 +http://viaf.org/viaf/103025699 LC|no2009180498 +http://viaf.org/viaf/103025699 Wikipedia@http://en.wikipedia.org/wiki/Verne_J._McCaul +http://viaf.org/viaf/103035544 Identities@http://www.worldcat.org/identities/lccn-no2009182092 +http://viaf.org/viaf/103035544 DBC@870979.69368069 +http://viaf.org/viaf/103035544 DBC|87097969368069 +http://viaf.org/viaf/103036930 LC|no2009182292 +http://viaf.org/viaf/103036930 ISNI|0000000072978623 +http://viaf.org/viaf/103036930 Identities@http://www.worldcat.org/identities/lccn-no2009182292 +http://viaf.org/viaf/103039108 Identities@http://www.worldcat.org/identities/viaf-103039108 +http://viaf.org/viaf/103039108 NLA|000036599842 +http://viaf.org/viaf/103044003 LC|no2009183515 +http://viaf.org/viaf/103044003 Identities@http://www.worldcat.org/identities/lccn-no2009183515 +http://viaf.org/viaf/103044003 CAOONL|ncf11048138 +http://viaf.org/viaf/103044003 ISNI|0000000072979343 +http://viaf.org/viaf/103047578 LC|no2009184090 +http://viaf.org/viaf/103047578 Identities@http://www.worldcat.org/identities/lccn-no2009184090 +http://viaf.org/viaf/103050240 LC|no2009184539 +http://viaf.org/viaf/103050240 Identities@http://www.worldcat.org/identities/lccn-no2009184539 +http://viaf.org/viaf/103055641 Identities@http://www.worldcat.org/identities/lccn-no2009185361 +http://viaf.org/viaf/103055641 LC|no2009185361 +http://viaf.org/viaf/1030696 ISNI|0000000023907570 +http://viaf.org/viaf/1030696 Identities@http://www.worldcat.org/identities/viaf-1030696 +http://viaf.org/viaf/1030696 RERO|A003363900 +http://viaf.org/viaf/1030696 DNB|127307427 +http://viaf.org/viaf/1030696 DNB@http://d-nb.info/gnd/127307427 +http://viaf.org/viaf/1030696 NTA|256012822 +http://viaf.org/viaf/1030696 PLWABN|9810689709505606 +http://viaf.org/viaf/1030696 SUDOC|075866307 +http://viaf.org/viaf/103070617 Identities@http://www.worldcat.org/identities/lccn-no2009187692 +http://viaf.org/viaf/103070617 ISNI|0000000073198610 +http://viaf.org/viaf/103070617 LC|no2009187692 +http://viaf.org/viaf/103073461 Identities@http://www.worldcat.org/identities/lccn-no2009188131 +http://viaf.org/viaf/103073461 ISNI|0000000073251354 +http://viaf.org/viaf/103073461 LC|no2009188131 +http://viaf.org/viaf/103076134 DNB|130677299 +http://viaf.org/viaf/103076134 J9U|987007435187405171 +http://viaf.org/viaf/103076134 LC|no2009188509 +http://viaf.org/viaf/103076134 RERO|A017383534 +http://viaf.org/viaf/103076134 SUDOC|146874595 +http://viaf.org/viaf/103076134 NUKAT|n 2015056968 +http://viaf.org/viaf/103076134 BNF|16235034 +http://viaf.org/viaf/103076134 ISNI|000000008171374X +http://viaf.org/viaf/103076134 Identities@http://www.worldcat.org/identities/lccn-no2009188509 +http://viaf.org/viaf/103076134 NUKAT@vtls013553382 +http://viaf.org/viaf/103076134 BNF@http://catalogue.bnf.fr/ark:/12148/cb16235034g +http://viaf.org/viaf/103076134 DNB@http://d-nb.info/gnd/130677299 +http://viaf.org/viaf/103081309 Identities@http://www.worldcat.org/identities/lccn-no2009189297 +http://viaf.org/viaf/103081309 LC|no2009189297 +http://viaf.org/viaf/103096187 NKC|jx20070619023 +http://viaf.org/viaf/103097078 NKC|jk01080550 +http://viaf.org/viaf/103100983 NKC|js20091120004 +http://viaf.org/viaf/103109948 NKC|mzk2009544461 +http://viaf.org/viaf/1031145857060222921224 Identities@http://www.worldcat.org/identities/lccn-no2016023935 +http://viaf.org/viaf/1031145857060222921224 LC|no2016023935 +http://viaf.org/viaf/1031146997326818891781 NDL|001106182 +http://viaf.org/viaf/1031146997326818891781 Identities@http://www.worldcat.org/identities/viaf-1031146997326818891781 +http://viaf.org/viaf/1031146997326818891781 NII|DA18168406 +http://viaf.org/viaf/1031150085865715060001 DNB|1137014938 +http://viaf.org/viaf/1031150085865715060001 DNB@http://d-nb.info/gnd/1137014938 +http://viaf.org/viaf/1031154380942830290815 LIH@LNB:WUp;=By +http://viaf.org/viaf/1031154380942830290815 LIH|LNB:WU_p_;=B_y_ +http://viaf.org/viaf/103133554 ISNI|0000000355590872 +http://viaf.org/viaf/103133554 WKP|Q95092444 +http://viaf.org/viaf/103133554 NKC|xx0107534 +http://viaf.org/viaf/103135831 NKC|xx0107792 +http://viaf.org/viaf/103135831 WKP|Q95467618 +http://viaf.org/viaf/103135831 ISNI|0000000072878286 +http://viaf.org/viaf/103144782702419106766 Identities@http://www.worldcat.org/identities/viaf-103144782702419106766 +http://viaf.org/viaf/103144782702419106766 DNB|1077608101 +http://viaf.org/viaf/103144782702419106766 DNB@http://d-nb.info/gnd/1077608101 +http://viaf.org/viaf/103144782948313435870 NUKAT@vtls000100464 +http://viaf.org/viaf/103144782948313435870 BIBSYS|90346857 +http://viaf.org/viaf/103144782948313435870 NUKAT|n 01722034 +http://viaf.org/viaf/103144782948313435870 Identities@http://www.worldcat.org/identities/viaf-103144782948313435870 +http://viaf.org/viaf/103144782978509252031 LC|no2015124098 +http://viaf.org/viaf/103145970366132252874 W2Z|6075642 +http://viaf.org/viaf/103145970366132252874 BIBSYS|6075642 +http://viaf.org/viaf/103145970366132252874 Identities@http://www.worldcat.org/identities/viaf-103145970366132252874 +http://viaf.org/viaf/103146153152405252539 XR|VIAFEXP432635332 +http://viaf.org/viaf/103146936620313780624 Identities@http://www.worldcat.org/identities/viaf-103146936620313780624 +http://viaf.org/viaf/103146936620313780624 NLA|000056962907 +http://viaf.org/viaf/103147724776264591188 Identities@http://www.worldcat.org/identities/viaf-103147724776264591188 +http://viaf.org/viaf/103147724776264591188 DNB@http://d-nb.info/gnd/1116459507 +http://viaf.org/viaf/103147724776264591188 DNB|1116459507 +http://viaf.org/viaf/103147724776264591188 SZ|1116459507 +http://viaf.org/viaf/103148120450694790522 DNB@http://d-nb.info/gnd/1120815401 +http://viaf.org/viaf/103148120450694790522 Identities@http://www.worldcat.org/identities/viaf-103148120450694790522 +http://viaf.org/viaf/103148120450694790522 DNB|1120815401 +http://viaf.org/viaf/103148120859994792001 SUDOC|195541855 +http://viaf.org/viaf/103148120859994792001 Identities@http://www.worldcat.org/identities/viaf-103148120859994792001 +http://viaf.org/viaf/103148996002659752174 BIBSYS|9025543 +http://viaf.org/viaf/103148996002659752174 Identities@http://www.worldcat.org/identities/viaf-103148996002659752174 +http://viaf.org/viaf/103149066637865602565 BIBSYS|12039275 +http://viaf.org/viaf/103149105998668490295 BIBSYS|8080130 +http://viaf.org/viaf/103149105998668490295 LC|n 2007069754 +http://viaf.org/viaf/103149105998668490295 Identities@http://www.worldcat.org/identities/lccn-n2007069754 +http://viaf.org/viaf/103149105998668490295 LC@n2007069754 +http://viaf.org/viaf/103149106168568491208 BIBSYS|8027013 +http://viaf.org/viaf/103149106195868491595 BIBSYS|7021165 +http://viaf.org/viaf/103149106195868491595 Identities@http://www.worldcat.org/identities/viaf-103149106195868491595 +http://viaf.org/viaf/103149106274868492455 LC@no98053700 +http://viaf.org/viaf/103149106274868492455 Identities@http://www.worldcat.org/identities/lccn-no98053700 +http://viaf.org/viaf/103149106274868492455 LC|no 98053700 +http://viaf.org/viaf/103149106274868492455 BIBSYS|8010926 +http://viaf.org/viaf/103149196468874791418 BIBSYS|3027554 +http://viaf.org/viaf/103149294113580520940 Identities@http://www.worldcat.org/identities/viaf-103149294113580520940 +http://viaf.org/viaf/103149294113580520940 BIBSYS|2095591 +http://viaf.org/viaf/103149485824293421856 LC|no2017057695 +http://viaf.org/viaf/103149485824293421856 Identities@http://www.worldcat.org/identities/lccn-no2017057695 +http://viaf.org/viaf/103149617052103751306 LC|n 2017230865 +http://viaf.org/viaf/103149617052103751306 Identities@http://www.worldcat.org/identities/lccn-n2017230865 +http://viaf.org/viaf/103149617052103751306 LC@n2017230865 +http://viaf.org/viaf/103150468203004170235 KRNLK|KAB201716623 +http://viaf.org/viaf/103150468203004170235 ISNI|000000046056174X +http://viaf.org/viaf/103150468207104170502 KRNLK|KAB201716626 +http://viaf.org/viaf/103150468207104170502 ISNI|0000000460561846 +http://viaf.org/viaf/103150483 J9U|987007307360705171 +http://viaf.org/viaf/103150483 Identities@http://www.worldcat.org/identities/viaf-103150483 +http://viaf.org/viaf/103150565588906250372 SUDOC|203359321 +http://viaf.org/viaf/103150565728106251065 SUDOC|202648087 +http://viaf.org/viaf/103151302966148662012 SUDOC|219992657 +http://viaf.org/viaf/103151352045852602224 KRNLK|KAC201757093 +http://viaf.org/viaf/103151352045852602224 ISNI|0000000464488930 +http://viaf.org/viaf/103151352045852602224 Identities@http://www.worldcat.org/identities/viaf-103151352045852602224 +http://viaf.org/viaf/103152380061501760617 SUDOC|224875868 +http://viaf.org/viaf/103152380061501760617 Identities@http://www.worldcat.org/identities/viaf-103152380061501760617 +http://viaf.org/viaf/103152682531623311088 PLWABN|9810631888005606 +http://viaf.org/viaf/103152682531623311088 Identities@http://www.worldcat.org/identities/viaf-103152682531623311088 +http://viaf.org/viaf/103153061237319200389 ISNI|0000000464871374 +http://viaf.org/viaf/103153061237319200389 KRNLK|KAC201827322 +http://viaf.org/viaf/103153124240124490412 Identities@http://www.worldcat.org/identities/viaf-103153124240124490412 +http://viaf.org/viaf/103153124240124490412 PLWABN|9810593350505606 +http://viaf.org/viaf/103153124315724490965 SUDOC|227583752 +http://viaf.org/viaf/103153124329024491575 Identities@http://www.worldcat.org/identities/viaf-103153124329024491575 +http://viaf.org/viaf/103153124329024491575 SUDOC|227327551 +http://viaf.org/viaf/103154013714709190047 KRNLK|KAC2018B1962 +http://viaf.org/viaf/103154013714709190047 ISNI|000000046839152X +http://viaf.org/viaf/103154257833624150968 LIH|LNB:BHLL;=0L +http://viaf.org/viaf/103154590070943080176 Identities@http://www.worldcat.org/identities/viaf-103154590070943080176 +http://viaf.org/viaf/103154590070943080176 KRNLK|KAC2018E2401 +http://viaf.org/viaf/103154590070943080176 ISNI|0000000473460817 +http://viaf.org/viaf/103154590249043082889 KRNLK|KAC2018B3224 +http://viaf.org/viaf/103154590249043082889 ISNI|0000000473929873 +http://viaf.org/viaf/103154739822952990437 SUDOC|232656770 +http://viaf.org/viaf/103154739822952990437 Identities@http://www.worldcat.org/identities/viaf-103154739822952990437 +http://viaf.org/viaf/103156010045349582185 Identities@http://www.worldcat.org/identities/viaf-103156010045349582185 +http://viaf.org/viaf/103156010045349582185 PLWABN|9810572381405606 +http://viaf.org/viaf/103156563577823242670 KRNLK|KAC201939283 +http://viaf.org/viaf/103156563577823242670 ISNI|000000047675305X +http://viaf.org/viaf/103156675131133580073 J9U|987007418039905171 +http://viaf.org/viaf/103158367618801280320 SUDOC|24245383X +http://viaf.org/viaf/103158367742101281463 SUDOC|242274455 +http://viaf.org/viaf/103158367742101281463 Identities@http://www.worldcat.org/identities/viaf-103158367742101281463 +http://viaf.org/viaf/103159234267003371376 Identities@http://www.worldcat.org/identities/viaf-103159234267003371376 +http://viaf.org/viaf/103159234267003371376 RERO|A002981924 +http://viaf.org/viaf/103159397452919301935 CAOONL|ncf10878475 +http://viaf.org/viaf/103159397452919301935 B2Q|ncf10878475 +http://viaf.org/viaf/103159397452919301935 Identities@http://www.worldcat.org/identities/viaf-103159397452919301935 +http://viaf.org/viaf/103159397588119302833 B2Q|ncf10873795 +http://viaf.org/viaf/103159397588119302833 Identities@http://www.worldcat.org/identities/viaf-103159397588119302833 +http://viaf.org/viaf/103159397588119302833 CAOONL|ncf10873795 +http://viaf.org/viaf/103159397597519302981 CAOONL|ncf10822813 +http://viaf.org/viaf/103159397597519302981 B2Q|ncf10822813 +http://viaf.org/viaf/103159477679727990000 LC|nr2007006324 +http://viaf.org/viaf/103160284 Identities@http://www.worldcat.org/identities/viaf-103160284 +http://viaf.org/viaf/103160284 ISNI|000000007309204X +http://viaf.org/viaf/103160284 PTBNP|1376215 +http://viaf.org/viaf/103166576 PTBNP|1388298 +http://viaf.org/viaf/103166576 ISNI|0000000073255638 +http://viaf.org/viaf/103168358 PTBNP|1388979 +http://viaf.org/viaf/103168358 Identities@http://www.worldcat.org/identities/viaf-103168358 +http://viaf.org/viaf/103168358 ISNI|0000000072880095 +http://viaf.org/viaf/103169249 PTBNP|1389381 +http://viaf.org/viaf/103169249 ISNI|0000000072827454 +http://viaf.org/viaf/103170085 PTBNP|1389770 +http://viaf.org/viaf/103170085 ISNI|0000000073255937 +http://viaf.org/viaf/103178654 ISNI|0000000072880933 +http://viaf.org/viaf/103178654 PTBNP|1393257 +http://viaf.org/viaf/103179996 ISNI|0000000072881039 +http://viaf.org/viaf/103179996 PTBNP|1393605 +http://viaf.org/viaf/103184891 Identities@http://www.worldcat.org/identities/viaf-103184891 +http://viaf.org/viaf/103184891 PTBNP|1394877 +http://viaf.org/viaf/103184891 ISNI|0000000072987976 +http://viaf.org/viaf/103189346 Identities@http://www.worldcat.org/identities/viaf-103189346 +http://viaf.org/viaf/103189346 ISNI|0000000073094686 +http://viaf.org/viaf/103189346 PTBNP|1396770 +http://viaf.org/viaf/103190182 PTBNP|1397050 +http://viaf.org/viaf/103190182 ISNI|0000000072988354 +http://viaf.org/viaf/103198751 Identities@http://www.worldcat.org/identities/viaf-103198751 +http://viaf.org/viaf/103198751 SELIBR|330008 +http://viaf.org/viaf/103198751 ISNI|0000000072719170 +http://viaf.org/viaf/103198751 SELIBR@qn25bgx81gkppb1 +http://viaf.org/viaf/103203448 SUDOC|149955847 +http://viaf.org/viaf/103203448 DNB|1089682018 +http://viaf.org/viaf/103203448 Identities@http://www.worldcat.org/identities/viaf-103203448 +http://viaf.org/viaf/103203448 DNB@http://d-nb.info/gnd/1089682018 +http://viaf.org/viaf/103203448 ISNI|0000000430802979 +http://viaf.org/viaf/1032145857953523021267 DNB|1087316928 +http://viaf.org/viaf/1032145857953523021267 Identities@http://www.worldcat.org/identities/viaf-1032145857953523021267 +http://viaf.org/viaf/1032145857953523021267 DNB@http://d-nb.info/gnd/1087316928 +http://viaf.org/viaf/1032152636118020050995 SUDOC|226149390 +http://viaf.org/viaf/1032152636118020050995 Identities@http://www.worldcat.org/identities/viaf-1032152636118020050995 +http://viaf.org/viaf/1032155226741284490007 LC@n2019011983 +http://viaf.org/viaf/1032155226741284490007 LC|n 2019011983 +http://viaf.org/viaf/103235623 BNF|16164241 +http://viaf.org/viaf/103235623 ISNI|0000000073496706 +http://viaf.org/viaf/103235623 BNF@http://catalogue.bnf.fr/ark:/12148/cb16164241h +http://viaf.org/viaf/103235623 Identities@http://www.worldcat.org/identities/viaf-103235623 +http://viaf.org/viaf/103236514 ISNI|000000007349687X +http://viaf.org/viaf/103236514 BNF@http://catalogue.bnf.fr/ark:/12148/cb16164460b +http://viaf.org/viaf/103236514 Identities@http://www.worldcat.org/identities/viaf-103236514 +http://viaf.org/viaf/103236514 BNF|16164460 +http://viaf.org/viaf/103236514 NTA|227030664 +http://viaf.org/viaf/103241365 ISNI|0000000073388414 +http://viaf.org/viaf/103241365 BNF|16165720 +http://viaf.org/viaf/103241365 BNF@http://catalogue.bnf.fr/ark:/12148/cb161657205 +http://viaf.org/viaf/103241365 Identities@http://www.worldcat.org/identities/viaf-103241365 +http://viaf.org/viaf/103241365 SUDOC|101448597 +http://viaf.org/viaf/103242300 WKP|Q53508255 +http://viaf.org/viaf/103242300 Identities@http://www.worldcat.org/identities/viaf-103242300 +http://viaf.org/viaf/103242300 BNF@http://catalogue.bnf.fr/ark:/12148/cb161659661 +http://viaf.org/viaf/103242300 ISNI|0000000073322917 +http://viaf.org/viaf/103242300 DNB|1046083678 +http://viaf.org/viaf/103242300 DNB@http://d-nb.info/gnd/1046083678 +http://viaf.org/viaf/103242300 BNF|16165966 +http://viaf.org/viaf/103247206 BNF|16167299 +http://viaf.org/viaf/103247206 SUDOC|138484945 +http://viaf.org/viaf/103247206 BNF@http://catalogue.bnf.fr/ark:/12148/cb16167299j +http://viaf.org/viaf/103247206 Identities@http://www.worldcat.org/identities/viaf-103247206 +http://viaf.org/viaf/103247206 ISNI|0000000073548537 +http://viaf.org/viaf/103247657 Wikipedia@http://fr.wikipedia.org/wiki/Bernard_Deloupy +http://viaf.org/viaf/103247657 BNF|16167427 +http://viaf.org/viaf/103247657 RERO|A027449905 +http://viaf.org/viaf/103247657 WKP|Q66707379 +http://viaf.org/viaf/103247657 Identities@http://www.worldcat.org/identities/viaf-103247657 +http://viaf.org/viaf/103247657 BNF@FRBNF161674274 +http://viaf.org/viaf/103247657 ISNI|0000000073389353 +http://viaf.org/viaf/103247657 SUDOC|127334807 +http://viaf.org/viaf/103264135 DNB@http://d-nb.info/gnd/139939415 +http://viaf.org/viaf/103264135 ISNI|0000000073500074 +http://viaf.org/viaf/103264135 DNB|139939415 +http://viaf.org/viaf/103264135 Identities@http://www.worldcat.org/identities/viaf-103264135 +http://viaf.org/viaf/103267303 DNB@http://d-nb.info/gnd/139942920 +http://viaf.org/viaf/103267303 BNF@http://catalogue.bnf.fr/ark:/12148/cb16211274w +http://viaf.org/viaf/103267303 Identities@http://www.worldcat.org/identities/viaf-103267303 +http://viaf.org/viaf/103267303 ISNI|0000000080096516 +http://viaf.org/viaf/103267303 BNF|16211274 +http://viaf.org/viaf/103267303 DNB|139942920 +http://viaf.org/viaf/103269987 DNB|139946144 +http://viaf.org/viaf/103269987 DNB@http://d-nb.info/gnd/139946144 +http://viaf.org/viaf/103275278 DNB@http://d-nb.info/gnd/139952179 +http://viaf.org/viaf/103275278 ISNI|0000000073391592 +http://viaf.org/viaf/103275278 Identities@http://www.worldcat.org/identities/viaf-103275278 +http://viaf.org/viaf/103275278 DNB|139952179 +http://viaf.org/viaf/103283792 SZ|139961968 +http://viaf.org/viaf/103283792 BLBNB|001130553 +http://viaf.org/viaf/103283792 DNB@http://d-nb.info/gnd/139961968 +http://viaf.org/viaf/103283792 Identities@http://www.worldcat.org/identities/lccn-no2013026632 +http://viaf.org/viaf/103283792 SZ@http://d-nb.info/gnd/139961968 +http://viaf.org/viaf/103283792 LC|no2013026632 +http://viaf.org/viaf/103283792 DNB|139961968 +http://viaf.org/viaf/103283792 SUDOC|202681793 +http://viaf.org/viaf/103293142 DNB@http://d-nb.info/gnd/139972625 +http://viaf.org/viaf/103293142 DNB|139972625 +http://viaf.org/viaf/103293142 ISNI|0000000073448114 +http://viaf.org/viaf/103293142 Identities@http://www.worldcat.org/identities/viaf-103293142 +http://viaf.org/viaf/103294484 ISNI|0000000073328411 +http://viaf.org/viaf/103294484 DNB@http://d-nb.info/gnd/139974199 +http://viaf.org/viaf/103294484 DNB|139974199 +http://viaf.org/viaf/103294484 Identities@http://www.worldcat.org/identities/viaf-103294484 +http://viaf.org/viaf/103305517 Identities@http://www.worldcat.org/identities/viaf-103305517 +http://viaf.org/viaf/103305517 BLBNB|000183920 +http://viaf.org/viaf/1033145856888922920449 DNB@http://d-nb.info/gnd/1091238898 +http://viaf.org/viaf/1033145856888922920449 DNB|1091238898 +http://viaf.org/viaf/1033145857091722922084 DNB@http://d-nb.info/gnd/1091786100 +http://viaf.org/viaf/1033145857091722922084 DNB|1091786100 +http://viaf.org/viaf/103345667 DNB|140031936 +http://viaf.org/viaf/103345667 Identities@http://www.worldcat.org/identities/viaf-103345667 +http://viaf.org/viaf/103345667 ISNI|0000000073551955 +http://viaf.org/viaf/103345667 DNB@http://d-nb.info/gnd/140031936 +http://viaf.org/viaf/103368932 ISNI|0000000073335355 +http://viaf.org/viaf/103368932 WKP|Q93330976 +http://viaf.org/viaf/103368932 Wikipedia@http://de.wikipedia.org/wiki/Franz_Plotnarek +http://viaf.org/viaf/103368932 DNB|140058699 +http://viaf.org/viaf/103368932 DNB@http://d-nb.info/gnd/140058699 +http://viaf.org/viaf/103397444 DNB@http://d-nb.info/gnd/140091319 +http://viaf.org/viaf/103397444 Identities@http://www.worldcat.org/identities/viaf-103397444 +http://viaf.org/viaf/103397444 ISNI|0000000073401156 +http://viaf.org/viaf/103397444 DNB|140091319 +http://viaf.org/viaf/103410655 DNB@http://d-nb.info/gnd/14010657X +http://viaf.org/viaf/103410655 Identities@http://www.worldcat.org/identities/viaf-103410655 +http://viaf.org/viaf/103410655 DNB|14010657X +http://viaf.org/viaf/103410655 ISNI|0000000073402167 +http://viaf.org/viaf/1034145857097922922175 Identities@http://www.worldcat.org/identities/viaf-1034145857097922922175 +http://viaf.org/viaf/1034145857097922922175 DNB|1086144686 +http://viaf.org/viaf/1034145857097922922175 DNB@http://d-nb.info/gnd/1086144686 +http://viaf.org/viaf/1034152636063620051234 Identities@http://www.worldcat.org/identities/viaf-1034152636063620051234 +http://viaf.org/viaf/1034152636063620051234 DNB@http://d-nb.info/gnd/1159046239 +http://viaf.org/viaf/1034152636063620051234 DNB|1159046239 +http://viaf.org/viaf/1034154381052830292033 LIH|LNB:J_y_D;=B_d_ +http://viaf.org/viaf/1034154381052830292033 LIH@LNB:JyD;=Bd +http://viaf.org/viaf/1034159474355827662984 CAOONL|ncf11689472 +http://viaf.org/viaf/1034159474356627662943 CAOONL|ncf11470489 +http://viaf.org/viaf/103418729 Identities@http://www.worldcat.org/identities/viaf-103418729 +http://viaf.org/viaf/103418729 DNB@http://d-nb.info/gnd/140115889 +http://viaf.org/viaf/103418729 DNB|140115889 +http://viaf.org/viaf/103418729 ISNI|0000000073457977 +http://viaf.org/viaf/103424515 DNB|140122494 +http://viaf.org/viaf/103424515 ISNI|0000000073340656 +http://viaf.org/viaf/103424515 SZ|140122494 +http://viaf.org/viaf/103424515 Identities@http://www.worldcat.org/identities/viaf-103424515 +http://viaf.org/viaf/103424515 DNB@http://d-nb.info/gnd/140122494 +http://viaf.org/viaf/103424515 SZ@http://d-nb.info/gnd/140122494 +http://viaf.org/viaf/103430752 DNB@http://d-nb.info/gnd/140129510 +http://viaf.org/viaf/103430752 BNF@http://catalogue.bnf.fr/ark:/12148/cb151024149 +http://viaf.org/viaf/103430752 LC@n90702701 +http://viaf.org/viaf/103430752 Identities@http://www.worldcat.org/identities/lccn-n90702701 +http://viaf.org/viaf/103430752 CAOONL|ncf11520043 +http://viaf.org/viaf/103430752 J9U|987007435187105171 +http://viaf.org/viaf/103430752 NII|DA19066467 +http://viaf.org/viaf/103430752 NKC|xx0101363 +http://viaf.org/viaf/103430752 ISNI|0000000081715614 +http://viaf.org/viaf/103430752 BNF|15102414 +http://viaf.org/viaf/103430752 NTA|322948568 +http://viaf.org/viaf/103430752 DNB|140129510 +http://viaf.org/viaf/103430752 BIBSYS|6047418 +http://viaf.org/viaf/103430752 SUDOC|092359116 +http://viaf.org/viaf/103430752 LC|n 90702701 +http://viaf.org/viaf/103433876 DNB@http://d-nb.info/gnd/140132872 +http://viaf.org/viaf/103433876 DNB|140132872 +http://viaf.org/viaf/103433876 ISNI|0000000073459219 +http://viaf.org/viaf/103442335 DNB|140142622 +http://viaf.org/viaf/103442335 Identities@http://www.worldcat.org/identities/viaf-103442335 +http://viaf.org/viaf/103442335 DNB@http://d-nb.info/gnd/140142622 +http://viaf.org/viaf/103442335 ISNI|0000000073513721 +http://viaf.org/viaf/103452631 Wikipedia@http://en.wikipedia.org/wiki/Cal_Lane +http://viaf.org/viaf/103452631 ISNI|0000000080097148 +http://viaf.org/viaf/103452631 CAOONL|ncf10587481 +http://viaf.org/viaf/103452631 LC|no2010092656 +http://viaf.org/viaf/103452631 B2Q|0000897149 +http://viaf.org/viaf/103452631 WKP|Q47138073 +http://viaf.org/viaf/103452631 Wikipedia@http://ar.wikipedia.org/wiki/كال_لان +http://viaf.org/viaf/103452631 Identities@http://www.worldcat.org/identities/lccn-no2010092656 +http://viaf.org/viaf/103455304 LC|n 2008219711 +http://viaf.org/viaf/103455304 ISNI|0000000073556182 +http://viaf.org/viaf/103455304 LC@n2008219711 +http://viaf.org/viaf/103455304 Identities@http://www.worldcat.org/identities/lccn-n2008219711 +http://viaf.org/viaf/103455304 NTA|372587461 +http://viaf.org/viaf/103455304 NLA|000049287834 +http://viaf.org/viaf/103455755 SUDOC|169818098 +http://viaf.org/viaf/103455755 Identities@http://www.worldcat.org/identities/lccn-n2009076057 +http://viaf.org/viaf/103455755 LC|n 2009076057 +http://viaf.org/viaf/103455755 DNB@http://d-nb.info/gnd/141184531 +http://viaf.org/viaf/103455755 LC@n2009076057 +http://viaf.org/viaf/103455755 ISNI|0000000078925194 +http://viaf.org/viaf/103455755 DNB|141184531 +http://viaf.org/viaf/103461497 ISNI|0000000073345692 +http://viaf.org/viaf/103461497 Identities@http://www.worldcat.org/identities/lccn-n2009076942 +http://viaf.org/viaf/103461497 LC@n2009076942 +http://viaf.org/viaf/103461497 LC|n 2009076942 +http://viaf.org/viaf/103467338 LC|n 2009077928 +http://viaf.org/viaf/103467338 Identities@http://www.worldcat.org/identities/lccn-n2009077928 +http://viaf.org/viaf/103467338 LC@n2009077928 +http://viaf.org/viaf/103471793 ISNI|0000000073518477 +http://viaf.org/viaf/103471793 LC@n2009078614 +http://viaf.org/viaf/103471793 Identities@http://www.worldcat.org/identities/lccn-n2009078614 +http://viaf.org/viaf/103471793 LC|n 2009078614 +http://viaf.org/viaf/103472189 LC@n2009078681 +http://viaf.org/viaf/103472189 Identities@http://www.worldcat.org/identities/lccn-n2009078681 +http://viaf.org/viaf/103472189 LC|n 2009078681 +http://viaf.org/viaf/103473575 CAOONL|ncf11565377 +http://viaf.org/viaf/103473575 LC|n 2009078888 +http://viaf.org/viaf/103473575 NUKAT|n 2011062063 +http://viaf.org/viaf/103473575 ISNI|0000000073348535 +http://viaf.org/viaf/103473575 NUKAT@vtls007459047 +http://viaf.org/viaf/103473575 LC@n2009078888 +http://viaf.org/viaf/103473575 Identities@http://www.worldcat.org/identities/lccn-n2009078888 +http://viaf.org/viaf/103475852 BNC@.a19939796 +http://viaf.org/viaf/103475852 ISNI|0000000121035649 +http://viaf.org/viaf/103475852 LC@n2009079234 +http://viaf.org/viaf/103475852 Identities@http://www.worldcat.org/identities/lccn-n2009079234 +http://viaf.org/viaf/103475852 SUDOC|143470280 +http://viaf.org/viaf/103475852 BNC|a19939796 +http://viaf.org/viaf/103475852 LC|n 2009079234 +http://viaf.org/viaf/103475852 BNE|XX4772388 +http://viaf.org/viaf/103478976 Identities@http://www.worldcat.org/identities/lccn-n2009079714 +http://viaf.org/viaf/103478976 LC@n2009079714 +http://viaf.org/viaf/103478976 LC|n 2009079714 +http://viaf.org/viaf/103482980 DNB@http://d-nb.info/gnd/106068375X +http://viaf.org/viaf/103482980 BNF|16586612 +http://viaf.org/viaf/103482980 ISNI|0000000073350598 +http://viaf.org/viaf/103482980 LC|n 2009080382 +http://viaf.org/viaf/103482980 NTA|35122551X +http://viaf.org/viaf/103482980 NUKAT|n 2015142252 +http://viaf.org/viaf/103482980 SUDOC|170457257 +http://viaf.org/viaf/103482980 NKC|jo2016898668 +http://viaf.org/viaf/103482980 BIBSYS|11010727 +http://viaf.org/viaf/103482980 DE663|pe41011043 +http://viaf.org/viaf/103482980 DNB|106068375X +http://viaf.org/viaf/103482980 J9U|987007449470605171 +http://viaf.org/viaf/103482980 LNB|LNC10-000285493 +http://viaf.org/viaf/103482980 CAOONL|ncf11584648 +http://viaf.org/viaf/103482980 Identities@http://www.worldcat.org/identities/lccn-n2009080382 +http://viaf.org/viaf/103482980 BNF@http://catalogue.bnf.fr/ark:/12148/cb16586612m +http://viaf.org/viaf/103482980 LC@n2009080382 +http://viaf.org/viaf/103482980 NUKAT@vtls011711708 +http://viaf.org/viaf/103483420 Identities@http://www.worldcat.org/identities/lccn-n2009080448 +http://viaf.org/viaf/103483420 LC|n 2009080448 +http://viaf.org/viaf/103483420 LC@n2009080448 +http://viaf.org/viaf/103483871 LC@n2009080535 +http://viaf.org/viaf/103483871 ISNI|0000000073466371 +http://viaf.org/viaf/103483871 LC|n 2009080535 +http://viaf.org/viaf/103486995 NUKAT@vtls007470831 +http://viaf.org/viaf/103486995 BIBSYS|10018533 +http://viaf.org/viaf/103486995 J9U|987007342441805171 +http://viaf.org/viaf/103486995 NKC|xx0248071 +http://viaf.org/viaf/103486995 LC|n 2009081016 +http://viaf.org/viaf/103486995 ISNI|0000000073466865 +http://viaf.org/viaf/103486995 NII|DA17168105 +http://viaf.org/viaf/103486995 CAOONL|ncf11560426 +http://viaf.org/viaf/103486995 NTA|326117156 +http://viaf.org/viaf/103486995 NUKAT|n 2011142636 +http://viaf.org/viaf/103486995 Identities@http://www.worldcat.org/identities/lccn-n2009081016 +http://viaf.org/viaf/103486995 LC@n2009081016 +http://viaf.org/viaf/103487886 LC@n2009081155 +http://viaf.org/viaf/103487886 ISNI|0000000073351638 +http://viaf.org/viaf/103487886 LC|n 2009081155 +http://viaf.org/viaf/103487886 Identities@http://www.worldcat.org/identities/lccn-n2009081155 +http://viaf.org/viaf/103489668 LC@n2009081473 +http://viaf.org/viaf/103489668 ISNI|0000000073352008 +http://viaf.org/viaf/103489668 LC|n 2009081473 +http://viaf.org/viaf/103489668 Identities@http://www.worldcat.org/identities/lccn-n2009081473 +http://viaf.org/viaf/103491395 LC@n2009081752 +http://viaf.org/viaf/103491395 LC|n 2009081752 +http://viaf.org/viaf/103491395 Identities@http://www.worldcat.org/identities/lccn-n2009081752 +http://viaf.org/viaf/103494112 LC|n 2009165789 +http://viaf.org/viaf/103494112 Identities@http://www.worldcat.org/identities/lccn-n2009165789 +http://viaf.org/viaf/103494112 LC@n2009165789 +http://viaf.org/viaf/103495454 LC@n2009185082 +http://viaf.org/viaf/103495454 Identities@http://www.worldcat.org/identities/lccn-n2009185082 +http://viaf.org/viaf/103495454 LC|n 2009185082 +http://viaf.org/viaf/103495454 J9U|987007342437905171 +http://viaf.org/viaf/103496840 LC@n2009185368 +http://viaf.org/viaf/103496840 Identities@http://www.worldcat.org/identities/lccn-n2009185368 +http://viaf.org/viaf/103496840 ISNI|0000000073413915 +http://viaf.org/viaf/103496840 DNB|144029723 +http://viaf.org/viaf/103496840 LC|n 2009185368 +http://viaf.org/viaf/103496840 J9U|987007342436605171 +http://viaf.org/viaf/103496840 DNB@http://d-nb.info/gnd/144029723 +http://viaf.org/viaf/103497687 LC|n 2009202139 +http://viaf.org/viaf/103497687 Identities@http://www.worldcat.org/identities/lccn-n2009202139 +http://viaf.org/viaf/103497687 LC@n2009202139 +http://viaf.org/viaf/103497687 ISNI|0000000073353561 +http://viaf.org/viaf/103500646 SUDOC|18897394X +http://viaf.org/viaf/103500646 DNB@http://d-nb.info/gnd/1147141754 +http://viaf.org/viaf/103500646 NUKAT@vtls013510390 +http://viaf.org/viaf/103500646 LC@n2009215845 +http://viaf.org/viaf/103500646 Identities@http://www.worldcat.org/identities/lccn-n2009215845 +http://viaf.org/viaf/103500646 PLWABN|9810644485405606 +http://viaf.org/viaf/103500646 DNB|1147141754 +http://viaf.org/viaf/103500646 ISNI|0000000073354273 +http://viaf.org/viaf/103500646 NUKAT|n 2015056433 +http://viaf.org/viaf/103500646 LC|n 2009215845 +http://viaf.org/viaf/103506163 LC|n 2009221320 +http://viaf.org/viaf/103506163 LC@n2009221320 +http://viaf.org/viaf/103506163 Identities@http://www.worldcat.org/identities/lccn-n2009221320 +http://viaf.org/viaf/103506163 ISNI|0000000073355604 +http://viaf.org/viaf/103507829 J9U|987007386871605171 +http://viaf.org/viaf/103507829 LC|nb2009030582 +http://viaf.org/viaf/103507829 Identities@http://www.worldcat.org/identities/lccn-nb2009030582 +http://viaf.org/viaf/103512229 LC|nb2009031395 +http://viaf.org/viaf/103512229 Identities@http://www.worldcat.org/identities/lccn-nb2009031395 +http://viaf.org/viaf/103514182 SUDOC|142996734 +http://viaf.org/viaf/103514182 ISNI|0000000073471920 +http://viaf.org/viaf/103514182 Identities@http://www.worldcat.org/identities/lccn-nb2009031758 +http://viaf.org/viaf/103514182 LC|nb2009031758 +http://viaf.org/viaf/103514182 NTA|323550487 +http://viaf.org/viaf/1035152637754220220002 NII|DA1890130X +http://viaf.org/viaf/1035154381061430292474 LIH|LNB:G__L;=_w_C +http://viaf.org/viaf/1035154381061430292474 LIH@LNB:G+L;=wC +http://viaf.org/viaf/103520699 ISNI|0000000073526645 +http://viaf.org/viaf/103520699 Identities@http://www.worldcat.org/identities/lccn-no2009191378 +http://viaf.org/viaf/103520699 LC|no2009191378 +http://viaf.org/viaf/103528042 LC|no2009192571 +http://viaf.org/viaf/103528042 Identities@http://www.worldcat.org/identities/lccn-no2009192571 +http://viaf.org/viaf/103528493 Identities@http://www.worldcat.org/identities/lccn-no2009192688 +http://viaf.org/viaf/103528493 ISNI|0000000073474486 +http://viaf.org/viaf/103528493 LC|no2009192688 +http://viaf.org/viaf/103534108 Identities@http://www.worldcat.org/identities/lccn-no2009193613 +http://viaf.org/viaf/103534108 LC|no2009193613 +http://viaf.org/viaf/103544855 Identities@http://www.worldcat.org/identities/lccn-no2009195249 +http://viaf.org/viaf/103544855 LC|no2009195249 +http://viaf.org/viaf/103553314 Identities@http://www.worldcat.org/identities/lccn-no2009196662 +http://viaf.org/viaf/103553314 LC|no2009196662 +http://viaf.org/viaf/103553765 LC|no2009196732 +http://viaf.org/viaf/103553765 ISNI|0000000073478989 +http://viaf.org/viaf/103553765 Identities@http://www.worldcat.org/identities/lccn-no2009196732 +http://viaf.org/viaf/103555547 LC|no2009196994 +http://viaf.org/viaf/103555547 SUDOC|148935710 +http://viaf.org/viaf/103555547 J9U|987007433423305171 +http://viaf.org/viaf/103555547 ISNI|0000000073479383 +http://viaf.org/viaf/103555547 Identities@http://www.worldcat.org/identities/lccn-no2009196994 +http://viaf.org/viaf/103555547 NTA|304084840 +http://viaf.org/viaf/103555547 NLA|000048220870 +http://viaf.org/viaf/103558391 LC|no2009197444 +http://viaf.org/viaf/103558391 Identities@http://www.worldcat.org/identities/lccn-no2009197444 +http://viaf.org/viaf/103564952 ISNI|0000000073481248 +http://viaf.org/viaf/103564952 LC|no2009198514 +http://viaf.org/viaf/103564952 Identities@http://www.worldcat.org/identities/lccn-no2009198514 +http://viaf.org/viaf/103568516 LC|no2009199138 +http://viaf.org/viaf/103568516 Identities@http://www.worldcat.org/identities/lccn-no2009199138 +http://viaf.org/viaf/103570199 Identities@http://www.worldcat.org/identities/lccn-no2009199391 +http://viaf.org/viaf/103570199 LC|no2009199391 +http://viaf.org/viaf/103573411 Identities@http://www.worldcat.org/identities/lccn-no2009199909 +http://viaf.org/viaf/103573411 LC|no2009199909 +http://viaf.org/viaf/103573862 Identities@http://www.worldcat.org/identities/lccn-no2009199976 +http://viaf.org/viaf/103573862 ISNI|0000000073565580 +http://viaf.org/viaf/103573862 LC|no2009199976 +http://viaf.org/viaf/103574753 LC|no2009200107 +http://viaf.org/viaf/103574753 Identities@http://www.worldcat.org/identities/lccn-no2009200107 +http://viaf.org/viaf/103576535 ISNI|0000000073536384 +http://viaf.org/viaf/103576535 LC|no2009200462 +http://viaf.org/viaf/103576535 Identities@http://www.worldcat.org/identities/lccn-no2009200462 +http://viaf.org/viaf/103580990 Identities@http://www.worldcat.org/identities/lccn-no2009201118 +http://viaf.org/viaf/103580990 LC|no2009201118 +http://viaf.org/viaf/103580990 ISNI|0000000073372850 +http://viaf.org/viaf/103581386 LC|no2009201185 +http://viaf.org/viaf/103581386 ISNI|0000000073429941 +http://viaf.org/viaf/103581386 Identities@http://www.worldcat.org/identities/lccn-no2009201185 +http://viaf.org/viaf/103582321 Identities@http://www.worldcat.org/identities/lccn-no2009201351 +http://viaf.org/viaf/103582321 LC|no2009201351 +http://viaf.org/viaf/103582321 NTA|069381208 +http://viaf.org/viaf/103582321 ISNI|000000007356617X +http://viaf.org/viaf/103585896 LC|no2009201945 +http://viaf.org/viaf/103585896 ISNI|0000000073430723 +http://viaf.org/viaf/103588118 Identities@http://www.worldcat.org/identities/lccn-no2009202338 +http://viaf.org/viaf/103588118 LC|no2009202338 +http://viaf.org/viaf/103601824 LC|no2009204529 +http://viaf.org/viaf/103601824 ISNI|0000000073433895 +http://viaf.org/viaf/103601824 Identities@http://www.worldcat.org/identities/lccn-no2009204529 +http://viaf.org/viaf/103607297 BNF|16199714 +http://viaf.org/viaf/103607297 DNB|1023544318 +http://viaf.org/viaf/103607297 BNF@http://catalogue.bnf.fr/ark:/12148/cb16199714t +http://viaf.org/viaf/103607297 Identities@http://www.worldcat.org/identities/lccn-no2009205420 +http://viaf.org/viaf/103607297 SUDOC|135688590 +http://viaf.org/viaf/103607297 DNB@http://d-nb.info/gnd/1023544318 +http://viaf.org/viaf/103607297 ISNI|0000000078546733 +http://viaf.org/viaf/103607297 LC|no2009205420 +http://viaf.org/viaf/103608683 Identities@http://www.worldcat.org/identities/lccn-no2009205657 +http://viaf.org/viaf/103608683 ISNI|0000000073435153 +http://viaf.org/viaf/103608683 LC|no2009205657 +http://viaf.org/viaf/103612967 ISNI|0000000073542637 +http://viaf.org/viaf/103613902 Identities@http://www.worldcat.org/identities/lccn-n88035752 +http://viaf.org/viaf/103613902 NTA|074341782 +http://viaf.org/viaf/103613902 BNE|XX1069243 +http://viaf.org/viaf/103613902 DNB|170594211 +http://viaf.org/viaf/103613902 NKC|mzk2009533950 +http://viaf.org/viaf/103613902 NUKAT|n 2019145743 +http://viaf.org/viaf/103613902 LC@n88035752 +http://viaf.org/viaf/103613902 NUKAT@vtls018233043 +http://viaf.org/viaf/103613902 DNB@http://d-nb.info/gnd/170594211 +http://viaf.org/viaf/103613902 J9U|987007344967805171 +http://viaf.org/viaf/103613902 NLA|000035431573 +http://viaf.org/viaf/103613902 ISNI|0000000084048511 +http://viaf.org/viaf/103613902 LC|n 88035752 +http://viaf.org/viaf/1036159233962503370421 Identities@http://www.worldcat.org/identities/viaf-1036159233962503370421 +http://viaf.org/viaf/1036159233962503370421 RERO|A021609811 +http://viaf.org/viaf/1036159234085103370680 RERO|A018432097 +http://viaf.org/viaf/1036159234085103370680 Identities@http://www.worldcat.org/identities/viaf-1036159234085103370680 +http://viaf.org/viaf/103618808 LC|n 89102550 +http://viaf.org/viaf/103618808 NSK|000511199 +http://viaf.org/viaf/103618808 NKC|vse2009553705 +http://viaf.org/viaf/103618808 BNF|12299205 +http://viaf.org/viaf/103618808 SUDOC|031854575 +http://viaf.org/viaf/103618808 NII|DA04334369 +http://viaf.org/viaf/103618808 LIH@LNB:BRA9;=w3 +http://viaf.org/viaf/103618808 BNF@http://catalogue.bnf.fr/ark:/12148/cb122992053 +http://viaf.org/viaf/103618808 NDL|001280693 +http://viaf.org/viaf/103618808 LIH|LNB:BRA9;=_w_3 +http://viaf.org/viaf/103618808 LC@n89102550 +http://viaf.org/viaf/103618808 J9U|987007299888705171 +http://viaf.org/viaf/103618808 RERO|A003389663 +http://viaf.org/viaf/103618808 NUKAT@vtls000305846 +http://viaf.org/viaf/103618808 Wikipedia@http://ar.wikipedia.org/wiki/ديفيد_هولم +http://viaf.org/viaf/103618808 DNB@http://d-nb.info/gnd/131915401 +http://viaf.org/viaf/103618808 Identities@http://www.worldcat.org/identities/lccn-n89102550 +http://viaf.org/viaf/103618808 Wikipedia@http://en.wikipedia.org/wiki/David_Hulme_(geographer) +http://viaf.org/viaf/103618808 ORCID@http://orcid.org/0000-0002-4111-1589 +http://viaf.org/viaf/103618808 CAOONL|ncf12125918 +http://viaf.org/viaf/103618808 DNB|131915401 +http://viaf.org/viaf/103618808 WKP|Q16151768 +http://viaf.org/viaf/103618808 LNB|LNC10-000019138 +http://viaf.org/viaf/103618808 NUKAT|n 97020027 +http://viaf.org/viaf/103618808 ISNI|0000000121461648 +http://viaf.org/viaf/103618808 NLA|000035757364 +http://viaf.org/viaf/103618808 BIBSYS|90542010 +http://viaf.org/viaf/103619870 Identities@http://www.worldcat.org/identities/viaf-103619870 +http://viaf.org/viaf/103619870 NKC|xx0108777 +http://viaf.org/viaf/103619870 WKP|Q95092517 +http://viaf.org/viaf/103619870 ISNI|0000000073436252 +http://viaf.org/viaf/103621921 ISNI|000000007885682X +http://viaf.org/viaf/103621921 NKC|xx0109037 +http://viaf.org/viaf/103621921 DNB@http://d-nb.info/gnd/136999271 +http://viaf.org/viaf/103621921 DNB|136999271 +http://viaf.org/viaf/103621921 Identities@http://www.worldcat.org/identities/viaf-103621921 +http://viaf.org/viaf/103638905 J9U|987007310796005171 +http://viaf.org/viaf/103638905 Identities@http://www.worldcat.org/identities/viaf-103638905 +http://viaf.org/viaf/103638905 ISNI|0000000073545387 +http://viaf.org/viaf/103663853 BNF@http://catalogue.bnf.fr/ark:/12148/cb16169015m +http://viaf.org/viaf/103663853 Identities@http://www.worldcat.org/identities/viaf-103663853 +http://viaf.org/viaf/103663853 BNF|16169015 +http://viaf.org/viaf/103667868 ISNI|0000000076504230 +http://viaf.org/viaf/103667868 LC@n90713211 +http://viaf.org/viaf/103667868 LC|n 90713211 +http://viaf.org/viaf/103667868 Identities@http://www.worldcat.org/identities/lccn-n90713211 +http://viaf.org/viaf/103681222 ISNI|0000000075702999 +http://viaf.org/viaf/103681222 BNF|16173572 +http://viaf.org/viaf/103681222 Identities@http://www.worldcat.org/identities/viaf-103681222 +http://viaf.org/viaf/103681222 BNF@http://catalogue.bnf.fr/ark:/12148/cb16173572k +http://viaf.org/viaf/103681673 NTA|30843496X +http://viaf.org/viaf/103681673 Identities@http://www.worldcat.org/identities/viaf-103681673 +http://viaf.org/viaf/103681673 BNF@http://catalogue.bnf.fr/ark:/12148/cb161736616 +http://viaf.org/viaf/103681673 ISNI|0000000075776373 +http://viaf.org/viaf/103681673 BNF|16173661 +http://viaf.org/viaf/103681673 SUDOC|128657642 +http://viaf.org/viaf/103683950 Wikipedia@http://fr.wikipedia.org/wiki/Ariane_Michel +http://viaf.org/viaf/103683950 WKP|Q2861208 +http://viaf.org/viaf/103683950 BNF@http://catalogue.bnf.fr/ark:/12148/cb16174289q +http://viaf.org/viaf/103683950 ISNI|0000000075557939 +http://viaf.org/viaf/103683950 SUDOC|142638145 +http://viaf.org/viaf/103683950 BNF|16174289 +http://viaf.org/viaf/103683950 RERO|A017713949 +http://viaf.org/viaf/103683950 Identities@http://www.worldcat.org/identities/viaf-103683950 +http://viaf.org/viaf/103685237 Identities@http://www.worldcat.org/identities/viaf-103685237 +http://viaf.org/viaf/103685237 SUDOC|164529640 +http://viaf.org/viaf/103685237 BNF|16174628 +http://viaf.org/viaf/103685237 ISNI|0000000074627480 +http://viaf.org/viaf/103685237 BNF@http://catalogue.bnf.fr/ark:/12148/cb16174628m +http://viaf.org/viaf/103688900 SUDOC|160613701 +http://viaf.org/viaf/103688900 BNF|16175610 +http://viaf.org/viaf/103688900 BNF@http://catalogue.bnf.fr/ark:/12148/cb16175610s +http://viaf.org/viaf/103688900 Identities@http://www.worldcat.org/identities/viaf-103688900 +http://viaf.org/viaf/103688900 ISNI|000000007491632X +http://viaf.org/viaf/10369275 NUKAT|n 2012054584 +http://viaf.org/viaf/10369275 RERO|A013346407 +http://viaf.org/viaf/10369275 ISNI|0000000397341639 +http://viaf.org/viaf/10369275 Identities@http://www.worldcat.org/identities/viaf-10369275 +http://viaf.org/viaf/10369275 NUKAT@vtls009065762 +http://viaf.org/viaf/10369275 NTA|250151405 +http://viaf.org/viaf/103707584 ISNI|0000000082864339 +http://viaf.org/viaf/103707584 Identities@http://www.worldcat.org/identities/lccn-no2010140346 +http://viaf.org/viaf/103707584 LC|no2010140346 +http://viaf.org/viaf/1037144647704565498129 LC@n2007209322 +http://viaf.org/viaf/1037144647704565498129 NTA|396118992 +http://viaf.org/viaf/1037144647704565498129 RERO|A027194665 +http://viaf.org/viaf/1037144647704565498129 LC|n 2007209322 +http://viaf.org/viaf/1037144647704565498129 Identities@http://www.worldcat.org/identities/lccn-n2007209322 +http://viaf.org/viaf/103715152 DNB|14016815X +http://viaf.org/viaf/103715152 DNB@http://d-nb.info/gnd/14016815X +http://viaf.org/viaf/103715152 Identities@http://www.worldcat.org/identities/viaf-103715152 +http://viaf.org/viaf/1037154380896830290114 LIH@LNB:O1K;=uY +http://viaf.org/viaf/1037154380896830290114 LIH|LNB:O1K;=_u_Y +http://viaf.org/viaf/103715927 DNB|140169016 +http://viaf.org/viaf/103715927 DNB@http://d-nb.info/gnd/140169016 +http://viaf.org/viaf/103742701 DNB|140199535 +http://viaf.org/viaf/103742701 DNB@http://d-nb.info/gnd/140199535 +http://viaf.org/viaf/103773446 Wikipedia@http://de.wikipedia.org/wiki/Martin_Schöneich +http://viaf.org/viaf/103773446 DNB|140234381 +http://viaf.org/viaf/103773446 DNB@http://d-nb.info/gnd/140234381 +http://viaf.org/viaf/103773446 ISNI|0000000075133925 +http://viaf.org/viaf/103773446 WKP|Q17325074 +http://viaf.org/viaf/103773446 Identities@http://www.worldcat.org/identities/viaf-103773446 +http://viaf.org/viaf/103786091 DNB@http://d-nb.info/gnd/140248609 +http://viaf.org/viaf/103786091 Identities@http://www.worldcat.org/identities/viaf-103786091 +http://viaf.org/viaf/103786091 ISNI|000000007432990X +http://viaf.org/viaf/103786091 DNB|140248609 +http://viaf.org/viaf/103795325 Identities@http://www.worldcat.org/identities/lccn-n2009013580 +http://viaf.org/viaf/103795325 Wikipedia@http://ca.wikipedia.org/wiki/Emilio_Calatayud +http://viaf.org/viaf/103795325 LC|n 2009013580 +http://viaf.org/viaf/103795325 WKP|Q11002740 +http://viaf.org/viaf/103795325 Wikipedia@http://es.wikipedia.org/wiki/Emilio_Calatayud +http://viaf.org/viaf/103795325 BNC|a11893187 +http://viaf.org/viaf/103795325 ISNI|0000000116955440 +http://viaf.org/viaf/103795325 BNE|XX4420796 +http://viaf.org/viaf/103795325 DNB|140259015 +http://viaf.org/viaf/103795325 BNC@.a11893187 +http://viaf.org/viaf/103795325 LC@n2009013580 +http://viaf.org/viaf/103795325 NUKAT|n 2007002081 +http://viaf.org/viaf/103795325 NUKAT@vtls004257007 +http://viaf.org/viaf/103795325 DNB@http://d-nb.info/gnd/140259015 +http://viaf.org/viaf/1038145856947622920528 DNB|1089227736 +http://viaf.org/viaf/1038145856947622920528 DNB@http://d-nb.info/gnd/1089227736 +http://viaf.org/viaf/103818563 DNB|140285776 +http://viaf.org/viaf/103818563 DNB@http://d-nb.info/gnd/140285776 +http://viaf.org/viaf/103818563 Identities@http://www.worldcat.org/identities/viaf-103818563 +http://viaf.org/viaf/103836707 Identities@http://www.worldcat.org/identities/viaf-103836707 +http://viaf.org/viaf/103836707 ISNI|0000000075487491 +http://viaf.org/viaf/103836707 DNB|140306412 +http://viaf.org/viaf/103836707 DNB@http://d-nb.info/gnd/140306412 +http://viaf.org/viaf/103850468 SZ@http://d-nb.info/gnd/140322140 +http://viaf.org/viaf/103850468 ISNI|0000000076506244 +http://viaf.org/viaf/103850468 DNB@http://d-nb.info/gnd/140322140 +http://viaf.org/viaf/103850468 SZ|140322140 +http://viaf.org/viaf/103850468 DNB|140322140 +http://viaf.org/viaf/103850468 Identities@http://www.worldcat.org/identities/viaf-103850468 +http://viaf.org/viaf/103850512 DNB|140322213 +http://viaf.org/viaf/103850512 DNB@http://d-nb.info/gnd/140322213 +http://viaf.org/viaf/103850512 Identities@http://www.worldcat.org/identities/viaf-103850512 +http://viaf.org/viaf/103852745 WKP|Q42309022 +http://viaf.org/viaf/103852745 Identities@http://www.worldcat.org/identities/lccn-n2018018782 +http://viaf.org/viaf/103852745 J9U|987007403106305171 +http://viaf.org/viaf/103852745 NII|DA19327902 +http://viaf.org/viaf/103852745 DNB|1195625049 +http://viaf.org/viaf/103852745 DNB@http://d-nb.info/gnd/1195625049 +http://viaf.org/viaf/103852745 LC|n 2018018782 +http://viaf.org/viaf/103852745 SUDOC|095775757 +http://viaf.org/viaf/103852745 LC@n2018018782 +http://viaf.org/viaf/103852745 BNF|16600404 +http://viaf.org/viaf/103852745 ISNI|0000000139167818 +http://viaf.org/viaf/103852745 BNF@FRBNF16600404X +http://viaf.org/viaf/103852745 RERO|A018345923 +http://viaf.org/viaf/103852745 CAOONL|ncf11919174 +http://viaf.org/viaf/103854978 NTA|068412843 +http://viaf.org/viaf/103854978 Identities@http://www.worldcat.org/identities/viaf-103854978 +http://viaf.org/viaf/103854978 DNB@http://d-nb.info/gnd/140327126 +http://viaf.org/viaf/103854978 DNB|140327126 +http://viaf.org/viaf/103855418 ISNI|0000000080098925 +http://viaf.org/viaf/103855418 DNB@http://d-nb.info/gnd/140327606 +http://viaf.org/viaf/103855418 BNF|16200926 +http://viaf.org/viaf/103855418 DNB|140327606 +http://viaf.org/viaf/103855418 BNF@http://catalogue.bnf.fr/ark:/12148/cb16200926h +http://viaf.org/viaf/103855418 Identities@http://www.worldcat.org/identities/lccn-no2010039016 +http://viaf.org/viaf/103855418 LC|no2010039016 +http://viaf.org/viaf/103865219 DNB|140338683 +http://viaf.org/viaf/103865219 DNB@http://d-nb.info/gnd/140338683 +http://viaf.org/viaf/103867947 LC@n2012009247 +http://viaf.org/viaf/103867947 ISNI|0000000074261132 +http://viaf.org/viaf/103867947 LC|n 2012009247 +http://viaf.org/viaf/103867947 Identities@http://www.worldcat.org/identities/lccn-n2012009247 +http://viaf.org/viaf/103871456 ISNI|0000000075134792 +http://viaf.org/viaf/103871456 DNB|140345833 +http://viaf.org/viaf/103871456 Identities@http://www.worldcat.org/identities/viaf-103871456 +http://viaf.org/viaf/103871456 DNB@http://d-nb.info/gnd/140345833 +http://viaf.org/viaf/103871500 Identities@http://www.worldcat.org/identities/viaf-103871500 +http://viaf.org/viaf/103871500 DNB|140345884 +http://viaf.org/viaf/103871500 DNB@http://d-nb.info/gnd/140345884 +http://viaf.org/viaf/103876406 ISNI|0000000076579574 +http://viaf.org/viaf/103876406 Wikipedia@http://uk.wikipedia.org/wiki/Євсєєва_Людмила_Іванівна +http://viaf.org/viaf/103876406 LC|nb2019004698 +http://viaf.org/viaf/103876406 DNB|140351493 +http://viaf.org/viaf/103876406 DNB@http://d-nb.info/gnd/140351493 +http://viaf.org/viaf/103876406 LNB|LNC10-000078410 +http://viaf.org/viaf/103876406 Identities@http://www.worldcat.org/identities/lccn-nb2019004698 +http://viaf.org/viaf/103876406 LIH@LNB:Bc4D;=BD +http://viaf.org/viaf/103876406 WKP|Q4173385 +http://viaf.org/viaf/103876406 Wikipedia@http://ru.wikipedia.org/wiki/Евсеева,_Людмила_Ивановна +http://viaf.org/viaf/103876406 LIH|LNB:B_c_4D;=BD +http://viaf.org/viaf/103876406 Wikipedia@http://eo.wikipedia.org/wiki/Ludmila_Jevsejeva +http://viaf.org/viaf/103886702 RERO|A027191227 +http://viaf.org/viaf/103886702 LC|n 2004036204 +http://viaf.org/viaf/103886702 ISNI|0000000119537826 +http://viaf.org/viaf/103886702 DNB|131898922 +http://viaf.org/viaf/103886702 NKC|jx20110224016 +http://viaf.org/viaf/103886702 NTA|275817466 +http://viaf.org/viaf/103886702 SUDOC|123474825 +http://viaf.org/viaf/103886702 J9U|987007296230605171 +http://viaf.org/viaf/103886702 CAOONL|ncf11398151 +http://viaf.org/viaf/103886702 Identities@http://www.worldcat.org/identities/lccn-n2004036204 +http://viaf.org/viaf/103886702 DNB@http://d-nb.info/gnd/131898922 +http://viaf.org/viaf/103886702 LC@n2004036204 +http://viaf.org/viaf/103893786 DNB@http://d-nb.info/gnd/14037129X +http://viaf.org/viaf/103893786 Identities@http://www.worldcat.org/identities/viaf-103893786 +http://viaf.org/viaf/103893786 SUDOC|175622914 +http://viaf.org/viaf/103893786 DNB|14037129X +http://viaf.org/viaf/103904990 CAOONL|ncf10080793 +http://viaf.org/viaf/103904990 Identities@http://www.worldcat.org/identities/viaf-103904990 +http://viaf.org/viaf/103906772 SUDOC|133972887 +http://viaf.org/viaf/103906772 DNB@http://d-nb.info/gnd/158853288 +http://viaf.org/viaf/103906772 LC@n89665977 +http://viaf.org/viaf/103906772 Identities@http://www.worldcat.org/identities/lccn-n89665977 +http://viaf.org/viaf/103906772 Wikipedia@http://es.wikipedia.org/wiki/Douglas_Barton_Osborne_Savile +http://viaf.org/viaf/103906772 Wikipedia@http://en.wikipedia.org/wiki/Douglas_Barton_Osborne_Savile +http://viaf.org/viaf/103906772 RERO|A003789261 +http://viaf.org/viaf/103906772 DNB|158853288 +http://viaf.org/viaf/103906772 NII|DA01669597 +http://viaf.org/viaf/103906772 CAOONL|ncf10026956 +http://viaf.org/viaf/103906772 BIBSYS|90277991 +http://viaf.org/viaf/103906772 WKP|Q5301236 +http://viaf.org/viaf/103906772 NTA|133858723 +http://viaf.org/viaf/103906772 NLA|000035713293 +http://viaf.org/viaf/103906772 LC|n 89665977 +http://viaf.org/viaf/103906772 ISNI|0000000078966041 +http://viaf.org/viaf/103909896 CAOONL|ncf10003658 +http://viaf.org/viaf/103909896 Identities@http://www.worldcat.org/identities/viaf-103909896 +http://viaf.org/viaf/103913729 CAOONL|ncf10035489 +http://viaf.org/viaf/103913729 Identities@http://www.worldcat.org/identities/viaf-103913729 +http://viaf.org/viaf/1039144647709446474997 SELIBR|388575 +http://viaf.org/viaf/1039144647709446474997 SELIBR@zw9dmv7h4jjs3m0 +http://viaf.org/viaf/1039144647709446474997 Identities@http://www.worldcat.org/identities/viaf-1039144647709446474997 +http://viaf.org/viaf/1039145857081622921854 DNB|1092457992 +http://viaf.org/viaf/1039145857081622921854 DNB@http://d-nb.info/gnd/1092457992 +http://viaf.org/viaf/1039145857085722921912 DNB@http://d-nb.info/gnd/1085773566 +http://viaf.org/viaf/1039145857085722921912 Identities@http://www.worldcat.org/identities/viaf-1039145857085722921912 +http://viaf.org/viaf/1039145857085722921912 DNB|1085773566 +http://viaf.org/viaf/1039152865726204940005 XR|VIAFWORK1000615694 +http://viaf.org/viaf/1039159234276003371254 RERO|A012498346 +http://viaf.org/viaf/1039159234641803372282 RERO|A018726776 +http://viaf.org/viaf/1039159234641803372282 Identities@http://www.worldcat.org/identities/viaf-1039159234641803372282 +http://viaf.org/viaf/103916573 Identities@http://www.worldcat.org/identities/viaf-103916573 +http://viaf.org/viaf/103916573 CAOONL|ncf10106630 +http://viaf.org/viaf/103919697 Identities@http://www.worldcat.org/identities/viaf-103919697 +http://viaf.org/viaf/103919697 CAOONL|ncf10040517 +http://viaf.org/viaf/103926374 Identities@http://www.worldcat.org/identities/viaf-103926374 +http://viaf.org/viaf/103926374 CAOONL|ncf10126806 +http://viaf.org/viaf/103928651 Identities@http://www.worldcat.org/identities/viaf-103928651 +http://viaf.org/viaf/103928651 CAOONL|ncf10127618 +http://viaf.org/viaf/103936670 Identities@http://www.worldcat.org/identities/viaf-103936670 +http://viaf.org/viaf/103936670 CAOONL|ncf10054864 +http://viaf.org/viaf/103936670 SUDOC|176776613 +http://viaf.org/viaf/103936670 WKP|Q90860921 +http://viaf.org/viaf/103936670 ISNI|0000000074774253 +http://viaf.org/viaf/103936670 B2Q|0000034323 +http://viaf.org/viaf/103944194 DNB@http://d-nb.info/gnd/1096172224 +http://viaf.org/viaf/103944194 Identities@http://www.worldcat.org/identities/lccn-n80059708 +http://viaf.org/viaf/103944194 Wikipedia@http://fr.wikipedia.org/wiki/Danielle_Juteau +http://viaf.org/viaf/103944194 Wikipedia@http://en.wikipedia.org/wiki/Danielle_Juteau +http://viaf.org/viaf/103944194 B2Q|0000026688 +http://viaf.org/viaf/103944194 SUDOC|032649789 +http://viaf.org/viaf/103944194 LC|n 80059708 +http://viaf.org/viaf/103944194 BNF|12363919 +http://viaf.org/viaf/103944194 BIBSYS|1009544 +http://viaf.org/viaf/103944194 WKP|Q3015000 +http://viaf.org/viaf/103944194 NTA|252194756 +http://viaf.org/viaf/103944194 CAOONL|ncf10060752 +http://viaf.org/viaf/103944194 J9U|987007449469005171 +http://viaf.org/viaf/103944194 DNB|1096172224 +http://viaf.org/viaf/103944194 NKC|mub2018980652 +http://viaf.org/viaf/103944194 LC@n80059708 +http://viaf.org/viaf/103944194 ISNI|0000000122837782 +http://viaf.org/viaf/103944194 BNF@http://catalogue.bnf.fr/ark:/12148/cb12363919t +http://viaf.org/viaf/103960600 CAOONL|ncf10072713 +http://viaf.org/viaf/103960600 Identities@http://www.worldcat.org/identities/viaf-103960600 +http://viaf.org/viaf/103971248 CAOONL|ncf10091183 +http://viaf.org/viaf/103971248 ISNI|0000000076654677 +http://viaf.org/viaf/103971248 Identities@http://www.worldcat.org/identities/viaf-103971248 +http://viaf.org/viaf/103979042 Identities@http://www.worldcat.org/identities/viaf-103979042 +http://viaf.org/viaf/103979042 CAOONL|ncf10038035 +http://viaf.org/viaf/103979042 B2Q|0000122560 +http://viaf.org/viaf/103979042 ISNI|0000000074557400 +http://viaf.org/viaf/10398282 RERO|A003853351 +http://viaf.org/viaf/10398282 Identities@http://www.worldcat.org/identities/lccn-n89600516 +http://viaf.org/viaf/10398282 DNB|117490555 +http://viaf.org/viaf/10398282 DNB@http://d-nb.info/gnd/117490555 +http://viaf.org/viaf/10398282 LC@n89600516 +http://viaf.org/viaf/10398282 NUKAT@vtls010960419 +http://viaf.org/viaf/10398282 NII|DA11176235 +http://viaf.org/viaf/10398282 LIH|LNB:5FX;=1A +http://viaf.org/viaf/10398282 J9U|987007278378805171 +http://viaf.org/viaf/10398282 WKP|Q55846761 +http://viaf.org/viaf/10398282 SUDOC|147644305 +http://viaf.org/viaf/10398282 NUKAT|n 2014190442 +http://viaf.org/viaf/10398282 NTA|074663844 +http://viaf.org/viaf/10398282 LC|n 89600516 +http://viaf.org/viaf/10398282 ISNI|000000008090072X +http://viaf.org/viaf/103983821 Identities@http://www.worldcat.org/identities/viaf-103983821 +http://viaf.org/viaf/103983821 B2Q|0000360733 +http://viaf.org/viaf/103983821 WKP|Q55599170 +http://viaf.org/viaf/103983821 CAOONL|ncf10151434 +http://viaf.org/viaf/103985108 CAOONL|ncf10045086 +http://viaf.org/viaf/103985108 Identities@http://www.worldcat.org/identities/viaf-103985108 +http://viaf.org/viaf/103985108 ISNI|000000007470217X +http://viaf.org/viaf/103988727 Identities@http://www.worldcat.org/identities/viaf-103988727 +http://viaf.org/viaf/103988727 CAOONL|ncf10013055 +http://viaf.org/viaf/103988727 B2Q|0000398258 +http://viaf.org/viaf/103991840 Identities@http://www.worldcat.org/identities/viaf-103991840 +http://viaf.org/viaf/103991840 B2Q|0000066029 +http://viaf.org/viaf/103991840 LC|no2014119657 +http://viaf.org/viaf/103991840 CAOONL|ncf10116217 +http://viaf.org/viaf/103992731 B2Q|0000042590 +http://viaf.org/viaf/103992731 Identities@http://www.worldcat.org/identities/viaf-103992731 +http://viaf.org/viaf/103992731 CAOONL|ncf10117141 +http://viaf.org/viaf/103993578 CAOONL|ncf10055476 +http://viaf.org/viaf/103993578 ISNI|0000000074992744 +http://viaf.org/viaf/103993578 Identities@http://www.worldcat.org/identities/viaf-103993578 +http://viaf.org/viaf/103996746 Identities@http://www.worldcat.org/identities/viaf-103996746 +http://viaf.org/viaf/103996746 CAOONL|ncf10156618 +http://viaf.org/viaf/104004952 CAOONL|ncf10013478 +http://viaf.org/viaf/104004952 Identities@http://www.worldcat.org/identities/viaf-104004952 +http://viaf.org/viaf/104008516 CAOONL|ncf10068587 +http://viaf.org/viaf/104012476 WKP|Q4275157 +http://viaf.org/viaf/104012476 ISNI|0000000114965549 +http://viaf.org/viaf/104012476 SUDOC|034388397 +http://viaf.org/viaf/104012476 NII|DA0786550X +http://viaf.org/viaf/104012476 LC|n 79145711 +http://viaf.org/viaf/104012476 BIBSYS|4055706 +http://viaf.org/viaf/104012476 LIH|LNB:6K_o_;=BW +http://viaf.org/viaf/104012476 NUKAT@vtls000418725 +http://viaf.org/viaf/104012476 DBC@870979.68676126 +http://viaf.org/viaf/104012476 DNB@http://d-nb.info/gnd/1192403959 +http://viaf.org/viaf/104012476 BNF@http://catalogue.bnf.fr/ark:/12148/cb12514888x +http://viaf.org/viaf/104012476 LIH@LNB:6Ko;=BW +http://viaf.org/viaf/104012476 LC@n79145711 +http://viaf.org/viaf/104012476 Identities@http://www.worldcat.org/identities/lccn-n79145711 +http://viaf.org/viaf/104012476 Wikipedia@http://en.wikipedia.org/wiki/David_Maister +http://viaf.org/viaf/104012476 BIBSYS|90749614 +http://viaf.org/viaf/104012476 PLWABN|9810536559705606 +http://viaf.org/viaf/104012476 CAOONL|ncf12134226 +http://viaf.org/viaf/104012476 NDL|00868991 +http://viaf.org/viaf/104012476 J9U|987007435186705171 +http://viaf.org/viaf/104012476 NUKAT|n 01106388 +http://viaf.org/viaf/104012476 DBC|87097968676126 +http://viaf.org/viaf/104012476 NKC|xx0032829 +http://viaf.org/viaf/104012476 DNB|1192403959 +http://viaf.org/viaf/104012476 KRNLK|KAC200705276 +http://viaf.org/viaf/104012476 LNB|LNC10-000112639 +http://viaf.org/viaf/104012476 RERO|A003552475 +http://viaf.org/viaf/104012476 BNF|12514888 +http://viaf.org/viaf/104012476 NTA|148570402 +http://viaf.org/viaf/104013367 CAOONL|ncf10000999 +http://viaf.org/viaf/104013367 Identities@http://www.worldcat.org/identities/viaf-104013367 +http://viaf.org/viaf/1040145857028422921154 DNB|1087327822 +http://viaf.org/viaf/1040145857028422921154 Identities@http://www.worldcat.org/identities/viaf-1040145857028422921154 +http://viaf.org/viaf/1040145857028422921154 DNB@http://d-nb.info/gnd/1087327822 +http://viaf.org/viaf/1040154380898430290200 LIH@LNB:bzH;=B0 +http://viaf.org/viaf/1040154380898430290200 LIH|LNB:_b__z_H;=B0 +http://viaf.org/viaf/1040154387300330970001 LIH@LNB:Tr2;=Be +http://viaf.org/viaf/1040154387300330970001 LIH|LNB:T_r_2;=B_e_ +http://viaf.org/viaf/104019208 CAOONL|ncf10075049 +http://viaf.org/viaf/104019208 Identities@http://www.worldcat.org/identities/viaf-104019208 +http://viaf.org/viaf/104019659 CAOONL|ncf10075234 +http://viaf.org/viaf/104020990 CAOONL|ncf10075735 +http://viaf.org/viaf/104020990 Identities@http://www.worldcat.org/identities/viaf-104020990 +http://viaf.org/viaf/104022321 CAOONL|ncf10132311 +http://viaf.org/viaf/104025896 CAOONL|ncf10455126 +http://viaf.org/viaf/104025896 ISNI|0000000074702962 +http://viaf.org/viaf/104025896 B2Q|0000039772 +http://viaf.org/viaf/104025896 Identities@http://www.worldcat.org/identities/viaf-104025896 +http://viaf.org/viaf/104028118 Identities@http://www.worldcat.org/identities/viaf-104028118 +http://viaf.org/viaf/104028118 ISNI|0000000075423623 +http://viaf.org/viaf/104028118 CAOONL|ncf10082125 +http://viaf.org/viaf/104035697 Identities@http://www.worldcat.org/identities/viaf-104035697 +http://viaf.org/viaf/104035697 CAOONL|ncf10026135 +http://viaf.org/viaf/104037028 SUDOC|174469470 +http://viaf.org/viaf/104037028 LC|no2013130672 +http://viaf.org/viaf/104037028 ISNI|0000000075708338 +http://viaf.org/viaf/104037028 Identities@http://www.worldcat.org/identities/lccn-no2013130672 +http://viaf.org/viaf/104037028 CAOONL|ncf10082127 +http://viaf.org/viaf/104040141 Identities@http://www.worldcat.org/identities/viaf-104040141 +http://viaf.org/viaf/104040141 ISNI|0000000075423789 +http://viaf.org/viaf/104040141 CAOONL|ncf10086014 +http://viaf.org/viaf/104041807 ISNI|0000000075562930 +http://viaf.org/viaf/104041807 CAOONL|ncf10033798 +http://viaf.org/viaf/104042374 J9U|987007320639605171 +http://viaf.org/viaf/104042374 LC@nr89004475 +http://viaf.org/viaf/104042374 DNB|1089160305 +http://viaf.org/viaf/104042374 NTA|068055358 +http://viaf.org/viaf/104042374 BNF@http://catalogue.bnf.fr/ark:/12148/cb152993095 +http://viaf.org/viaf/104042374 NUKAT@vtls007106298 +http://viaf.org/viaf/104042374 NUKAT|n 2010233873 +http://viaf.org/viaf/104042374 BIBSYS|90662075 +http://viaf.org/viaf/104042374 BNC|a10220379 +http://viaf.org/viaf/104042374 BNC@.a10220379 +http://viaf.org/viaf/104042374 DNB@http://d-nb.info/gnd/1089160305 +http://viaf.org/viaf/104042374 Identities@http://www.worldcat.org/identities/lccn-nr89004475 +http://viaf.org/viaf/104042374 BNE|XX1083486 +http://viaf.org/viaf/104042374 CAOONL|ncf10088680 +http://viaf.org/viaf/104042374 LC|nr 89004475 +http://viaf.org/viaf/104042374 ISNI|0000000108596484 +http://viaf.org/viaf/104042374 BNF|15299309 +http://viaf.org/viaf/104042374 B2Q|0000123014 +http://viaf.org/viaf/104044651 CAOONL|ncf10035212 +http://viaf.org/viaf/104045993 CAOONL|ncf10089704 +http://viaf.org/viaf/104045993 Identities@http://www.worldcat.org/identities/viaf-104045993 +http://viaf.org/viaf/104047324 Identities@http://www.worldcat.org/identities/viaf-104047324 +http://viaf.org/viaf/104047324 CAOONL|ncf10201687 +http://viaf.org/viaf/104065144 CAOONL|ncf10450191 +http://viaf.org/viaf/104065144 Identities@http://www.worldcat.org/identities/viaf-104065144 +http://viaf.org/viaf/104066981 DNB|1146794703 +http://viaf.org/viaf/104066981 Identities@http://www.worldcat.org/identities/viaf-104066981 +http://viaf.org/viaf/104066981 CAOONL|ncf10097678 +http://viaf.org/viaf/104066981 DNB@http://d-nb.info/gnd/1146794703 +http://viaf.org/viaf/104082848 B2Q|0000027909 +http://viaf.org/viaf/104082848 CAOONL|ncf10114842 +http://viaf.org/viaf/104082848 ISNI|0000000075424175 +http://viaf.org/viaf/104082848 Identities@http://www.worldcat.org/identities/viaf-104082848 +http://viaf.org/viaf/104086088 ISNI|0000000074414872 +http://viaf.org/viaf/104086088 Identities@http://www.worldcat.org/identities/viaf-104086088 +http://viaf.org/viaf/104086088 CAOONL|ncf10063258 +http://viaf.org/viaf/104086088 B2Q|0000841896 +http://viaf.org/viaf/104086907 CAOONL|ncf10120329 +http://viaf.org/viaf/104086907 B2Q|0000017753 +http://viaf.org/viaf/104086907 Identities@http://www.worldcat.org/identities/viaf-104086907 +http://viaf.org/viaf/104089300 CAOONL|ncf10065378 +http://viaf.org/viaf/104091307 Identities@http://www.worldcat.org/identities/viaf-104091307 +http://viaf.org/viaf/104091307 CAOONL|ncf10014508 +http://viaf.org/viaf/104101620 CAOONL|ncf10027037 +http://viaf.org/viaf/104101620 Identities@http://www.worldcat.org/identities/viaf-104101620 +http://viaf.org/viaf/104101620 ISNI|0000000074559625 +http://viaf.org/viaf/104102016 CAOONL|ncf10027300 +http://viaf.org/viaf/104102016 Identities@http://www.worldcat.org/identities/viaf-104102016 +http://viaf.org/viaf/104106526 CAOONL|ncf10031410 +http://viaf.org/viaf/104109370 CAOONL|ncf10019786 +http://viaf.org/viaf/104109370 Identities@http://www.worldcat.org/identities/viaf-104109370 +http://viaf.org/viaf/1041145856884122920363 DNB@http://d-nb.info/gnd/1091697620 +http://viaf.org/viaf/1041145856884122920363 DNB|1091697620 +http://viaf.org/viaf/1041159234784403372779 RERO|A018093417 +http://viaf.org/viaf/1041159474069527660549 CAOONL|ncf11451796 +http://viaf.org/viaf/104117713 CAOONL|ncf10136364 +http://viaf.org/viaf/104117713 Identities@http://www.worldcat.org/identities/viaf-104117713 +http://viaf.org/viaf/104118109 Identities@http://www.worldcat.org/identities/viaf-104118109 +http://viaf.org/viaf/104118109 CAOONL|ncf10043665 +http://viaf.org/viaf/104119171 DNB@http://d-nb.info/gnd/1190648008 +http://viaf.org/viaf/104119171 GRATEVE|131454 +http://viaf.org/viaf/104119171 Identities@http://www.worldcat.org/identities/lccn-nb2019001129 +http://viaf.org/viaf/104119171 DNB|1190648008 +http://viaf.org/viaf/104119171 DBC@870979.69635202 +http://viaf.org/viaf/104119171 LC|nb2019001129 +http://viaf.org/viaf/104119171 NUKAT@vtls018455751 +http://viaf.org/viaf/104119171 NUKAT|n 2019211779 +http://viaf.org/viaf/104119171 DBC|87097969635202 +http://viaf.org/viaf/104119171 B2Q|0000297224 +http://viaf.org/viaf/104119171 CAOONL|ncf10045044 +http://viaf.org/viaf/104119171 PLWABN|9810948254405606 +http://viaf.org/viaf/104120287 B2Q|0000056359 +http://viaf.org/viaf/104120287 Identities@http://www.worldcat.org/identities/viaf-104120287 +http://viaf.org/viaf/104120287 CAOONL|ncf10090007 +http://viaf.org/viaf/104124346 Identities@http://www.worldcat.org/identities/viaf-104124346 +http://viaf.org/viaf/104124346 B2Q|0000034872 +http://viaf.org/viaf/104124346 CAOONL|ncf10095002 +http://viaf.org/viaf/104125688 Identities@http://www.worldcat.org/identities/viaf-104125688 +http://viaf.org/viaf/104125688 CAOONL|ncf10051933 +http://viaf.org/viaf/104126128 CAOONL|ncf10097125 +http://viaf.org/viaf/104126128 ISNI|0000000075856015 +http://viaf.org/viaf/104126128 Identities@http://www.worldcat.org/identities/viaf-104126128 +http://viaf.org/viaf/104132860 Identities@http://www.worldcat.org/identities/viaf-104132860 +http://viaf.org/viaf/104132860 ISNI|0000000075138873 +http://viaf.org/viaf/104132860 B2Q|0000036504 +http://viaf.org/viaf/104132860 CAOONL|ncf10059430 +http://viaf.org/viaf/104144782701534095143 CAOONL|ncf10632497 +http://viaf.org/viaf/104144782701534095143 Identities@http://www.worldcat.org/identities/viaf-104144782701534095143 +http://viaf.org/viaf/104145424588886830387 LC@n85088775 +http://viaf.org/viaf/104145424588886830387 LC|n 85088775 +http://viaf.org/viaf/104145663143505072068 DNB|1084245787 +http://viaf.org/viaf/104145663143505072068 DNB@http://d-nb.info/gnd/1084245787 +http://viaf.org/viaf/104145911089327060163 XR|VIAFWORK610821963 +http://viaf.org/viaf/104145970217032251658 W2Z|14069529 +http://viaf.org/viaf/104145970217032251658 BIBSYS|14069529 +http://viaf.org/viaf/104146094155200330636 Identities@http://www.worldcat.org/identities/lccn-no2012047242 +http://viaf.org/viaf/104146094155200330636 LC|no2012047242 +http://viaf.org/viaf/104146094155200330636 ISNI|0000000369481431 +http://viaf.org/viaf/104146094155200330636 PLWABN|9810580190505606 +http://viaf.org/viaf/104146573864438101520 NDL|001232902 +http://viaf.org/viaf/104146573864438101520 Identities@http://www.worldcat.org/identities/viaf-104146573864438101520 +http://viaf.org/viaf/104146997187318890784 Identities@http://www.worldcat.org/identities/viaf-104146997187318890784 +http://viaf.org/viaf/104146997187318890784 NII|DA02080554 +http://viaf.org/viaf/104146997246518890885 NII|DA11873749 +http://viaf.org/viaf/104146997401218892748 Identities@http://www.worldcat.org/identities/viaf-104146997401218892748 +http://viaf.org/viaf/104146997401218892748 NII|DA11405230 +http://viaf.org/viaf/104147093713725001419 Identities@http://www.worldcat.org/identities/viaf-104147093713725001419 +http://viaf.org/viaf/104147093713725001419 SUDOC|194445089 +http://viaf.org/viaf/104147727677364710005 NLA|000058653246 +http://viaf.org/viaf/104147786736468220005 DNB|1117300404 +http://viaf.org/viaf/104147786736468220005 DNB@http://d-nb.info/gnd/1117300404 +http://viaf.org/viaf/104148389433010712165 NLA|000058788875 +http://viaf.org/viaf/104148995776859750927 BIBSYS|90887685 +http://viaf.org/viaf/104149106006668490615 SUDOC|081311249 +http://viaf.org/viaf/104149106006668490615 Identities@http://www.worldcat.org/identities/viaf-104149106006668490615 +http://viaf.org/viaf/104149106006668490615 BIBSYS|8032261 +http://viaf.org/viaf/104149106006668490615 NUKAT|n 2007094795 +http://viaf.org/viaf/104149106006668490615 NUKAT@vtls004283344 +http://viaf.org/viaf/104149106006668490615 NKC|xx0089437 +http://viaf.org/viaf/104149106193268491554 BIBSYS|8012690 +http://viaf.org/viaf/104149106201868491655 BIBSYS|61555 +http://viaf.org/viaf/104149196474774791622 BIBSYS|13591 +http://viaf.org/viaf/104149196474774791622 Identities@http://www.worldcat.org/identities/viaf-104149196474774791622 +http://viaf.org/viaf/104149294485780522893 BIBSYS|3002379 +http://viaf.org/viaf/104150468246904171192 ISNI|0000000461104102 +http://viaf.org/viaf/104150468246904171192 KRNLK|KAC201716245 +http://viaf.org/viaf/104150468246904171192 Identities@http://www.worldcat.org/identities/viaf-104150468246904171192 +http://viaf.org/viaf/104151050007833410325 SUDOC|204651913 +http://viaf.org/viaf/104151050007833410325 DNB@http://d-nb.info/gnd/1061268225 +http://viaf.org/viaf/104151050007833410325 RERO|A003101806 +http://viaf.org/viaf/104151050007833410325 Identities@http://www.worldcat.org/identities/viaf-104151050007833410325 +http://viaf.org/viaf/104151050007833410325 WKP|Q95910078 +http://viaf.org/viaf/104151050007833410325 DNB|1061268225 +http://viaf.org/viaf/104151170861939090253 Identities@http://www.worldcat.org/identities/viaf-104151170861939090253 +http://viaf.org/viaf/104151170861939090253 DNB@http://d-nb.info/gnd/1145486533 +http://viaf.org/viaf/104151170861939090253 DNB|1145486533 +http://viaf.org/viaf/104151246641544132218 Identities@http://www.worldcat.org/identities/viaf-104151246641544132218 +http://viaf.org/viaf/104151246641544132218 NTA|413366529 +http://viaf.org/viaf/104151351943952600107 KRNLK|KAC201759800 +http://viaf.org/viaf/104151351943952600107 ISNI|0000000464510771 +http://viaf.org/viaf/104151352004752601512 NUKAT|n 2017182620 +http://viaf.org/viaf/104151352004752601512 PLWABN|9810676812905606 +http://viaf.org/viaf/104151352004752601512 Identities@http://www.worldcat.org/identities/viaf-104151352004752601512 +http://viaf.org/viaf/104151352004752601512 NUKAT@vtls016324966 +http://viaf.org/viaf/104151352037952602203 ISNI|0000000464635996 +http://viaf.org/viaf/104151352037952602203 KRNLK|KAC201755552 +http://viaf.org/viaf/104151352084852602729 NSK|000694642 +http://viaf.org/viaf/104151594462005351933 SUDOC|221265015 +http://viaf.org/viaf/104151836548620401031 SUDOC|22344250X +http://viaf.org/viaf/104151836548620401031 Identities@http://www.worldcat.org/identities/viaf-104151836548620401031 +http://viaf.org/viaf/104152079127007110184 SUDOC|224297317 +http://viaf.org/viaf/104152079169107111308 Identities@http://www.worldcat.org/identities/viaf-104152079169107111308 +http://viaf.org/viaf/104152079169107111308 SUDOC|224210963 +http://viaf.org/viaf/104152138538110981468 Identities@http://www.worldcat.org/identities/viaf-104152138538110981468 +http://viaf.org/viaf/104152138538110981468 NTA|416865542 +http://viaf.org/viaf/104152138538110981468 ISNI|0000000464635013 +http://viaf.org/viaf/104152380032401760176 NUKAT@vtls019386884 +http://viaf.org/viaf/104152380032401760176 PLWABN|9810536412105606 +http://viaf.org/viaf/104152380032401760176 NUKAT|n 2020005442 +http://viaf.org/viaf/104152380032401760176 Identities@http://www.worldcat.org/identities/viaf-104152380032401760176 +http://viaf.org/viaf/104153061359619202674 LC|no2018083327 +http://viaf.org/viaf/104153061359619202674 Identities@http://www.worldcat.org/identities/lccn-no2018083327 +http://viaf.org/viaf/104154013811809192452 KRNLK|KAC2018B2192 +http://viaf.org/viaf/104154013811809192452 ISNI|0000000468391693 +http://viaf.org/viaf/104154196737820111181 SUDOC|230956866 +http://viaf.org/viaf/104154196737820111181 Identities@http://www.worldcat.org/identities/viaf-104154196737820111181 +http://viaf.org/viaf/104154381069330292543 LIH@LNB:BMxq;=CI +http://viaf.org/viaf/104154381069330292543 LIH|LNB:BM_x__q_;=CI +http://viaf.org/viaf/104154590192643081994 ISNI|0000000473947887 +http://viaf.org/viaf/104154590192643081994 Identities@http://www.worldcat.org/identities/viaf-104154590192643081994 +http://viaf.org/viaf/104154590192643081994 KRNLK|KAC2018D1270 +http://viaf.org/viaf/104155630 ISNI|0000000076657827 +http://viaf.org/viaf/104155630 CAOONL|ncf10076463 +http://viaf.org/viaf/104155630 Identities@http://www.worldcat.org/identities/viaf-104155630 +http://viaf.org/viaf/104156009839149580880 Identities@http://www.worldcat.org/identities/viaf-104156009839149580880 +http://viaf.org/viaf/104156009839149580880 PLWABN|9810661877905606 +http://viaf.org/viaf/104156563403023240886 ISNI|0000000476759523 +http://viaf.org/viaf/104156563403023240886 KRNLK|KAC201939622 +http://viaf.org/viaf/104156563646323242941 KRNLK|KAC201937801 +http://viaf.org/viaf/104156563646323242941 ISNI|0000000476740187 +http://viaf.org/viaf/104157523447227032608 ISNI|0000000478596641 +http://viaf.org/viaf/104157523447227032608 KRNLK|KAB201911968 +http://viaf.org/viaf/104158066389708430194 LNB|LNC10-000267547 +http://viaf.org/viaf/104158124944614930328 Identities@http://www.worldcat.org/identities/viaf-104158124944614930328 +http://viaf.org/viaf/104158124944614930328 SUDOC|24172726X +http://viaf.org/viaf/104158185731120061405 ISNI|000000047893070X +http://viaf.org/viaf/104158185731120061405 KRNLK|KAC201962492 +http://viaf.org/viaf/104158303 Wikipedia@http://ar.wikipedia.org/wiki/دال_ريتشاردز +http://viaf.org/viaf/104158303 Wikipedia@http://arz.wikipedia.org/wiki/دال_ريتشاردز +http://viaf.org/viaf/104158303 WKP|Q5210132 +http://viaf.org/viaf/104158303 Wikipedia@http://en.wikipedia.org/wiki/Dal_Richards +http://viaf.org/viaf/104158303 ISNI|0000000076146234 +http://viaf.org/viaf/104158303 Wikipedia@http://nl.wikipedia.org/wiki/Dal_Richards +http://viaf.org/viaf/104158303 Wikipedia@http://simple.wikipedia.org/wiki/Dal_Richards +http://viaf.org/viaf/104158303 Identities@http://www.worldcat.org/identities/viaf-104158303 +http://viaf.org/viaf/104158303 CAOONL|ncf10015060 +http://viaf.org/viaf/104158303 Wikipedia@http://azb.wikipedia.org/wiki/دال_ریچاردز +http://viaf.org/viaf/104159105187006400939 Identities@http://www.worldcat.org/identities/lccn-no2020064277 +http://viaf.org/viaf/104159105187006400939 LC|no2020064277 +http://viaf.org/viaf/104159234263803371203 RERO|A003080186 +http://viaf.org/viaf/104159397307819300674 B2Q|ncf10824874 +http://viaf.org/viaf/104159397307819300674 Identities@http://www.worldcat.org/identities/viaf-104159397307819300674 +http://viaf.org/viaf/104159397307819300674 CAOONL|ncf10824874 +http://viaf.org/viaf/104169941 Identities@http://www.worldcat.org/identities/viaf-104169941 +http://viaf.org/viaf/104169941 ISNI|0000000443207140 +http://viaf.org/viaf/104175232 CAOONL|ncf10019430 +http://viaf.org/viaf/104175232 Identities@http://www.worldcat.org/identities/viaf-104175232 +http://viaf.org/viaf/104194394 Identities@http://www.worldcat.org/identities/viaf-104194394 +http://viaf.org/viaf/104194394 CAOONL|ncf10101415 +http://viaf.org/viaf/104195609 Identities@http://www.worldcat.org/identities/viaf-104195609 +http://viaf.org/viaf/104195609 CAOONL|ncf10032887 +http://viaf.org/viaf/104195609 ISNI|000000007563819X +http://viaf.org/viaf/104195609 B2Q|0000010403 +http://viaf.org/viaf/104195609 SUDOC|113195931 +http://viaf.org/viaf/104196176 Identities@http://www.worldcat.org/identities/lccn-no2010010149 +http://viaf.org/viaf/104196176 CAOONL|ncf10033228 +http://viaf.org/viaf/104196176 DNB|154283932 +http://viaf.org/viaf/104196176 LC|no2010010149 +http://viaf.org/viaf/104196176 ISNI|000000007643974X +http://viaf.org/viaf/104196176 B2Q|ncf10922678 +http://viaf.org/viaf/104196176 DNB@http://d-nb.info/gnd/154283932 +http://viaf.org/viaf/104198453 Identities@http://www.worldcat.org/identities/viaf-104198453 +http://viaf.org/viaf/104198453 SUDOC|034085289 +http://viaf.org/viaf/104202259 CAOONL|ncf10103565 +http://viaf.org/viaf/104202259 Identities@http://www.worldcat.org/identities/viaf-104202259 +http://viaf.org/viaf/104212555 CAOONL|ncf10039876 +http://viaf.org/viaf/104212555 ISNI|0000000076585464 +http://viaf.org/viaf/104212555 Identities@http://www.worldcat.org/identities/viaf-104212555 +http://viaf.org/viaf/1042145856994022920929 Identities@http://www.worldcat.org/identities/viaf-1042145856994022920929 +http://viaf.org/viaf/1042145856994022920929 RERO|A027661545 +http://viaf.org/viaf/1042145856994022920929 DNB|1085751651 +http://viaf.org/viaf/1042145856994022920929 RERO|A003182838 +http://viaf.org/viaf/1042145856994022920929 DNB@http://d-nb.info/gnd/1085751651 +http://viaf.org/viaf/104215723 ISNI|0000000075857907 +http://viaf.org/viaf/104215723 CAOONL|ncf10207816 +http://viaf.org/viaf/104215723 Identities@http://www.worldcat.org/identities/viaf-104215723 +http://viaf.org/viaf/1042159474312827661844 SUDOC|24507869X +http://viaf.org/viaf/104217956 CAOONL|ncf10109691 +http://viaf.org/viaf/104217956 Identities@http://www.worldcat.org/identities/viaf-104217956 +http://viaf.org/viaf/104217956 ISNI|0000000074706496 +http://viaf.org/viaf/104218072 CAOONL|ncf10109756 +http://viaf.org/viaf/104218072 Identities@http://www.worldcat.org/identities/viaf-104218072 +http://viaf.org/viaf/104225524 CAOONL|ncf10114797 +http://viaf.org/viaf/104225524 Identities@http://www.worldcat.org/identities/viaf-104225524 +http://viaf.org/viaf/104231761 CAOONL|ncf10137585 +http://viaf.org/viaf/104231761 Identities@http://www.worldcat.org/identities/viaf-104231761 +http://viaf.org/viaf/104235820 Identities@http://www.worldcat.org/identities/viaf-104235820 +http://viaf.org/viaf/104235820 CAOONL|ncf10010411 +http://viaf.org/viaf/104241111 Identities@http://www.worldcat.org/identities/viaf-104241111 +http://viaf.org/viaf/104241111 CAOONL|ncf10080368 +http://viaf.org/viaf/104242002 CAOONL|ncf10144043 +http://viaf.org/viaf/104242002 DNB@http://d-nb.info/gnd/1044044519 +http://viaf.org/viaf/104242002 LC@nr96030595 +http://viaf.org/viaf/104242002 Identities@http://www.worldcat.org/identities/lccn-nr96030595 +http://viaf.org/viaf/104242002 DNB|1044044519 +http://viaf.org/viaf/104242002 LC|nr 96030595 +http://viaf.org/viaf/104251363 CAOONL|ncf10159597 +http://viaf.org/viaf/104262550 Identities@http://www.worldcat.org/identities/viaf-104262550 +http://viaf.org/viaf/104262550 B2Q|0000103720 +http://viaf.org/viaf/104262550 CAOONL|ncf10103432 +http://viaf.org/viaf/104267456 Identities@http://www.worldcat.org/identities/viaf-104267456 +http://viaf.org/viaf/104267456 CAOONL|ncf10152710 +http://viaf.org/viaf/104267500 Identities@http://www.worldcat.org/identities/viaf-104267500 +http://viaf.org/viaf/104267500 ISNI|0000000076221521 +http://viaf.org/viaf/104267500 CAOONL|ncf10145283 +http://viaf.org/viaf/104268842 CAOONL|ncf10140195 +http://viaf.org/viaf/104268842 Identities@http://www.worldcat.org/identities/viaf-104268842 +http://viaf.org/viaf/104278599 CAOONL|ncf10148712 +http://viaf.org/viaf/104283043 Identities@http://www.worldcat.org/identities/viaf-104283043 +http://viaf.org/viaf/104283043 ISNI|0000000076806992 +http://viaf.org/viaf/104283043 CAOONL|ncf10138000 +http://viaf.org/viaf/104283494 LC|n 85081610 +http://viaf.org/viaf/104283494 LC@n85081610 +http://viaf.org/viaf/104283494 Identities@http://www.worldcat.org/identities/lccn-n85081610 +http://viaf.org/viaf/104283494 CAOONL|ncf10144432 +http://viaf.org/viaf/104286167 Identities@http://www.worldcat.org/identities/viaf-104286167 +http://viaf.org/viaf/104286167 ISNI|0000000076514121 +http://viaf.org/viaf/104286167 CAOONL|ncf10157957 +http://viaf.org/viaf/104293790 ISNI|0000000075357566 +http://viaf.org/viaf/104293790 Identities@http://www.worldcat.org/identities/viaf-104293790 +http://viaf.org/viaf/104293790 CAOONL|ncf10106828 +http://viaf.org/viaf/104294230 Identities@http://www.worldcat.org/identities/viaf-104294230 +http://viaf.org/viaf/104294230 ISNI|000000007673428X +http://viaf.org/viaf/104294230 CAOONL|ncf10106910 +http://viaf.org/viaf/104300104 Identities@http://www.worldcat.org/identities/viaf-104300104 +http://viaf.org/viaf/104300104 ISNI|0000000076807362 +http://viaf.org/viaf/104300104 CAOONL|ncf10108288 +http://viaf.org/viaf/104301897 Identities@http://www.worldcat.org/identities/viaf-104301897 +http://viaf.org/viaf/104301897 ISNI|0000000075787101 +http://viaf.org/viaf/104301897 CAOONL|ncf10108690 +http://viaf.org/viaf/104302337 CAOONL|ncf10045951 +http://viaf.org/viaf/104302337 Identities@http://www.worldcat.org/identities/viaf-104302337 +http://viaf.org/viaf/104302337 ISNI|0000000075285443 +http://viaf.org/viaf/104312589 CAOONL|ncf10111101 +http://viaf.org/viaf/104312589 ISNI|0000000076734757 +http://viaf.org/viaf/104312589 Identities@http://www.worldcat.org/identities/viaf-104312589 +http://viaf.org/viaf/104313524 ISNI|0000000076514850 +http://viaf.org/viaf/104313524 Identities@http://www.worldcat.org/identities/viaf-104313524 +http://viaf.org/viaf/104313524 CAOONL|ncf10012091 +http://viaf.org/viaf/1043145856962822920558 DNB@http://d-nb.info/gnd/1087161088 +http://viaf.org/viaf/1043145856962822920558 DNB|1087161088 +http://viaf.org/viaf/1043145856962822920558 Identities@http://www.worldcat.org/identities/viaf-1043145856962822920558 +http://viaf.org/viaf/1043147907501079210004 LC|nr2004033670 +http://viaf.org/viaf/1043147907501079210004 Identities@http://www.worldcat.org/identities/lccn-nr2004033670 +http://viaf.org/viaf/1043147907501079210004 RERO|A011417162 +http://viaf.org/viaf/104314910 CAOONL|ncf10050610 +http://viaf.org/viaf/104314910 Identities@http://www.worldcat.org/identities/viaf-104314910 +http://viaf.org/viaf/104314910 ISNI|0000000075933375 +http://viaf.org/viaf/104315306 ISNI|0000000074925963 +http://viaf.org/viaf/104315306 Identities@http://www.worldcat.org/identities/viaf-104315306 +http://viaf.org/viaf/104315306 CAOONL|ncf10012118 +http://viaf.org/viaf/1043155284875187062000 SUDOC|235301787 +http://viaf.org/viaf/1043155284875187062000 Identities@http://www.worldcat.org/identities/viaf-1043155284875187062000 +http://viaf.org/viaf/1043155284875187062000 RERO|A025688432 +http://viaf.org/viaf/1043159474343027662718 CAOONL|ncf11984387 +http://viaf.org/viaf/104320157 ISNI|0000000074853824 +http://viaf.org/viaf/104320157 CAOONL|ncf10112809 +http://viaf.org/viaf/104320157 Identities@http://www.worldcat.org/identities/viaf-104320157 +http://viaf.org/viaf/104322434 Identities@http://www.worldcat.org/identities/lccn-no2012105401 +http://viaf.org/viaf/104322434 CAOONL|ncf10113324 +http://viaf.org/viaf/104322434 LC|no2012105401 +http://viaf.org/viaf/104323776 Identities@http://www.worldcat.org/identities/viaf-104323776 +http://viaf.org/viaf/104323776 CAOONL|ncf10054921 +http://viaf.org/viaf/104323776 ISNI|0000000076807901 +http://viaf.org/viaf/104330453 Identities@http://www.worldcat.org/identities/viaf-104330453 +http://viaf.org/viaf/104330453 CAOONL|ncf10115055 +http://viaf.org/viaf/104330453 ISNI|000000007535842X +http://viaf.org/viaf/104332686 Identities@http://www.worldcat.org/identities/viaf-104332686 +http://viaf.org/viaf/104332686 CAOONL|ncf10115563 +http://viaf.org/viaf/104332686 ISNI|0000000075641532 +http://viaf.org/viaf/104334017 Identities@http://www.worldcat.org/identities/viaf-104334017 +http://viaf.org/viaf/104334017 CAOONL|ncf10012381 +http://viaf.org/viaf/104334017 ISNI|0000000076735266 +http://viaf.org/viaf/104338527 Identities@http://www.worldcat.org/identities/viaf-104338527 +http://viaf.org/viaf/104338527 ISNI|0000000074341589 +http://viaf.org/viaf/104338527 CAOONL|ncf10012442 +http://viaf.org/viaf/104344313 ISNI|0000000076515642 +http://viaf.org/viaf/104344313 CAOONL|ncf10117912 +http://viaf.org/viaf/104344313 Identities@http://www.worldcat.org/identities/viaf-104344313 +http://viaf.org/viaf/104355456 ISNI|0000000074565689 +http://viaf.org/viaf/104355456 CAOONL|ncf10066269 +http://viaf.org/viaf/104355456 Identities@http://www.worldcat.org/identities/viaf-104355456 +http://viaf.org/viaf/104355500 CAOONL|ncf10119586 +http://viaf.org/viaf/104355500 Identities@http://www.worldcat.org/identities/viaf-104355500 +http://viaf.org/viaf/104355500 ISNI|0000000074854843 +http://viaf.org/viaf/104360351 CAOONL|ncf10120240 +http://viaf.org/viaf/104360351 ISNI|0000000076736015 +http://viaf.org/viaf/104360351 Identities@http://www.worldcat.org/identities/viaf-104360351 +http://viaf.org/viaf/104364410 Identities@http://www.worldcat.org/identities/viaf-104364410 +http://viaf.org/viaf/104364410 CAOONL|ncf10067364 +http://viaf.org/viaf/104364410 ISNI|0000000076078390 +http://viaf.org/viaf/104364861 CAOONL|ncf10120815 +http://viaf.org/viaf/104364861 ISNI|0000000074421079 +http://viaf.org/viaf/104364861 Identities@http://www.worldcat.org/identities/viaf-104364861 +http://viaf.org/viaf/104367039 Identities@http://www.worldcat.org/identities/viaf-104367039 +http://viaf.org/viaf/104367039 CAOONL|ncf10121063 +http://viaf.org/viaf/104371043 ISNI|0000000075287035 +http://viaf.org/viaf/104371043 CAOONL|ncf10068224 +http://viaf.org/viaf/104371494 Identities@http://www.worldcat.org/identities/viaf-104371494 +http://viaf.org/viaf/104371494 CAOONL|ncf10068272 +http://viaf.org/viaf/104371494 ISNI|0000000075359422 +http://viaf.org/viaf/104374167 Identities@http://www.worldcat.org/identities/viaf-104374167 +http://viaf.org/viaf/104374167 CAOONL|ncf10068622 +http://viaf.org/viaf/104374167 ISNI|0000000074640087 +http://viaf.org/viaf/104375553 Identities@http://www.worldcat.org/identities/viaf-104375553 +http://viaf.org/viaf/104375553 ISNI|000000007593487X +http://viaf.org/viaf/104375553 CAOONL|ncf10122015 +http://viaf.org/viaf/104378226 ISNI|0000000076736496 +http://viaf.org/viaf/104378226 Identities@http://www.worldcat.org/identities/viaf-104378226 +http://viaf.org/viaf/104378226 CAOONL|ncf10122308 +http://viaf.org/viaf/104381295 ISNI|0000000076809253 +http://viaf.org/viaf/104381295 CAOONL|ncf10122627 +http://viaf.org/viaf/104381295 BNC|a19510020 +http://viaf.org/viaf/104381295 LNB|LNC10-000196902 +http://viaf.org/viaf/104381295 LC|no2018031439 +http://viaf.org/viaf/104381295 BNE|XX1343671 +http://viaf.org/viaf/104381295 Identities@http://www.worldcat.org/identities/lccn-no2018031439 +http://viaf.org/viaf/104381295 BNC@.a19510020 +http://viaf.org/viaf/104384012 CAOONL|ncf10070261 +http://viaf.org/viaf/104384012 Identities@http://www.worldcat.org/identities/viaf-104384012 +http://viaf.org/viaf/104384012 WKP|Q42626929 +http://viaf.org/viaf/104384012 ISNI|0000000075935178 +http://viaf.org/viaf/104384012 ORCID@http://orcid.org/0000-0001-8074-8024 +http://viaf.org/viaf/104387587 Identities@http://www.worldcat.org/identities/viaf-104387587 +http://viaf.org/viaf/104387587 CAOONL|ncf10123124 +http://viaf.org/viaf/104387587 ISNI|0000000075789326 +http://viaf.org/viaf/104388522 Identities@http://www.worldcat.org/identities/viaf-104388522 +http://viaf.org/viaf/104388522 ISNI|000000007607893X +http://viaf.org/viaf/104388522 CAOONL|ncf10071031 +http://viaf.org/viaf/104388973 ISNI|0000000074343031 +http://viaf.org/viaf/104388973 Identities@http://www.worldcat.org/identities/viaf-104388973 +http://viaf.org/viaf/104388973 CAOONL|ncf10071094 +http://viaf.org/viaf/104396541 CAOONL|ncf10145522 +http://viaf.org/viaf/104396541 ISNI|0000000075429996 +http://viaf.org/viaf/104396541 Identities@http://www.worldcat.org/identities/viaf-104396541 +http://viaf.org/viaf/104396541 B2Q|ncf10816076 +http://viaf.org/viaf/104400347 ISNI|0000000075643386 +http://viaf.org/viaf/104400347 CAOONL|ncf10003360 +http://viaf.org/viaf/104400347 Identities@http://www.worldcat.org/identities/viaf-104400347 +http://viaf.org/viaf/104401733 Identities@http://www.worldcat.org/identities/viaf-104401733 +http://viaf.org/viaf/104401733 CAOONL|ncf10073296 +http://viaf.org/viaf/104401733 ISNI|000000007456714X +http://viaf.org/viaf/104404901 LC|no2010098906 +http://viaf.org/viaf/104404901 CAOONL|ncf10124412 +http://viaf.org/viaf/104404901 ISNI|0000000075360271 +http://viaf.org/viaf/104404901 Identities@http://www.worldcat.org/identities/lccn-no2010098906 +http://viaf.org/viaf/104411985 ISNI|0000000075287860 +http://viaf.org/viaf/104411985 Identities@http://www.worldcat.org/identities/viaf-104411985 +http://viaf.org/viaf/104411985 CAOONL|ncf10074290 +http://viaf.org/viaf/1044145857122522922579 DNB|1088070116 +http://viaf.org/viaf/1044145857122522922579 DNB@http://d-nb.info/gnd/1088070116 +http://viaf.org/viaf/1044145857937023020370 BNCHL|10000000000000000020671 +http://viaf.org/viaf/1044145857937023020370 BNCHL@BNC10000000000000000020671 +http://viaf.org/viaf/1044150264367405860003 Identities@http://www.worldcat.org/identities/lccn-n2017047565 +http://viaf.org/viaf/1044150264367405860003 WKP|Q7328486 +http://viaf.org/viaf/1044150264367405860003 LC|n 2017047565 +http://viaf.org/viaf/1044150264367405860003 DNB|1211775216 +http://viaf.org/viaf/1044150264367405860003 LC@n2017047565 +http://viaf.org/viaf/1044150264367405860003 DNB@http://d-nb.info/gnd/1211775216 +http://viaf.org/viaf/1044150264367405860003 Wikipedia@http://en.wikipedia.org/wiki/Richard_Potter_(magician) +http://viaf.org/viaf/1044154381055230291966 LIH|LNB:_p_,_b_;=B_t_ +http://viaf.org/viaf/1044154381055230291966 LIH@LNB:p/b;=Bt +http://viaf.org/viaf/1044155042867772402868 NTA|314931430 +http://viaf.org/viaf/1044155042867772402868 RERO|A017944030 +http://viaf.org/viaf/1044155042867772402868 Identities@http://www.worldcat.org/identities/lccn-no2020006487 +http://viaf.org/viaf/1044155042867772402868 LC|no2020006487 +http://viaf.org/viaf/104421830 CAOONL|ncf10125450 +http://viaf.org/viaf/104421830 Identities@http://www.worldcat.org/identities/viaf-104421830 +http://viaf.org/viaf/104421830 ISNI|000000007471156X +http://viaf.org/viaf/104430740 ISNI|0000000076517947 +http://viaf.org/viaf/104430740 CAOONL|ncf10021880 +http://viaf.org/viaf/104430740 Identities@http://www.worldcat.org/identities/viaf-104430740 +http://viaf.org/viaf/104440497 ISNI|0000000074494868 +http://viaf.org/viaf/104440497 Identities@http://www.worldcat.org/identities/viaf-104440497 +http://viaf.org/viaf/104440497 CAOONL|ncf10080499 +http://viaf.org/viaf/104448615 DBC|87097968980488 +http://viaf.org/viaf/104448615 DBC@870979.68980488 +http://viaf.org/viaf/104448615 CAOONL|ncf10026067 +http://viaf.org/viaf/104448615 BLBNB|000478046 +http://viaf.org/viaf/104448615 Identities@http://www.worldcat.org/identities/viaf-104448615 +http://viaf.org/viaf/104448615 B2Q|0000678820 +http://viaf.org/viaf/104448615 NTA|268613303 +http://viaf.org/viaf/104448615 ISNI|000000007449514X +http://viaf.org/viaf/104450342 ISNI|0000000074857497 +http://viaf.org/viaf/104450342 Identities@http://www.worldcat.org/identities/viaf-104450342 +http://viaf.org/viaf/104450342 CAOONL|ncf10004715 +http://viaf.org/viaf/1044556 NTA|10190844X +http://viaf.org/viaf/1044556 LC|n 2005030823 +http://viaf.org/viaf/1044556 DNB|127772553 +http://viaf.org/viaf/1044556 Identities@http://www.worldcat.org/identities/lccn-n2005030823 +http://viaf.org/viaf/1044556 LC@n2005030823 +http://viaf.org/viaf/1044556 DNB@http://d-nb.info/gnd/127772553 +http://viaf.org/viaf/104470395 Identities@http://www.worldcat.org/identities/viaf-104470395 +http://viaf.org/viaf/104470395 DNB@http://d-nb.info/gnd/173047165 +http://viaf.org/viaf/104470395 CAOONL|ncf10091860 +http://viaf.org/viaf/104470395 DNB|173047165 +http://viaf.org/viaf/104471781 N6I|vtls000014706 +http://viaf.org/viaf/104471781 CAOONL|ncf10035919 +http://viaf.org/viaf/104471781 Identities@http://www.worldcat.org/identities/viaf-104471781 +http://viaf.org/viaf/104472177 CAOONL|ncf10092536 +http://viaf.org/viaf/104472177 Identities@http://www.worldcat.org/identities/viaf-104472177 +http://viaf.org/viaf/104475840 WKP|Q6241811 +http://viaf.org/viaf/104475840 CAOONL|ncf10037682 +http://viaf.org/viaf/104475840 Identities@http://www.worldcat.org/identities/viaf-104475840 +http://viaf.org/viaf/104475840 Wikipedia@http://en.wikipedia.org/wiki/John_Jennings_(clergyman) +http://viaf.org/viaf/104479404 Identities@http://www.worldcat.org/identities/viaf-104479404 +http://viaf.org/viaf/104479404 CAOONL|ncf10005805 +http://viaf.org/viaf/104494056 CAOONL|ncf10177060 +http://viaf.org/viaf/104494056 Identities@http://www.worldcat.org/identities/viaf-104494056 +http://viaf.org/viaf/104504649 RERO|A024413945 +http://viaf.org/viaf/104504649 ISNI|0000000080105603 +http://viaf.org/viaf/104504649 Identities@http://www.worldcat.org/identities/viaf-104504649 +http://viaf.org/viaf/104504649 CAOONL|ncf10161894 +http://viaf.org/viaf/104504649 B2Q|0000065893 +http://viaf.org/viaf/104510886 CAOONL|ncf10145588 +http://viaf.org/viaf/104510886 ISNI|0000000075076174 +http://viaf.org/viaf/104510886 Identities@http://www.worldcat.org/identities/viaf-104510886 +http://viaf.org/viaf/1045148997672059870005 BIBSYS|90155155 +http://viaf.org/viaf/1045148997672059870005 Identities@http://www.worldcat.org/identities/viaf-1045148997672059870005 +http://viaf.org/viaf/1045153063134519320001 Identities@http://www.worldcat.org/identities/viaf-1045153063134519320001 +http://viaf.org/viaf/1045153063134519320001 CAOONL|ncf10111827 +http://viaf.org/viaf/1045159234774003372813 Identities@http://www.worldcat.org/identities/viaf-1045159234774003372813 +http://viaf.org/viaf/1045159234774003372813 RERO|A022990131 +http://viaf.org/viaf/104522513 CAOONL|ncf10214251 +http://viaf.org/viaf/104522513 Wikipedia@http://en.wikipedia.org/wiki/George_Rykert +http://viaf.org/viaf/104522513 Identities@http://www.worldcat.org/identities/viaf-104522513 +http://viaf.org/viaf/104522513 WKP|Q5544131 +http://viaf.org/viaf/104522513 ISNI|0000000080106913 +http://viaf.org/viaf/104522964 B2Q|0001112680 +http://viaf.org/viaf/104522964 Identities@http://www.worldcat.org/identities/viaf-104522964 +http://viaf.org/viaf/104522964 CAOONL|ncf10052103 +http://viaf.org/viaf/104528481 Identities@http://www.worldcat.org/identities/viaf-104528481 +http://viaf.org/viaf/104528481 CAOONL|ncf10200524 +http://viaf.org/viaf/104533700 B2Q|0000012188 +http://viaf.org/viaf/104533700 CAOONL|ncf10205836 +http://viaf.org/viaf/104533700 Identities@http://www.worldcat.org/identities/viaf-104533700 +http://viaf.org/viaf/104535933 CAOONL|ncf10217681 +http://viaf.org/viaf/104543006 Identities@http://www.worldcat.org/identities/viaf-104543006 +http://viaf.org/viaf/104543006 CAOONL|ncf10195664 +http://viaf.org/viaf/10455042 Identities@http://www.worldcat.org/identities/viaf-10455042 +http://viaf.org/viaf/10455042 DNB@http://d-nb.info/gnd/110822498 +http://viaf.org/viaf/10455042 ISNI|0000000006655930 +http://viaf.org/viaf/10455042 DNB|110822498 +http://viaf.org/viaf/104551520 CAOONL|ncf10106908 +http://viaf.org/viaf/104551520 Identities@http://www.worldcat.org/identities/viaf-104551520 +http://viaf.org/viaf/104551520 ISNI|0000000074346523 +http://viaf.org/viaf/104551971 ISNI|000000007434654X +http://viaf.org/viaf/104551971 CAOONL|ncf10107021 +http://viaf.org/viaf/104551971 Identities@http://www.worldcat.org/identities/viaf-104551971 +http://viaf.org/viaf/104554644 CAOONL|ncf10145631 +http://viaf.org/viaf/104554644 Identities@http://www.worldcat.org/identities/viaf-104554644 +http://viaf.org/viaf/104554644 ISNI|0000000076374325 +http://viaf.org/viaf/10455493 DNB|1079981993 +http://viaf.org/viaf/10455493 Identities@http://www.worldcat.org/identities/lccn-n84084594 +http://viaf.org/viaf/10455493 NUKAT|n 98011884 +http://viaf.org/viaf/10455493 J9U|987007422022105171 +http://viaf.org/viaf/10455493 DNB@http://d-nb.info/gnd/1079981993 +http://viaf.org/viaf/10455493 LIH@LNB:BxpJ;=CE +http://viaf.org/viaf/10455493 ISNI|0000000006656298 +http://viaf.org/viaf/10455493 PLWABN|9810539735405606 +http://viaf.org/viaf/10455493 NUKAT@vtls000106829 +http://viaf.org/viaf/10455493 LC@n84084594 +http://viaf.org/viaf/10455493 LIH|LNB:B_x__p_J;=CE +http://viaf.org/viaf/10455493 LC|n 84084594 +http://viaf.org/viaf/10455493 NTA|147833450 +http://viaf.org/viaf/10455493 RERO|A002941440 +http://viaf.org/viaf/104559270 CAOONL|ncf10108537 +http://viaf.org/viaf/104559270 ISNI|0000000075290613 +http://viaf.org/viaf/104559270 Identities@http://www.worldcat.org/identities/viaf-104559270 +http://viaf.org/viaf/104564940 ISNI|0000000075574106 +http://viaf.org/viaf/104564940 CAOONL|ncf10056299 +http://viaf.org/viaf/104564940 Identities@http://www.worldcat.org/identities/viaf-104564940 +http://viaf.org/viaf/104569071 CAOONL|ncf10056978 +http://viaf.org/viaf/104569071 ISNI|0000000074496716 +http://viaf.org/viaf/104569071 Identities@http://www.worldcat.org/identities/viaf-104569071 +http://viaf.org/viaf/104574697 ISNI|0000000074275075 +http://viaf.org/viaf/104574697 CAOONL|ncf10058036 +http://viaf.org/viaf/104574697 Identities@http://www.worldcat.org/identities/viaf-104574697 +http://viaf.org/viaf/104578800 Identities@http://www.worldcat.org/identities/viaf-104578800 +http://viaf.org/viaf/104578800 B2Q|0000150210 +http://viaf.org/viaf/104578800 ISNI|0000000075004402 +http://viaf.org/viaf/104578800 CAOONL|ncf10112250 +http://viaf.org/viaf/104578800 NTA|112012752 +http://viaf.org/viaf/104578800 RERO|A002961093 +http://viaf.org/viaf/104594299 CAOONL|ncf10115085 +http://viaf.org/viaf/104594299 Identities@http://www.worldcat.org/identities/lccn-no2019183290 +http://viaf.org/viaf/104594299 LC|no2019183290 +http://viaf.org/viaf/104594299 ISNI|0000000075291544 +http://viaf.org/viaf/104598853 CAOONL|ncf10139475 +http://viaf.org/viaf/104598853 Identities@http://www.worldcat.org/identities/viaf-104598853 +http://viaf.org/viaf/104598853 ISNI|0000000074425723 +http://viaf.org/viaf/104601317 ISNI|0000000074932346 +http://viaf.org/viaf/104601317 CAOONL|ncf10062857 +http://viaf.org/viaf/104601317 Identities@http://www.worldcat.org/identities/viaf-104601317 +http://viaf.org/viaf/1046145857953723021295 DNB@http://d-nb.info/gnd/1091183546 +http://viaf.org/viaf/1046145857953723021295 DNB|1091183546 +http://viaf.org/viaf/1046147484228949360003 XR|VIAFEXP254033769 +http://viaf.org/viaf/1046148122888895200002 DNB@http://d-nb.info/gnd/1120736277 +http://viaf.org/viaf/1046148122888895200002 Identities@http://www.worldcat.org/identities/viaf-1046148122888895200002 +http://viaf.org/viaf/1046148122888895200002 DNB|1120736277 +http://viaf.org/viaf/1046148814289145330003 DNB|1126065013 +http://viaf.org/viaf/1046148814289145330003 DNB@http://d-nb.info/gnd/1126065013 +http://viaf.org/viaf/1046150323755509970726 PLWABN|9810676048005606 +http://viaf.org/viaf/1046152636067620050984 Identities@http://www.worldcat.org/identities/viaf-1046152636067620050984 +http://viaf.org/viaf/1046152636067620050984 DNB|1158794118 +http://viaf.org/viaf/1046152636067620050984 JPG|500008695 +http://viaf.org/viaf/1046152636067620050984 DNB@http://d-nb.info/gnd/1158794118 +http://viaf.org/viaf/1046155284918387062863 LC@n2016029812 +http://viaf.org/viaf/1046155284918387062863 Identities@http://www.worldcat.org/identities/lccn-n2016029812 +http://viaf.org/viaf/1046155284918387062863 RERO|A025987021 +http://viaf.org/viaf/1046155284918387062863 LC|n 2016029812 +http://viaf.org/viaf/1046159234860003372931 RERO|A013395525 +http://viaf.org/viaf/1046159234860003372931 Identities@http://www.worldcat.org/identities/viaf-1046159234860003372931 +http://viaf.org/viaf/1046159474352827662870 CAOONL|ncf11288322 +http://viaf.org/viaf/104616195 Identities@http://www.worldcat.org/identities/viaf-104616195 +http://viaf.org/viaf/104616195 CAOONL|ncf10002892 +http://viaf.org/viaf/104616195 ISNI|0000000076083843 +http://viaf.org/viaf/104620479 CAOONL|ncf10157455 +http://viaf.org/viaf/104620479 B2Q|0000026306 +http://viaf.org/viaf/104620479 Identities@http://www.worldcat.org/identities/viaf-104620479 +http://viaf.org/viaf/104620479 ISNI|0000000075220527 +http://viaf.org/viaf/104620479 SUDOC|243749120 +http://viaf.org/viaf/104622305 Identities@http://www.worldcat.org/identities/viaf-104622305 +http://viaf.org/viaf/104622305 ISNI|0000000075078436 +http://viaf.org/viaf/104622305 CAOONL|ncf10153889 +http://viaf.org/viaf/104623647 BIBSYS|90635634 +http://viaf.org/viaf/104623647 SUDOC|028766857 +http://viaf.org/viaf/104623647 WKP|Q1409373 +http://viaf.org/viaf/104623647 DNB@http://d-nb.info/gnd/123952425 +http://viaf.org/viaf/104623647 BNF@http://catalogue.bnf.fr/ark:/12148/cb12053509p +http://viaf.org/viaf/104623647 LC@n80094221 +http://viaf.org/viaf/104623647 NUKAT@vtls003649492 +http://viaf.org/viaf/104623647 BNF|12053509 +http://viaf.org/viaf/104623647 DNB|123952425 +http://viaf.org/viaf/104623647 ISNI|0000000109300948 +http://viaf.org/viaf/104623647 LC|n 80094221 +http://viaf.org/viaf/104623647 NTA|06856550X +http://viaf.org/viaf/104623647 NUKAT|n 2006095222 +http://viaf.org/viaf/104623647 Identities@http://www.worldcat.org/identities/lccn-n80094221 +http://viaf.org/viaf/104623647 Wikipedia@http://de.wikipedia.org/wiki/Wolfgang_Helbich +http://viaf.org/viaf/104623647 RERO|A003360509 +http://viaf.org/viaf/104623647 NII|DA03708000 +http://viaf.org/viaf/104623647 J9U|987007320779705171 +http://viaf.org/viaf/104623647 PLWABN|9810630293005606 +http://viaf.org/viaf/104623647 CAOONL|ncf10188684 +http://viaf.org/viaf/104625429 ISNI|0000000075501441 +http://viaf.org/viaf/104625429 Identities@http://www.worldcat.org/identities/viaf-104625429 +http://viaf.org/viaf/104625429 CAOONL|ncf10148082 +http://viaf.org/viaf/104625924 Identities@http://www.worldcat.org/identities/viaf-104625924 +http://viaf.org/viaf/104625924 CAOONL|ncf10158174 +http://viaf.org/viaf/104625924 ISNI|0000000075220682 +http://viaf.org/viaf/104642358 Identities@http://www.worldcat.org/identities/viaf-104642358 +http://viaf.org/viaf/104642358 CAOONL|ncf10154080 +http://viaf.org/viaf/104642358 ISNI|0000000074276721 +http://viaf.org/viaf/104647308 Identities@http://www.worldcat.org/identities/viaf-104647308 +http://viaf.org/viaf/104647308 B2Q|0000281187 +http://viaf.org/viaf/104647308 CAOONL|ncf10148195 +http://viaf.org/viaf/104647308 ISNI|0000000074933437 +http://viaf.org/viaf/10465294 Identities@http://www.worldcat.org/identities/lccn-n88221082 +http://viaf.org/viaf/10465294 LC|n 88221082 +http://viaf.org/viaf/10465294 LC@n88221082 +http://viaf.org/viaf/10465294 ISNI|0000000026114533 +http://viaf.org/viaf/104659062 Identities@http://www.worldcat.org/identities/viaf-104659062 +http://viaf.org/viaf/104659062 ISNI|0000000075221431 +http://viaf.org/viaf/104659062 CAOONL|ncf10159937 +http://viaf.org/viaf/10466509 NSZL|000000000979 +http://viaf.org/viaf/10466509 NSK|000582947 +http://viaf.org/viaf/10466509 LIH|LNB:V-392953;=BR +http://viaf.org/viaf/10466509 W2Z|1542227323150 +http://viaf.org/viaf/10466509 BIBSYS|1542227323150 +http://viaf.org/viaf/10466509 NSZL@http://nektar.oszk.hu/resource/auth/32902 +http://viaf.org/viaf/10466509 NDL|01041180 +http://viaf.org/viaf/10466509 LC@n89670776 +http://viaf.org/viaf/10466509 LNB|LNC10-000199293 +http://viaf.org/viaf/10466509 LC|n 89670776 +http://viaf.org/viaf/10466509 ISNI|0000000080179397 +http://viaf.org/viaf/10466509 DNB|111263638 +http://viaf.org/viaf/10466509 DNB@http://d-nb.info/gnd/111263638 +http://viaf.org/viaf/10466509 Identities@http://www.worldcat.org/identities/lccn-n89670776 +http://viaf.org/viaf/10466509 NTA|205120997 +http://viaf.org/viaf/10466509 WKP|Q852837 +http://viaf.org/viaf/10466509 Wikipedia@http://hu.wikipedia.org/wiki/Bálint_Ágnes +http://viaf.org/viaf/10466509 Wikipedia@http://fr.wikipedia.org/wiki/Ágnes_Bálint +http://viaf.org/viaf/10466509 KRNLK|KAC200909498 +http://viaf.org/viaf/10466509 Wikipedia@http://eo.wikipedia.org/wiki/Ágnes_Bálint +http://viaf.org/viaf/10466509 BNF|17031267 +http://viaf.org/viaf/10466509 NII|DA12958042 +http://viaf.org/viaf/10466509 NLR|RU NLR AUTH 770159456 +http://viaf.org/viaf/10466509 LIH@LNB:V*392953;=BR +http://viaf.org/viaf/10466509 NKC|ola2004219862 +http://viaf.org/viaf/10466509 NLR@RU\NLR\AUTH\770159456 +http://viaf.org/viaf/10466509 BNF@http://catalogue.bnf.fr/ark:/12148/cb17031267t +http://viaf.org/viaf/104666019 CAOONL|ncf10152226 +http://viaf.org/viaf/104666019 DNB@http://d-nb.info/gnd/177441968 +http://viaf.org/viaf/104666019 Identities@http://www.worldcat.org/identities/viaf-104666019 +http://viaf.org/viaf/104666019 ISNI|0000000076595443 +http://viaf.org/viaf/104666019 DNB|177441968 +http://viaf.org/viaf/104670023 Identities@http://www.worldcat.org/identities/lccn-n86093171 +http://viaf.org/viaf/104670023 LC@n86093171 +http://viaf.org/viaf/104670023 J9U|987007320630805171 +http://viaf.org/viaf/104670023 LC|n 86093171 +http://viaf.org/viaf/104670023 ISNI|0000000082866705 +http://viaf.org/viaf/104670023 CAOONL|ncf10159969 +http://viaf.org/viaf/104673147 Identities@http://www.worldcat.org/identities/viaf-104673147 +http://viaf.org/viaf/104673147 CAOONL|ncf10231792 +http://viaf.org/viaf/104676810 LC@n89611891 +http://viaf.org/viaf/104676810 Identities@http://www.worldcat.org/identities/lccn-n89611891 +http://viaf.org/viaf/104676810 LC|n 89611891 +http://viaf.org/viaf/104676810 CAOONL|ncf10163215 +http://viaf.org/viaf/1046833 Identities@http://www.worldcat.org/identities/viaf-1046833 +http://viaf.org/viaf/1046833 DNB@http://d-nb.info/gnd/127845925 +http://viaf.org/viaf/1046833 DNB|127845925 +http://viaf.org/viaf/104685720 CAOONL|ncf10190609 +http://viaf.org/viaf/104685720 B2Q|0000324854 +http://viaf.org/viaf/104685720 Identities@http://www.worldcat.org/identities/viaf-104685720 +http://viaf.org/viaf/104688349 B2Q|0000003502 +http://viaf.org/viaf/104688349 CAOONL|ncf10167054 +http://viaf.org/viaf/104688349 Identities@http://www.worldcat.org/identities/viaf-104688349 +http://viaf.org/viaf/104688349 ISNI|0000000074861904 +http://viaf.org/viaf/104689735 CAOONL|ncf10178557 +http://viaf.org/viaf/104689735 Identities@http://www.worldcat.org/identities/viaf-104689735 +http://viaf.org/viaf/104694630 CAOONL|ncf10175058 +http://viaf.org/viaf/104694630 LC@nr97022092 +http://viaf.org/viaf/104694630 Identities@http://www.worldcat.org/identities/lccn-nr97022092 +http://viaf.org/viaf/104694630 Wikipedia@http://it.wikipedia.org/wiki/Muriel_Duckworth +http://viaf.org/viaf/104694630 B2Q|0000925119 +http://viaf.org/viaf/104694630 Wikipedia@http://fi.wikipedia.org/wiki/Muriel_Duckworth +http://viaf.org/viaf/104694630 Wikipedia@http://en.wikipedia.org/wiki/Muriel_Duckworth +http://viaf.org/viaf/104694630 Wikipedia@http://de.wikipedia.org/wiki/Muriel_Duckworth +http://viaf.org/viaf/104694630 Wikipedia@http://ar.wikipedia.org/wiki/مورييل_داكويرث +http://viaf.org/viaf/104694630 ISNI|0000000078975116 +http://viaf.org/viaf/104694630 LC|nr 97022092 +http://viaf.org/viaf/104694630 WKP|Q455149 +http://viaf.org/viaf/10470018 LC|n 97802321 +http://viaf.org/viaf/10470018 LC@n97802321 +http://viaf.org/viaf/10470018 Identities@http://www.worldcat.org/identities/lccn-n97802321 +http://viaf.org/viaf/10470018 ISNI|0000000034833984 +http://viaf.org/viaf/10470018 BIBSYS|97031417 +http://viaf.org/viaf/10470018 RERO|A003947464 +http://viaf.org/viaf/104711405 ISNI|000000007449995X +http://viaf.org/viaf/104711405 CAOONL|ncf10161663 +http://viaf.org/viaf/104711405 Identities@http://www.worldcat.org/identities/viaf-104711405 +http://viaf.org/viaf/104711856 Identities@http://www.worldcat.org/identities/viaf-104711856 +http://viaf.org/viaf/104711856 CAOONL|ncf10180650 +http://viaf.org/viaf/104714529 CAOONL|ncf10172683 +http://viaf.org/viaf/104714529 Identities@http://www.worldcat.org/identities/viaf-104714529 +http://viaf.org/viaf/1047145856879022920210 DNB@http://d-nb.info/gnd/1086730003 +http://viaf.org/viaf/1047145856879022920210 DNB|1086730003 +http://viaf.org/viaf/1047145856879022920210 Identities@http://www.worldcat.org/identities/viaf-1047145856879022920210 +http://viaf.org/viaf/104715140 CAOONL|ncf10174695 +http://viaf.org/viaf/1047154381144530292896 LIH|LNB:V7_v_;=B_p_ +http://viaf.org/viaf/1047154381144530292896 LIH@LNB:V7v;=Bp +http://viaf.org/viaf/104717373 Identities@http://www.worldcat.org/identities/viaf-104717373 +http://viaf.org/viaf/104717373 CAOONL|ncf10190420 +http://viaf.org/viaf/1047229 NUKAT@vtls008147249 +http://viaf.org/viaf/1047229 DNB@http://d-nb.info/gnd/127857214 +http://viaf.org/viaf/1047229 NUKAT|n 2011110780 +http://viaf.org/viaf/1047229 DNB|127857214 +http://viaf.org/viaf/1047229 ISNI|0000000023921348 +http://viaf.org/viaf/1047229 PLWABN|9810684191905606 +http://viaf.org/viaf/1047229 Identities@http://www.worldcat.org/identities/viaf-1047229 +http://viaf.org/viaf/104723934 WKP|Q43195108 +http://viaf.org/viaf/104723934 CAOONL|ncf10234974 +http://viaf.org/viaf/104723934 Identities@http://www.worldcat.org/identities/viaf-104723934 +http://viaf.org/viaf/104723934 Wikipedia@http://en.wikipedia.org/wiki/James_Kemp_(NAACP) +http://viaf.org/viaf/104724825 ISNI|0000000075294649 +http://viaf.org/viaf/104724825 Identities@http://www.worldcat.org/identities/viaf-104724825 +http://viaf.org/viaf/104724825 CAOONL|ncf10162896 +http://viaf.org/viaf/104727174 Identities@http://www.worldcat.org/identities/viaf-104727174 +http://viaf.org/viaf/104727174 CAOONL|ncf10175454 +http://viaf.org/viaf/104727174 ISNI|0000000074935221 +http://viaf.org/viaf/104731007 CAOONL|ncf10181244 +http://viaf.org/viaf/104731007 Identities@http://www.worldcat.org/identities/viaf-104731007 +http://viaf.org/viaf/104731007 ISNI|0000000075650252 +http://viaf.org/viaf/104734626 CAOONL|ncf10168985 +http://viaf.org/viaf/104734626 Identities@http://www.worldcat.org/identities/viaf-104734626 +http://viaf.org/viaf/104734626 ISNI|0000000074500383 +http://viaf.org/viaf/104740412 Identities@http://www.worldcat.org/identities/viaf-104740412 +http://viaf.org/viaf/104740412 ISNI|0000000076378748 +http://viaf.org/viaf/104740412 CAOONL|ncf10185516 +http://viaf.org/viaf/104740863 Identities@http://www.worldcat.org/identities/viaf-104740863 +http://viaf.org/viaf/104740863 CAOONL|ncf10163288 +http://viaf.org/viaf/104740863 ISNI|0000000075723159 +http://viaf.org/viaf/104746380 Identities@http://www.worldcat.org/identities/lccn-no2019144527 +http://viaf.org/viaf/104746380 CAOONL|ncf10179891 +http://viaf.org/viaf/104746380 ISNI|0000000075942570 +http://viaf.org/viaf/104746380 LC|no2019144527 +http://viaf.org/viaf/104749053 Identities@http://www.worldcat.org/identities/viaf-104749053 +http://viaf.org/viaf/104749053 ISNI|0000000353117205 +http://viaf.org/viaf/104749053 CAOONL|ncf10163883 +http://viaf.org/viaf/104754723 CAOONL|ncf10180892 +http://viaf.org/viaf/104754723 ISNI|0000000076086817 +http://viaf.org/viaf/104754723 Identities@http://www.worldcat.org/identities/viaf-104754723 +http://viaf.org/viaf/104761851 Identities@http://www.worldcat.org/identities/viaf-104761851 +http://viaf.org/viaf/104761851 ISNI|0000000074575000 +http://viaf.org/viaf/104761851 CAOONL|ncf10178774 +http://viaf.org/viaf/104762742 CAOONL|ncf10181136 +http://viaf.org/viaf/104762742 Identities@http://www.worldcat.org/identities/viaf-104762742 +http://viaf.org/viaf/104762742 ISNI|0000000075368353 +http://viaf.org/viaf/104770310 Identities@http://www.worldcat.org/identities/viaf-104770310 +http://viaf.org/viaf/104770310 CAOONL|ncf10179997 +http://viaf.org/viaf/104770310 ISNI|0000000075724039 +http://viaf.org/viaf/104772499 Identities@http://www.worldcat.org/identities/viaf-104772499 +http://viaf.org/viaf/104772499 ISNI|0000000076452290 +http://viaf.org/viaf/104772499 CAOONL|ncf10186117 +http://viaf.org/viaf/104782344 ISNI|0000000075578692 +http://viaf.org/viaf/104782344 Identities@http://www.worldcat.org/identities/viaf-104782344 +http://viaf.org/viaf/104782344 CAOONL|ncf10168503 +http://viaf.org/viaf/104790363 Identities@http://www.worldcat.org/identities/viaf-104790363 +http://viaf.org/viaf/104790363 CAOONL|ncf10168189 +http://viaf.org/viaf/104790363 ISNI|0000000076818141 +http://viaf.org/viaf/104792640 CAOONL|ncf10175094 +http://viaf.org/viaf/104792640 ISNI|0000000076380127 +http://viaf.org/viaf/104792640 Identities@http://www.worldcat.org/identities/viaf-104792640 +http://viaf.org/viaf/104795269 Identities@http://www.worldcat.org/identities/viaf-104795269 +http://viaf.org/viaf/104795269 CAOONL|ncf10182174 +http://viaf.org/viaf/104795269 ISNI|0000000075724717 +http://viaf.org/viaf/104806473 Identities@http://www.worldcat.org/identities/lccn-no2003036259 +http://viaf.org/viaf/104806473 CAOONL|ncf10172967 +http://viaf.org/viaf/104806473 LC|no2003036259 +http://viaf.org/viaf/104806473 ISNI|0000000075297030 +http://viaf.org/viaf/104810306 ISNI|0000000076088070 +http://viaf.org/viaf/104810306 CAOONL|ncf10180129 +http://viaf.org/viaf/104810306 Identities@http://www.worldcat.org/identities/viaf-104810306 +http://viaf.org/viaf/1048145856892822920494 Identities@http://www.worldcat.org/identities/viaf-1048145856892822920494 +http://viaf.org/viaf/1048145856892822920494 DNB|1086599594 +http://viaf.org/viaf/1048145856892822920494 DNB@http://d-nb.info/gnd/1086599594 +http://viaf.org/viaf/1048159234108203370712 RERO|A021650553 +http://viaf.org/viaf/1048159234108203370712 Identities@http://www.worldcat.org/identities/viaf-1048159234108203370712 +http://viaf.org/viaf/1048159234276003371256 Identities@http://www.worldcat.org/identities/viaf-1048159234276003371256 +http://viaf.org/viaf/1048159234276003371256 RERO|A012525949 +http://viaf.org/viaf/104817660 ISNI|0000000075506664 +http://viaf.org/viaf/104817660 CAOONL|ncf10225569 +http://viaf.org/viaf/104817660 Identities@http://www.worldcat.org/identities/viaf-104817660 +http://viaf.org/viaf/104819442 ISNI|0000000076016050 +http://viaf.org/viaf/104819442 CAOONL|ncf10195469 +http://viaf.org/viaf/104819442 Identities@http://www.worldcat.org/identities/viaf-104819442 +http://viaf.org/viaf/104824617 Identities@http://www.worldcat.org/identities/viaf-104824617 +http://viaf.org/viaf/104824617 CAOONL|ncf10230943 +http://viaf.org/viaf/104830854 Identities@http://www.worldcat.org/identities/viaf-104830854 +http://viaf.org/viaf/104830854 CAOONL|ncf10215270 +http://viaf.org/viaf/104830854 ISNI|0000000075506904 +http://viaf.org/viaf/104838153 CAOONL|ncf10197438 +http://viaf.org/viaf/104838153 Identities@http://www.worldcat.org/identities/viaf-104838153 +http://viaf.org/viaf/104843779 Identities@http://www.worldcat.org/identities/viaf-104843779 +http://viaf.org/viaf/104843779 CAOONL|ncf10185269 +http://viaf.org/viaf/104844390 LC@n88061317 +http://viaf.org/viaf/104844390 LC|n 88061317 +http://viaf.org/viaf/104844390 B2Q|0000114925 +http://viaf.org/viaf/104844390 CAOONL|ncf10199622 +http://viaf.org/viaf/104844390 ISNI|000000007897659X +http://viaf.org/viaf/104844390 DNB@http://d-nb.info/gnd/112912388X +http://viaf.org/viaf/104844390 Identities@http://www.worldcat.org/identities/lccn-n88061317 +http://viaf.org/viaf/104844390 J9U|987007277537005171 +http://viaf.org/viaf/104844390 DNB|112912388X +http://viaf.org/viaf/10487173 Identities@http://www.worldcat.org/identities/viaf-10487173 +http://viaf.org/viaf/10487173 ISNI|0000000006679983 +http://viaf.org/viaf/104872830 Identities@http://www.worldcat.org/identities/viaf-104872830 +http://viaf.org/viaf/104872830 B2Q|0000289540 +http://viaf.org/viaf/104872830 ISNI|0000000076235392 +http://viaf.org/viaf/104872830 CAOONL|ncf10209631 +http://viaf.org/viaf/104875954 Identities@http://www.worldcat.org/identities/viaf-104875954 +http://viaf.org/viaf/104875954 CAOONL|ncf10186665 +http://viaf.org/viaf/104875954 ISNI|0000000074503883 +http://viaf.org/viaf/104876845 CAOONL|ncf10190042 +http://viaf.org/viaf/104876845 ISNI|0000000075371405 +http://viaf.org/viaf/104876845 Identities@http://www.worldcat.org/identities/viaf-104876845 +http://viaf.org/viaf/104877736 Identities@http://www.worldcat.org/identities/viaf-104877736 +http://viaf.org/viaf/104877736 ISNI|000000007558075X +http://viaf.org/viaf/104877736 CAOONL|ncf10199163 +http://viaf.org/viaf/104881696 ISNI|0000000076382149 +http://viaf.org/viaf/104881696 CAOONL|ncf10186944 +http://viaf.org/viaf/104881696 Identities@http://www.worldcat.org/identities/viaf-104881696 +http://viaf.org/viaf/104891541 CAOONL|ncf10198087 +http://viaf.org/viaf/104891541 B2Q|0001271743 +http://viaf.org/viaf/104891541 LC|no2015027015 +http://viaf.org/viaf/104891541 Identities@http://www.worldcat.org/identities/lccn-no2015027015 +http://viaf.org/viaf/104892388 CAOONL|ncf10209622 +http://viaf.org/viaf/104892388 Identities@http://www.worldcat.org/identities/viaf-104892388 +http://viaf.org/viaf/104892388 B2Q|0000111702 +http://viaf.org/viaf/104893279 Identities@http://www.worldcat.org/identities/viaf-104893279 +http://viaf.org/viaf/104893279 ISNI|0000000076382392 +http://viaf.org/viaf/104893279 CAOONL|ncf10186455 +http://viaf.org/viaf/104907200 Identities@http://www.worldcat.org/identities/viaf-104907200 +http://viaf.org/viaf/104907200 CAOONL|ncf10202000 +http://viaf.org/viaf/104907200 ISNI|0000000074282240 +http://viaf.org/viaf/104908542 ISNI|0000000077380014 +http://viaf.org/viaf/104908542 DNB|107495839X +http://viaf.org/viaf/104908542 DNB@http://d-nb.info/gnd/107495839X +http://viaf.org/viaf/104908542 LC@n87900599 +http://viaf.org/viaf/104908542 Identities@http://www.worldcat.org/identities/lccn-n87900599 +http://viaf.org/viaf/104908542 CAOONL|ncf10501752 +http://viaf.org/viaf/104908542 LC|n 87900599 +http://viaf.org/viaf/1049159474197427661297 CAOONL|ncf11715130 +http://viaf.org/viaf/104919234 LC|no2015106985 +http://viaf.org/viaf/104919234 SUDOC|181132931 +http://viaf.org/viaf/104919234 Identities@http://www.worldcat.org/identities/lccn-no2015106985 +http://viaf.org/viaf/104919234 CAOONL|ncf10207438 +http://viaf.org/viaf/104928144 CAOONL|ncf10254044 +http://viaf.org/viaf/104928144 Identities@http://www.worldcat.org/identities/viaf-104928144 +http://viaf.org/viaf/104933814 B2Q|ncf10877983 +http://viaf.org/viaf/104933814 RERO|A011026926 +http://viaf.org/viaf/104933814 SUDOC|178642932 +http://viaf.org/viaf/104933814 LC@n96057262 +http://viaf.org/viaf/104933814 Identities@http://www.worldcat.org/identities/lccn-n96057262 +http://viaf.org/viaf/104933814 ISNI|0000000076529569 +http://viaf.org/viaf/104933814 LC|n 96057262 +http://viaf.org/viaf/104933814 CAOONL|ncf10217163 +http://viaf.org/viaf/104941833 Identities@http://www.worldcat.org/identities/viaf-104941833 +http://viaf.org/viaf/104941833 CAOONL|ncf10260227 +http://viaf.org/viaf/104941833 ISNI|0000000076018718 +http://viaf.org/viaf/104944506 Identities@http://www.worldcat.org/identities/lccn-n97057424 +http://viaf.org/viaf/104944506 LC@n97057424 +http://viaf.org/viaf/104944506 ISNI|0000000078998887 +http://viaf.org/viaf/104944506 LC|n 97057424 +http://viaf.org/viaf/104944506 CAOONL|ncf10201776 +http://viaf.org/viaf/104944957 CAOONL|ncf10208140 +http://viaf.org/viaf/104944957 NUKAT|n 2019003838 +http://viaf.org/viaf/104944957 Identities@http://www.worldcat.org/identities/viaf-104944957 +http://viaf.org/viaf/104944957 B2Q|0000830818 +http://viaf.org/viaf/104944957 NUKAT@vtls018122200 +http://viaf.org/viaf/104953092 Identities@http://www.worldcat.org/identities/viaf-104953092 +http://viaf.org/viaf/104953092 ISNI|0000000076822431 +http://viaf.org/viaf/104953092 CAOONL|ncf10217494 +http://viaf.org/viaf/104955649 ISNI|0000000074505635 +http://viaf.org/viaf/104955649 Identities@http://www.worldcat.org/identities/viaf-104955649 +http://viaf.org/viaf/104955649 CAOONL|ncf10226187 +http://viaf.org/viaf/104962821 CAOONL|ncf10240522 +http://viaf.org/viaf/104962821 ISNI|0000000076875533 +http://viaf.org/viaf/104962821 Identities@http://www.worldcat.org/identities/viaf-104962821 +http://viaf.org/viaf/104963217 NSK|000603251 +http://viaf.org/viaf/104963217 BIBSYS|90202584 +http://viaf.org/viaf/104963217 WKP|Q16937715 +http://viaf.org/viaf/104963217 NLA|000036062175 +http://viaf.org/viaf/104963217 Wikipedia@http://en.wikipedia.org/wiki/Robin_D._S._Higham +http://viaf.org/viaf/104963217 NKC|jo2008479128 +http://viaf.org/viaf/104963217 LNB|LNC10-000188496 +http://viaf.org/viaf/104963217 LC|n 50033728 +http://viaf.org/viaf/104963217 ISNI|0000000110803120 +http://viaf.org/viaf/104963217 DNB|17027926X +http://viaf.org/viaf/104963217 BNF|12035782 +http://viaf.org/viaf/104963217 Identities@http://www.worldcat.org/identities/lccn-n50033728 +http://viaf.org/viaf/104963217 J9U|987007262654805171 +http://viaf.org/viaf/104963217 Wikipedia@http://de.wikipedia.org/wiki/Robin_Higham +http://viaf.org/viaf/104963217 RERO|A003370921 +http://viaf.org/viaf/104963217 BNF@http://catalogue.bnf.fr/ark:/12148/cb12035782c +http://viaf.org/viaf/104963217 DNB@http://d-nb.info/gnd/17027926X +http://viaf.org/viaf/104963217 NII|DA02436710 +http://viaf.org/viaf/104963217 ERRR|a11554101 +http://viaf.org/viaf/104963217 NUKAT|n 2005110288 +http://viaf.org/viaf/104963217 SUDOC|028542770 +http://viaf.org/viaf/104963217 CAOONL|ncf10263725 +http://viaf.org/viaf/104963217 PLWABN|9810650123005606 +http://viaf.org/viaf/104963217 GRATEVE|75197 +http://viaf.org/viaf/104963217 LC@n50033728 +http://viaf.org/viaf/104963217 NTA|071077650 +http://viaf.org/viaf/104963217 NUKAT@vtls002335753 +http://viaf.org/viaf/104973469 Identities@http://www.worldcat.org/identities/viaf-104973469 +http://viaf.org/viaf/104973469 B2Q|0000462028 +http://viaf.org/viaf/104973469 RERO|A005995031 +http://viaf.org/viaf/104973469 CAOONL|ncf10224710 +http://viaf.org/viaf/104973469 ISNI|0000000076311965 +http://viaf.org/viaf/104973513 CAOONL|ncf10226138 +http://viaf.org/viaf/104973513 ISNI|0000000075442429 +http://viaf.org/viaf/104973513 Identities@http://www.worldcat.org/identities/viaf-104973513 +http://viaf.org/viaf/104973964 CAOONL|ncf10226351 +http://viaf.org/viaf/104973964 ISNI|0000000075442437 +http://viaf.org/viaf/104973964 Identities@http://www.worldcat.org/identities/viaf-104973964 +http://viaf.org/viaf/104978914 CAOONL|ncf10222935 +http://viaf.org/viaf/104978914 Identities@http://www.worldcat.org/identities/viaf-104978914 +http://viaf.org/viaf/104978914 ISNI|0000000075947849 +http://viaf.org/viaf/104979481 Identities@http://www.worldcat.org/identities/viaf-104979481 +http://viaf.org/viaf/104979481 ISNI|0000000076384670 +http://viaf.org/viaf/104979481 CAOONL|ncf10226115 +http://viaf.org/viaf/104980146 ISNI|0000000076164926 +http://viaf.org/viaf/104980146 CAOONL|ncf10227258 +http://viaf.org/viaf/104980146 Identities@http://www.worldcat.org/identities/viaf-104980146 +http://viaf.org/viaf/104984205 ISNI|0000000075374083 +http://viaf.org/viaf/104984205 CAOONL|ncf10219719 +http://viaf.org/viaf/104984205 Identities@http://www.worldcat.org/identities/viaf-104984205 +http://viaf.org/viaf/104984656 Identities@http://www.worldcat.org/identities/viaf-104984656 +http://viaf.org/viaf/104984656 CAOONL|ncf10221616 +http://viaf.org/viaf/104984656 ISNI|0000000076530770 +http://viaf.org/viaf/104986933 Identities@http://www.worldcat.org/identities/viaf-104986933 +http://viaf.org/viaf/104986933 CAOONL|ncf10252090 +http://viaf.org/viaf/104991333 CAOONL|ncf10224974 +http://viaf.org/viaf/104991333 ISNI|0000000076530893 +http://viaf.org/viaf/104991333 Identities@http://www.worldcat.org/identities/viaf-104991333 +http://viaf.org/viaf/104993115 CAOONL|ncf10251381 +http://viaf.org/viaf/105001321 LC|n 2002105661 +http://viaf.org/viaf/105001321 B2Q|0000450027 +http://viaf.org/viaf/105001321 J9U|987007320631405171 +http://viaf.org/viaf/105001321 ISNI|0000000078999273 +http://viaf.org/viaf/105001321 Identities@http://www.worldcat.org/identities/lccn-n2002105661 +http://viaf.org/viaf/105001321 LC@n2002105661 +http://viaf.org/viaf/105001321 RERO|A012338211 +http://viaf.org/viaf/105001321 CAOONL|ncf10216605 +http://viaf.org/viaf/105003103 ISNI|0000000076751127 +http://viaf.org/viaf/105003103 Identities@http://www.worldcat.org/identities/viaf-105003103 +http://viaf.org/viaf/105003103 CAOONL|ncf10222988 +http://viaf.org/viaf/105004445 ISNI|0000000074357580 +http://viaf.org/viaf/105004445 Identities@http://www.worldcat.org/identities/viaf-105004445 +http://viaf.org/viaf/105004445 CAOONL|ncf10227582 +http://viaf.org/viaf/105007118 B2Q|0000285804 +http://viaf.org/viaf/105007118 CAOONL|ncf10215437 +http://viaf.org/viaf/105007118 Identities@http://www.worldcat.org/identities/viaf-105007118 +http://viaf.org/viaf/105007118 ISNI|0000000075230151 +http://viaf.org/viaf/105008955 Identities@http://www.worldcat.org/identities/viaf-105008955 +http://viaf.org/viaf/105008955 CAOONL|ncf10222244 +http://viaf.org/viaf/105008955 B2Q|0000296529 +http://viaf.org/viaf/105008955 ISNI|0000000074942675 +http://viaf.org/viaf/1050151656348208400006 XR|VIAFEXP975051861 +http://viaf.org/viaf/1050151898606524190002 LNB|LNC10-000254298 +http://viaf.org/viaf/1050151898606524190002 LIH|LNB:B_v__e__f_;=CN +http://viaf.org/viaf/1050151898606524190002 Wikipedia@http://arz.wikipedia.org/wiki/ستانيسلاڤس_سكيستيرس +http://viaf.org/viaf/1050151898606524190002 Wikipedia@http://lv.wikipedia.org/wiki/Staņislavs_Šķesters +http://viaf.org/viaf/1050151898606524190002 Wikipedia@http://pl.wikipedia.org/wiki/Staņislavs_Šķesters +http://viaf.org/viaf/1050151898606524190002 LIH@LNB:Bvef;=CN +http://viaf.org/viaf/1050151898606524190002 WKP|Q9344804 +http://viaf.org/viaf/105015588 ISNI|0000000107874892 +http://viaf.org/viaf/105015588 DNB|140838902 +http://viaf.org/viaf/105015588 Identities@http://www.worldcat.org/identities/lccn-n90705061 +http://viaf.org/viaf/105015588 DNB@http://d-nb.info/gnd/140838902 +http://viaf.org/viaf/105015588 J9U|987007320629705171 +http://viaf.org/viaf/105015588 LC@n90705061 +http://viaf.org/viaf/105015588 CAOONL|ncf10229311 +http://viaf.org/viaf/105015588 B2Q|0000296510 +http://viaf.org/viaf/105015588 LC|n 90705061 +http://viaf.org/viaf/1050159234870503372976 RERO|A012408608 +http://viaf.org/viaf/1050159477933127990003 CAOONL|ncf11561520 +http://viaf.org/viaf/105022760 CAOONL|ncf10232939 +http://viaf.org/viaf/105022760 Identities@http://www.worldcat.org/identities/viaf-105022760 +http://viaf.org/viaf/105022760 ISNI|0000000075803191 +http://viaf.org/viaf/105023156 CAOONL|ncf10233369 +http://viaf.org/viaf/105023156 ISNI|0000000075803204 +http://viaf.org/viaf/105023156 Identities@http://www.worldcat.org/identities/viaf-105023156 +http://viaf.org/viaf/105024047 Identities@http://www.worldcat.org/identities/viaf-105024047 +http://viaf.org/viaf/105024047 CAOONL|ncf10236937 +http://viaf.org/viaf/105024047 ISNI|0000000074724264 +http://viaf.org/viaf/105035685 ISNI|0000000350523427 +http://viaf.org/viaf/105035685 Identities@http://www.worldcat.org/identities/viaf-105035685 +http://viaf.org/viaf/105035685 CAOONL|ncf10233284 +http://viaf.org/viaf/105036125 Identities@http://www.worldcat.org/identities/viaf-105036125 +http://viaf.org/viaf/105036125 ISNI|0000000075375529 +http://viaf.org/viaf/105036125 CAOONL|ncf10234651 +http://viaf.org/viaf/105038402 CAOONL|ncf10229533 +http://viaf.org/viaf/105038402 BLBNB|000337745 +http://viaf.org/viaf/105038402 Identities@http://www.worldcat.org/identities/viaf-105038402 +http://viaf.org/viaf/105041020 Identities@http://www.worldcat.org/identities/viaf-105041020 +http://viaf.org/viaf/105041020 ISNI|0000000076239641 +http://viaf.org/viaf/105041020 CAOONL|ncf10229224 +http://viaf.org/viaf/105046377 ISNI|0000000075949537 +http://viaf.org/viaf/105046377 CAOONL|ncf10260866 +http://viaf.org/viaf/105046377 B2Q|0000131296 +http://viaf.org/viaf/105046377 Identities@http://www.worldcat.org/identities/viaf-105046377 +http://viaf.org/viaf/105049545 CAOONL|ncf10237487 +http://viaf.org/viaf/105049545 ISNI|0000000075375895 +http://viaf.org/viaf/105049545 Identities@http://www.worldcat.org/identities/viaf-105049545 +http://viaf.org/viaf/105053829 Identities@http://www.worldcat.org/identities/viaf-105053829 +http://viaf.org/viaf/105053829 ISNI|0000000074943942 +http://viaf.org/viaf/105053829 CAOONL|ncf10230883 +http://viaf.org/viaf/105058455 Identities@http://www.worldcat.org/identities/viaf-105058455 +http://viaf.org/viaf/105058455 CAOONL|ncf10253427 +http://viaf.org/viaf/105058455 ISNI|0000000076678820 +http://viaf.org/viaf/105058455 B2Q|0000117865 +http://viaf.org/viaf/105061073 ISNI|0000000075657702 +http://viaf.org/viaf/105061073 Identities@http://www.worldcat.org/identities/viaf-105061073 +http://viaf.org/viaf/105061073 CAOONL|ncf10234686 +http://viaf.org/viaf/105063350 Identities@http://www.worldcat.org/identities/viaf-105063350 +http://viaf.org/viaf/105063350 CAOONL|ncf10228109 +http://viaf.org/viaf/105065132 Identities@http://www.worldcat.org/identities/viaf-105065132 +http://viaf.org/viaf/105065132 CAOONL|ncf10259436 +http://viaf.org/viaf/105065132 B2Q|0000135067 +http://viaf.org/viaf/105065132 NTA|169097536 +http://viaf.org/viaf/105065132 ISNI|0000000396300659 +http://viaf.org/viaf/105067365 Identities@http://www.worldcat.org/identities/viaf-105067365 +http://viaf.org/viaf/105067365 CAOONL|ncf10234663 +http://viaf.org/viaf/105067365 ISNI|0000000074799311 +http://viaf.org/viaf/105084294 Identities@http://www.worldcat.org/identities/viaf-105084294 +http://viaf.org/viaf/105084294 CAOONL|ncf10274820 +http://viaf.org/viaf/105084294 B2Q|0000109560 +http://viaf.org/viaf/105085509 NSZL@http://nektar.oszk.hu/resource/auth/184384 +http://viaf.org/viaf/105085509 CAOONL|ncf10312714 +http://viaf.org/viaf/105085509 B2Q|0000100175 +http://viaf.org/viaf/105085509 NSZL|000000005133 +http://viaf.org/viaf/105085509 ISNI|0000000079000038 +http://viaf.org/viaf/105085509 Identities@http://www.worldcat.org/identities/viaf-105085509 +http://viaf.org/viaf/105099045 CAOONL|ncf11297099 +http://viaf.org/viaf/105099045 LC@n93042981 +http://viaf.org/viaf/105099045 Identities@http://www.worldcat.org/identities/lccn-n93042981 +http://viaf.org/viaf/105099045 BNF|12404736 +http://viaf.org/viaf/105099045 BNF@http://catalogue.bnf.fr/ark:/12148/cb124047361 +http://viaf.org/viaf/105099045 RERO|A003454993 +http://viaf.org/viaf/105099045 LC|n 93042981 +http://viaf.org/viaf/105099045 J9U|987007359359505171 +http://viaf.org/viaf/105099045 SUDOC|033151571 +http://viaf.org/viaf/105114038 ISNI|0000000074871651 +http://viaf.org/viaf/105114038 Identities@http://www.worldcat.org/identities/viaf-105114038 +http://viaf.org/viaf/105114038 CAOONL|ncf10286963 +http://viaf.org/viaf/1051145424721186830523 LC@no99055528 +http://viaf.org/viaf/1051145424721186830523 DNB@http://d-nb.info/gnd/10002272-8 +http://viaf.org/viaf/1051145424721186830523 Identities@http://www.worldcat.org/identities/lccn-no99055528 +http://viaf.org/viaf/1051145424721186830523 Wikipedia@http://en.wikipedia.org/wiki/Design_Museum_of_Thessaloniki +http://viaf.org/viaf/1051145424721186830523 WKP|Q2330528 +http://viaf.org/viaf/1051145424721186830523 DNB|958779147 +http://viaf.org/viaf/1051145424721186830523 SUDOC|191808105 +http://viaf.org/viaf/1051145424721186830523 Wikipedia@http://bg.wikipedia.org/wiki/Солунски_музей_на_дизайна +http://viaf.org/viaf/1051145424721186830523 Wikipedia@http://uk.wikipedia.org/wiki/Салонікський_музей_дизайну +http://viaf.org/viaf/1051145424721186830523 LC|no 99055528 +http://viaf.org/viaf/1051145857023822921117 Identities@http://www.worldcat.org/identities/viaf-1051145857023822921117 +http://viaf.org/viaf/1051145857023822921117 DNB|1089283814 +http://viaf.org/viaf/1051145857023822921117 DNB@http://d-nb.info/gnd/1089283814 +http://viaf.org/viaf/1051153532496348820009 PLWABN|9810578859005606 +http://viaf.org/viaf/1051154381051330291932 LIH|LNB:ZK_h_;=B_j_ +http://viaf.org/viaf/1051154381051330291932 LIH@LNB:ZKh;=Bj +http://viaf.org/viaf/1051154381072730292675 LIH|LNB:SX_d_;=B_l_ +http://viaf.org/viaf/1051154381072730292675 LIH@LNB:SXd;=Bl +http://viaf.org/viaf/1051154381072730292675 Identities@http://www.worldcat.org/identities/viaf-1051154381072730292675 +http://viaf.org/viaf/105115875 SUDOC|23322758X +http://viaf.org/viaf/105115875 DNB@http://d-nb.info/gnd/1176847597 +http://viaf.org/viaf/105115875 DNB@http://d-nb.info/gnd/1176850687 +http://viaf.org/viaf/105115875 ISNI|0000000075658887 +http://viaf.org/viaf/105115875 LC|no2017136487 +http://viaf.org/viaf/105115875 JPG|500126624 +http://viaf.org/viaf/105115875 WKP|Q16186640 +http://viaf.org/viaf/105115875 Identities@http://www.worldcat.org/identities/lccn-no2017136487 +http://viaf.org/viaf/105115875 CAOONL|ncf10277872 +http://viaf.org/viaf/105115875 DNB|1176850687 +http://viaf.org/viaf/105115875 Wikipedia@http://en.wikipedia.org/wiki/Beau_Dick +http://viaf.org/viaf/105115875 DNB|1176847597 +http://viaf.org/viaf/105115875 Wikipedia@http://de.wikipedia.org/wiki/Beau_Dick +http://viaf.org/viaf/1051159474076527660953 DNB|1213248760 +http://viaf.org/viaf/1051159474076527660953 DNB@http://d-nb.info/gnd/1213248760 +http://viaf.org/viaf/1051159474312827661846 SUDOC|24515969X +http://viaf.org/viaf/105126567 CAOONL|ncf10247999 +http://viaf.org/viaf/105126567 Identities@http://www.worldcat.org/identities/viaf-105126567 +http://viaf.org/viaf/105126611 CAOONL|ncf10250639 +http://viaf.org/viaf/105126611 ISNI|000000007450961X +http://viaf.org/viaf/105126611 Identities@http://www.worldcat.org/identities/viaf-105126611 +http://viaf.org/viaf/105133695 WKP|Q8007627 +http://viaf.org/viaf/105133695 Identities@http://www.worldcat.org/identities/viaf-105133695 +http://viaf.org/viaf/105133695 CAOONL|ncf10337780 +http://viaf.org/viaf/105133695 Wikipedia@http://en.wikipedia.org/wiki/William_Davidson_(lumberman) +http://viaf.org/viaf/105133695 Wikipedia@http://ar.wikipedia.org/wiki/ويليام_ديفيدسون_(سياسي_كندي) +http://viaf.org/viaf/105134586 ISNI|0000000075233133 +http://viaf.org/viaf/105134586 CAOONL|ncf10261939 +http://viaf.org/viaf/105134586 Identities@http://www.worldcat.org/identities/viaf-105134586 +http://viaf.org/viaf/105137259 CAOONL|ncf10258326 +http://viaf.org/viaf/105137259 ISNI|0000000076607176 +http://viaf.org/viaf/105137259 Identities@http://www.worldcat.org/identities/viaf-105137259 +http://viaf.org/viaf/105143045 CAOONL|ncf10253996 +http://viaf.org/viaf/105143045 Identities@http://www.worldcat.org/identities/viaf-105143045 +http://viaf.org/viaf/105144647643939724008 BNF|16670442 +http://viaf.org/viaf/105144647643939724008 BNF@FRBNF166704426 +http://viaf.org/viaf/105144648428548433926 ISNI|000000036841021X +http://viaf.org/viaf/105144782716666567508 DNB@http://d-nb.info/gnd/1126067296 +http://viaf.org/viaf/105144782716666567508 LC@n2015065510 +http://viaf.org/viaf/105144782716666567508 LC|n 2015065510 +http://viaf.org/viaf/105144782716666567508 DNB|1126067296 +http://viaf.org/viaf/105144782716666567508 Identities@http://www.worldcat.org/identities/lccn-n2015065510 +http://viaf.org/viaf/105144928739654440407 DNB@http://d-nb.info/gnd/1079507582 +http://viaf.org/viaf/105144928739654440407 Identities@http://www.worldcat.org/identities/viaf-105144928739654440407 +http://viaf.org/viaf/105144928739654440407 DNB|1079507582 +http://viaf.org/viaf/105145003298861300265 LC@n2015067693 +http://viaf.org/viaf/105145003298861300265 LC|n 2015067693 +http://viaf.org/viaf/105145003298861300265 Identities@http://www.worldcat.org/identities/lccn-n2015067693 +http://viaf.org/viaf/105145066483066590031 Identities@http://www.worldcat.org/identities/viaf-105145066483066590031 +http://viaf.org/viaf/105145066483066590031 PLWABN|9810628721705606 +http://viaf.org/viaf/105145067427666630525 PLWABN|9810584386505606 +http://viaf.org/viaf/105145278 CAOONL|ncf10259640 +http://viaf.org/viaf/105145278 Identities@http://www.worldcat.org/identities/viaf-105145278 +http://viaf.org/viaf/105145375918283681521 NDL|001221281 +http://viaf.org/viaf/105145375918283681521 Identities@http://www.worldcat.org/identities/viaf-105145375918283681521 +http://viaf.org/viaf/105145541817196600557 LC@n2015254037 +http://viaf.org/viaf/105145541817196600557 LC|n 2015254037 +http://viaf.org/viaf/105145541817196600557 Identities@http://www.worldcat.org/identities/lccn-n2015254037 +http://viaf.org/viaf/105145541830496600935 LC|n 2016005561 +http://viaf.org/viaf/105145541830496600935 LC@n2016005561 +http://viaf.org/viaf/105145541830496600935 Identities@http://www.worldcat.org/identities/lccn-n2016005561 +http://viaf.org/viaf/105145541830796600190 LC|nb2016002739 +http://viaf.org/viaf/105145541830796600190 Identities@http://www.worldcat.org/identities/lccn-nb2016002739 +http://viaf.org/viaf/105145911062027060072 XR|VIAFEXP261080071 +http://viaf.org/viaf/105145911062027060072 LC|no2009183033 +http://viaf.org/viaf/105145911104927060171 XR|VIAFEXP939050522 +http://viaf.org/viaf/105145970238832251483 NKC|xx0202047 +http://viaf.org/viaf/105146634458441932193 BLBNB|001478936 +http://viaf.org/viaf/105146634458441932193 BNF@http://catalogue.bnf.fr/ark:/12148/cb17111273h +http://viaf.org/viaf/105146634458441932193 LC|no2016070958 +http://viaf.org/viaf/105146634458441932193 Identities@http://www.worldcat.org/identities/lccn-no2016070958 +http://viaf.org/viaf/105146634458441932193 BNF|17111273 +http://viaf.org/viaf/105146634458441932193 ISNI|000000046001261X +http://viaf.org/viaf/105146708126100841619 LC|n 2017013605 +http://viaf.org/viaf/105146708126100841619 LC@n2017013605 +http://viaf.org/viaf/105146708126100841619 XR|VIAFWORK1062306705 +http://viaf.org/viaf/105147602547657641154 SUDOC|19529534X +http://viaf.org/viaf/105147662952560550978 Identities@http://www.worldcat.org/identities/lccn-no2016134748 +http://viaf.org/viaf/105147662952560550978 LC|no2016134748 +http://viaf.org/viaf/105147663163060552888 NUKAT|n 2017079222 +http://viaf.org/viaf/105147663163060552888 Identities@http://www.worldcat.org/identities/viaf-105147663163060552888 +http://viaf.org/viaf/105147663163060552888 NUKAT@vtls015459490 +http://viaf.org/viaf/105147663163060552888 PLWABN|9810673372405606 +http://viaf.org/viaf/105147869590674981456 DNB@http://d-nb.info/gnd/1117351467 +http://viaf.org/viaf/105147869590674981456 DNB|1117351467 +http://viaf.org/viaf/105148207631700340207 Identities@http://www.worldcat.org/identities/viaf-105148207631700340207 +http://viaf.org/viaf/105148207631700340207 PLWABN|9810643828505606 +http://viaf.org/viaf/105148751990141200128 LNB|LNC10-000240297 +http://viaf.org/viaf/105148933547054300834 Identities@http://www.worldcat.org/identities/viaf-105148933547054300834 +http://viaf.org/viaf/105148933547054300834 SUDOC|19859318X +http://viaf.org/viaf/105148995902559751237 BIBSYS|99058933 +http://viaf.org/viaf/105149066381765600960 BIBSYS|13031209 +http://viaf.org/viaf/105149066564865601637 BIBSYS|12031865 +http://viaf.org/viaf/105149066569265601698 BIBSYS|12038936 +http://viaf.org/viaf/105149294302980521541 BIBSYS|2124994 +http://viaf.org/viaf/105149294302980521541 Identities@http://www.worldcat.org/identities/viaf-105149294302980521541 +http://viaf.org/viaf/105149366408885602113 NII|DA13054206 +http://viaf.org/viaf/105149616588703750768 J9U|987007349291005171 +http://viaf.org/viaf/105149616588703750768 Identities@http://www.worldcat.org/identities/viaf-105149616588703750768 +http://viaf.org/viaf/105149717315710950076 JPG|500117643 +http://viaf.org/viaf/105149717315710950076 Identities@http://www.worldcat.org/identities/lccn-n97875712 +http://viaf.org/viaf/105149717315710950076 LC@n97875712 +http://viaf.org/viaf/105149717315710950076 SUDOC|199258813 +http://viaf.org/viaf/105149717315710950076 LC|n 97875712 +http://viaf.org/viaf/105149717325010950335 Identities@http://www.worldcat.org/identities/viaf-105149717325010950335 +http://viaf.org/viaf/105149717325010950335 SUDOC|199108617 +http://viaf.org/viaf/105150468350704172248 KRNLK|KAB201715437 +http://viaf.org/viaf/105150468350704172248 ISNI|0000000460544632 +http://viaf.org/viaf/105151050012833410906 SUDOC|204762170 +http://viaf.org/viaf/105151776766618011024 NLR|RU NLR AUTH 770179669 +http://viaf.org/viaf/105151776766618011024 NLR@RU\NLR\AUTH\770179669 +http://viaf.org/viaf/105151776805918012127 PLWABN|9810703727005606 +http://viaf.org/viaf/105151776805918012127 Identities@http://www.worldcat.org/identities/viaf-105151776805918012127 +http://viaf.org/viaf/105152380103401761027 PLWABN|9810653293305606 +http://viaf.org/viaf/105152380103401761027 Identities@http://www.worldcat.org/identities/viaf-105152380103401761027 +http://viaf.org/viaf/105152682593423312904 LIH@LNB:8Kl;=BV +http://viaf.org/viaf/105152682593423312904 Identities@http://www.worldcat.org/identities/viaf-105152682593423312904 +http://viaf.org/viaf/105152682593423312904 PLWABN|9810618004205606 +http://viaf.org/viaf/105152682593423312904 LIH|LNB:8K_l_;=BV +http://viaf.org/viaf/105152742939827732189 DE663|pe30046755 +http://viaf.org/viaf/105152742941127732176 DE663|pe30045287 +http://viaf.org/viaf/105152742994527732714 DE663|pe30025526 +http://viaf.org/viaf/105152742994527732714 Identities@http://www.worldcat.org/identities/viaf-105152742994527732714 +http://viaf.org/viaf/105152864169204821729 SUDOC|226958728 +http://viaf.org/viaf/105152864169204821729 Identities@http://www.worldcat.org/identities/viaf-105152864169204821729 +http://viaf.org/viaf/105153061235219200342 ISNI|0000000464927008 +http://viaf.org/viaf/105153061235219200342 KRNLK|KAC201223541 +http://viaf.org/viaf/105153061235219200342 Identities@http://www.worldcat.org/identities/viaf-105153061235219200342 +http://viaf.org/viaf/105154739909452991974 Identities@http://www.worldcat.org/identities/viaf-105154739909452991974 +http://viaf.org/viaf/105154739909452991974 SUDOC|232804788 +http://viaf.org/viaf/105154981764267741203 SUDOC|233220984 +http://viaf.org/viaf/105154981764267741203 Identities@http://www.worldcat.org/identities/viaf-105154981764267741203 +http://viaf.org/viaf/105154981764267741203 ISNI|0000000478666996 +http://viaf.org/viaf/105154981764267741203 BNF|11163152 +http://viaf.org/viaf/105154981764267741203 BNF@FRBNF111631523 +http://viaf.org/viaf/105157340820509922864 Identities@http://www.worldcat.org/identities/viaf-105157340820509922864 +http://viaf.org/viaf/105157340820509922864 SUDOC|238712435 +http://viaf.org/viaf/105157523217027030619 KRNLK|KAC201971120 +http://viaf.org/viaf/105157523217027030619 ISNI|0000000477111606 +http://viaf.org/viaf/105158367615801280606 Identities@http://www.worldcat.org/identities/viaf-105158367615801280606 +http://viaf.org/viaf/105158367615801280606 SUDOC|242293557 +http://viaf.org/viaf/105158669897927202118 Identities@http://www.worldcat.org/identities/viaf-105158669897927202118 +http://viaf.org/viaf/105158669897927202118 NDL|001344213 +http://viaf.org/viaf/105159032652701181804 DE663|pe50042018 +http://viaf.org/viaf/105159105153706400897 KRNLK|KAC202015146 +http://viaf.org/viaf/105159105153706400897 Identities@http://www.worldcat.org/identities/viaf-105159105153706400897 +http://viaf.org/viaf/105159233927803370366 Identities@http://www.worldcat.org/identities/viaf-105159233927803370366 +http://viaf.org/viaf/105159233927803370366 RERO|A003019667 +http://viaf.org/viaf/105159248448004870005 RERO|A003849275 +http://viaf.org/viaf/105159248448004870005 Identities@http://www.worldcat.org/identities/viaf-105159248448004870005 +http://viaf.org/viaf/105159474172227661094 BAV|493_2466 +http://viaf.org/viaf/105159474172227661094 BAV@493/2466 +http://viaf.org/viaf/105159633 Identities@http://www.worldcat.org/identities/viaf-105159633 +http://viaf.org/viaf/105159633 CAOONL|ncf10253611 +http://viaf.org/viaf/105167157 Identities@http://www.worldcat.org/identities/viaf-105167157 +http://viaf.org/viaf/105167157 ISNI|0000000075732856 +http://viaf.org/viaf/105167157 CAOONL|ncf10251206 +http://viaf.org/viaf/105168994 ISNI|0000000075163059 +http://viaf.org/viaf/105168994 CAOONL|ncf10258340 +http://viaf.org/viaf/105168994 Identities@http://www.worldcat.org/identities/viaf-105168994 +http://viaf.org/viaf/105172827 Identities@http://www.worldcat.org/identities/viaf-105172827 +http://viaf.org/viaf/105172827 ISNI|0000000074872662 +http://viaf.org/viaf/105184581 ISNI|0000000075379183 +http://viaf.org/viaf/105184581 CAOONL|ncf10253602 +http://viaf.org/viaf/105184581 Identities@http://www.worldcat.org/identities/viaf-105184581 +http://viaf.org/viaf/105192429 Identities@http://www.worldcat.org/identities/viaf-105192429 +http://viaf.org/viaf/105192429 CAOONL|ncf10252593 +http://viaf.org/viaf/105192429 ISNI|0000000074728329 +http://viaf.org/viaf/105192924 CAOONL|ncf10254489 +http://viaf.org/viaf/105192924 ISNI|0000000076756147 +http://viaf.org/viaf/105192924 Identities@http://www.worldcat.org/identities/viaf-105192924 +http://viaf.org/viaf/105198397 ISNI|0000000076756366 +http://viaf.org/viaf/105198397 CAOONL|ncf10242929 +http://viaf.org/viaf/105198397 Identities@http://www.worldcat.org/identities/viaf-105198397 +http://viaf.org/viaf/105198441 CAOONL|ncf10243101 +http://viaf.org/viaf/105198441 Identities@http://www.worldcat.org/identities/viaf-105198441 +http://viaf.org/viaf/105198441 ISNI|0000000076169903 +http://viaf.org/viaf/105200014 Identities@http://www.worldcat.org/identities/viaf-105200014 +http://viaf.org/viaf/105200014 CAOONL|ncf10249672 +http://viaf.org/viaf/105204029 CAOONL|ncf10263931 +http://viaf.org/viaf/105204029 ISNI|0000000076829449 +http://viaf.org/viaf/105204029 Identities@http://www.worldcat.org/identities/viaf-105204029 +http://viaf.org/viaf/105209150 ISNI|0000000076390085 +http://viaf.org/viaf/105209150 Identities@http://www.worldcat.org/identities/viaf-105209150 +http://viaf.org/viaf/105209150 CAOONL|ncf10266246 +http://viaf.org/viaf/105209925 CAOONL|ncf10269016 +http://viaf.org/viaf/105209925 ISNI|0000000075020680 +http://viaf.org/viaf/105209925 Identities@http://www.worldcat.org/identities/viaf-105209925 +http://viaf.org/viaf/105210310 Identities@http://www.worldcat.org/identities/viaf-105210310 +http://viaf.org/viaf/105210310 ISNI|000000007537995X +http://viaf.org/viaf/105210310 CAOONL|ncf10271448 +http://viaf.org/viaf/105212499 ISNI|0000000076170242 +http://viaf.org/viaf/105212499 Identities@http://www.worldcat.org/identities/viaf-105212499 +http://viaf.org/viaf/105212499 B2Q|0000420359 +http://viaf.org/viaf/105212499 CAOONL|ncf10260792 +http://viaf.org/viaf/1052145857030022921082 LC|no2016032003 +http://viaf.org/viaf/1052145857030022921082 Identities@http://www.worldcat.org/identities/lccn-no2016032003 +http://viaf.org/viaf/1052152636061020050109 DNB|1158376529 +http://viaf.org/viaf/1052152636061020050109 Identities@http://www.worldcat.org/identities/viaf-1052152636061020050109 +http://viaf.org/viaf/1052152636061020050109 DNB@http://d-nb.info/gnd/1158376529 +http://viaf.org/viaf/1052159248095404870001 RERO|A013330726 +http://viaf.org/viaf/1052159474068027660619 CAOONL|ncf11981984 +http://viaf.org/viaf/105221453 Identities@http://www.worldcat.org/identities/viaf-105221453 +http://viaf.org/viaf/105221453 CAOONL|ncf10258672 +http://viaf.org/viaf/105225017 ISNI|0000000076170541 +http://viaf.org/viaf/105225017 CAOONL|ncf10274197 +http://viaf.org/viaf/105225017 Identities@http://www.worldcat.org/identities/viaf-105225017 +http://viaf.org/viaf/105226403 CAOONL|ncf10261169 +http://viaf.org/viaf/105226403 ISNI|000000007436289X +http://viaf.org/viaf/105226403 Identities@http://www.worldcat.org/identities/viaf-105226403 +http://viaf.org/viaf/105238888 ISNI|0000000075380766 +http://viaf.org/viaf/105238888 CAOONL|ncf10274679 +http://viaf.org/viaf/105238888 Identities@http://www.worldcat.org/identities/viaf-105238888 +http://viaf.org/viaf/105240164 Identities@http://www.worldcat.org/identities/viaf-105240164 +http://viaf.org/viaf/105240164 CAOONL|ncf10260897 +http://viaf.org/viaf/105240164 ISNI|0000000075880939 +http://viaf.org/viaf/105245565 CAOONL|ncf10264576 +http://viaf.org/viaf/105245565 ISNI|000000007653718X +http://viaf.org/viaf/105245565 Identities@http://www.worldcat.org/identities/viaf-105245565 +http://viaf.org/viaf/105246005 ISNI|0000000075808099 +http://viaf.org/viaf/105246005 CAOONL|ncf10266023 +http://viaf.org/viaf/105246005 Identities@http://www.worldcat.org/identities/viaf-105246005 +http://viaf.org/viaf/105246005 LIH@LNB:BktW;=CI +http://viaf.org/viaf/105246005 LIH|LNB:B_k__t_W;=CI +http://viaf.org/viaf/105247347 ISNI|0000000074289282 +http://viaf.org/viaf/105247347 CAOONL|ncf10271171 +http://viaf.org/viaf/10525387 DNB@http://d-nb.info/gnd/113417276 +http://viaf.org/viaf/10525387 LC@n97059587 +http://viaf.org/viaf/10525387 ISNI|0000000032519174 +http://viaf.org/viaf/10525387 DNB|113417276 +http://viaf.org/viaf/10525387 LC|n 97059587 +http://viaf.org/viaf/10525387 Identities@http://www.worldcat.org/identities/lccn-n97059587 +http://viaf.org/viaf/105254024 CAOONL|ncf10315125 +http://viaf.org/viaf/105254024 Identities@http://www.worldcat.org/identities/viaf-105254024 +http://viaf.org/viaf/105257643 B2Q|0000318026 +http://viaf.org/viaf/105257643 Identities@http://www.worldcat.org/identities/viaf-105257643 +http://viaf.org/viaf/105257643 CAOONL|ncf10312798 +http://viaf.org/viaf/105257643 ISNI|0000000075021923 +http://viaf.org/viaf/105262043 ISNI|0000000075518649 +http://viaf.org/viaf/105262043 CAOONL|ncf10282600 +http://viaf.org/viaf/105262043 Identities@http://www.worldcat.org/identities/viaf-105262043 +http://viaf.org/viaf/105262494 Identities@http://www.worldcat.org/identities/viaf-105262494 +http://viaf.org/viaf/105262494 CAOONL|ncf10311858 +http://viaf.org/viaf/105264320 Identities@http://www.worldcat.org/identities/lccn-no2006113830 +http://viaf.org/viaf/105264320 LC|no2006113830 +http://viaf.org/viaf/105264320 CAOONL|ncf10309728 +http://viaf.org/viaf/105271728 Identities@http://www.worldcat.org/identities/viaf-105271728 +http://viaf.org/viaf/105271728 B2Q|0000318574 +http://viaf.org/viaf/105274572 CAOONL|ncf10303904 +http://viaf.org/viaf/105274572 Identities@http://www.worldcat.org/identities/viaf-105274572 +http://viaf.org/viaf/105276354 Identities@http://www.worldcat.org/identities/viaf-105276354 +http://viaf.org/viaf/105276354 CAOONL|ncf10275635 +http://viaf.org/viaf/105277696 CAOONL|ncf10297545 +http://viaf.org/viaf/105277696 Identities@http://www.worldcat.org/identities/viaf-105277696 +http://viaf.org/viaf/105277696 ISNI|0000000076245515 +http://viaf.org/viaf/105278136 CAOONL|ncf10310598 +http://viaf.org/viaf/105278136 Identities@http://www.worldcat.org/identities/viaf-105278136 +http://viaf.org/viaf/105283482 Identities@http://www.worldcat.org/identities/viaf-105283482 +http://viaf.org/viaf/105283482 CAOONL|ncf10281853 +http://viaf.org/viaf/105292716 CAOONL|ncf10277506 +http://viaf.org/viaf/105292716 Identities@http://www.worldcat.org/identities/viaf-105292716 +http://viaf.org/viaf/105292716 ISNI|0000000074512878 +http://viaf.org/viaf/105313721 Identities@http://www.worldcat.org/identities/viaf-105313721 +http://viaf.org/viaf/105313721 CAOONL|ncf10286071 +http://viaf.org/viaf/105314568 ISNI|0000000076392814 +http://viaf.org/viaf/105314568 LC|no2019017598 +http://viaf.org/viaf/105314568 CAOONL|ncf10272054 +http://viaf.org/viaf/105314568 Identities@http://www.worldcat.org/identities/lccn-no2019017598 +http://viaf.org/viaf/105314612 B2Q|0000142944 +http://viaf.org/viaf/105314612 Identities@http://www.worldcat.org/identities/viaf-105314612 +http://viaf.org/viaf/105314612 ISNI|0000000075023275 +http://viaf.org/viaf/105314612 CAOONL|ncf10272716 +http://viaf.org/viaf/1053152636053820050378 DNB|1159252289 +http://viaf.org/viaf/1053152636053820050378 DNB@http://d-nb.info/gnd/1159252289 +http://viaf.org/viaf/1053152636053820050378 Identities@http://www.worldcat.org/identities/viaf-1053152636053820050378 +http://viaf.org/viaf/1053152636168620052393 Identities@http://www.worldcat.org/identities/viaf-1053152636168620052393 +http://viaf.org/viaf/1053152636168620052393 BNF|17767042 +http://viaf.org/viaf/1053152636168620052393 BNF@FRBNF177670427 +http://viaf.org/viaf/1053157527390627300007 BNC@.a19573522 +http://viaf.org/viaf/1053157527390627300007 BNC|a19573522 +http://viaf.org/viaf/1053158070704108780008 Identities@http://www.worldcat.org/identities/viaf-1053158070704108780008 +http://viaf.org/viaf/1053158070704108780008 DNB@http://d-nb.info/gnd/1203731949 +http://viaf.org/viaf/1053158070704108780008 DNB|1203731949 +http://viaf.org/viaf/1053159234104103370803 Identities@http://www.worldcat.org/identities/viaf-1053159234104103370803 +http://viaf.org/viaf/1053159234104103370803 RERO|A017187491 +http://viaf.org/viaf/105321696 CAOONL|ncf10274503 +http://viaf.org/viaf/105321696 Identities@http://www.worldcat.org/identities/viaf-105321696 +http://viaf.org/viaf/105321696 ISNI|0000000075237652 +http://viaf.org/viaf/105332432 CAOONL|ncf10304561 +http://viaf.org/viaf/105332432 Identities@http://www.worldcat.org/identities/viaf-105332432 +http://viaf.org/viaf/105332432 B2Q|0000309411 +http://viaf.org/viaf/105346743 Identities@http://www.worldcat.org/identities/viaf-105346743 +http://viaf.org/viaf/105346743 CAOONL|ncf10312702 +http://viaf.org/viaf/105346743 B2Q|0000298597 +http://viaf.org/viaf/105346743 ISNI|0000000075810324 +http://viaf.org/viaf/105349092 ISNI|0000000075736822 +http://viaf.org/viaf/105349092 CAOONL|ncf10287796 +http://viaf.org/viaf/105349092 Identities@http://www.worldcat.org/identities/viaf-105349092 +http://viaf.org/viaf/105351594 CAOONL|ncf10308340 +http://viaf.org/viaf/105351594 Identities@http://www.worldcat.org/identities/viaf-105351594 +http://viaf.org/viaf/105351594 ISNI|0000000074951096 +http://viaf.org/viaf/10535188 LC@n93053972 +http://viaf.org/viaf/10535188 NII|DA08048678 +http://viaf.org/viaf/10535188 RERO|A003514292 +http://viaf.org/viaf/10535188 BIBSYS|90807611 +http://viaf.org/viaf/10535188 Identities@http://www.worldcat.org/identities/lccn-n93053972 +http://viaf.org/viaf/10535188 NUKAT|n 99037107 +http://viaf.org/viaf/10535188 LC|n 93053972 +http://viaf.org/viaf/10535188 SUDOC|133765687 +http://viaf.org/viaf/10535188 ISNI|0000000115944432 +http://viaf.org/viaf/10535188 J9U|987007264578105171 +http://viaf.org/viaf/10535188 NUKAT@vtls000400727 +http://viaf.org/viaf/105368127 CAOONL|ncf10284639 +http://viaf.org/viaf/105368127 ISNI|0000000074588856 +http://viaf.org/viaf/105369469 Identities@http://www.worldcat.org/identities/viaf-105369469 +http://viaf.org/viaf/105369469 ISNI|0000000076686839 +http://viaf.org/viaf/105369469 CAOONL|ncf10288253 +http://viaf.org/viaf/105369513 BLBNB|000331739 +http://viaf.org/viaf/105369513 J9U|987007422022705171 +http://viaf.org/viaf/105369513 BAV@495/334989 +http://viaf.org/viaf/105369513 LIH@LNB:CsHw;=CF +http://viaf.org/viaf/105369513 LC@n83063063 +http://viaf.org/viaf/105369513 RERO|A023166695 +http://viaf.org/viaf/105369513 BAV|495_334989 +http://viaf.org/viaf/105369513 Identities@http://www.worldcat.org/identities/lccn-n83063063 +http://viaf.org/viaf/105369513 DNB@http://d-nb.info/gnd/16110522X +http://viaf.org/viaf/105369513 DNB|16110522X +http://viaf.org/viaf/105369513 SUDOC|167467549 +http://viaf.org/viaf/105369513 LIH|LNB:C_s_H_w_;=CF +http://viaf.org/viaf/105369513 CAOONL|ncf10288725 +http://viaf.org/viaf/105369513 ISNI|0000000119385164 +http://viaf.org/viaf/105369513 LC|n 83063063 +http://viaf.org/viaf/105369513 NKC|jo2014849499 +http://viaf.org/viaf/105369513 NTA|354927434 +http://viaf.org/viaf/105369964 Identities@http://www.worldcat.org/identities/viaf-105369964 +http://viaf.org/viaf/105369964 ISNI|0000000075883961 +http://viaf.org/viaf/105369964 CAOONL|ncf10289708 +http://viaf.org/viaf/105371196 ISNI|0000000076174163 +http://viaf.org/viaf/105371196 CAOONL|ncf10296611 +http://viaf.org/viaf/105371196 Identities@http://www.worldcat.org/identities/viaf-105371196 +http://viaf.org/viaf/105375750 CAOONL|ncf10285793 +http://viaf.org/viaf/105375750 ISNI|000000007502485X +http://viaf.org/viaf/105375750 Identities@http://www.worldcat.org/identities/viaf-105375750 +http://viaf.org/viaf/10538851 J9U|987007437360505171 +http://viaf.org/viaf/10538851 ISNI|0000000080902653 +http://viaf.org/viaf/10538851 LC|n 91119992 +http://viaf.org/viaf/10538851 NTA|112534910 +http://viaf.org/viaf/10538851 NII|DA07766348 +http://viaf.org/viaf/10538851 DNB@http://d-nb.info/gnd/113973861 +http://viaf.org/viaf/10538851 LC@n91119992 +http://viaf.org/viaf/10538851 Identities@http://www.worldcat.org/identities/lccn-n91119992 +http://viaf.org/viaf/10538851 DNB|113973861 +http://viaf.org/viaf/10538851 RERO|A016619915 +http://viaf.org/viaf/105394010 ISNI|0000000074733216 +http://viaf.org/viaf/105394010 CAOONL|ncf10305488 +http://viaf.org/viaf/105394010 Identities@http://www.worldcat.org/identities/viaf-105394010 +http://viaf.org/viaf/105396199 ISNI|0000000074733291 +http://viaf.org/viaf/105396199 Identities@http://www.worldcat.org/identities/viaf-105396199 +http://viaf.org/viaf/105396199 CAOONL|ncf10286142 +http://viaf.org/viaf/105397585 CAOONL|ncf10292767 +http://viaf.org/viaf/105397585 Identities@http://www.worldcat.org/identities/viaf-105397585 +http://viaf.org/viaf/105397585 ISNI|0000000075884577 +http://viaf.org/viaf/105398520 CAOONL|ncf10296411 +http://viaf.org/viaf/105398520 ISNI|0000000074733419 +http://viaf.org/viaf/105398520 Identities@http://www.worldcat.org/identities/viaf-105398520 +http://viaf.org/viaf/105400049 CAOONL|ncf10297665 +http://viaf.org/viaf/105400049 Identities@http://www.worldcat.org/identities/viaf-105400049 +http://viaf.org/viaf/105400049 ISNI|0000000076101861 +http://viaf.org/viaf/105401886 Identities@http://www.worldcat.org/identities/viaf-105401886 +http://viaf.org/viaf/105401886 ISNI|0000000075312130 +http://viaf.org/viaf/105401886 CAOONL|ncf10282725 +http://viaf.org/viaf/105402777 Identities@http://www.worldcat.org/identities/viaf-105402777 +http://viaf.org/viaf/105402777 CAOONL|ncf10285630 +http://viaf.org/viaf/105402777 ISNI|0000000075811650 +http://viaf.org/viaf/105403668 CAOONL|ncf10288502 +http://viaf.org/viaf/105403668 ISNI|0000000075738190 +http://viaf.org/viaf/105403668 Identities@http://www.worldcat.org/identities/viaf-105403668 +http://viaf.org/viaf/105404559 ISNI|0000000076322787 +http://viaf.org/viaf/105404559 Identities@http://www.worldcat.org/identities/viaf-105404559 +http://viaf.org/viaf/105404559 CAOONL|ncf10293603 +http://viaf.org/viaf/105404603 ISNI|0000000076614173 +http://viaf.org/viaf/105404603 CAOONL|ncf10294904 +http://viaf.org/viaf/105404603 Identities@http://www.worldcat.org/identities/viaf-105404603 +http://viaf.org/viaf/105409680 CAOONL|ncf10319915 +http://viaf.org/viaf/105409680 Identities@http://www.worldcat.org/identities/viaf-105409680 +http://viaf.org/viaf/105410345 B2Q|0000145428 +http://viaf.org/viaf/105410345 Identities@http://www.worldcat.org/identities/viaf-105410345 +http://viaf.org/viaf/105410345 CAOONL|ncf10301624 +http://viaf.org/viaf/105411731 CAOONL|ncf10317785 +http://viaf.org/viaf/105411731 SUDOC|182842819 +http://viaf.org/viaf/105411731 B2Q|0000287504 +http://viaf.org/viaf/105411731 ISNI|0000000074515972 +http://viaf.org/viaf/105411731 Identities@http://www.worldcat.org/identities/viaf-105411731 +http://viaf.org/viaf/105413018 CAOONL|ncf10333919 +http://viaf.org/viaf/105413018 Identities@http://www.worldcat.org/identities/viaf-105413018 +http://viaf.org/viaf/1054145857120222922290 Identities@http://www.worldcat.org/identities/viaf-1054145857120222922290 +http://viaf.org/viaf/1054145857120222922290 DNB|1087432324 +http://viaf.org/viaf/1054145857120222922290 DNB@http://d-nb.info/gnd/1087432324 +http://viaf.org/viaf/1054159234069003370746 RERO|A022784340 +http://viaf.org/viaf/1054159248336604870007 RERO|A003625161 +http://viaf.org/viaf/1054159474067927661014 CAOONL|ncf11454303 +http://viaf.org/viaf/1054159474339527662132 SUDOC|245200142 +http://viaf.org/viaf/1054159477797427990008 CAOONL|ncf10712388 +http://viaf.org/viaf/1054159478343027990008 CAOONL|ncf10710808 +http://viaf.org/viaf/105429606 CAOONL|ncf10315391 +http://viaf.org/viaf/105429606 B2Q|0000281482 +http://viaf.org/viaf/105429606 Identities@http://www.worldcat.org/identities/viaf-105429606 +http://viaf.org/viaf/105430398 Identities@http://www.worldcat.org/identities/viaf-105430398 +http://viaf.org/viaf/105430398 CAOONL|ncf10298589 +http://viaf.org/viaf/105431784 Identities@http://www.worldcat.org/identities/viaf-105431784 +http://viaf.org/viaf/105431784 CAOONL|ncf10353599 +http://viaf.org/viaf/105431784 ISNI|0000000076835435 +http://viaf.org/viaf/105435843 Identities@http://www.worldcat.org/identities/viaf-105435843 +http://viaf.org/viaf/105435843 CAOONL|ncf10334635 +http://viaf.org/viaf/105442476 Identities@http://www.worldcat.org/identities/viaf-105442476 +http://viaf.org/viaf/105442476 CAOONL|ncf10311075 +http://viaf.org/viaf/105443367 RERO|A019156002 +http://viaf.org/viaf/105443367 Identities@http://www.worldcat.org/identities/viaf-105443367 +http://viaf.org/viaf/105443367 CAOONL|ncf10329703 +http://viaf.org/viaf/105449208 CAOONL|ncf10353482 +http://viaf.org/viaf/105449659 ISNI|0000000074368300 +http://viaf.org/viaf/105449659 Identities@http://www.worldcat.org/identities/viaf-105449659 +http://viaf.org/viaf/105449659 CAOONL|ncf10309549 +http://viaf.org/viaf/105452772 CAOONL|ncf10349411 +http://viaf.org/viaf/105452772 Identities@http://www.worldcat.org/identities/viaf-105452772 +http://viaf.org/viaf/105458569 Identities@http://www.worldcat.org/identities/viaf-105458569 +http://viaf.org/viaf/105458569 ISNI|0000000074808388 +http://viaf.org/viaf/105458569 CAOONL|ncf10317154 +http://viaf.org/viaf/105458613 ISNI|0000000075523624 +http://viaf.org/viaf/105458613 CAOONL|ncf10317308 +http://viaf.org/viaf/105458613 Identities@http://www.worldcat.org/identities/viaf-105458613 +http://viaf.org/viaf/105467479 Identities@http://www.worldcat.org/identities/viaf-105467479 +http://viaf.org/viaf/105467479 DNB@http://d-nb.info/gnd/156197359 +http://viaf.org/viaf/105467479 CAOONL|ncf10320666 +http://viaf.org/viaf/105467479 ISNI|0000000075170435 +http://viaf.org/viaf/105467479 DNB|156197359 +http://viaf.org/viaf/105467479 B2Q|0000303688 +http://viaf.org/viaf/105467479 RERO|A011105659 +http://viaf.org/viaf/105468090 CAOONL|ncf10316715 +http://viaf.org/viaf/105468090 Identities@http://www.worldcat.org/identities/viaf-105468090 +http://viaf.org/viaf/105468090 ISNI|0000000076469340 +http://viaf.org/viaf/105469800 ISNI|0000000075386797 +http://viaf.org/viaf/105469800 Identities@http://www.worldcat.org/identities/viaf-105469800 +http://viaf.org/viaf/105469800 CAOONL|ncf10322007 +http://viaf.org/viaf/105471483 Identities@http://www.worldcat.org/identities/viaf-105471483 +http://viaf.org/viaf/105471483 ISNI|0000000074444967 +http://viaf.org/viaf/105471483 CAOONL|ncf10312774 +http://viaf.org/viaf/105475542 ISNI|0000000075241280 +http://viaf.org/viaf/105475542 Identities@http://www.worldcat.org/identities/viaf-105475542 +http://viaf.org/viaf/105475542 CAOONL|ncf10322809 +http://viaf.org/viaf/105479106 Identities@http://www.worldcat.org/identities/viaf-105479106 +http://viaf.org/viaf/105479106 CAOONL|ncf10315160 +http://viaf.org/viaf/105479106 ISNI|0000000076396831 +http://viaf.org/viaf/105480393 ISNI|0000000076030792 +http://viaf.org/viaf/105480393 CAOONL|ncf10322840 +http://viaf.org/viaf/105480393 Identities@http://www.worldcat.org/identities/viaf-105480393 +http://viaf.org/viaf/105483110 ISNI|0000000076616080 +http://viaf.org/viaf/105483110 Identities@http://www.worldcat.org/identities/viaf-105483110 +http://viaf.org/viaf/105483110 CAOONL|ncf10317019 +http://viaf.org/viaf/105490969 CAOONL|ncf10324219 +http://viaf.org/viaf/105490969 Identities@http://www.worldcat.org/identities/viaf-105490969 +http://viaf.org/viaf/105490969 ISNI|0000000075886601 +http://viaf.org/viaf/105495595 CAOONL|ncf10322705 +http://viaf.org/viaf/105495595 Identities@http://www.worldcat.org/identities/viaf-105495595 +http://viaf.org/viaf/105495595 ISNI|0000000074592265 +http://viaf.org/viaf/105507195 Identities@http://www.worldcat.org/identities/viaf-105507195 +http://viaf.org/viaf/105507195 CAOONL|ncf10325495 +http://viaf.org/viaf/105507195 ISNI|0000000075667396 +http://viaf.org/viaf/105510588 Identities@http://www.worldcat.org/identities/viaf-105510588 +http://viaf.org/viaf/105510588 CAOONL|ncf10323619 +http://viaf.org/viaf/105510588 ISNI|000000007552490X +http://viaf.org/viaf/105510588 B2Q|0000300095 +http://viaf.org/viaf/105513305 Identities@http://www.worldcat.org/identities/viaf-105513305 +http://viaf.org/viaf/105513305 ISNI|0000000074736265 +http://viaf.org/viaf/105513305 CAOONL|ncf10336925 +http://viaf.org/viaf/1055152025916103600005 Identities@http://www.worldcat.org/identities/viaf-1055152025916103600005 +http://viaf.org/viaf/1055152025916103600005 NTA|416407374 +http://viaf.org/viaf/1055159477751427990005 XR|VIAFWORKB2Qncf10820560 +http://viaf.org/viaf/105537868 Identities@http://www.worldcat.org/identities/viaf-105537868 +http://viaf.org/viaf/105537868 CAOONL|ncf10319772 +http://viaf.org/viaf/105537868 ISNI|0000000075741533 +http://viaf.org/viaf/105542763 Identities@http://www.worldcat.org/identities/viaf-105542763 +http://viaf.org/viaf/105542763 ISNI|0000000075100146 +http://viaf.org/viaf/105542763 CAOONL|ncf10361170 +http://viaf.org/viaf/105543159 CAOONL|ncf10336766 +http://viaf.org/viaf/105543159 ISNI|0000000075960277 +http://viaf.org/viaf/105543159 Identities@http://www.worldcat.org/identities/viaf-105543159 +http://viaf.org/viaf/105550782 ISNI|0000000075668516 +http://viaf.org/viaf/105550782 CAOONL|ncf10337079 +http://viaf.org/viaf/105550782 Identities@http://www.worldcat.org/identities/viaf-105550782 +http://viaf.org/viaf/105554841 Identities@http://www.worldcat.org/identities/viaf-105554841 +http://viaf.org/viaf/105554841 CAOONL|ncf10328528 +http://viaf.org/viaf/105554841 ISNI|0000000075243091 +http://viaf.org/viaf/105556623 Identities@http://www.worldcat.org/identities/viaf-105556623 +http://viaf.org/viaf/105556623 CAOONL|ncf10333530 +http://viaf.org/viaf/105556623 ISNI|0000000076879171 +http://viaf.org/viaf/105557190 ISNI|000000007610574X +http://viaf.org/viaf/105557190 CAOONL|ncf10335870 +http://viaf.org/viaf/105557190 Identities@http://www.worldcat.org/identities/viaf-105557190 +http://viaf.org/viaf/105558081 DNB|171484940 +http://viaf.org/viaf/105558081 CAOONL|ncf10332180 +http://viaf.org/viaf/105558081 B2Q|0000297847 +http://viaf.org/viaf/105558081 ISNI|0000000075815600 +http://viaf.org/viaf/105558081 Identities@http://www.worldcat.org/identities/viaf-105558081 +http://viaf.org/viaf/105558081 DNB@http://d-nb.info/gnd/171484940 +http://viaf.org/viaf/105563300 Identities@http://www.worldcat.org/identities/viaf-105563300 +http://viaf.org/viaf/105563300 CAOONL|ncf10336323 +http://viaf.org/viaf/105563300 ISNI|0000000075389015 +http://viaf.org/viaf/105564642 ISNI|0000000075742181 +http://viaf.org/viaf/105564642 CAOONL|ncf10338089 +http://viaf.org/viaf/105564642 Identities@http://www.worldcat.org/identities/viaf-105564642 +http://viaf.org/viaf/105573552 ISNI|0000000075815862 +http://viaf.org/viaf/105573552 CAOONL|ncf10355508 +http://viaf.org/viaf/105573552 Identities@http://www.worldcat.org/identities/viaf-105573552 +http://viaf.org/viaf/105574443 Identities@http://www.worldcat.org/identities/viaf-105574443 +http://viaf.org/viaf/105574443 CAOONL|ncf10349112 +http://viaf.org/viaf/105574443 ISNI|0000000074371649 +http://viaf.org/viaf/105578953 DNB@http://d-nb.info/gnd/184925223 +http://viaf.org/viaf/105578953 LC|n 2002115468 +http://viaf.org/viaf/105578953 Identities@http://www.worldcat.org/identities/lccn-n2002115468 +http://viaf.org/viaf/105578953 CAOONL|ncf10341732 +http://viaf.org/viaf/105578953 DNB|184925223 +http://viaf.org/viaf/105578953 LC@n2002115468 +http://viaf.org/viaf/105579844 Identities@http://www.worldcat.org/identities/viaf-105579844 +http://viaf.org/viaf/105579844 ISNI|0000000076545411 +http://viaf.org/viaf/105579844 CAOONL|ncf10335393 +http://viaf.org/viaf/105580680 Identities@http://www.worldcat.org/identities/viaf-105580680 +http://viaf.org/viaf/105580680 CAOONL|ncf10340039 +http://viaf.org/viaf/105580680 ISNI|0000000074737874 +http://viaf.org/viaf/105582462 CAOONL|ncf10329168 +http://viaf.org/viaf/105582462 Identities@http://www.worldcat.org/identities/viaf-105582462 +http://viaf.org/viaf/105582462 ISNI|0000000074594324 +http://viaf.org/viaf/105586026 Identities@http://www.worldcat.org/identities/viaf-105586026 +http://viaf.org/viaf/105586026 CAOONL|ncf10363206 +http://viaf.org/viaf/105595431 CAOONL|ncf10326786 +http://viaf.org/viaf/105595431 ISNI|0000000076618633 +http://viaf.org/viaf/105595431 Identities@http://www.worldcat.org/identities/viaf-105595431 +http://viaf.org/viaf/105601019 CAOONL|ncf10348666 +http://viaf.org/viaf/105601019 Identities@http://www.worldcat.org/identities/viaf-105601019 +http://viaf.org/viaf/105601019 ISNI|000000007669277X +http://viaf.org/viaf/105606096 CAOONL|ncf10331478 +http://viaf.org/viaf/105606915 CAOONL|ncf10372380 +http://viaf.org/viaf/105606915 ISNI|0000000074666834 +http://viaf.org/viaf/105606915 Identities@http://www.worldcat.org/identities/viaf-105606915 +http://viaf.org/viaf/105613548 Identities@http://www.worldcat.org/identities/viaf-105613548 +http://viaf.org/viaf/105613548 CAOONL|ncf10356339 +http://viaf.org/viaf/105614934 CAOONL|ncf10350620 +http://viaf.org/viaf/105614934 Identities@http://www.worldcat.org/identities/viaf-105614934 +http://viaf.org/viaf/1056154622385944710000 XR|VIAFWORK553938361 +http://viaf.org/viaf/1056158188256620260007 XR|VIAFWORK1050464956 +http://viaf.org/viaf/1056159248481204870000 RERO|A011007424 +http://viaf.org/viaf/105630521 BNF@FRBNF178217369 +http://viaf.org/viaf/105630521 LC@n97123421 +http://viaf.org/viaf/105630521 Identities@http://www.worldcat.org/identities/lccn-n97123421 +http://viaf.org/viaf/105630521 ISNI|0000000074297434 +http://viaf.org/viaf/105630521 CAOONL|ncf10373141 +http://viaf.org/viaf/105630521 BNF|17821736 +http://viaf.org/viaf/105630521 LC|n 97123421 +http://viaf.org/viaf/105630521 B2Q|0000320764 +http://viaf.org/viaf/105630972 ISNI|0000000076328118 +http://viaf.org/viaf/105630972 Identities@http://www.worldcat.org/identities/viaf-105630972 +http://viaf.org/viaf/105630972 CAOONL|ncf10363236 +http://viaf.org/viaf/105642555 CAOONL|ncf10334358 +http://viaf.org/viaf/105642555 Identities@http://www.worldcat.org/identities/viaf-105642555 +http://viaf.org/viaf/105645723 CAOONL|ncf10350215 +http://viaf.org/viaf/105645723 Identities@http://www.worldcat.org/identities/viaf-105645723 +http://viaf.org/viaf/105645723 B2Q|0000138883 +http://viaf.org/viaf/105647505 Identities@http://www.worldcat.org/identities/viaf-105647505 +http://viaf.org/viaf/105647505 ISNI|0000000076107833 +http://viaf.org/viaf/105647505 CAOONL|ncf10363475 +http://viaf.org/viaf/105648072 B2Q|ncf10799714 +http://viaf.org/viaf/105648072 CAOONL|ncf10799714 +http://viaf.org/viaf/105648072 Identities@http://www.worldcat.org/identities/viaf-105648072 +http://viaf.org/viaf/105653742 Identities@http://www.worldcat.org/identities/viaf-105653742 +http://viaf.org/viaf/105653742 CAOONL|ncf10342374 +http://viaf.org/viaf/105653742 ISNI|000000007567131X +http://viaf.org/viaf/105656866 ISNI|0000000076401274 +http://viaf.org/viaf/105656866 CAOONL|ncf10350110 +http://viaf.org/viaf/105656866 Identities@http://www.worldcat.org/identities/viaf-105656866 +http://viaf.org/viaf/105657801 CAOONL|ncf10362545 +http://viaf.org/viaf/105657801 Identities@http://www.worldcat.org/identities/viaf-105657801 +http://viaf.org/viaf/105661310 CAOONL|ncf10345266 +http://viaf.org/viaf/105661310 Identities@http://www.worldcat.org/identities/viaf-105661310 +http://viaf.org/viaf/105662201 Identities@http://www.worldcat.org/identities/viaf-105662201 +http://viaf.org/viaf/105662201 ISNI|0000000076620389 +http://viaf.org/viaf/105662201 CAOONL|ncf10347049 +http://viaf.org/viaf/105663543 CAOONL|ncf10350108 +http://viaf.org/viaf/105663543 Identities@http://www.worldcat.org/identities/viaf-105663543 +http://viaf.org/viaf/105664434 LC|n 86149855 +http://viaf.org/viaf/105664434 Identities@http://www.worldcat.org/identities/lccn-n86149855 +http://viaf.org/viaf/105664434 CAOONL|ncf10187756 +http://viaf.org/viaf/105664434 LC@n86149855 +http://viaf.org/viaf/105675621 Identities@http://www.worldcat.org/identities/viaf-105675621 +http://viaf.org/viaf/105675621 CAOONL|ncf10362081 +http://viaf.org/viaf/105676512 LIH@LNB:J02;=h9 +http://viaf.org/viaf/105676512 CAOONL|ncf10365921 +http://viaf.org/viaf/105676512 ISNI|0000000075318575 +http://viaf.org/viaf/105676512 LIH|LNB:J02;=_h_9 +http://viaf.org/viaf/105676512 Identities@http://www.worldcat.org/identities/viaf-105676512 +http://viaf.org/viaf/105676963 CAOONL|ncf10362120 +http://viaf.org/viaf/105676963 ISNI|0000000075458535 +http://viaf.org/viaf/105676963 Identities@http://www.worldcat.org/identities/viaf-105676963 +http://viaf.org/viaf/105677403 ISNI|0000000075246209 +http://viaf.org/viaf/105677403 CAOONL|ncf10340307 +http://viaf.org/viaf/105677403 Identities@http://www.worldcat.org/identities/viaf-105677403 +http://viaf.org/viaf/105683640 CAOONL|ncf10351800 +http://viaf.org/viaf/105683640 B2Q|0000364365 +http://viaf.org/viaf/105683640 ISNI|0000000076548284 +http://viaf.org/viaf/105683640 BLBNB|000424383 +http://viaf.org/viaf/105683640 RERO|A022997177 +http://viaf.org/viaf/105683640 Identities@http://www.worldcat.org/identities/viaf-105683640 +http://viaf.org/viaf/105688546 Identities@http://www.worldcat.org/identities/viaf-105688546 +http://viaf.org/viaf/105688546 CAOONL|ncf10372530 +http://viaf.org/viaf/105691939 CAOONL|ncf10347355 +http://viaf.org/viaf/105691939 Identities@http://www.worldcat.org/identities/viaf-105691939 +http://viaf.org/viaf/105691939 ISNI|0000000075745315 +http://viaf.org/viaf/105697005 ISNI|0000000074597584 +http://viaf.org/viaf/105697005 Identities@http://www.worldcat.org/identities/viaf-105697005 +http://viaf.org/viaf/105697005 CAOONL|ncf10345354 +http://viaf.org/viaf/105699238 CAOONL|ncf10356389 +http://viaf.org/viaf/105699238 Identities@http://www.worldcat.org/identities/viaf-105699238 +http://viaf.org/viaf/105699238 ISNI|0000000075392206 +http://viaf.org/viaf/105706383 Identities@http://www.worldcat.org/identities/viaf-105706383 +http://viaf.org/viaf/105706383 CAOONL|ncf10368377 +http://viaf.org/viaf/105706383 ISNI|000000007684194X +http://viaf.org/viaf/1057145857118022922397 DNB|108964194X +http://viaf.org/viaf/1057145857118022922397 DNB@http://d-nb.info/gnd/108964194X +http://viaf.org/viaf/1057145857145222922922 Identities@http://www.worldcat.org/identities/viaf-1057145857145222922922 +http://viaf.org/viaf/1057145857145222922922 DNB|108579766X +http://viaf.org/viaf/1057145857145222922922 DNB@http://d-nb.info/gnd/108579766X +http://viaf.org/viaf/1057151778202818130000 NLR@RU\NLR\AUTH\770179047 +http://viaf.org/viaf/1057151778202818130000 NLR|RU NLR AUTH 770179047 +http://viaf.org/viaf/1057154381063930292482 LIH|LNB:_i__v_X;=CH +http://viaf.org/viaf/1057154381063930292482 LIH@LNB:ivX;=CH +http://viaf.org/viaf/1057154501892939210005 XR|VIAFWORK1060574444 +http://viaf.org/viaf/105716184 Identities@http://www.worldcat.org/identities/viaf-105716184 +http://viaf.org/viaf/105716184 CAOONL|ncf10348922 +http://viaf.org/viaf/105716184 ISNI|0000000076549025 +http://viaf.org/viaf/105725913 CAOONL|ncf10352948 +http://viaf.org/viaf/105725913 Identities@http://www.worldcat.org/identities/viaf-105725913 +http://viaf.org/viaf/105725913 ISNI|0000000075392791 +http://viaf.org/viaf/105726309 CAOONL|ncf10354363 +http://viaf.org/viaf/105726309 Identities@http://www.worldcat.org/identities/viaf-105726309 +http://viaf.org/viaf/105726309 ISNI|0000000075601039 +http://viaf.org/viaf/105731655 Identities@http://www.worldcat.org/identities/viaf-105731655 +http://viaf.org/viaf/105731655 ISNI|000000007567342X +http://viaf.org/viaf/105731655 CAOONL|ncf10355149 +http://viaf.org/viaf/105734328 Identities@http://www.worldcat.org/identities/viaf-105734328 +http://viaf.org/viaf/105734328 ISNI|0000000075965051 +http://viaf.org/viaf/105734328 CAOONL|ncf10360878 +http://viaf.org/viaf/105741456 Identities@http://www.worldcat.org/identities/viaf-105741456 +http://viaf.org/viaf/105741456 CAOONL|ncf10353329 +http://viaf.org/viaf/105741500 Identities@http://www.worldcat.org/identities/viaf-105741500 +http://viaf.org/viaf/105741500 CAOONL|ncf10353567 +http://viaf.org/viaf/105741500 ISNI|000000007625725X +http://viaf.org/viaf/105746406 CAOONL|ncf10352281 +http://viaf.org/viaf/105746406 Identities@http://www.worldcat.org/identities/viaf-105746406 +http://viaf.org/viaf/105746406 ISNI|0000000076476057 +http://viaf.org/viaf/105746857 BNF@http://catalogue.bnf.fr/ark:/12148/cb16254695h +http://viaf.org/viaf/105746857 B2Q|0000323224 +http://viaf.org/viaf/105746857 RERO|A026668357 +http://viaf.org/viaf/105746857 ISNI|0000000075601573 +http://viaf.org/viaf/105746857 SUDOC|199502994 +http://viaf.org/viaf/105746857 CAOONL|ncf10354013 +http://viaf.org/viaf/105746857 Identities@http://www.worldcat.org/identities/viaf-105746857 +http://viaf.org/viaf/105746857 BNF|16254695 +http://viaf.org/viaf/105749250 ISNI|0000000076110557 +http://viaf.org/viaf/105749250 Identities@http://www.worldcat.org/identities/viaf-105749250 +http://viaf.org/viaf/105749250 CAOONL|ncf10360348 +http://viaf.org/viaf/105751752 CAOONL|ncf10352630 +http://viaf.org/viaf/105751752 Identities@http://www.worldcat.org/identities/viaf-105751752 +http://viaf.org/viaf/105751752 ISNI|0000000075460205 +http://viaf.org/viaf/105763335 Identities@http://www.worldcat.org/identities/viaf-105763335 +http://viaf.org/viaf/105763335 ISNI|0000000074887936 +http://viaf.org/viaf/105763335 CAOONL|ncf10355182 +http://viaf.org/viaf/105770012 ISNI|0000000075177442 +http://viaf.org/viaf/105770012 Identities@http://www.worldcat.org/identities/viaf-105770012 +http://viaf.org/viaf/105770012 CAOONL|ncf10360002 +http://viaf.org/viaf/105774027 ISNI|0000000076331296 +http://viaf.org/viaf/105774027 Identities@http://www.worldcat.org/identities/viaf-105774027 +http://viaf.org/viaf/105774027 CAOONL|ncf10357166 +http://viaf.org/viaf/105774027 B2Q|0000385897 +http://viaf.org/viaf/105784279 ISNI|0000000074377696 +http://viaf.org/viaf/105784279 Identities@http://www.worldcat.org/identities/viaf-105784279 +http://viaf.org/viaf/105784279 CAOONL|ncf10375475 +http://viaf.org/viaf/105786556 CAOONL|ncf10364820 +http://viaf.org/viaf/105786556 Identities@http://www.worldcat.org/identities/viaf-105786556 +http://viaf.org/viaf/105786556 ISNI|0000000075966265 +http://viaf.org/viaf/105786600 ISNI|0000000075531296 +http://viaf.org/viaf/105786600 Identities@http://www.worldcat.org/identities/viaf-105786600 +http://viaf.org/viaf/105786600 CAOONL|ncf10365428 +http://viaf.org/viaf/105789229 CAOONL|ncf10377587 +http://viaf.org/viaf/105789229 Identities@http://www.worldcat.org/identities/viaf-105789229 +http://viaf.org/viaf/105789229 ISNI|0000000076550675 +http://viaf.org/viaf/105791000 Identities@http://www.worldcat.org/identities/viaf-105791000 +http://viaf.org/viaf/105791000 CAOONL|ncf10365023 +http://viaf.org/viaf/105791000 ISNI|0000000076477332 +http://viaf.org/viaf/105793189 Identities@http://www.worldcat.org/identities/viaf-105793189 +http://viaf.org/viaf/105793189 CAOONL|ncf10372740 +http://viaf.org/viaf/105793189 ISNI|0000000137221155 +http://viaf.org/viaf/105799976 Identities@http://www.worldcat.org/identities/viaf-105799976 +http://viaf.org/viaf/105799976 ISNI|0000000076844358 +http://viaf.org/viaf/105799976 CAOONL|ncf10364053 +http://viaf.org/viaf/105802935 CAOONL|ncf10376695 +http://viaf.org/viaf/105802935 Identities@http://www.worldcat.org/identities/viaf-105802935 +http://viaf.org/viaf/105802935 ISNI|000000007618509X +http://viaf.org/viaf/105810008 CAOONL|ncf10365587 +http://viaf.org/viaf/105810008 ISNI|0000000074888955 +http://viaf.org/viaf/105810008 Identities@http://www.worldcat.org/identities/viaf-105810008 +http://viaf.org/viaf/1058159234571703372062 Identities@http://www.worldcat.org/identities/viaf-1058159234571703372062 +http://viaf.org/viaf/1058159234571703372062 RERO|A012430693 +http://viaf.org/viaf/1058159234742603372586 RERO|A018879902 +http://viaf.org/viaf/1058159234742603372586 Identities@http://www.worldcat.org/identities/viaf-1058159234742603372586 +http://viaf.org/viaf/1058159474199527661179 CAOONL|ncf11648584 +http://viaf.org/viaf/1058159474202627661489 DBC|87097968610214 +http://viaf.org/viaf/1058159474202627661489 CAOONL|ncf11759492 +http://viaf.org/viaf/1058159474202627661489 DBC@870979.68610214 +http://viaf.org/viaf/105816471 CAOONL|ncf10371138 +http://viaf.org/viaf/105816471 Identities@http://www.worldcat.org/identities/viaf-105816471 +http://viaf.org/viaf/105816471 ISNI|0000000076259028 +http://viaf.org/viaf/105830105 ISNI|0000000074600974 +http://viaf.org/viaf/105830105 Identities@http://www.worldcat.org/identities/viaf-105830105 +http://viaf.org/viaf/105830105 CAOONL|ncf10390810 +http://viaf.org/viaf/105832833 Identities@http://www.worldcat.org/identities/viaf-105832833 +http://viaf.org/viaf/105832833 ISNI|0000000074302686 +http://viaf.org/viaf/105832833 CAOONL|ncf10379857 +http://viaf.org/viaf/105836848 Identities@http://www.worldcat.org/identities/viaf-105836848 +http://viaf.org/viaf/105836848 CAOONL|ncf10392097 +http://viaf.org/viaf/105836848 ISNI|0000000076845166 +http://viaf.org/viaf/105837739 CAOONL|ncf10381019 +http://viaf.org/viaf/105837739 Identities@http://www.worldcat.org/identities/viaf-105837739 +http://viaf.org/viaf/105837739 ISNI|0000000075250443 +http://viaf.org/viaf/105850653 CAOONL|ncf10079435 +http://viaf.org/viaf/105850653 ISNI|000000007445468X +http://viaf.org/viaf/105850653 Identities@http://www.worldcat.org/identities/viaf-105850653 +http://viaf.org/viaf/10585183 DNB|115832599 +http://viaf.org/viaf/10585183 DNB@http://d-nb.info/gnd/115832599 +http://viaf.org/viaf/10585183 Identities@http://www.worldcat.org/identities/viaf-10585183 +http://viaf.org/viaf/10585183 ISNI|0000000009037097 +http://viaf.org/viaf/105852930 Identities@http://www.worldcat.org/identities/viaf-105852930 +http://viaf.org/viaf/105852930 CAOONL|ncf10082002 +http://viaf.org/viaf/105852930 ISNI|0000000075822915 +http://viaf.org/viaf/105853326 ISNI|0000000075749842 +http://viaf.org/viaf/105853326 Identities@http://www.worldcat.org/identities/viaf-105853326 +http://viaf.org/viaf/105853326 CAOONL|ncf10082489 +http://viaf.org/viaf/105853326 BIBSYS|90949314 +http://viaf.org/viaf/105856945 ISNI|0000000075532934 +http://viaf.org/viaf/105856945 Identities@http://www.worldcat.org/identities/viaf-105856945 +http://viaf.org/viaf/105856945 CAOONL|ncf10087116 +http://viaf.org/viaf/105865855 CAOONL|ncf10098224 +http://viaf.org/viaf/105865855 ISNI|0000000074745081 +http://viaf.org/viaf/105865855 Identities@http://www.worldcat.org/identities/viaf-105865855 +http://viaf.org/viaf/105869914 CAOONL|ncf10105429 +http://viaf.org/viaf/105869914 Identities@http://www.worldcat.org/identities/lccn-no2008013550 +http://viaf.org/viaf/105869914 LC|no2008013550 +http://viaf.org/viaf/105869914 B2Q|0000777623 +http://viaf.org/viaf/105884566 Identities@http://www.worldcat.org/identities/viaf-105884566 +http://viaf.org/viaf/105884566 CAOONL|ncf10061332 +http://viaf.org/viaf/105884610 ISNI|0000000075462702 +http://viaf.org/viaf/105884610 CAOONL|ncf10061339 +http://viaf.org/viaf/105884610 B2Q|0000088376 +http://viaf.org/viaf/105884610 LC@n87827476 +http://viaf.org/viaf/105884610 LC|n 87827476 +http://viaf.org/viaf/105884610 Identities@http://www.worldcat.org/identities/lccn-n87827476 +http://viaf.org/viaf/105885006 ISNI|000000007438022X +http://viaf.org/viaf/105885006 CAOONL|ncf10129823 +http://viaf.org/viaf/105885006 Identities@http://www.worldcat.org/identities/viaf-105885006 +http://viaf.org/viaf/1058867 ISNI|0000000025811492 +http://viaf.org/viaf/1058867 DNB@http://d-nb.info/gnd/128244224 +http://viaf.org/viaf/1058867 Identities@http://www.worldcat.org/identities/viaf-1058867 +http://viaf.org/viaf/1058867 DNB|128244224 +http://viaf.org/viaf/105891199 Identities@http://www.worldcat.org/identities/viaf-105891199 +http://viaf.org/viaf/105891199 ISNI|0000000074745591 +http://viaf.org/viaf/105891199 CAOONL|ncf10386008 +http://viaf.org/viaf/105894367 CAOONL|ncf10383467 +http://viaf.org/viaf/105894367 Identities@http://www.worldcat.org/identities/viaf-105894367 +http://viaf.org/viaf/105894367 ISNI|0000000074890801 +http://viaf.org/viaf/105895753 B2Q|0000337052 +http://viaf.org/viaf/105895753 Identities@http://www.worldcat.org/identities/viaf-105895753 +http://viaf.org/viaf/105895753 CAOONL|ncf10387745 +http://viaf.org/viaf/105898877 LC|n 2014073850 +http://viaf.org/viaf/105898877 B2Q|0000364176 +http://viaf.org/viaf/105898877 DNB@http://d-nb.info/gnd/1048228142 +http://viaf.org/viaf/105898877 LC@n2014073850 +http://viaf.org/viaf/105898877 Identities@http://www.worldcat.org/identities/lccn-n2014073850 +http://viaf.org/viaf/105898877 ISNI|0000000075823926 +http://viaf.org/viaf/105898877 DNB|1048228142 +http://viaf.org/viaf/105898877 CAOONL|ncf10385923 +http://viaf.org/viaf/105900945 ISNI|0000000076041192 +http://viaf.org/viaf/105900945 B2Q|0000343838 +http://viaf.org/viaf/105900945 CAOONL|ncf10391136 +http://viaf.org/viaf/105900945 Identities@http://www.worldcat.org/identities/viaf-105900945 +http://viaf.org/viaf/105903618 ISNI|0000000075969028 +http://viaf.org/viaf/105903618 CAOONL|ncf10387711 +http://viaf.org/viaf/105903618 Identities@http://www.worldcat.org/identities/viaf-105903618 +http://viaf.org/viaf/105904680 B2Q|0000126101 +http://viaf.org/viaf/105904680 CAOONL|ncf10389940 +http://viaf.org/viaf/105904680 Identities@http://www.worldcat.org/identities/viaf-105904680 +http://viaf.org/viaf/105905120 CAOONL|ncf10391304 +http://viaf.org/viaf/105905120 ISNI|0000000076846820 +http://viaf.org/viaf/105905120 Identities@http://www.worldcat.org/identities/viaf-105905120 +http://viaf.org/viaf/105907353 Identities@http://www.worldcat.org/identities/viaf-105907353 +http://viaf.org/viaf/105907353 CAOONL|ncf10387309 +http://viaf.org/viaf/105907353 ISNI|0000000075037677 +http://viaf.org/viaf/105908244 ISNI|0000000075108519 +http://viaf.org/viaf/105908244 CAOONL|ncf10388907 +http://viaf.org/viaf/105908244 Identities@http://www.worldcat.org/identities/viaf-105908244 +http://viaf.org/viaf/105912979 Identities@http://www.worldcat.org/identities/viaf-105912979 +http://viaf.org/viaf/105912979 CAOONL|ncf10391644 +http://viaf.org/viaf/1059145856858322920064 DNB@http://d-nb.info/gnd/1085824861 +http://viaf.org/viaf/1059145856858322920064 DNB|1085824861 +http://viaf.org/viaf/1059145856858322920064 Identities@http://www.worldcat.org/identities/viaf-1059145856858322920064 +http://viaf.org/viaf/1059154380975730291190 LIH|LNB:II_e_;=BN +http://viaf.org/viaf/1059154380975730291190 LIH@LNB:IIe;=BN +http://viaf.org/viaf/1059154381055530292124 LIH|LNB:_q__l__f_;=CN +http://viaf.org/viaf/1059154381055530292124 LIH@LNB:qlf;=CN +http://viaf.org/viaf/1059159234449303371767 RERO|A012465613 +http://viaf.org/viaf/1059159234449303371767 Identities@http://www.worldcat.org/identities/viaf-1059159234449303371767 +http://viaf.org/viaf/105938142 CAOONL|ncf10394711 +http://viaf.org/viaf/105938142 Identities@http://www.worldcat.org/identities/viaf-105938142 +http://viaf.org/viaf/105941986 Identities@http://www.worldcat.org/identities/viaf-105941986 +http://viaf.org/viaf/105941986 CAOONL|ncf10394992 +http://viaf.org/viaf/10594912 DNB|116348747 +http://viaf.org/viaf/10594912 DNB@http://d-nb.info/gnd/116348747 +http://viaf.org/viaf/10594912 WKP|Q55894631 +http://viaf.org/viaf/105950445 Identities@http://www.worldcat.org/identities/viaf-105950445 +http://viaf.org/viaf/105950445 CAOONL|ncf10395989 +http://viaf.org/viaf/105950445 ISNI|0000000076701664 +http://viaf.org/viaf/10595308 DNB@http://d-nb.info/gnd/116361816 +http://viaf.org/viaf/10595308 WKP|Q55851126 +http://viaf.org/viaf/10595308 DNB|140287183 +http://viaf.org/viaf/10595308 ISNI|0000000009040931 +http://viaf.org/viaf/10595308 Identities@http://www.worldcat.org/identities/viaf-10595308 +http://viaf.org/viaf/10595308 DNB@http://d-nb.info/gnd/140287183 +http://viaf.org/viaf/10595308 DNB|116361816 +http://viaf.org/viaf/105954504 Identities@http://www.worldcat.org/identities/viaf-105954504 +http://viaf.org/viaf/105954504 ISNI|0000000075897992 +http://viaf.org/viaf/105954504 CAOONL|ncf10396757 +http://viaf.org/viaf/105960246 CAOONL|ncf10400568 +http://viaf.org/viaf/105968815 CAOONL|ncf10401391 +http://viaf.org/viaf/105968815 Identities@http://www.worldcat.org/identities/viaf-105968815 +http://viaf.org/viaf/105968815 ISNI|0000000075253564 +http://viaf.org/viaf/105968815 B2Q|0000355603 +http://viaf.org/viaf/1059758 ISNI|000000002581225X +http://viaf.org/viaf/1059758 Identities@http://www.worldcat.org/identities/viaf-1059758 +http://viaf.org/viaf/1059758 DNB@http://d-nb.info/gnd/128275022 +http://viaf.org/viaf/1059758 DNB|128275022 +http://viaf.org/viaf/105976339 Identities@http://www.worldcat.org/identities/viaf-105976339 +http://viaf.org/viaf/105976339 CAOONL|ncf10408762 +http://viaf.org/viaf/105983016 Identities@http://www.worldcat.org/identities/viaf-105983016 +http://viaf.org/viaf/105983016 CAOONL|ncf10385775 +http://viaf.org/viaf/105987977 Identities@http://www.worldcat.org/identities/viaf-105987977 +http://viaf.org/viaf/105987977 CAOONL|ncf10407478 +http://viaf.org/viaf/105996931 LC@n96037394 +http://viaf.org/viaf/105996931 LC|n 96037394 +http://viaf.org/viaf/105996931 DNB|1129898709 +http://viaf.org/viaf/105996931 BIBSYS|3121240 +http://viaf.org/viaf/105996931 J9U|987007449466305171 +http://viaf.org/viaf/105996931 ISNI|0000000078365836 +http://viaf.org/viaf/105996931 BNF|13191429 +http://viaf.org/viaf/105996931 BNF@http://catalogue.bnf.fr/ark:/12148/cb13191429p +http://viaf.org/viaf/105996931 DNB@http://d-nb.info/gnd/1129898709 +http://viaf.org/viaf/105996931 Identities@http://www.worldcat.org/identities/lccn-n96037394 +http://viaf.org/viaf/105996931 CAOONL|ncf10410558 +http://viaf.org/viaf/105999109 CAOONL|ncf10406382 +http://viaf.org/viaf/105999109 Identities@http://www.worldcat.org/identities/viaf-105999109 +http://viaf.org/viaf/105999109 B2Q|0000362798 +http://viaf.org/viaf/105999109 ISNI|0000000075753083 +http://viaf.org/viaf/106003300 Identities@http://www.worldcat.org/identities/lccn-n85374373 +http://viaf.org/viaf/106003300 NUKAT|n 2003041999 +http://viaf.org/viaf/106003300 Wikipedia@http://species.wikipedia.org/wiki/Maximilian_Fischer +http://viaf.org/viaf/106003300 PLWABN|9810633672805606 +http://viaf.org/viaf/106003300 NTA|071944281 +http://viaf.org/viaf/106003300 DNB|130859842 +http://viaf.org/viaf/106003300 WKP|Q6795710 +http://viaf.org/viaf/106003300 SUDOC|032613237 +http://viaf.org/viaf/106003300 CAOONL|ncf10407066 +http://viaf.org/viaf/106003300 BNF|12360967 +http://viaf.org/viaf/106003300 NKC|ola2008434672 +http://viaf.org/viaf/106003300 BIBSYS|4083379 +http://viaf.org/viaf/106003300 ISNI|0000000117786036 +http://viaf.org/viaf/106003300 NUKAT@vtls001687582 +http://viaf.org/viaf/106003300 DNB@http://d-nb.info/gnd/130859842 +http://viaf.org/viaf/106003300 LC|n 85374373 +http://viaf.org/viaf/106003300 BNF@http://catalogue.bnf.fr/ark:/12148/cb12360967z +http://viaf.org/viaf/106003300 RERO|A003245434 +http://viaf.org/viaf/106003300 LC@n85374373 +http://viaf.org/viaf/106003300 Wikipedia@http://ar.wikipedia.org/wiki/ماكسيميليان_فيشر +http://viaf.org/viaf/106003300 Wikipedia@http://en.wikipedia.org/wiki/Maximilian_Fischer +http://viaf.org/viaf/106003300 Wikipedia@http://nl.wikipedia.org/wiki/Maximilian_Fischer +http://viaf.org/viaf/106003300 Wikipedia@http://pt.wikipedia.org/wiki/Maximilian_Fischer +http://viaf.org/viaf/106004642 B2Q|0000371499 +http://viaf.org/viaf/106004642 Identities@http://www.worldcat.org/identities/viaf-106004642 +http://viaf.org/viaf/106004642 CAOONL|ncf10409905 +http://viaf.org/viaf/106010384 DNB|106136769X +http://viaf.org/viaf/106010384 CAOONL|ncf10404688 +http://viaf.org/viaf/106010384 DNB@http://d-nb.info/gnd/106136769X +http://viaf.org/viaf/106010384 Identities@http://www.worldcat.org/identities/viaf-106010384 +http://viaf.org/viaf/1060145857100122922210 DNB@http://d-nb.info/gnd/1086783492 +http://viaf.org/viaf/1060145857100122922210 Identities@http://www.worldcat.org/identities/viaf-1060145857100122922210 +http://viaf.org/viaf/1060145857100122922210 DNB|1086783492 +http://viaf.org/viaf/1060146997190318890658 Identities@http://www.worldcat.org/identities/viaf-1060146997190318890658 +http://viaf.org/viaf/1060146997190318890658 NII|DA16718244 +http://viaf.org/viaf/1060147553253253800009 DNB|1114895318 +http://viaf.org/viaf/1060147553253253800009 Identities@http://www.worldcat.org/identities/viaf-1060147553253253800009 +http://viaf.org/viaf/1060147553253253800009 DNB@http://d-nb.info/gnd/1114895318 +http://viaf.org/viaf/1060157226613485410007 XR|VIAFEXP1081349752 +http://viaf.org/viaf/1060159233927703370267 RERO|A012442717 +http://viaf.org/viaf/106020680 CAOONL|ncf10420918 +http://viaf.org/viaf/106020680 ISNI|0000000075536660 +http://viaf.org/viaf/106020680 Identities@http://www.worldcat.org/identities/viaf-106020680 +http://viaf.org/viaf/106022462 SUDOC|075964686 +http://viaf.org/viaf/106022462 CAOONL|ncf10415331 +http://viaf.org/viaf/106022462 ISNI|000000007648249X +http://viaf.org/viaf/106022462 Identities@http://www.worldcat.org/identities/viaf-106022462 +http://viaf.org/viaf/106022462 B2Q|0000371439 +http://viaf.org/viaf/106026026 Wikipedia@http://fr.wikipedia.org/wiki/Sonia_Robertson_(artiste) +http://viaf.org/viaf/106026026 Identities@http://www.worldcat.org/identities/viaf-106026026 +http://viaf.org/viaf/106026026 WKP|Q29650165 +http://viaf.org/viaf/106026026 CAOONL|ncf10413970 +http://viaf.org/viaf/106026026 B2Q|0000365481 +http://viaf.org/viaf/106034045 CAOONL|ncf10413708 +http://viaf.org/viaf/106034045 Identities@http://www.worldcat.org/identities/viaf-106034045 +http://viaf.org/viaf/106037213 CAOONL|ncf10421430 +http://viaf.org/viaf/106037213 Identities@http://www.worldcat.org/identities/viaf-106037213 +http://viaf.org/viaf/106037213 ISNI|0000000075183076 +http://viaf.org/viaf/106037664 CAOONL|ncf10412670 +http://viaf.org/viaf/106041948 CAOONL|ncf10412715 +http://viaf.org/viaf/106041948 ISNI|0000000076703926 +http://viaf.org/viaf/106041948 Identities@http://www.worldcat.org/identities/viaf-106041948 +http://viaf.org/viaf/106045683 BNF|14130607 +http://viaf.org/viaf/106045683 DNB|134781821 +http://viaf.org/viaf/106045683 Wikipedia@http://da.wikipedia.org/wiki/Kaljo_Raid +http://viaf.org/viaf/106045683 Wikipedia@http://de.wikipedia.org/wiki/Kaljo_Raid +http://viaf.org/viaf/106045683 ISNI|0000000081720122 +http://viaf.org/viaf/106045683 Wikipedia@http://en.wikipedia.org/wiki/Kaljo_Raid +http://viaf.org/viaf/106045683 Wikipedia@http://et.wikipedia.org/wiki/Kaljo_Raid +http://viaf.org/viaf/106045683 Wikipedia@http://arz.wikipedia.org/wiki/كالچو_رايد +http://viaf.org/viaf/106045683 Wikipedia@http://fr.wikipedia.org/wiki/Kaljo_Raid +http://viaf.org/viaf/106045683 CAOONL|ncf10421779 +http://viaf.org/viaf/106045683 LC|nr 91038011 +http://viaf.org/viaf/106045683 NII|DA12442185 +http://viaf.org/viaf/106045683 NTA|29876167X +http://viaf.org/viaf/106045683 WKP|Q1722336 +http://viaf.org/viaf/106045683 Wikipedia@http://pl.wikipedia.org/wiki/Kaljo_Raid +http://viaf.org/viaf/106045683 ERRR|a11153763 +http://viaf.org/viaf/106045683 Identities@http://www.worldcat.org/identities/lccn-nr91038011 +http://viaf.org/viaf/106045683 Wikipedia@http://nl.wikipedia.org/wiki/Kaljo_Raid +http://viaf.org/viaf/106045683 LC@nr91038011 +http://viaf.org/viaf/106045683 BIBSYS|6054427 +http://viaf.org/viaf/106045683 DNB@http://d-nb.info/gnd/134781821 +http://viaf.org/viaf/106045683 BNF@http://catalogue.bnf.fr/ark:/12148/cb14130607k +http://viaf.org/viaf/106046123 Identities@http://www.worldcat.org/identities/viaf-106046123 +http://viaf.org/viaf/106046123 ISNI|0000000076410779 +http://viaf.org/viaf/106046123 CAOONL|ncf10413040 +http://viaf.org/viaf/106054098 Identities@http://www.worldcat.org/identities/viaf-106054098 +http://viaf.org/viaf/106054098 CAOONL|ncf10422153 +http://viaf.org/viaf/106054098 ISNI|0000000074967637 +http://viaf.org/viaf/106054917 ISNI|0000000076264257 +http://viaf.org/viaf/106054917 Identities@http://www.worldcat.org/identities/viaf-106054917 +http://viaf.org/viaf/106054917 CAOONL|ncf10414575 +http://viaf.org/viaf/106058201 CAOONL|ncf10412856 +http://viaf.org/viaf/106058201 Identities@http://www.worldcat.org/identities/viaf-106058201 +http://viaf.org/viaf/106058201 ISNI|0000000075608900 +http://viaf.org/viaf/10607359 DNB@http://d-nb.info/gnd/116830565 +http://viaf.org/viaf/10607359 DNB|116830565 +http://viaf.org/viaf/106077363 Identities@http://www.worldcat.org/identities/viaf-106077363 +http://viaf.org/viaf/106077363 CAOONL|ncf10429444 +http://viaf.org/viaf/106077363 B2Q|0000389942 +http://viaf.org/viaf/106080800 ISNI|0000000074532668 +http://viaf.org/viaf/106081647 CAOONL|ncf10429272 +http://viaf.org/viaf/106081647 Identities@http://www.worldcat.org/identities/viaf-106081647 +http://viaf.org/viaf/106094292 ISNI|0000000076705163 +http://viaf.org/viaf/106094292 B2Q|0000374197 +http://viaf.org/viaf/106094292 Identities@http://www.worldcat.org/identities/viaf-106094292 +http://viaf.org/viaf/106094292 CAOONL|ncf10427875 +http://viaf.org/viaf/106095507 CAOONL|ncf10430621 +http://viaf.org/viaf/106095507 Identities@http://www.worldcat.org/identities/viaf-106095507 +http://viaf.org/viaf/106095958 Identities@http://www.worldcat.org/identities/viaf-106095958 +http://viaf.org/viaf/106095958 ISNI|0000000075256642 +http://viaf.org/viaf/106095958 CAOONL|ncf10431703 +http://viaf.org/viaf/106099693 Identities@http://www.worldcat.org/identities/viaf-106099693 +http://viaf.org/viaf/106099693 ISNI|0000000075609807 +http://viaf.org/viaf/106099693 CAOONL|ncf10430971 +http://viaf.org/viaf/106103048 ISNI|0000000075609954 +http://viaf.org/viaf/106103048 CAOONL|ncf10429890 +http://viaf.org/viaf/10610472 Identities@http://www.worldcat.org/identities/viaf-10610472 +http://viaf.org/viaf/10610472 DNB@http://d-nb.info/gnd/116947195 +http://viaf.org/viaf/10610472 ISNI|0000000009045652 +http://viaf.org/viaf/10610472 DNB|116947195 +http://viaf.org/viaf/106110671 Identities@http://www.worldcat.org/identities/viaf-106110671 +http://viaf.org/viaf/106110671 ISNI|0000000075974126 +http://viaf.org/viaf/106110671 CAOONL|ncf10437505 +http://viaf.org/viaf/106113795 Identities@http://www.worldcat.org/identities/viaf-106113795 +http://viaf.org/viaf/106113795 CAOONL|ncf10434489 +http://viaf.org/viaf/106114235 CAOONL|ncf10435663 +http://viaf.org/viaf/106114235 Identities@http://www.worldcat.org/identities/viaf-106114235 +http://viaf.org/viaf/106114235 ISNI|0000000075467597 +http://viaf.org/viaf/1061145856863322920078 DNB@http://d-nb.info/gnd/1086828542 +http://viaf.org/viaf/1061145856863322920078 DNB|1086828542 +http://viaf.org/viaf/1061145856863322920078 Identities@http://www.worldcat.org/identities/viaf-1061145856863322920078 +http://viaf.org/viaf/1061150567601206370000 SUDOC|202400263 +http://viaf.org/viaf/1061150567601206370000 CAOONL|ncf11191205 +http://viaf.org/viaf/1061151246607144132675 DNB|1146539355 +http://viaf.org/viaf/1061151246607144132675 DNB@http://d-nb.info/gnd/1146539355 +http://viaf.org/viaf/1061152636067520050250 DNB@http://d-nb.info/gnd/1159213550 +http://viaf.org/viaf/1061152636067520050250 DNB|1159213550 +http://viaf.org/viaf/1061152636067520050250 Identities@http://www.worldcat.org/identities/viaf-1061152636067520050250 +http://viaf.org/viaf/1061155284807387060537 Identities@http://www.worldcat.org/identities/viaf-1061155284807387060537 +http://viaf.org/viaf/1061155284807387060537 RERO|A026155985 +http://viaf.org/viaf/1061155708732422580000 XR|VIAFWORK1002302872 +http://viaf.org/viaf/1061157416825516710000 XR|VIAFEXP1123647105 +http://viaf.org/viaf/1061159234563703371985 Identities@http://www.worldcat.org/identities/viaf-1061159234563703371985 +http://viaf.org/viaf/1061159234563703371985 RERO|A018699407 +http://viaf.org/viaf/1061159248126704870009 RERO|A025633999 +http://viaf.org/viaf/1061159474071227660798 CAOONL|ncf11285426 +http://viaf.org/viaf/1061159474416927662154 SUDOC|245054200 +http://viaf.org/viaf/106119636 CAOONL|ncf10438274 +http://viaf.org/viaf/106119636 ISNI|0000000075329071 +http://viaf.org/viaf/106119636 Identities@http://www.worldcat.org/identities/viaf-106119636 +http://viaf.org/viaf/106121363 NII|DA11203462 +http://viaf.org/viaf/106126269 Identities@http://www.worldcat.org/identities/viaf-106126269 +http://viaf.org/viaf/106126269 CAOONL|ncf10434117 +http://viaf.org/viaf/106126269 ISNI|0000000075974572 +http://viaf.org/viaf/106132550 CAOONL|ncf10439150 +http://viaf.org/viaf/106132550 Identities@http://www.worldcat.org/identities/viaf-106132550 +http://viaf.org/viaf/106143693 Identities@http://www.worldcat.org/identities/lccn-no2013063783 +http://viaf.org/viaf/106143693 Wikipedia@http://en.wikipedia.org/wiki/Alex_Neve +http://viaf.org/viaf/106143693 NTA|419040439 +http://viaf.org/viaf/106143693 WKP|Q4717551 +http://viaf.org/viaf/106143693 ISNI|000000007670630X +http://viaf.org/viaf/106143693 DNB|143130706 +http://viaf.org/viaf/106143693 CAOONL|ncf11899013 +http://viaf.org/viaf/106143693 LC|no2013063783 +http://viaf.org/viaf/106143693 DNB@http://d-nb.info/gnd/143130706 +http://viaf.org/viaf/106144647648633956457 BNF|16949359 +http://viaf.org/viaf/106144647648633956457 SUDOC|124240720 +http://viaf.org/viaf/106144647648633956457 BNF@http://catalogue.bnf.fr/ark:/12148/cb169493591 +http://viaf.org/viaf/106144782961413231916 Identities@http://www.worldcat.org/identities/viaf-106144782961413231916 +http://viaf.org/viaf/106144782961413231916 DNB@http://d-nb.info/gnd/1077345259 +http://viaf.org/viaf/106144782961413231916 DNB|1077345259 +http://viaf.org/viaf/106145542383996640207 DNB|11879356X +http://viaf.org/viaf/106145542383996640207 DNB@http://d-nb.info/gnd/11879356X +http://viaf.org/viaf/106145542383996640207 Identities@http://www.worldcat.org/identities/viaf-106145542383996640207 +http://viaf.org/viaf/106145663050305070616 DNB@http://d-nb.info/gnd/1083848275 +http://viaf.org/viaf/106145663050305070616 DNB|1083848275 +http://viaf.org/viaf/106146152988205251016 XR|VIAFEXP945097261 +http://viaf.org/viaf/106146462597427770937 XR|VIAFWORK11902906 +http://viaf.org/viaf/106147118358226342959 LC|n 2016041230 +http://viaf.org/viaf/106147118358226342959 Identities@http://www.worldcat.org/identities/lccn-n2016041230 +http://viaf.org/viaf/106147118358226342959 LC@n2016041230 +http://viaf.org/viaf/106148449588615690015 Identities@http://www.worldcat.org/identities/lccn-nb2017000397 +http://viaf.org/viaf/106148449588615690015 CAOONL|ncf11049886 +http://viaf.org/viaf/106148449588615690015 LC|nb2017000397 +http://viaf.org/viaf/106148995930759751482 BIBSYS|90857882 +http://viaf.org/viaf/106148996045259752691 BIBSYS|90927894 +http://viaf.org/viaf/106148996100959752876 Identities@http://www.worldcat.org/identities/viaf-106148996100959752876 +http://viaf.org/viaf/106148996100959752876 BIBSYS|90253773 +http://viaf.org/viaf/106148996144759752933 Identities@http://www.worldcat.org/identities/viaf-106148996144759752933 +http://viaf.org/viaf/106148996144759752933 BIBSYS|90754296 +http://viaf.org/viaf/106149066631265602353 Identities@http://www.worldcat.org/identities/viaf-106149066631265602353 +http://viaf.org/viaf/106149066631265602353 ISNI|0000000395296619 +http://viaf.org/viaf/106149066631265602353 BIBSYS|15032104 +http://viaf.org/viaf/106149066631265602353 NTA|06761275X +http://viaf.org/viaf/106149196504774791947 BIBSYS|15045497 +http://viaf.org/viaf/106149294076480520076 BIBSYS|5076699 +http://viaf.org/viaf/106149617097803752177 LC|no2017065887 +http://viaf.org/viaf/106150565600006250676 SUDOC|202971511 +http://viaf.org/viaf/106150565600006250676 Identities@http://www.worldcat.org/identities/viaf-106150565600006250676 +http://viaf.org/viaf/106150565731706251927 Identities@http://www.worldcat.org/identities/viaf-106150565731706251927 +http://viaf.org/viaf/106150565731706251927 SUDOC|202446573 +http://viaf.org/viaf/106151246547944131986 DNB@http://d-nb.info/gnd/1145880231 +http://viaf.org/viaf/106151246547944131986 Identities@http://www.worldcat.org/identities/viaf-106151246547944131986 +http://viaf.org/viaf/106151246547944131986 DNB|1145880231 +http://viaf.org/viaf/106151302919848660519 SUDOC|220890056 +http://viaf.org/viaf/106151302919848660519 Identities@http://www.worldcat.org/identities/viaf-106151302919848660519 +http://viaf.org/viaf/106152380106901761541 SUDOC|225402475 +http://viaf.org/viaf/106152380131001762059 Identities@http://www.worldcat.org/identities/lccn-no2011027787 +http://viaf.org/viaf/106152380131001762059 SUDOC|224789147 +http://viaf.org/viaf/106152380131001762059 LC|no2011027787 +http://viaf.org/viaf/106152380131001762059 DNB|1056601809 +http://viaf.org/viaf/106152380131001762059 DNB@http://d-nb.info/gnd/1056601809 +http://viaf.org/viaf/106152561552815441720 DNB|1157297676 +http://viaf.org/viaf/106152561552815441720 Identities@http://www.worldcat.org/identities/viaf-106152561552815441720 +http://viaf.org/viaf/106152561552815441720 DNB@http://d-nb.info/gnd/1157297676 +http://viaf.org/viaf/106152561593815442564 DNB|1157146929 +http://viaf.org/viaf/106152561593815442564 DNB@http://d-nb.info/gnd/1157146929 +http://viaf.org/viaf/106153061240919200685 Identities@http://www.worldcat.org/identities/viaf-106153061240919200685 +http://viaf.org/viaf/106153061240919200685 ISNI|0000000464879501 +http://viaf.org/viaf/106153061240919200685 KRNLK|KAC201820543 +http://viaf.org/viaf/106153409674641581198 ISNI|0000000467781235 +http://viaf.org/viaf/106153409674641581198 Identities@http://www.worldcat.org/identities/viaf-106153409674641581198 +http://viaf.org/viaf/106153409674641581198 KRNLK|KAC201851580 +http://viaf.org/viaf/106154380915830290369 LIH|LNB:B8EA;=_l_R +http://viaf.org/viaf/106154380915830290369 Identities@http://www.worldcat.org/identities/viaf-106154380915830290369 +http://viaf.org/viaf/106154380915830290369 LIH@LNB:B8EA;=lR +http://viaf.org/viaf/106154381061430292405 LIH@LNB:B2OD;=rE +http://viaf.org/viaf/106154381061430292405 LIH|LNB:B2OD;=_r_E +http://viaf.org/viaf/106154440096635341247 SIMACOB|4992355 +http://viaf.org/viaf/106154440096635341247 Identities@http://www.worldcat.org/identities/viaf-106154440096635341247 +http://viaf.org/viaf/106154440115835340428 Identities@http://www.worldcat.org/identities/viaf-106154440115835340428 +http://viaf.org/viaf/106154440115835340428 SIMACOB|62337635 +http://viaf.org/viaf/106154590232143082252 ISNI|0000000473952037 +http://viaf.org/viaf/106154590232143082252 KRNLK|KAC2018C0412 +http://viaf.org/viaf/106156674879633580660 Identities@http://www.worldcat.org/identities/viaf-106156674879633580660 +http://viaf.org/viaf/106156674879633580660 NUKAT@vtls018510536 +http://viaf.org/viaf/106156674879633580660 NUKAT|n 2019048921 +http://viaf.org/viaf/106156675031933582145 NUKAT@vtls018409184 +http://viaf.org/viaf/106156675031933582145 NUKAT|n 2019027643 +http://viaf.org/viaf/106156675031933582145 Identities@http://www.worldcat.org/identities/viaf-106156675031933582145 +http://viaf.org/viaf/106157098586572552944 SUDOC|234251433 +http://viaf.org/viaf/106157102 Identities@http://www.worldcat.org/identities/viaf-106157102 +http://viaf.org/viaf/106157102 ISNI|0000000075756989 +http://viaf.org/viaf/106157102 CAOONL|ncf10446892 +http://viaf.org/viaf/106157523216827030433 KRNLK|KAB201910269 +http://viaf.org/viaf/106157581693233781443 SUDOC|241164168 +http://viaf.org/viaf/106157882778560440758 Identities@http://www.worldcat.org/identities/viaf-106157882778560440758 +http://viaf.org/viaf/106157882778560440758 SUDOC|241515033 +http://viaf.org/viaf/10615873 LC@nr99006453 +http://viaf.org/viaf/10615873 DNB@http://d-nb.info/gnd/117155608 +http://viaf.org/viaf/10615873 Identities@http://www.worldcat.org/identities/lccn-nr99006453 +http://viaf.org/viaf/10615873 Wikipedia@http://de.wikipedia.org/wiki/Ernst_Loesch +http://viaf.org/viaf/10615873 WKP|Q84419807 +http://viaf.org/viaf/10615873 SUDOC|069782768 +http://viaf.org/viaf/10615873 LC|nr 99006453 +http://viaf.org/viaf/10615873 ISNI|0000000052361781 +http://viaf.org/viaf/10615873 DNB|117155608 +http://viaf.org/viaf/106159032533001180454 DE663|40009586 +http://viaf.org/viaf/106159032790001182949 Identities@http://www.worldcat.org/identities/viaf-106159032790001182949 +http://viaf.org/viaf/106159032790001182949 DE663|pe41018529 +http://viaf.org/viaf/106159105470406402107 KRNLK|KAC202016650 +http://viaf.org/viaf/106159234082303370640 RERO|A003093717 +http://viaf.org/viaf/106159397307419300940 Identities@http://www.worldcat.org/identities/viaf-106159397307419300940 +http://viaf.org/viaf/106159397307419300940 B2Q|ncf10818481 +http://viaf.org/viaf/106159397307419300940 CAOONL|ncf10818481 +http://viaf.org/viaf/106161837 CAOONL|ncf10448260 +http://viaf.org/viaf/106161837 Identities@http://www.worldcat.org/identities/lccn-no2017038649 +http://viaf.org/viaf/106161837 Wikipedia@http://en.wikipedia.org/wiki/Cenek_J._Vrba +http://viaf.org/viaf/106161837 WKP|Q5058829 +http://viaf.org/viaf/106161837 LC|no2017038649 +http://viaf.org/viaf/10616764 Identities@http://www.worldcat.org/identities/viaf-10616764 +http://viaf.org/viaf/10616764 DNB@http://d-nb.info/gnd/117186430 +http://viaf.org/viaf/10616764 DNB|117186430 +http://viaf.org/viaf/10616764 WKP|Q94850655 +http://viaf.org/viaf/106174806 Identities@http://www.worldcat.org/identities/viaf-106174806 +http://viaf.org/viaf/106174806 CAOONL|ncf10449976 +http://viaf.org/viaf/106174806 ISNI|0000000075975559 +http://viaf.org/viaf/106180548 Identities@http://www.worldcat.org/identities/viaf-106180548 +http://viaf.org/viaf/106180548 ISNI|0000000074970166 +http://viaf.org/viaf/106180548 CAOONL|ncf10444579 +http://viaf.org/viaf/106180548 B2Q|0000408419 +http://viaf.org/viaf/1061809 NUKAT|n 2006084220 +http://viaf.org/viaf/1061809 SUDOC|145286444 +http://viaf.org/viaf/1061809 Identities@http://www.worldcat.org/identities/viaf-1061809 +http://viaf.org/viaf/1061809 DNB@http://d-nb.info/gnd/12833794X +http://viaf.org/viaf/1061809 NUKAT@vtls003716397 +http://viaf.org/viaf/1061809 DNB|12833794X +http://viaf.org/viaf/1061809 ISNI|0000000117365207 +http://viaf.org/viaf/106183392 Identities@http://www.worldcat.org/identities/viaf-106183392 +http://viaf.org/viaf/106183392 ISNI|0000000076194252 +http://viaf.org/viaf/106183392 CAOONL|ncf10442207 +http://viaf.org/viaf/106194084 CAOONL|ncf10448350 +http://viaf.org/viaf/106194084 NTA|141707739 +http://viaf.org/viaf/106194084 Identities@http://www.worldcat.org/identities/viaf-106194084 +http://viaf.org/viaf/10619437 DNB@http://d-nb.info/gnd/117291307 +http://viaf.org/viaf/10619437 DNB|117291307 +http://viaf.org/viaf/106204226 B2Q|0000326714 +http://viaf.org/viaf/106204226 Identities@http://www.worldcat.org/identities/viaf-106204226 +http://viaf.org/viaf/106204226 CAOONL|ncf10453675 +http://viaf.org/viaf/106207845 JPG|500329856 +http://viaf.org/viaf/106207845 DNB|1081209488 +http://viaf.org/viaf/106207845 WKP|Q22237443 +http://viaf.org/viaf/106207845 ISNI|0000000076414358 +http://viaf.org/viaf/106207845 CAOONL|ncf10453063 +http://viaf.org/viaf/106207845 B2Q|0000786580 +http://viaf.org/viaf/106207845 Wikipedia@http://ar.wikipedia.org/wiki/دانيال_فينر +http://viaf.org/viaf/106207845 Wikipedia@http://en.wikipedia.org/wiki/Daniel_Wiener +http://viaf.org/viaf/106207845 Identities@http://www.worldcat.org/identities/viaf-106207845 +http://viaf.org/viaf/106207845 DNB@http://d-nb.info/gnd/1081209488 +http://viaf.org/viaf/106209627 Identities@http://www.worldcat.org/identities/viaf-106209627 +http://viaf.org/viaf/106209627 CAOONL|ncf10457492 +http://viaf.org/viaf/106209627 B2Q|0000407561 +http://viaf.org/viaf/106213631 SUDOC|136864554 +http://viaf.org/viaf/106213631 ISNI|0000000076486984 +http://viaf.org/viaf/106213631 Identities@http://www.worldcat.org/identities/viaf-106213631 +http://viaf.org/viaf/106213631 CAOONL|ncf10457236 +http://viaf.org/viaf/106213631 B2Q|0000433058 +http://viaf.org/viaf/1062151246515444130538 DNB@http://d-nb.info/gnd/1146538235 +http://viaf.org/viaf/1062151246515444130538 DNB|1146538235 +http://viaf.org/viaf/1062151246515444130538 Identities@http://www.worldcat.org/identities/viaf-1062151246515444130538 +http://viaf.org/viaf/106228789 Identities@http://www.worldcat.org/identities/viaf-106228789 +http://viaf.org/viaf/106228789 CAOONL|ncf10453270 +http://viaf.org/viaf/106229724 CAOONL|ncf10455382 +http://viaf.org/viaf/106229724 Identities@http://www.worldcat.org/identities/viaf-106229724 +http://viaf.org/viaf/106231451 CAOONL|ncf10459607 +http://viaf.org/viaf/106231451 ISNI|0000000075685324 +http://viaf.org/viaf/106235015 Identities@http://www.worldcat.org/identities/viaf-106235015 +http://viaf.org/viaf/106235015 ISNI|0000000075831539 +http://viaf.org/viaf/106235015 CAOONL|ncf10457785 +http://viaf.org/viaf/106235015 B2Q|0000402417 +http://viaf.org/viaf/106236401 ISNI|0000000075904603 +http://viaf.org/viaf/106236401 Identities@http://www.worldcat.org/identities/viaf-106236401 +http://viaf.org/viaf/106236401 CAOONL|ncf10451615 +http://viaf.org/viaf/106237743 SUDOC|157856283 +http://viaf.org/viaf/106237743 Identities@http://www.worldcat.org/identities/viaf-106237743 +http://viaf.org/viaf/106237743 CAOONL|ncf10454675 +http://viaf.org/viaf/106237743 ISNI|0000000074753321 +http://viaf.org/viaf/106237743 B2Q|ncf10942102 +http://viaf.org/viaf/10624332 DNB|117471178 +http://viaf.org/viaf/10624332 DNB@http://d-nb.info/gnd/117471178 +http://viaf.org/viaf/106245311 CAOONL|ncf10463394 +http://viaf.org/viaf/106245311 Identities@http://www.worldcat.org/identities/viaf-106245311 +http://viaf.org/viaf/106248435 Identities@http://www.worldcat.org/identities/viaf-106248435 +http://viaf.org/viaf/106248435 CAOONL|ncf10461825 +http://viaf.org/viaf/106249326 Identities@http://www.worldcat.org/identities/viaf-106249326 +http://viaf.org/viaf/106249326 CAOONL|ncf10463965 +http://viaf.org/viaf/106251053 Identities@http://www.worldcat.org/identities/viaf-106251053 +http://viaf.org/viaf/106251053 CAOONL|ncf10468402 +http://viaf.org/viaf/106251053 ISNI|000000007540430X +http://viaf.org/viaf/106259622 CAOONL|ncf10469972 +http://viaf.org/viaf/106259622 SUDOC|148833101 +http://viaf.org/viaf/106259622 LC|no 96035195 +http://viaf.org/viaf/106259622 ISNI|0000000076854900 +http://viaf.org/viaf/106259622 DNB|170971325 +http://viaf.org/viaf/106259622 Identities@http://www.worldcat.org/identities/lccn-no96035195 +http://viaf.org/viaf/106259622 DNB@http://d-nb.info/gnd/170971325 +http://viaf.org/viaf/106259622 LC@no96035195 +http://viaf.org/viaf/106263906 Identities@http://www.worldcat.org/identities/viaf-106263906 +http://viaf.org/viaf/106263906 ISNI|0000000076781772 +http://viaf.org/viaf/106263906 CAOONL|ncf10461509 +http://viaf.org/viaf/10628347 DNB|117628026 +http://viaf.org/viaf/10628347 DNB@http://d-nb.info/gnd/117628026 +http://viaf.org/viaf/10628347 Identities@http://www.worldcat.org/identities/viaf-10628347 +http://viaf.org/viaf/106289025 ISNI|0000000076196688 +http://viaf.org/viaf/106289025 CAOONL|ncf10472813 +http://viaf.org/viaf/106289025 B2Q|0000440593 +http://viaf.org/viaf/106289025 Identities@http://www.worldcat.org/identities/viaf-106289025 +http://viaf.org/viaf/106293480 ISNI|0000000075978266 +http://viaf.org/viaf/106293480 CAOONL|ncf10474260 +http://viaf.org/viaf/106293480 Identities@http://www.worldcat.org/identities/viaf-106293480 +http://viaf.org/viaf/106297819 Identities@http://www.worldcat.org/identities/viaf-106297819 +http://viaf.org/viaf/106297819 ISNI|0000000076855647 +http://viaf.org/viaf/106297819 CAOONL|ncf10475472 +http://viaf.org/viaf/106301796 CAOONL|ncf10475045 +http://viaf.org/viaf/106301796 ISNI|0000000076561526 +http://viaf.org/viaf/106301796 Identities@http://www.worldcat.org/identities/viaf-106301796 +http://viaf.org/viaf/106303127 Identities@http://www.worldcat.org/identities/viaf-106303127 +http://viaf.org/viaf/106303127 CAOONL|ncf10478285 +http://viaf.org/viaf/106303127 ISNI|0000000075189136 +http://viaf.org/viaf/106310255 CAOONL|ncf10476512 +http://viaf.org/viaf/106310255 Identities@http://www.worldcat.org/identities/viaf-106310255 +http://viaf.org/viaf/106310255 B2Q|0000047649 +http://viaf.org/viaf/106311146 ISNI|0000000076416564 +http://viaf.org/viaf/106311146 Identities@http://www.worldcat.org/identities/viaf-106311146 +http://viaf.org/viaf/106311146 CAOONL|ncf10478655 +http://viaf.org/viaf/106312488 Identities@http://www.worldcat.org/identities/viaf-106312488 +http://viaf.org/viaf/106312488 CAOONL|ncf10472603 +http://viaf.org/viaf/106312488 RERO|A008730051 +http://viaf.org/viaf/106312488 ISNI|0000000075471553 +http://viaf.org/viaf/106312488 B2Q|0000441682 +http://viaf.org/viaf/1063151246513144130813 DNB@http://d-nb.info/gnd/1146540825 +http://viaf.org/viaf/1063151246513144130813 DNB|1146540825 +http://viaf.org/viaf/1063151246513144130813 Identities@http://www.worldcat.org/identities/viaf-1063151246513144130813 +http://viaf.org/viaf/106315205 CAOONL|ncf10479314 +http://viaf.org/viaf/106315205 Identities@http://www.worldcat.org/identities/viaf-106315205 +http://viaf.org/viaf/106315205 ISNI|0000000074973324 +http://viaf.org/viaf/1063154380945430290488 LIH@LNB:pZa;=B7 +http://viaf.org/viaf/1063154380945430290488 LIH|LNB:_p_Z_a_;=B7 +http://viaf.org/viaf/106315656 Identities@http://www.worldcat.org/identities/viaf-106315656 +http://viaf.org/viaf/106315656 B2Q|0000452859 +http://viaf.org/viaf/106315656 CAOONL|ncf10471090 +http://viaf.org/viaf/1063157100614072740000 WKP|Q21334310 +http://viaf.org/viaf/1063157100614072740000 SUDOC|238282694 +http://viaf.org/viaf/1063157100614072740000 Wikipedia@http://fr.wikipedia.org/wiki/Jean-François_de_La_Roque_de_Mons +http://viaf.org/viaf/106318824 CAOONL|ncf10478929 +http://viaf.org/viaf/106318824 Identities@http://www.worldcat.org/identities/viaf-106318824 +http://viaf.org/viaf/106319391 B2Q|0000442462 +http://viaf.org/viaf/106319391 CAOONL|ncf10470806 +http://viaf.org/viaf/106319391 Identities@http://www.worldcat.org/identities/viaf-106319391 +http://viaf.org/viaf/106320100 NUKAT@vtls014469642 +http://viaf.org/viaf/106320100 Identities@http://www.worldcat.org/identities/viaf-106320100 +http://viaf.org/viaf/106320100 NUKAT|n 2016083304 +http://viaf.org/viaf/106320100 CAOONL|ncf10472465 +http://viaf.org/viaf/106322289 LC|nb2016015026 +http://viaf.org/viaf/106322289 B2Q|0000445026 +http://viaf.org/viaf/106322289 CAOONL|ncf10478219 +http://viaf.org/viaf/106322289 Identities@http://www.worldcat.org/identities/lccn-nb2016015026 +http://viaf.org/viaf/106322289 ISNI|0000000075978848 +http://viaf.org/viaf/106331243 B2Q|0000446764 +http://viaf.org/viaf/106331243 Identities@http://www.worldcat.org/identities/viaf-106331243 +http://viaf.org/viaf/106331243 CAOONL|ncf10480532 +http://viaf.org/viaf/106331243 ISNI|0000000075979082 +http://viaf.org/viaf/106332585 B2Q|0000448250 +http://viaf.org/viaf/106332585 CAOONL|ncf10483846 +http://viaf.org/viaf/106332585 Identities@http://www.worldcat.org/identities/viaf-106332585 +http://viaf.org/viaf/106333520 CAOONL|ncf10486126 +http://viaf.org/viaf/106333520 ISNI|0000000075189881 +http://viaf.org/viaf/106333520 Identities@http://www.worldcat.org/identities/viaf-106333520 +http://viaf.org/viaf/106333971 CAOONL|ncf10487120 +http://viaf.org/viaf/106333971 Identities@http://www.worldcat.org/identities/viaf-106333971 +http://viaf.org/viaf/106336644 Identities@http://www.worldcat.org/identities/viaf-106336644 +http://viaf.org/viaf/106336644 CAOONL|ncf10483555 +http://viaf.org/viaf/106336644 ISNI|000000007446567X +http://viaf.org/viaf/106337986 Identities@http://www.worldcat.org/identities/viaf-106337986 +http://viaf.org/viaf/106337986 CAOONL|ncf10486488 +http://viaf.org/viaf/106337986 ISNI|0000000075047269 +http://viaf.org/viaf/106337986 B2Q|0000449950 +http://viaf.org/viaf/106338426 CAOONL|ncf10487459 +http://viaf.org/viaf/106338426 ISNI|0000000075543764 +http://viaf.org/viaf/106338426 B2Q|0000461133 +http://viaf.org/viaf/106338426 Identities@http://www.worldcat.org/identities/viaf-106338426 +http://viaf.org/viaf/106338921 ISNI|000000007453855X +http://viaf.org/viaf/106338921 Identities@http://www.worldcat.org/identities/viaf-106338921 +http://viaf.org/viaf/106338921 B2Q|0000456686 +http://viaf.org/viaf/106338921 CAOONL|ncf10488509 +http://viaf.org/viaf/106338921 SUDOC|168968614 +http://viaf.org/viaf/106341819 CAOONL|ncf10485341 +http://viaf.org/viaf/106341819 ISNI|0000000075979429 +http://viaf.org/viaf/106341819 Identities@http://www.worldcat.org/identities/viaf-106341819 +http://viaf.org/viaf/106344212 CAOONL|ncf10481374 +http://viaf.org/viaf/106344212 Identities@http://www.worldcat.org/identities/viaf-106344212 +http://viaf.org/viaf/106344663 B2Q|0000436129 +http://viaf.org/viaf/106344663 CAOONL|ncf10482354 +http://viaf.org/viaf/106344663 Identities@http://www.worldcat.org/identities/viaf-106344663 +http://viaf.org/viaf/106345059 Identities@http://www.worldcat.org/identities/viaf-106345059 +http://viaf.org/viaf/106345059 CAOONL|ncf10483080 +http://viaf.org/viaf/10635475 CAOONL|ncf12055245 +http://viaf.org/viaf/10635475 NUKAT|n 99013336 +http://viaf.org/viaf/10635475 NUKAT@vtls000359411 +http://viaf.org/viaf/10635475 LC@n98020412 +http://viaf.org/viaf/10635475 Identities@http://www.worldcat.org/identities/lccn-n98020412 +http://viaf.org/viaf/10635475 SUDOC|129801577 +http://viaf.org/viaf/10635475 BIBSYS|98066792 +http://viaf.org/viaf/10635475 ISNI|0000000114597723 +http://viaf.org/viaf/10635475 J9U|987007366613405171 +http://viaf.org/viaf/10635475 LC|n 98020412 +http://viaf.org/viaf/106360250 Identities@http://www.worldcat.org/identities/viaf-106360250 +http://viaf.org/viaf/106360250 CAOONL|ncf10488462 +http://viaf.org/viaf/106365200 ISNI|0000000074539296 +http://viaf.org/viaf/106365200 Identities@http://www.worldcat.org/identities/viaf-106365200 +http://viaf.org/viaf/106365200 CAOONL|ncf10480458 +http://viaf.org/viaf/106366498 CAOONL|ncf10483487 +http://viaf.org/viaf/106366498 B2Q|0000448436 +http://viaf.org/viaf/106374066 Identities@http://www.worldcat.org/identities/viaf-106374066 +http://viaf.org/viaf/106374066 CAOONL|ncf10482342 +http://viaf.org/viaf/106378620 Identities@http://www.worldcat.org/identities/viaf-106378620 +http://viaf.org/viaf/106378620 BNF|17768706 +http://viaf.org/viaf/106378620 ISNI|0000000075688875 +http://viaf.org/viaf/106378620 CAOONL|ncf10492764 +http://viaf.org/viaf/106378620 BNF@FRBNF177687063 +http://viaf.org/viaf/106378620 B2Q|0000454497 +http://viaf.org/viaf/106386919 Identities@http://www.worldcat.org/identities/lccn-no2019144558 +http://viaf.org/viaf/106386919 DNB|120539544X +http://viaf.org/viaf/106386919 SUDOC|15117430X +http://viaf.org/viaf/106386919 CAOONL|ncf10491803 +http://viaf.org/viaf/106386919 N6I|vtls000345535 +http://viaf.org/viaf/106386919 DNB@http://d-nb.info/gnd/120539544X +http://viaf.org/viaf/106386919 LC|no2019144558 +http://viaf.org/viaf/106386919 ISNI|000000007561629X +http://viaf.org/viaf/106387035 CAOONL|ncf10492061 +http://viaf.org/viaf/106387035 Identities@http://www.worldcat.org/identities/viaf-106387035 +http://viaf.org/viaf/106387486 Identities@http://www.worldcat.org/identities/viaf-106387486 +http://viaf.org/viaf/106387486 B2Q|0000439310 +http://viaf.org/viaf/106387486 CAOONL|ncf10493067 +http://viaf.org/viaf/106387486 ISNI|0000000075119242 +http://viaf.org/viaf/106391319 Identities@http://www.worldcat.org/identities/lccn-n86850536 +http://viaf.org/viaf/106391319 DNB@http://d-nb.info/gnd/1089477015 +http://viaf.org/viaf/106391319 LC@n86850536 +http://viaf.org/viaf/106391319 DNB|1089477015 +http://viaf.org/viaf/106391319 NLA|000049861512 +http://viaf.org/viaf/106391319 ISNI|0000000116958449 +http://viaf.org/viaf/106391319 BIBSYS|4065203 +http://viaf.org/viaf/106391319 WKP|Q2578132 +http://viaf.org/viaf/106391319 LC|n 86850536 +http://viaf.org/viaf/106391319 CAOONL|ncf10492122 +http://viaf.org/viaf/106391319 Wikipedia@http://arz.wikipedia.org/wiki/ويليام_بريدجز_آدامز +http://viaf.org/viaf/106391319 Wikipedia@http://de.wikipedia.org/wiki/William_Bridges_Adams +http://viaf.org/viaf/106391319 Wikipedia@http://en.wikipedia.org/wiki/William_Bridges_Adams +http://viaf.org/viaf/106391319 Wikipedia@http://es.wikipedia.org/wiki/William_Bridges_Adams +http://viaf.org/viaf/106391319 Wikipedia@http://fr.wikipedia.org/wiki/William_Bridges_Adams +http://viaf.org/viaf/106391319 Wikipedia@http://mg.wikipedia.org/wiki/William_Bridges_Adams +http://viaf.org/viaf/106392381 CAOONL|ncf10494136 +http://viaf.org/viaf/106392381 ISNI|0000000076712152 +http://viaf.org/viaf/106392381 Identities@http://www.worldcat.org/identities/viaf-106392381 +http://viaf.org/viaf/106396396 CAOONL|ncf10493326 +http://viaf.org/viaf/106396396 Identities@http://www.worldcat.org/identities/viaf-106396396 +http://viaf.org/viaf/106396440 CAOONL|ncf10493453 +http://viaf.org/viaf/106396440 ISNI|0000000075616548 +http://viaf.org/viaf/106396440 Identities@http://www.worldcat.org/identities/viaf-106396440 +http://viaf.org/viaf/106400246 ISNI|0000000076125521 +http://viaf.org/viaf/106400246 Identities@http://www.worldcat.org/identities/viaf-106400246 +http://viaf.org/viaf/106400246 CAOONL|ncf10492251 +http://viaf.org/viaf/106408815 B2Q|0000447491 +http://viaf.org/viaf/106408815 CAOONL|ncf10491326 +http://viaf.org/viaf/106408815 Identities@http://www.worldcat.org/identities/viaf-106408815 +http://viaf.org/viaf/106409382 Identities@http://www.worldcat.org/identities/lccn-no2004008596 +http://viaf.org/viaf/106409382 CAOONL|ncf10492587 +http://viaf.org/viaf/106409382 NTA|292068921 +http://viaf.org/viaf/106409382 ISNI|0000000079012020 +http://viaf.org/viaf/106409382 LC|no2004008596 +http://viaf.org/viaf/106409382 SUDOC|089443675 +http://viaf.org/viaf/106409382 NUKAT@vtls019264593 +http://viaf.org/viaf/106409382 BNF|16561034 +http://viaf.org/viaf/106409382 BNF@http://catalogue.bnf.fr/ark:/12148/cb16561034n +http://viaf.org/viaf/106409382 B2Q|0000938069 +http://viaf.org/viaf/106409382 NUKAT|n 2020004098 +http://viaf.org/viaf/1064152502998210800002 XR|VIAFWORK1023320282 +http://viaf.org/viaf/1064159248188404870005 RERO|A003293437 +http://viaf.org/viaf/1064159248245904870002 RERO|A023408053 +http://viaf.org/viaf/106417725 CAOONL|ncf10491998 +http://viaf.org/viaf/106417725 Identities@http://www.worldcat.org/identities/viaf-106417725 +http://viaf.org/viaf/106419507 CAOONL|ncf10495507 +http://viaf.org/viaf/106419507 ISNI|0000000075835986 +http://viaf.org/viaf/106419507 Identities@http://www.worldcat.org/identities/viaf-106419507 +http://viaf.org/viaf/106419958 CAOONL|ncf10496547 +http://viaf.org/viaf/106423016 WKP|Q21229849 +http://viaf.org/viaf/106423016 B2Q|0000484268 +http://viaf.org/viaf/106423016 Identities@http://www.worldcat.org/identities/viaf-106423016 +http://viaf.org/viaf/106423016 Wikipedia@http://en.wikipedia.org/wiki/Kevin_Sonmor +http://viaf.org/viaf/106423016 CAOONL|ncf10493010 +http://viaf.org/viaf/106423016 ISNI|0000000076785589 +http://viaf.org/viaf/106427977 Identities@http://www.worldcat.org/identities/viaf-106427977 +http://viaf.org/viaf/106427977 CAOONL|ncf10503393 +http://viaf.org/viaf/106427977 ISNI|000000007649196X +http://viaf.org/viaf/10643043 SZ@http://d-nb.info/gnd/118842218 +http://viaf.org/viaf/10643043 WKP|Q94853122 +http://viaf.org/viaf/10643043 BAV|495_115294 +http://viaf.org/viaf/10643043 DNB|118842218 +http://viaf.org/viaf/10643043 SZ|118842218 +http://viaf.org/viaf/10643043 BAV@495/115294 +http://viaf.org/viaf/10643043 DNB@http://d-nb.info/gnd/118842218 +http://viaf.org/viaf/10643043 Identities@http://www.worldcat.org/identities/viaf-10643043 +http://viaf.org/viaf/106432377 Identities@http://www.worldcat.org/identities/viaf-106432377 +http://viaf.org/viaf/106432377 CAOONL|ncf10503628 +http://viaf.org/viaf/10643494 SZ@http://d-nb.info/gnd/118865900 +http://viaf.org/viaf/10643494 BNF|12479320 +http://viaf.org/viaf/10643494 DNB|118865900 +http://viaf.org/viaf/10643494 ISNI|0000000120208376 +http://viaf.org/viaf/10643494 LC|n 86138022 +http://viaf.org/viaf/10643494 LNB|LNC10-000158827 +http://viaf.org/viaf/10643494 NKC|pna2011630364 +http://viaf.org/viaf/10643494 NTA|072948086 +http://viaf.org/viaf/10643494 NUKAT|n 2004074667 +http://viaf.org/viaf/10643494 WKP|Q61175 +http://viaf.org/viaf/10643494 SUDOC|085647640 +http://viaf.org/viaf/10643494 BIBSYS|90273444 +http://viaf.org/viaf/10643494 NII|DA04503590 +http://viaf.org/viaf/10643494 DE663|pe97000 +http://viaf.org/viaf/10643494 LIH|LNB:V-371431;=BF +http://viaf.org/viaf/10643494 PLWABN|9810614500505606 +http://viaf.org/viaf/10643494 J9U|987007264446805171 +http://viaf.org/viaf/10643494 NLA|000066170747 +http://viaf.org/viaf/10643494 SZ|118865900 +http://viaf.org/viaf/10643494 RERO|A003516733 +http://viaf.org/viaf/10643494 CAOONL|ncf10733919 +http://viaf.org/viaf/10643494 Wikipedia@http://ar.wikipedia.org/wiki/هرمان_ليفي +http://viaf.org/viaf/10643494 Wikipedia@http://arz.wikipedia.org/wiki/هرمان_ليفى +http://viaf.org/viaf/10643494 Wikipedia@http://ca.wikipedia.org/wiki/Hermann_Levi +http://viaf.org/viaf/10643494 Wikipedia@http://cs.wikipedia.org/wiki/Hermann_Levi +http://viaf.org/viaf/10643494 Wikipedia@http://de.wikipedia.org/wiki/Hermann_Levi +http://viaf.org/viaf/10643494 Wikipedia@http://en.wikipedia.org/wiki/Hermann_Levi +http://viaf.org/viaf/10643494 Wikipedia@http://eo.wikipedia.org/wiki/Hermann_Levi +http://viaf.org/viaf/10643494 Wikipedia@http://es.wikipedia.org/wiki/Hermann_Levi +http://viaf.org/viaf/10643494 Wikipedia@http://fr.wikipedia.org/wiki/Hermann_Levi +http://viaf.org/viaf/10643494 Wikipedia@http://he.wikipedia.org/wiki/הרמן_לוי +http://viaf.org/viaf/10643494 Wikipedia@http://it.wikipedia.org/wiki/Hermann_Levi +http://viaf.org/viaf/10643494 Wikipedia@http://ja.wikipedia.org/wiki/ヘルマン・レーヴィ +http://viaf.org/viaf/10643494 Wikipedia@http://no.wikipedia.org/wiki/Hermann_Levi +http://viaf.org/viaf/10643494 Wikipedia@http://pt.wikipedia.org/wiki/Hermann_Levi +http://viaf.org/viaf/10643494 Wikipedia@http://ru.wikipedia.org/wiki/Леви,_Герман +http://viaf.org/viaf/10643494 Wikipedia@http://simple.wikipedia.org/wiki/Hermann_Levi +http://viaf.org/viaf/10643494 Wikipedia@http://sv.wikipedia.org/wiki/Hermann_Levi +http://viaf.org/viaf/10643494 Identities@http://www.worldcat.org/identities/lccn-n86138022 +http://viaf.org/viaf/10643494 BNF@FRBNF124793201 +http://viaf.org/viaf/10643494 DNB@http://d-nb.info/gnd/118865900 +http://viaf.org/viaf/10643494 LC@n86138022 +http://viaf.org/viaf/10643494 NUKAT@vtls001941789 +http://viaf.org/viaf/10643494 LIH@LNB:V*371431;=BF +http://viaf.org/viaf/106437327 Identities@http://www.worldcat.org/identities/viaf-106437327 +http://viaf.org/viaf/106437327 ISNI|0000000075981609 +http://viaf.org/viaf/106437327 CAOONL|ncf10503965 +http://viaf.org/viaf/106443113 Identities@http://www.worldcat.org/identities/viaf-106443113 +http://viaf.org/viaf/106443113 CAOONL|ncf10506747 +http://viaf.org/viaf/10644385 BLBNB|000314238 +http://viaf.org/viaf/10644385 DNB|118908642 +http://viaf.org/viaf/10644385 Identities@http://www.worldcat.org/identities/viaf-10644385 +http://viaf.org/viaf/10644385 DNB@http://d-nb.info/gnd/118908642 +http://viaf.org/viaf/106444950 Identities@http://www.worldcat.org/identities/viaf-106444950 +http://viaf.org/viaf/106444950 CAOONL|ncf10501312 +http://viaf.org/viaf/106444950 ISNI|0000000074394138 +http://viaf.org/viaf/106451583 CAOONL|ncf10505626 +http://viaf.org/viaf/106451583 ISNI|0000000074831668 +http://viaf.org/viaf/10646167 DNB|118995316 +http://viaf.org/viaf/10646167 DNB@http://d-nb.info/gnd/118995316 +http://viaf.org/viaf/10646167 Identities@http://www.worldcat.org/identities/viaf-10646167 +http://viaf.org/viaf/106463210 CAOONL|ncf10501921 +http://viaf.org/viaf/106463210 ISNI|0000000074904265 +http://viaf.org/viaf/106463210 Identities@http://www.worldcat.org/identities/viaf-106463210 +http://viaf.org/viaf/106463661 CAOONL|ncf10502728 +http://viaf.org/viaf/1064653 ISNI|0000000109476564 +http://viaf.org/viaf/1064653 LC|n 2004095557 +http://viaf.org/viaf/1064653 DNB|128438185 +http://viaf.org/viaf/1064653 NUKAT|n 2003087675 +http://viaf.org/viaf/1064653 LC@n2004095557 +http://viaf.org/viaf/1064653 NUKAT@vtls001780711 +http://viaf.org/viaf/1064653 Identities@http://www.worldcat.org/identities/lccn-n2004095557 +http://viaf.org/viaf/1064653 DNB@http://d-nb.info/gnd/128438185 +http://viaf.org/viaf/106472076 DNB|143585541 +http://viaf.org/viaf/106472076 CAOONL|ncf10502231 +http://viaf.org/viaf/106472076 BNF@http://catalogue.bnf.fr/ark:/12148/cb16580876z +http://viaf.org/viaf/106472076 Identities@http://www.worldcat.org/identities/viaf-106472076 +http://viaf.org/viaf/106472076 DNB@http://d-nb.info/gnd/143585541 +http://viaf.org/viaf/106472076 BNF|16580876 +http://viaf.org/viaf/106478863 Identities@http://www.worldcat.org/identities/viaf-106478863 +http://viaf.org/viaf/106478863 CAOONL|ncf10517643 +http://viaf.org/viaf/106478863 ISNI|0000000074687301 +http://viaf.org/viaf/106478863 B2Q|0000808573 +http://viaf.org/viaf/106480419 Identities@http://www.worldcat.org/identities/viaf-106480419 +http://viaf.org/viaf/106480419 CAOONL|ncf10511605 +http://viaf.org/viaf/106486431 Identities@http://www.worldcat.org/identities/lccn-n2004120923 +http://viaf.org/viaf/106486431 CAOONL|ncf10515319 +http://viaf.org/viaf/106486431 ISNI|0000000079012549 +http://viaf.org/viaf/106486431 LC@n2004120923 +http://viaf.org/viaf/106486431 LC|n 2004120923 +http://viaf.org/viaf/106487278 Identities@http://www.worldcat.org/identities/viaf-106487278 +http://viaf.org/viaf/106487278 CAOONL|ncf10517299 +http://viaf.org/viaf/106492173 Identities@http://www.worldcat.org/identities/viaf-106492173 +http://viaf.org/viaf/106492173 CAOONL|ncf10509449 +http://viaf.org/viaf/106496232 RERO|A018610634 +http://viaf.org/viaf/106496232 SUDOC|153446544 +http://viaf.org/viaf/106496232 B2Q|0000923409 +http://viaf.org/viaf/106496232 Identities@http://www.worldcat.org/identities/lccn-no2003037534 +http://viaf.org/viaf/106496232 ISNI|0000000076055121 +http://viaf.org/viaf/106496232 LC|no2003037534 +http://viaf.org/viaf/106496232 CAOONL|ncf10518918 +http://viaf.org/viaf/1065145857021422921149 Identities@http://www.worldcat.org/identities/viaf-1065145857021422921149 +http://viaf.org/viaf/1065145857021422921149 DNB|1087157226 +http://viaf.org/viaf/1065145857021422921149 DNB@http://d-nb.info/gnd/1087157226 +http://viaf.org/viaf/1065145858112123022189 DNB|1085806677 +http://viaf.org/viaf/1065145858112123022189 DNB@http://d-nb.info/gnd/1085806677 +http://viaf.org/viaf/1065154198347920230009 XR|VIAFWORK1038549379 +http://viaf.org/viaf/1065159234269103371270 Identities@http://www.worldcat.org/identities/viaf-1065159234269103371270 +http://viaf.org/viaf/1065159234269103371270 RERO|A018351276 +http://viaf.org/viaf/1065159474072827660481 CAOONL|ncf11314396 +http://viaf.org/viaf/1065159478181927990007 CAOONL|ncf11842277 +http://viaf.org/viaf/1065159639251943290003 XR|VIAFWORK1164725453 +http://viaf.org/viaf/106524645 CAOONL|ncf10527488 +http://viaf.org/viaf/106524645 Identities@http://www.worldcat.org/identities/viaf-106524645 +http://viaf.org/viaf/106524645 B2Q|0000475345 +http://viaf.org/viaf/10652728 ISNI|0000000102641643 +http://viaf.org/viaf/10652728 NTA|141923342 +http://viaf.org/viaf/106535832 ISNI|0000000075692831 +http://viaf.org/viaf/106535832 Identities@http://www.worldcat.org/identities/viaf-106535832 +http://viaf.org/viaf/106535832 CAOONL|ncf10523139 +http://viaf.org/viaf/106535832 B2Q|0000456981 +http://viaf.org/viaf/106550484 Identities@http://www.worldcat.org/identities/viaf-106550484 +http://viaf.org/viaf/106550484 CAOONL|ncf10527473 +http://viaf.org/viaf/106550484 ISNI|0000000074978918 +http://viaf.org/viaf/106550484 BLBNB|000449154 +http://viaf.org/viaf/106554543 CAOONL|ncf10527105 +http://viaf.org/viaf/106554543 Identities@http://www.worldcat.org/identities/viaf-106554543 +http://viaf.org/viaf/106554543 B2Q|0000488445 +http://viaf.org/viaf/106566577 B2Q|0000489494 +http://viaf.org/viaf/106566577 Identities@http://www.worldcat.org/identities/viaf-106566577 +http://viaf.org/viaf/106566577 CAOONL|ncf10524527 +http://viaf.org/viaf/106570086 CAOONL|ncf10531926 +http://viaf.org/viaf/106570086 ISNI|000000007688363X +http://viaf.org/viaf/106570086 Identities@http://www.worldcat.org/identities/viaf-106570086 +http://viaf.org/viaf/106579997 ISNI|0000000074543922 +http://viaf.org/viaf/106579997 CAOONL|ncf10535734 +http://viaf.org/viaf/106579997 Identities@http://www.worldcat.org/identities/viaf-106579997 +http://viaf.org/viaf/106584892 SUDOC|123240638 +http://viaf.org/viaf/106584892 Identities@http://www.worldcat.org/identities/viaf-106584892 +http://viaf.org/viaf/106584892 ISNI|0000000076568074 +http://viaf.org/viaf/10658696 BNF|14225014 +http://viaf.org/viaf/10658696 Wikipedia@http://ca.wikipedia.org/wiki/Piero_Schiavazzi +http://viaf.org/viaf/10658696 DNB@http://d-nb.info/gnd/119552914 +http://viaf.org/viaf/10658696 BAV@495/280644 +http://viaf.org/viaf/10658696 DNB|119552914 +http://viaf.org/viaf/10658696 LC|n 83172196 +http://viaf.org/viaf/10658696 ISNI|0000000061454832 +http://viaf.org/viaf/10658696 WKP|Q3903360 +http://viaf.org/viaf/10658696 Identities@http://www.worldcat.org/identities/lccn-n83172196 +http://viaf.org/viaf/10658696 PLWABN|9810635030805606 +http://viaf.org/viaf/10658696 Wikipedia@http://it.wikipedia.org/wiki/Piero_Schiavazzi +http://viaf.org/viaf/10658696 BAV|495_280644 +http://viaf.org/viaf/10658696 LC@n83172196 +http://viaf.org/viaf/10658696 BNF@http://catalogue.bnf.fr/ark:/12148/cb14225014c +http://viaf.org/viaf/106589347 CAOONL|ncf10537732 +http://viaf.org/viaf/106590183 CAOONL|ncf10529586 +http://viaf.org/viaf/106590183 ISNI|0000000074398040 +http://viaf.org/viaf/106590183 Identities@http://www.worldcat.org/identities/viaf-106590183 +http://viaf.org/viaf/106598752 CAOONL|ncf10530067 +http://viaf.org/viaf/106598752 Identities@http://www.worldcat.org/identities/viaf-106598752 +http://viaf.org/viaf/106598752 ISNI|0000000075477752 +http://viaf.org/viaf/106603449 CAOONL|ncf10531096 +http://viaf.org/viaf/106603449 ISNI|0000000075268029 +http://viaf.org/viaf/106603449 Identities@http://www.worldcat.org/identities/viaf-106603449 +http://viaf.org/viaf/106611017 Identities@http://www.worldcat.org/identities/viaf-106611017 +http://viaf.org/viaf/106611017 CAOONL|ncf10529262 +http://viaf.org/viaf/1066157527422527300000 BNC|a19817071 +http://viaf.org/viaf/1066157527422527300000 BNC@.a19817071 +http://viaf.org/viaf/1066159234275003371303 RERO|A020053143 +http://viaf.org/viaf/1066159234275003371303 Identities@http://www.worldcat.org/identities/viaf-1066159234275003371303 +http://viaf.org/viaf/1066159234416103371581 RERO|A018051739 +http://viaf.org/viaf/1066159474066127660976 CAOONL|ncf12040721 +http://viaf.org/viaf/106621764 SUDOC|167901842 +http://viaf.org/viaf/106621764 B2Q|0001045272 +http://viaf.org/viaf/106621764 ISNI|0000000075054282 +http://viaf.org/viaf/106621764 J9U|987007404031805171 +http://viaf.org/viaf/106621764 LC|no2011175348 +http://viaf.org/viaf/106621764 NII|DA17558835 +http://viaf.org/viaf/106621764 NSK|000481607 +http://viaf.org/viaf/106621764 CAOONL|ncf10544654 +http://viaf.org/viaf/106621764 NKC|mub2013769722 +http://viaf.org/viaf/106621764 Identities@http://www.worldcat.org/identities/lccn-no2011175348 +http://viaf.org/viaf/106622655 CAOONL|ncf10546257 +http://viaf.org/viaf/106622655 ISNI|0000000076351393 +http://viaf.org/viaf/106622655 Identities@http://www.worldcat.org/identities/viaf-106622655 +http://viaf.org/viaf/106625823 ISNI|0000000074619413 +http://viaf.org/viaf/106625823 Identities@http://www.worldcat.org/identities/viaf-106625823 +http://viaf.org/viaf/106625823 CAOONL|ncf10543737 +http://viaf.org/viaf/106635624 CAOONL|ncf10546832 +http://viaf.org/viaf/106641366 Identities@http://www.worldcat.org/identities/viaf-106641366 +http://viaf.org/viaf/106641366 ISNI|000000007679010X +http://viaf.org/viaf/106641366 CAOONL|ncf10540423 +http://viaf.org/viaf/106642301 CAOONL|ncf10542497 +http://viaf.org/viaf/106644534 NTA|339588349 +http://viaf.org/viaf/106644534 ISNI|0000000075341142 +http://viaf.org/viaf/106644534 CAOONL|ncf10547686 +http://viaf.org/viaf/106644534 Identities@http://www.worldcat.org/identities/viaf-106644534 +http://viaf.org/viaf/106647207 CAOONL|ncf10543658 +http://viaf.org/viaf/106647207 ISNI|0000000074399764 +http://viaf.org/viaf/106647207 Identities@http://www.worldcat.org/identities/viaf-106647207 +http://viaf.org/viaf/106647658 Identities@http://www.worldcat.org/identities/viaf-106647658 +http://viaf.org/viaf/106647658 ISNI|000000007576898X +http://viaf.org/viaf/106647658 CAOONL|ncf10544636 +http://viaf.org/viaf/10664806 DNB@http://d-nb.info/gnd/11982387X +http://viaf.org/viaf/10664806 DNB|11982387X +http://viaf.org/viaf/10664806 Identities@http://www.worldcat.org/identities/viaf-10664806 +http://viaf.org/viaf/106655677 CAOONL|ncf10542499 +http://viaf.org/viaf/106655677 Identities@http://www.worldcat.org/identities/viaf-106655677 +http://viaf.org/viaf/106655677 ISNI|0000000076717703 +http://viaf.org/viaf/106657954 Identities@http://www.worldcat.org/identities/viaf-106657954 +http://viaf.org/viaf/106657954 CAOONL|ncf10548088 +http://viaf.org/viaf/106660121 CAOONL|ncf10542901 +http://viaf.org/viaf/106660121 Identities@http://www.worldcat.org/identities/viaf-106660121 +http://viaf.org/viaf/106660121 ISNI|0000000074691394 +http://viaf.org/viaf/106662354 CAOONL|ncf10547832 +http://viaf.org/viaf/106662354 ISNI|0000000075695805 +http://viaf.org/viaf/106662354 Identities@http://www.worldcat.org/identities/viaf-106662354 +http://viaf.org/viaf/106664136 CAOONL|ncf10552024 +http://viaf.org/viaf/106664136 Identities@http://www.worldcat.org/identities/viaf-106664136 +http://viaf.org/viaf/106664136 ISNI|0000000074620289 +http://viaf.org/viaf/106667304 ISNI|0000000076205513 +http://viaf.org/viaf/106667304 CAOONL|ncf10549372 +http://viaf.org/viaf/106667304 Identities@http://www.worldcat.org/identities/viaf-106667304 +http://viaf.org/viaf/106667755 ISNI|0000000074545960 +http://viaf.org/viaf/106667755 Identities@http://www.worldcat.org/identities/viaf-106667755 +http://viaf.org/viaf/106667755 CAOONL|ncf10550501 +http://viaf.org/viaf/106669988 CAOONL|ncf10555356 +http://viaf.org/viaf/106673046 CAOONL|ncf10552617 +http://viaf.org/viaf/106673046 Identities@http://www.worldcat.org/identities/viaf-106673046 +http://viaf.org/viaf/106673046 B2Q|0001124399 +http://viaf.org/viaf/106673046 ISNI|0000000074764207 +http://viaf.org/viaf/106675279 ISNI|0000000076884210 +http://viaf.org/viaf/106675279 CAOONL|ncf10558074 +http://viaf.org/viaf/106675279 Identities@http://www.worldcat.org/identities/viaf-106675279 +http://viaf.org/viaf/106683793 B2Q|0000679618 +http://viaf.org/viaf/106683793 Identities@http://www.worldcat.org/identities/viaf-106683793 +http://viaf.org/viaf/106683793 CAOONL|ncf10548696 +http://viaf.org/viaf/106684233 Identities@http://www.worldcat.org/identities/lccn-n2014016175 +http://viaf.org/viaf/106684233 LC|n 2014016175 +http://viaf.org/viaf/106684233 ISNI|0000000074546437 +http://viaf.org/viaf/106684233 LC@n2014016175 +http://viaf.org/viaf/106684233 CAOONL|ncf10549817 +http://viaf.org/viaf/106688248 CAOONL|ncf10550007 +http://viaf.org/viaf/106688248 ISNI|0000000075987509 +http://viaf.org/viaf/106688248 Identities@http://www.worldcat.org/identities/viaf-106688248 +http://viaf.org/viaf/106693143 B2Q|0000776624 +http://viaf.org/viaf/106693143 CAOONL|ncf10551409 +http://viaf.org/viaf/106693143 Identities@http://www.worldcat.org/identities/viaf-106693143 +http://viaf.org/viaf/106699930 Wikipedia@http://en.wikipedia.org/wiki/Dorothy_Chang +http://viaf.org/viaf/106699930 CAOONL|ncf10557382 +http://viaf.org/viaf/106699930 Identities@http://www.worldcat.org/identities/lccn-no2001016444 +http://viaf.org/viaf/106699930 ISNI|0000000079014034 +http://viaf.org/viaf/106699930 LC|no2001016444 +http://viaf.org/viaf/106699930 WKP|Q63191323 +http://viaf.org/viaf/106706904 CAOONL|ncf10552994 +http://viaf.org/viaf/106706904 B2Q|0000752359 +http://viaf.org/viaf/106706904 Identities@http://www.worldcat.org/identities/viaf-106706904 +http://viaf.org/viaf/106708362 ISNI|0000000075843177 +http://viaf.org/viaf/106708362 CAOONL|ncf10556165 +http://viaf.org/viaf/106708362 Identities@http://www.worldcat.org/identities/viaf-106708362 +http://viaf.org/viaf/106714923 Identities@http://www.worldcat.org/identities/viaf-106714923 +http://viaf.org/viaf/106714923 ISNI|0000000076206495 +http://viaf.org/viaf/106714923 CAOONL|ncf10564372 +http://viaf.org/viaf/1067159233906603370042 RERO|A012506877 +http://viaf.org/viaf/1067159478205827990003 CAOONL|ncf11044205 +http://viaf.org/viaf/106719829 Identities@http://www.worldcat.org/identities/viaf-106719829 +http://viaf.org/viaf/106719829 CAOONL|ncf10561855 +http://viaf.org/viaf/106719829 B2Q|0000786690 +http://viaf.org/viaf/106722447 B2Q|0000964519 +http://viaf.org/viaf/106722447 LC|no2009052839 +http://viaf.org/viaf/106722447 CAOONL|ncf10561445 +http://viaf.org/viaf/106722447 ISNI|0000000079014149 +http://viaf.org/viaf/106722447 Identities@http://www.worldcat.org/identities/lccn-no2009052839 +http://viaf.org/viaf/106723833 CAOONL|ncf10564668 +http://viaf.org/viaf/106723833 ISNI|0000000074475149 +http://viaf.org/viaf/106723833 Identities@http://www.worldcat.org/identities/viaf-106723833 +http://viaf.org/viaf/106725291 Identities@http://www.worldcat.org/identities/viaf-106725291 +http://viaf.org/viaf/106725291 B2Q|0000318100 +http://viaf.org/viaf/106725291 CAOONL|ncf10561533 +http://viaf.org/viaf/106726506 Identities@http://www.worldcat.org/identities/viaf-106726506 +http://viaf.org/viaf/106726506 CAOONL|ncf10564204 +http://viaf.org/viaf/106726957 ISNI|0000000076645623 +http://viaf.org/viaf/106726957 CAOONL|ncf10558338 +http://viaf.org/viaf/106726957 Identities@http://www.worldcat.org/identities/viaf-106726957 +http://viaf.org/viaf/106734525 CAOONL|ncf10562716 +http://viaf.org/viaf/106734525 ISNI|0000000076719274 +http://viaf.org/viaf/106734525 Identities@http://www.worldcat.org/identities/viaf-106734525 +http://viaf.org/viaf/106734525 B2Q|0000806408 +http://viaf.org/viaf/106735092 CAOONL|ncf10563970 +http://viaf.org/viaf/106735092 ISNI|000000007577081X +http://viaf.org/viaf/106735092 Identities@http://www.worldcat.org/identities/viaf-106735092 +http://viaf.org/viaf/10673716 DNB|120284952 +http://viaf.org/viaf/10673716 Identities@http://www.worldcat.org/identities/viaf-10673716 +http://viaf.org/viaf/10673716 DNB@http://d-nb.info/gnd/120284952 +http://viaf.org/viaf/10673716 ISNI|0000000010948621 +http://viaf.org/viaf/10673716 PLWABN|9810640246005606 +http://viaf.org/viaf/10675174 DNB|120343525 +http://viaf.org/viaf/10675174 DNB@http://d-nb.info/gnd/120343525 +http://viaf.org/viaf/106753236 B2Q|0000892169 +http://viaf.org/viaf/106753236 CAOONL|ncf10588612 +http://viaf.org/viaf/106753236 Identities@http://www.worldcat.org/identities/viaf-106753236 +http://viaf.org/viaf/106753236 ISNI|0000000076792850 +http://viaf.org/viaf/106761750 Identities@http://www.worldcat.org/identities/lccn-n2009217176 +http://viaf.org/viaf/106761750 LC|n 2009217176 +http://viaf.org/viaf/106761750 LC@n2009217176 +http://viaf.org/viaf/106764423 J9U|987007315567505171 +http://viaf.org/viaf/106764423 DNB@http://d-nb.info/gnd/1087926823 +http://viaf.org/viaf/106764423 NUKAT|n 2012250165 +http://viaf.org/viaf/106764423 Identities@http://www.worldcat.org/identities/lccn-n2010000155 +http://viaf.org/viaf/106764423 LC@n2010000155 +http://viaf.org/viaf/106764423 NUKAT@vtls008680646 +http://viaf.org/viaf/106764423 LC|n 2010000155 +http://viaf.org/viaf/106764423 DNB|1087926823 +http://viaf.org/viaf/106764423 ISNI|0000000074766392 +http://viaf.org/viaf/106764874 LC@n2010000230 +http://viaf.org/viaf/106764874 Identities@http://www.worldcat.org/identities/lccn-n2010000230 +http://viaf.org/viaf/106764874 LC|n 2010000230 +http://viaf.org/viaf/106764874 ISNI|0000000074476205 +http://viaf.org/viaf/106770660 Identities@http://www.worldcat.org/identities/lccn-n2010001156 +http://viaf.org/viaf/106770660 ISNI|0000000075128392 +http://viaf.org/viaf/106770660 J9U|987007317815305171 +http://viaf.org/viaf/106770660 LC|n 2010001156 +http://viaf.org/viaf/106770660 LC@n2010001156 +http://viaf.org/viaf/106773784 BNF@http://catalogue.bnf.fr/ark:/12148/cb16270035f +http://viaf.org/viaf/106773784 WKP|Q79230228 +http://viaf.org/viaf/106773784 J9U|987007317812705171 +http://viaf.org/viaf/106773784 CAOONL|ncf11858832 +http://viaf.org/viaf/106773784 Identities@http://www.worldcat.org/identities/lccn-n2010001667 +http://viaf.org/viaf/106773784 LC@n2010001667 +http://viaf.org/viaf/106773784 DNB@http://d-nb.info/gnd/1077501706 +http://viaf.org/viaf/106773784 NUKAT@vtls009328661 +http://viaf.org/viaf/106773784 BIBSYS|12004394 +http://viaf.org/viaf/106773784 BNF|16270035 +http://viaf.org/viaf/106773784 NUKAT|n 2012276498 +http://viaf.org/viaf/106773784 DNB|1077501706 +http://viaf.org/viaf/106773784 LC|n 2010001667 +http://viaf.org/viaf/106773784 ISNI|0000000118807679 +http://viaf.org/viaf/106787644 NUKAT@vtls004090785 +http://viaf.org/viaf/106787644 NII|DA06424429 +http://viaf.org/viaf/106787644 LC@n2010003968 +http://viaf.org/viaf/106787644 NUKAT|n 2006127413 +http://viaf.org/viaf/106787644 J9U|987007449464805171 +http://viaf.org/viaf/106787644 RERO|A017784112 +http://viaf.org/viaf/106787644 LIH@LNB:V*62861;=BJ +http://viaf.org/viaf/106787644 Identities@http://www.worldcat.org/identities/lccn-n2010003968 +http://viaf.org/viaf/106787644 LIH|LNB:V-62861;=BJ +http://viaf.org/viaf/106787644 LC|n 2010003968 +http://viaf.org/viaf/106787644 ISNI|000000037366699X +http://viaf.org/viaf/106796103 Identities@http://www.worldcat.org/identities/lccn-n2010005368 +http://viaf.org/viaf/106796103 LC|n 2010005368 +http://viaf.org/viaf/106796103 ISNI|0000000075416220 +http://viaf.org/viaf/106796103 LC@n2010005368 +http://viaf.org/viaf/106796103 KRNLK|KAC200301057 +http://viaf.org/viaf/106797940 LC|n 2010005644 +http://viaf.org/viaf/106797940 LC@n2010005644 +http://viaf.org/viaf/106797940 ISNI|0000000074911852 +http://viaf.org/viaf/106797940 ICCU|TO0V511179 +http://viaf.org/viaf/106797940 Identities@http://www.worldcat.org/identities/lccn-n2010005644 +http://viaf.org/viaf/106797940 ICCU@IT\ICCU\TO0V\511179 +http://viaf.org/viaf/106799678 LC|n 2010005938 +http://viaf.org/viaf/106799678 Identities@http://www.worldcat.org/identities/lccn-n2010005938 +http://viaf.org/viaf/106799678 LC@n2010005938 +http://viaf.org/viaf/106800855 LC@n2010006109 +http://viaf.org/viaf/106800855 DNB@http://d-nb.info/gnd/1019500344 +http://viaf.org/viaf/106800855 Identities@http://www.worldcat.org/identities/lccn-n2010006109 +http://viaf.org/viaf/106800855 ISNI|000000007620836X +http://viaf.org/viaf/106800855 DNB|1019500344 +http://viaf.org/viaf/106800855 SUDOC|155852639 +http://viaf.org/viaf/106800855 RERO|A020228645 +http://viaf.org/viaf/106800855 NUKAT|n 2013181329 +http://viaf.org/viaf/106800855 NSK|000575812 +http://viaf.org/viaf/106800855 LC|n 2010006109 +http://viaf.org/viaf/106800855 J9U|987007317798505171 +http://viaf.org/viaf/106800855 NUKAT@vtls009438096 +http://viaf.org/viaf/106809991 ISNI|0000000075129205 +http://viaf.org/viaf/106809991 LC|n 2010201062 +http://viaf.org/viaf/106809991 LC@n2010201062 +http://viaf.org/viaf/106809991 Identities@http://www.worldcat.org/identities/lccn-n2010201062 +http://viaf.org/viaf/106810205 LC@n2010201084 +http://viaf.org/viaf/106810205 Identities@http://www.worldcat.org/identities/lccn-n2010201084 +http://viaf.org/viaf/106810205 ISNI|0000000075845594 +http://viaf.org/viaf/106810205 LC|n 2010201084 +http://viaf.org/viaf/106810205 BLBNB|000492857 +http://viaf.org/viaf/106810656 LC|n 2010201136 +http://viaf.org/viaf/106810656 Identities@http://www.worldcat.org/identities/lccn-n2010201136 +http://viaf.org/viaf/106810656 LC@n2010201136 +http://viaf.org/viaf/106810656 ISNI|0000000076794012 +http://viaf.org/viaf/106813824 ISNI|0000000075990548 +http://viaf.org/viaf/106813824 LC|nb2009029888 +http://viaf.org/viaf/1068145857019522920725 Identities@http://www.worldcat.org/identities/viaf-1068145857019522920725 +http://viaf.org/viaf/1068145857019522920725 NDL|001225928 +http://viaf.org/viaf/1068145857019522920725 NII|DA15293478 +http://viaf.org/viaf/1068145857883323020706 BNCHL@BNC10000000000000000269200 +http://viaf.org/viaf/1068145857883323020706 BNCHL|10000000000000000269200 +http://viaf.org/viaf/106814715 DNB|1059925583 +http://viaf.org/viaf/106814715 SZ|1059925583 +http://viaf.org/viaf/106814715 RERO|A026863247 +http://viaf.org/viaf/106814715 BIBSYS|15042834 +http://viaf.org/viaf/106814715 LC|nb2010000098 +http://viaf.org/viaf/106814715 ISNI|0000000076884974 +http://viaf.org/viaf/106814715 SZ@http://d-nb.info/gnd/1059925583 +http://viaf.org/viaf/106814715 Identities@http://www.worldcat.org/identities/lccn-nb2010000098 +http://viaf.org/viaf/106814715 DNB@http://d-nb.info/gnd/1059925583 +http://viaf.org/viaf/106814715 SUDOC|16583868X +http://viaf.org/viaf/1068159234548603371931 Identities@http://www.worldcat.org/identities/viaf-1068159234548603371931 +http://viaf.org/viaf/1068159234548603371931 CAOONL|ncf11223393 +http://viaf.org/viaf/1068159234548603371931 RERO|A023227823 +http://viaf.org/viaf/106819297 LC|nb2010000762 +http://viaf.org/viaf/106819297 Identities@http://www.worldcat.org/identities/lccn-nb2010000762 +http://viaf.org/viaf/106830753 Identities@http://www.worldcat.org/identities/lccn-nb2010002525 +http://viaf.org/viaf/106830753 LC|nb2010002525 +http://viaf.org/viaf/106833877 LC|no2009206227 +http://viaf.org/viaf/106833877 Identities@http://www.worldcat.org/identities/lccn-no2009206227 +http://viaf.org/viaf/106837161 Identities@http://www.worldcat.org/identities/lccn-no2010000563 +http://viaf.org/viaf/106837161 NLA|000058794035 +http://viaf.org/viaf/106837161 ISNI|0000000076794557 +http://viaf.org/viaf/106837161 LC|no2010000563 +http://viaf.org/viaf/106838052 Identities@http://www.worldcat.org/identities/lccn-no2010000741 +http://viaf.org/viaf/106838052 LC|no2010000741 +http://viaf.org/viaf/106838052 ISNI|0000000075554754 +http://viaf.org/viaf/106840103 LC|no2010001088 +http://viaf.org/viaf/106841896 BIBSYS|1542227322961 +http://viaf.org/viaf/106841896 DBC|87097968437598 +http://viaf.org/viaf/106841896 BNF@FRBNF161963026 +http://viaf.org/viaf/106841896 NLR|RU NLR AUTH 77104639 +http://viaf.org/viaf/106841896 DNB|1178017486 +http://viaf.org/viaf/106841896 Identities@http://www.worldcat.org/identities/lccn-no2010001349 +http://viaf.org/viaf/106841896 SUDOC|136495117 +http://viaf.org/viaf/106841896 LC|no2010001349 +http://viaf.org/viaf/106841896 DNB@http://d-nb.info/gnd/1178017486 +http://viaf.org/viaf/106841896 RERO|A016678629 +http://viaf.org/viaf/106841896 NLR@RU\NLR\AUTH\77104639 +http://viaf.org/viaf/106841896 NTA|321709268 +http://viaf.org/viaf/106841896 BNF|16196302 +http://viaf.org/viaf/106841896 ISNI|0000000077805166 +http://viaf.org/viaf/106841896 J9U|987007318090305171 +http://viaf.org/viaf/106841896 DBC@870979.68437598 +http://viaf.org/viaf/106842336 Wikipedia@http://en.wikipedia.org/wiki/Sheila_Kuehl +http://viaf.org/viaf/106842336 WKP|Q2277788 +http://viaf.org/viaf/106842336 Wikipedia@http://arz.wikipedia.org/wiki/شيلا_كويهل +http://viaf.org/viaf/106842336 Wikipedia@http://af.wikipedia.org/wiki/Sheila_Kuehl +http://viaf.org/viaf/106842336 Wikipedia@http://azb.wikipedia.org/wiki/شئیلا_کوهل +http://viaf.org/viaf/106842336 DNB|1207474568 +http://viaf.org/viaf/106842336 DNB@http://d-nb.info/gnd/1207474568 +http://viaf.org/viaf/106842336 Identities@http://www.worldcat.org/identities/lccn-no2010001425 +http://viaf.org/viaf/106842336 ISNI|0000000075059008 +http://viaf.org/viaf/106842336 LC|no2010001425 +http://viaf.org/viaf/106842336 Wikipedia@http://de.wikipedia.org/wiki/Sheila_Kuehl +http://viaf.org/viaf/106852632 Identities@http://www.worldcat.org/identities/lccn-no2010003076 +http://viaf.org/viaf/106852632 LC|no2010003076 +http://viaf.org/viaf/106852632 ISNI|0000000075201852 +http://viaf.org/viaf/106855756 ISNI|0000000075273696 +http://viaf.org/viaf/106855756 LC|no2010003536 +http://viaf.org/viaf/106855756 Identities@http://www.worldcat.org/identities/lccn-no2010003536 +http://viaf.org/viaf/106860651 Identities@http://www.worldcat.org/identities/lccn-no2010004283 +http://viaf.org/viaf/106860651 LC|no2010004283 +http://viaf.org/viaf/106861498 ISNI|0000000074768603 +http://viaf.org/viaf/106861498 LC|no2010004402 +http://viaf.org/viaf/106861498 Identities@http://www.worldcat.org/identities/lccn-no2010004402 +http://viaf.org/viaf/106867339 SUDOC|134489500 +http://viaf.org/viaf/106867339 NSK|000659893 +http://viaf.org/viaf/106867339 BAV|495_266317 +http://viaf.org/viaf/106867339 NII|DA07062695 +http://viaf.org/viaf/106867339 ISNI|0000000075417733 +http://viaf.org/viaf/106867339 DNB|107441148X +http://viaf.org/viaf/106867339 LC|no2010005402 +http://viaf.org/viaf/106867339 RERO|A003203987 +http://viaf.org/viaf/106867339 NTA|087962454 +http://viaf.org/viaf/106867339 Identities@http://www.worldcat.org/identities/lccn-no2010005402 +http://viaf.org/viaf/106867339 BAV@495/266317 +http://viaf.org/viaf/106867339 DNB@http://d-nb.info/gnd/107441148X +http://viaf.org/viaf/106871794 Identities@http://www.worldcat.org/identities/lccn-no2010006200 +http://viaf.org/viaf/106871794 LC|no2010006200 +http://viaf.org/viaf/106871794 ISNI|0000000373454073 +http://viaf.org/viaf/106873576 LC|no2010006519 +http://viaf.org/viaf/106873576 Identities@http://www.worldcat.org/identities/lccn-no2010006519 +http://viaf.org/viaf/106873576 ISNI|0000000076795437 +http://viaf.org/viaf/106875853 LC|no2010006970 +http://viaf.org/viaf/106878977 SUDOC|071535616 +http://viaf.org/viaf/106878977 Wikipedia@http://ru.wikipedia.org/wiki/Ламбертон,_Шарль +http://viaf.org/viaf/106878977 Wikipedia@http://fr.wikipedia.org/wiki/Charles_Lamberton +http://viaf.org/viaf/106878977 Wikipedia@http://en.wikipedia.org/wiki/Charles_Lamberton +http://viaf.org/viaf/106878977 ISNI|0000000076136861 +http://viaf.org/viaf/106878977 NTA|397753918 +http://viaf.org/viaf/106878977 DNB|1054143951 +http://viaf.org/viaf/106878977 RERO|A003491484 +http://viaf.org/viaf/106878977 WKP|Q5080039 +http://viaf.org/viaf/106878977 LC|no2010007418 +http://viaf.org/viaf/106878977 Identities@http://www.worldcat.org/identities/lccn-no2010007418 +http://viaf.org/viaf/106878977 DNB@http://d-nb.info/gnd/1054143951 +http://viaf.org/viaf/106878977 Wikipedia@http://ca.wikipedia.org/wiki/Charles_Lamberton +http://viaf.org/viaf/106882981 BNF@FRBNF177692975 +http://viaf.org/viaf/106882981 BNC@.a19534656 +http://viaf.org/viaf/106882981 BNC|a19534656 +http://viaf.org/viaf/106882981 LC|no2010008130 +http://viaf.org/viaf/106882981 Identities@http://www.worldcat.org/identities/lccn-no2010008130 +http://viaf.org/viaf/106882981 BNF|17769297 +http://viaf.org/viaf/106882981 ISNI|0000000075627634 +http://viaf.org/viaf/106883421 ISNI|0000000076868739 +http://viaf.org/viaf/106883421 Identities@http://www.worldcat.org/identities/lccn-no2010008184 +http://viaf.org/viaf/106883421 LC|no2010008184 +http://viaf.org/viaf/106883872 LC|no2010008230 +http://viaf.org/viaf/106883872 Identities@http://www.worldcat.org/identities/lccn-no2010008230 +http://viaf.org/viaf/106886996 ISNI|0000000076357381 +http://viaf.org/viaf/106886996 Identities@http://www.worldcat.org/identities/lccn-no2010008669 +http://viaf.org/viaf/106886996 LC|no2010008669 +http://viaf.org/viaf/106887887 Identities@http://www.worldcat.org/identities/lccn-no2010008798 +http://viaf.org/viaf/106887887 LC|no2010008798 +http://viaf.org/viaf/106889669 Identities@http://www.worldcat.org/identities/lccn-no2010009082 +http://viaf.org/viaf/106889669 LC|no2010009082 +http://viaf.org/viaf/106889669 NII|DA19062910 +http://viaf.org/viaf/10689034 DNB|120917661 +http://viaf.org/viaf/10689034 Identities@http://www.worldcat.org/identities/viaf-10689034 +http://viaf.org/viaf/10689034 DNB@http://d-nb.info/gnd/120917661 +http://viaf.org/viaf/106891396 Identities@http://www.worldcat.org/identities/lccn-no2010009373 +http://viaf.org/viaf/106891396 LC|no2010009373 +http://viaf.org/viaf/106891440 Identities@http://www.worldcat.org/identities/lccn-no2010009379 +http://viaf.org/viaf/106891440 LC|no2010009379 +http://viaf.org/viaf/106894113 LC|no2010009773 +http://viaf.org/viaf/106894113 Identities@http://www.worldcat.org/identities/lccn-no2010009773 +http://viaf.org/viaf/106894113 ISNI|000000007513125X +http://viaf.org/viaf/106896841 Identities@http://www.worldcat.org/identities/lccn-no2010010289 +http://viaf.org/viaf/106896841 ISNI|0000000075060404 +http://viaf.org/viaf/106896841 LC|no2010010289 +http://viaf.org/viaf/106897688 ISNI|0000000076575610 +http://viaf.org/viaf/106897688 Identities@http://www.worldcat.org/identities/lccn-no2010010456 +http://viaf.org/viaf/106897688 LC|no2010010456 +http://viaf.org/viaf/106899190 LC|no2010010680 +http://viaf.org/viaf/106899190 Identities@http://www.worldcat.org/identities/lccn-no2010010680 +http://viaf.org/viaf/106899190 ISNI|000000007484168X +http://viaf.org/viaf/106902429 Identities@http://www.worldcat.org/identities/lccn-no2010011168 +http://viaf.org/viaf/106902429 LC|no2010011168 +http://viaf.org/viaf/106902924 LC|no2010011268 +http://viaf.org/viaf/106902924 Identities@http://www.worldcat.org/identities/lccn-no2010011268 +http://viaf.org/viaf/106904382 NTA|074491849 +http://viaf.org/viaf/106904382 ISNI|0000000074326661 +http://viaf.org/viaf/106904382 LC|no2010011486 +http://viaf.org/viaf/106904382 Identities@http://www.worldcat.org/identities/lccn-no2010011486 +http://viaf.org/viaf/106908397 LC|no2010012155 +http://viaf.org/viaf/106908397 WKP|Q94518946 +http://viaf.org/viaf/106908397 ISNI|0000000075992770 +http://viaf.org/viaf/106908397 Identities@http://www.worldcat.org/identities/lccn-no2010012155 +http://viaf.org/viaf/106908441 Identities@http://www.worldcat.org/identities/lccn-no2010012163 +http://viaf.org/viaf/106908441 LC|no2010012163 +http://viaf.org/viaf/106912725 Identities@http://www.worldcat.org/identities/lccn-no2010012800 +http://viaf.org/viaf/106912725 LC|no2010012800 +http://viaf.org/viaf/1069152636064420050399 DNB@http://d-nb.info/gnd/115832961X +http://viaf.org/viaf/1069152636064420050399 DNB|115832961X +http://viaf.org/viaf/1069152636064420050399 Identities@http://www.worldcat.org/identities/viaf-1069152636064420050399 +http://viaf.org/viaf/10691536 RERO|A003188796 +http://viaf.org/viaf/10691536 Identities@http://www.worldcat.org/identities/lccn-n88155474 +http://viaf.org/viaf/10691536 LNB|LNC10-000028194 +http://viaf.org/viaf/10691536 LC@n88155474 +http://viaf.org/viaf/10691536 LC|n 88155474 +http://viaf.org/viaf/10691536 SUDOC|232278431 +http://viaf.org/viaf/10691536 SZ@http://d-nb.info/gnd/1183967802 +http://viaf.org/viaf/10691536 NII|DA11176304 +http://viaf.org/viaf/10691536 W2Z|90730611 +http://viaf.org/viaf/10691536 SZ|1183967802 +http://viaf.org/viaf/10691536 J9U|987007260514405171 +http://viaf.org/viaf/10691536 NTA|190062312 +http://viaf.org/viaf/10691536 NUKAT|n 2004050065 +http://viaf.org/viaf/10691536 BNF@http://catalogue.bnf.fr/ark:/12148/cb16650602d +http://viaf.org/viaf/10691536 ISNI|0000000115945937 +http://viaf.org/viaf/10691536 DNB|1183967802 +http://viaf.org/viaf/10691536 BIBSYS|90730611 +http://viaf.org/viaf/10691536 DNB@http://d-nb.info/gnd/1183967802 +http://viaf.org/viaf/10691536 NUKAT@vtls002062389 +http://viaf.org/viaf/10691536 BNF|16650602 +http://viaf.org/viaf/106922977 ISNI|0000000075131890 +http://viaf.org/viaf/106922977 LC|no2010014395 +http://viaf.org/viaf/106922977 SUDOC|190122277 +http://viaf.org/viaf/106922977 J9U|987007366713705171 +http://viaf.org/viaf/106922977 NUKAT@vtls008835067 +http://viaf.org/viaf/106922977 NUKAT|n 2012147797 +http://viaf.org/viaf/106922977 Identities@http://www.worldcat.org/identities/lccn-no2010014395 +http://viaf.org/viaf/106922977 RERO|A003975282 +http://viaf.org/viaf/106922977 NTA|067789102 +http://viaf.org/viaf/106922977 NII|DA12712869 +http://viaf.org/viaf/106924308 LC|no2010014645 +http://viaf.org/viaf/106924308 Identities@http://www.worldcat.org/identities/lccn-no2010014645 +http://viaf.org/viaf/106931931 WKP|Q71406875 +http://viaf.org/viaf/106931931 LC|no2010015993 +http://viaf.org/viaf/106931931 DNB|140655387 +http://viaf.org/viaf/106931931 DNB@http://d-nb.info/gnd/140655387 +http://viaf.org/viaf/106931931 Identities@http://www.worldcat.org/identities/lccn-no2010015993 +http://viaf.org/viaf/106933713 NTA|322601193 +http://viaf.org/viaf/106933713 RERO|A016871460 +http://viaf.org/viaf/106933713 SUDOC|142877832 +http://viaf.org/viaf/106933713 BIBSYS|10021757 +http://viaf.org/viaf/106933713 J9U|987007435185905171 +http://viaf.org/viaf/106933713 LC|no2010016287 +http://viaf.org/viaf/106933713 N6I|vtls000019717 +http://viaf.org/viaf/106933713 ISNI|0000000080122286 +http://viaf.org/viaf/106933713 Identities@http://www.worldcat.org/identities/lccn-no2010016287 +http://viaf.org/viaf/106940346 NKC|jx20100126018 +http://viaf.org/viaf/106941732 NKC|mzk2010473804 +http://viaf.org/viaf/106941732 Identities@http://www.worldcat.org/identities/viaf-106941732 +http://viaf.org/viaf/106941732 ISNI|0000000076211841 +http://viaf.org/viaf/106943019 ISNI|0000000076503617 +http://viaf.org/viaf/106943019 NKC|mzk2010474089 +http://viaf.org/viaf/106943019 Identities@http://www.worldcat.org/identities/viaf-106943019 +http://viaf.org/viaf/106944900 LC@n2008008559 +http://viaf.org/viaf/106944900 BNF@http://catalogue.bnf.fr/ark:/12148/cb159808902 +http://viaf.org/viaf/106944900 LC|n 2008008559 +http://viaf.org/viaf/106944900 NKC|osd2010551389 +http://viaf.org/viaf/106944900 SUDOC|154972673 +http://viaf.org/viaf/106944900 BNF|15980890 +http://viaf.org/viaf/106944900 RERO|A003494285 +http://viaf.org/viaf/106944900 PLWABN|9810535944605606 +http://viaf.org/viaf/106944900 ISNI|0000000078526396 +http://viaf.org/viaf/106944900 DNB@http://d-nb.info/gnd/120554682 +http://viaf.org/viaf/106944900 DNB|120554682 +http://viaf.org/viaf/106944900 Identities@http://www.worldcat.org/identities/lccn-n2008008559 +http://viaf.org/viaf/106950642 KRNLK|KAC201221136 +http://viaf.org/viaf/106950642 NKC|xx0109688 +http://viaf.org/viaf/106950642 Identities@http://www.worldcat.org/identities/viaf-106950642 +http://viaf.org/viaf/106951984 NKC|xx0109873 +http://viaf.org/viaf/10695271 DNB|121163393 +http://viaf.org/viaf/10695271 Identities@http://www.worldcat.org/identities/viaf-10695271 +http://viaf.org/viaf/10695271 DNB@http://d-nb.info/gnd/121163393 +http://viaf.org/viaf/106960894 CAOONL|ncf12129797 +http://viaf.org/viaf/106960894 BNF@FRBNF168947626 +http://viaf.org/viaf/106960894 NUKAT@vtls005494842 +http://viaf.org/viaf/106960894 LC@n78062461 +http://viaf.org/viaf/106960894 DNB@http://d-nb.info/gnd/172316480 +http://viaf.org/viaf/106960894 Identities@http://www.worldcat.org/identities/lccn-n78062461 +http://viaf.org/viaf/106960894 Wikipedia@http://en.wikipedia.org/wiki/Gordon_Parker_(psychiatrist) +http://viaf.org/viaf/106960894 ORCID@http://orcid.org/0000-0003-3424-5519 +http://viaf.org/viaf/106960894 NII|DA01319686 +http://viaf.org/viaf/106960894 NDL|00452147 +http://viaf.org/viaf/106960894 J9U|987007449463905171 +http://viaf.org/viaf/106960894 WKP|Q5585645 +http://viaf.org/viaf/106960894 BNF|16894762 +http://viaf.org/viaf/106960894 PLWABN|9810623652905606 +http://viaf.org/viaf/106960894 BIBSYS|90957234 +http://viaf.org/viaf/106960894 SUDOC|11499899X +http://viaf.org/viaf/106960894 NUKAT|n 2008115034 +http://viaf.org/viaf/106960894 NTA|069837414 +http://viaf.org/viaf/106960894 NLA|000035887074 +http://viaf.org/viaf/106960894 NKC|xx0111028 +http://viaf.org/viaf/106960894 LC|n 78062461 +http://viaf.org/viaf/106960894 ISNI|0000000110804780 +http://viaf.org/viaf/106960894 DNB|172316480 +http://viaf.org/viaf/106978813 LC|n 95106300 +http://viaf.org/viaf/106978813 ISNI|0000000116962106 +http://viaf.org/viaf/106978813 LC@n95106300 +http://viaf.org/viaf/106978813 Identities@http://www.worldcat.org/identities/lccn-n95106300 +http://viaf.org/viaf/106978813 BNE|XX1095141 +http://viaf.org/viaf/106984555 BNE|XX1193390 +http://viaf.org/viaf/106984555 Identities@http://www.worldcat.org/identities/viaf-106984555 +http://viaf.org/viaf/106986832 BNE|XX1298086 +http://viaf.org/viaf/106986832 Identities@http://www.worldcat.org/identities/lccn-nr2003029191 +http://viaf.org/viaf/106986832 ISNI|0000000117788082 +http://viaf.org/viaf/106986832 DNB@http://d-nb.info/gnd/1057339253 +http://viaf.org/viaf/106986832 LC|nr2003029191 +http://viaf.org/viaf/106986832 DNB|1057339253 +http://viaf.org/viaf/10698890 DNB@http://d-nb.info/gnd/121310582 +http://viaf.org/viaf/10698890 Identities@http://www.worldcat.org/identities/viaf-10698890 +http://viaf.org/viaf/10698890 DNB|121310582 +http://viaf.org/viaf/106991232 Identities@http://www.worldcat.org/identities/lccn-n2011025578 +http://viaf.org/viaf/106991232 LC@n2011025578 +http://viaf.org/viaf/106991232 LC|n 2011025578 +http://viaf.org/viaf/106991232 BNE|XX1504206 +http://viaf.org/viaf/106995742 BNE|XX1680857 +http://viaf.org/viaf/106995742 BNC@.a1913941x +http://viaf.org/viaf/106995742 Identities@http://www.worldcat.org/identities/lccn-n2005031015 +http://viaf.org/viaf/106995742 LC@n2005031015 +http://viaf.org/viaf/106995742 LC|n 2005031015 +http://viaf.org/viaf/106995742 ISNI|0000000079805987 +http://viaf.org/viaf/106995742 SUDOC|088397599 +http://viaf.org/viaf/106995742 BNC|a1913941x +http://viaf.org/viaf/107004630 BNE|XX4897704 +http://viaf.org/viaf/107004630 Identities@http://www.worldcat.org/identities/viaf-107004630 +http://viaf.org/viaf/107010372 ISNI|0000000116964857 +http://viaf.org/viaf/107010372 LC@n96018881 +http://viaf.org/viaf/107010372 Identities@http://www.worldcat.org/identities/lccn-n96018881 +http://viaf.org/viaf/107010372 BNE|XX828756 +http://viaf.org/viaf/107010372 LC|n 96018881 +http://viaf.org/viaf/1070151051977433530009 XR|VIAFWORK1000959757 +http://viaf.org/viaf/1070154380972630291474 LIH@LNB:J/J;=xs +http://viaf.org/viaf/1070154380972630291474 LIH|LNB:J,J;=_x__s_ +http://viaf.org/viaf/1070154381145430292881 LIH@LNB:opT;=CD +http://viaf.org/viaf/1070154381145430292881 LIH|LNB:_o__p_T;=CD +http://viaf.org/viaf/107037201 ISNI|0000000087222511 +http://viaf.org/viaf/107037201 CAOONL|ncf11368395 +http://viaf.org/viaf/107037201 Identities@http://www.worldcat.org/identities/lccn-n85344679 +http://viaf.org/viaf/107037201 LC|n 85344679 +http://viaf.org/viaf/107037201 BNF|12467818 +http://viaf.org/viaf/107037201 RERO|A003883717 +http://viaf.org/viaf/107037201 NTA|07193152X +http://viaf.org/viaf/107037201 BNF@http://catalogue.bnf.fr/ark:/12148/cb12467818b +http://viaf.org/viaf/107037201 NII|DA04075883 +http://viaf.org/viaf/107037201 SUDOC|033864357 +http://viaf.org/viaf/107037201 J9U|987007277893805171 +http://viaf.org/viaf/107037201 LC@n85344679 +http://viaf.org/viaf/107038543 NTA|068250452 +http://viaf.org/viaf/107038543 Identities@http://www.worldcat.org/identities/viaf-107038543 +http://viaf.org/viaf/107043718 SUDOC|193779587 +http://viaf.org/viaf/107043718 Identities@http://www.worldcat.org/identities/viaf-107043718 +http://viaf.org/viaf/107043718 BNF|14674551 +http://viaf.org/viaf/107043718 BNF@http://catalogue.bnf.fr/ark:/12148/cb14674551f +http://viaf.org/viaf/107043718 CAOONL|ncf11439700 +http://viaf.org/viaf/107051737 ISNI|0000000077212897 +http://viaf.org/viaf/107051737 BNF|16177313 +http://viaf.org/viaf/107051737 Identities@http://www.worldcat.org/identities/viaf-107051737 +http://viaf.org/viaf/107051737 BNF@http://catalogue.bnf.fr/ark:/12148/cb16177313g +http://viaf.org/viaf/107052628 Identities@http://www.worldcat.org/identities/viaf-107052628 +http://viaf.org/viaf/107052628 ISNI|0000000077170762 +http://viaf.org/viaf/107052628 BNF@http://catalogue.bnf.fr/ark:/12148/cb16177538c +http://viaf.org/viaf/107052628 BNF|16177538 +http://viaf.org/viaf/107058640 BNF@http://catalogue.bnf.fr/ark:/12148/cb16179137d +http://viaf.org/viaf/107058640 Identities@http://www.worldcat.org/identities/viaf-107058640 +http://viaf.org/viaf/107058640 BNF|16179137 +http://viaf.org/viaf/107066939 LC@n94016177 +http://viaf.org/viaf/107066939 BNF|16181327 +http://viaf.org/viaf/107066939 LC|n 94016177 +http://viaf.org/viaf/107066939 PLWABN|9810584834205606 +http://viaf.org/viaf/107066939 ISNI|0000000077214550 +http://viaf.org/viaf/107066939 Identities@http://www.worldcat.org/identities/lccn-n94016177 +http://viaf.org/viaf/107066939 BNF@http://catalogue.bnf.fr/ark:/12148/cb16181327x +http://viaf.org/viaf/107069332 BNF@http://catalogue.bnf.fr/ark:/12148/cb161818457 +http://viaf.org/viaf/107069332 Identities@http://www.worldcat.org/identities/viaf-107069332 +http://viaf.org/viaf/107069332 BNF|16181845 +http://viaf.org/viaf/107069332 ISNI|0000000077172426 +http://viaf.org/viaf/107078242 BNF|16184112 +http://viaf.org/viaf/107078242 Identities@http://www.worldcat.org/identities/viaf-107078242 +http://viaf.org/viaf/107078242 BNF@http://catalogue.bnf.fr/ark:/12148/cb161841122 +http://viaf.org/viaf/107085370 CAOONL|ncf11169163 +http://viaf.org/viaf/107085370 BNF@http://catalogue.bnf.fr/ark:/12148/cb162685586 +http://viaf.org/viaf/107085370 BNF|16268558 +http://viaf.org/viaf/107085370 Identities@http://www.worldcat.org/identities/viaf-107085370 +http://viaf.org/viaf/107086261 NTA|152153187 +http://viaf.org/viaf/107086261 Identities@http://www.worldcat.org/identities/viaf-107086261 +http://viaf.org/viaf/107086261 ISNI|0000000394877550 +http://viaf.org/viaf/10708988 DNB@http://d-nb.info/gnd/121717194 +http://viaf.org/viaf/10708988 ISNI|0000000010972218 +http://viaf.org/viaf/10708988 DNB|121717194 +http://viaf.org/viaf/10708988 Identities@http://www.worldcat.org/identities/viaf-10708988 +http://viaf.org/viaf/107092822 Identities@http://www.worldcat.org/identities/lccn-no2010179308 +http://viaf.org/viaf/107092822 LC|no2010179308 +http://viaf.org/viaf/107092822 ISNI|0000000107193317 +http://viaf.org/viaf/107101254 SUDOC|149834802 +http://viaf.org/viaf/107101254 Identities@http://www.worldcat.org/identities/lccn-no2010043521 +http://viaf.org/viaf/107101254 LC|no2010043521 +http://viaf.org/viaf/1071145858164023022500 DNB@http://d-nb.info/gnd/1088049001 +http://viaf.org/viaf/1071145858164023022500 DNB|1088049001 +http://viaf.org/viaf/1071152636066620050958 DNB|1158360819 +http://viaf.org/viaf/1071152636066620050958 DNB@http://d-nb.info/gnd/1158360819 +http://viaf.org/viaf/1071159234394703371454 Identities@http://www.worldcat.org/identities/viaf-1071159234394703371454 +http://viaf.org/viaf/1071159234394703371454 RERO|A012513294 +http://viaf.org/viaf/1071159474201827661490 CAOONL|ncf11809947 +http://viaf.org/viaf/10711650 Identities@http://www.worldcat.org/identities/viaf-10711650 +http://viaf.org/viaf/10711650 DNB|121808173 +http://viaf.org/viaf/10711650 DNB@http://d-nb.info/gnd/121808173 +http://viaf.org/viaf/107118733 DNB|140416919 +http://viaf.org/viaf/107118733 DNB@http://d-nb.info/gnd/140416919 +http://viaf.org/viaf/107121351 DNB@http://d-nb.info/gnd/140419799 +http://viaf.org/viaf/107121351 Identities@http://www.worldcat.org/identities/viaf-107121351 +http://viaf.org/viaf/107121351 DNB|140419799 +http://viaf.org/viaf/107122198 NUKAT|n 2004250069 +http://viaf.org/viaf/107122198 ISNI|000000008172406X +http://viaf.org/viaf/107122198 Identities@http://www.worldcat.org/identities/lccn-nb2001069898 +http://viaf.org/viaf/107122198 J9U|987007417569805171 +http://viaf.org/viaf/107122198 LC|nb2001069898 +http://viaf.org/viaf/107122198 NUKAT@vtls002138365 +http://viaf.org/viaf/107122198 NTA|069454868 +http://viaf.org/viaf/10712541 RERO|A006035318 +http://viaf.org/viaf/10712541 LC@n99256562 +http://viaf.org/viaf/10712541 NUKAT@vtls000136158 +http://viaf.org/viaf/10712541 DNB@http://d-nb.info/gnd/121837734 +http://viaf.org/viaf/10712541 Identities@http://www.worldcat.org/identities/lccn-n99256562 +http://viaf.org/viaf/10712541 NII|DA12473622 +http://viaf.org/viaf/10712541 LC|n 99256562 +http://viaf.org/viaf/10712541 J9U|987007457160005171 +http://viaf.org/viaf/10712541 CAOONL|ncf10465951 +http://viaf.org/viaf/10712541 ISNI|0000000115946278 +http://viaf.org/viaf/10712541 BIBSYS|1084990 +http://viaf.org/viaf/10712541 NUKAT|n 01052163 +http://viaf.org/viaf/10712541 DNB|121837734 +http://viaf.org/viaf/107125861 Identities@http://www.worldcat.org/identities/lccn-no2010205128 +http://viaf.org/viaf/107125861 LC|no2010205128 +http://viaf.org/viaf/107125861 SUDOC|177081724 +http://viaf.org/viaf/107125861 DNB@http://d-nb.info/gnd/140424873 +http://viaf.org/viaf/107125861 ISNI|0000000107876775 +http://viaf.org/viaf/107125861 DNB|140424873 +http://viaf.org/viaf/107144647633895134847 BNF|16615057 +http://viaf.org/viaf/107144647633895134847 BNF@http://catalogue.bnf.fr/ark:/12148/cb16615057d +http://viaf.org/viaf/107145003297761300593 Identities@http://www.worldcat.org/identities/lccn-n2015069716 +http://viaf.org/viaf/107145003297761300593 LC|n 2015069716 +http://viaf.org/viaf/107145003297761300593 LC@n2015069716 +http://viaf.org/viaf/107145424175786790311 NLR|RU NLR AUTH 770149288 +http://viaf.org/viaf/107145424175786790311 NLR@RU\NLR\AUTH\770149288 +http://viaf.org/viaf/107145663019405070149 DNB@http://d-nb.info/gnd/1084011735 +http://viaf.org/viaf/107145663019405070149 DNB|1084011735 +http://viaf.org/viaf/107146029458435821256 DNB|1095794957 +http://viaf.org/viaf/107146029458435821256 DNB@http://d-nb.info/gnd/1095794957 +http://viaf.org/viaf/107146094145600330333 PLWABN|9810689692005606 +http://viaf.org/viaf/107146094284000331765 PLWABN|9810665526005606 +http://viaf.org/viaf/107146094284000331765 Identities@http://www.worldcat.org/identities/viaf-107146094284000331765 +http://viaf.org/viaf/107146331762618690356 Identities@http://www.worldcat.org/identities/lccn-no2016054871 +http://viaf.org/viaf/107146331762618690356 LC|no2016054871 +http://viaf.org/viaf/107146462585727770437 DNB@http://d-nb.info/gnd/1100576819 +http://viaf.org/viaf/107146462585727770437 DNB|1100576819 +http://viaf.org/viaf/107146573864638100904 Identities@http://www.worldcat.org/identities/viaf-107146573864638100904 +http://viaf.org/viaf/107146573864638100904 SUDOC|19329074X +http://viaf.org/viaf/107146822214107381212 SUDOC|193955482 +http://viaf.org/viaf/107146822214107381212 BNF|17077332 +http://viaf.org/viaf/107146822214107381212 Identities@http://www.worldcat.org/identities/viaf-107146822214107381212 +http://viaf.org/viaf/107146822214107381212 BNF@http://catalogue.bnf.fr/ark:/12148/cb17077332q +http://viaf.org/viaf/107146822214107381212 ISNI|0000000459741014 +http://viaf.org/viaf/107147118131726340361 Identities@http://www.worldcat.org/identities/lccn-n2016246450 +http://viaf.org/viaf/107147118131726340361 LC|n 2016246450 +http://viaf.org/viaf/107147118131726340361 LC@n2016246450 +http://viaf.org/viaf/107147663184260552850 NUKAT|n 2016085924 +http://viaf.org/viaf/107147663184260552850 NUKAT@vtls014749879 +http://viaf.org/viaf/107147663184260552850 Identities@http://www.worldcat.org/identities/viaf-107147663184260552850 +http://viaf.org/viaf/107147724731764590776 Identities@http://www.worldcat.org/identities/viaf-107147724731764590776 +http://viaf.org/viaf/107147724731764590776 NLA|000058652542 +http://viaf.org/viaf/107148389277810710683 SUDOC|196425840 +http://viaf.org/viaf/107149066567365601660 BIBSYS|12026693 +http://viaf.org/viaf/107149066567365601660 Identities@http://www.worldcat.org/identities/viaf-107149066567365601660 +http://viaf.org/viaf/107149196537774792260 BIBSYS|3032913 +http://viaf.org/viaf/107149717319710950386 Identities@http://www.worldcat.org/identities/viaf-107149717319710950386 +http://viaf.org/viaf/107149717319710950386 SUDOC|199679150 +http://viaf.org/viaf/107149717334710950417 SUDOC|200661531 +http://viaf.org/viaf/107149717334710950417 Identities@http://www.worldcat.org/identities/viaf-107149717334710950417 +http://viaf.org/viaf/107150565608906251400 SUDOC|201609924 +http://viaf.org/viaf/107150746872716301607 ISNI|0000000463385702 +http://viaf.org/viaf/107150746872716301607 KRNLK|KAC201744050 +http://viaf.org/viaf/107151246601144132608 Identities@http://www.worldcat.org/identities/lccn-n89193042 +http://viaf.org/viaf/107151246601144132608 DNB@http://d-nb.info/gnd/1147127794 +http://viaf.org/viaf/107151246601144132608 DNB|1147127794 +http://viaf.org/viaf/107152380058201760201 SUDOC|224794272 +http://viaf.org/viaf/107152380058201760201 NII|DA19172158 +http://viaf.org/viaf/107152380058201760201 J9U|987007403344305171 +http://viaf.org/viaf/107152380058201760201 Identities@http://www.worldcat.org/identities/lccn-no2018057156 +http://viaf.org/viaf/107152380058201760201 LC|no2018057156 +http://viaf.org/viaf/107152742907127731458 DE663|pe30043304 +http://viaf.org/viaf/107152744508127850000 Identities@http://www.worldcat.org/identities/viaf-107152744508127850000 +http://viaf.org/viaf/107152744508127850000 DE663|pe30026514 +http://viaf.org/viaf/107153061237319200990 KRNLK|KAC201819376 +http://viaf.org/viaf/107153061237319200990 ISNI|0000000464865732 +http://viaf.org/viaf/107153061237319200990 Identities@http://www.worldcat.org/identities/viaf-107153061237319200990 +http://viaf.org/viaf/107153061335019202444 KRNLK|KAC201402439 +http://viaf.org/viaf/107153061335019202444 ISNI|0000000464883340 +http://viaf.org/viaf/107153061335019202444 Identities@http://www.worldcat.org/identities/viaf-107153061335019202444 +http://viaf.org/viaf/107153651772455782407 SUDOC|229619231 +http://viaf.org/viaf/107153833146764331016 Identities@http://www.worldcat.org/identities/viaf-107153833146764331016 +http://viaf.org/viaf/107153833146764331016 PLWABN|9810636349005606 +http://viaf.org/viaf/107154013796009191892 ISNI|0000000468567791 +http://viaf.org/viaf/107154013796009191892 KRNLK|KAC2018D5524 +http://viaf.org/viaf/107154380914330290317 LIH|LNB:73_j_;=BK +http://viaf.org/viaf/107154380914330290317 LIH@LNB:73j;=BK +http://viaf.org/viaf/107154590163343081657 ISNI|0000000473520234 +http://viaf.org/viaf/107154590163343081657 KRNLK|KAC2018E1301 +http://viaf.org/viaf/107154590163343081657 Identities@http://www.worldcat.org/identities/viaf-107154590163343081657 +http://viaf.org/viaf/107155042846272402753 Identities@http://www.worldcat.org/identities/lccn-n2002025345 +http://viaf.org/viaf/107155042846272402753 LC|n 2002025345 +http://viaf.org/viaf/107155042846272402753 RERO|A003084316 +http://viaf.org/viaf/107155042846272402753 LC@n2002025345 +http://viaf.org/viaf/107155103913976200364 ISNI|000000047251676X +http://viaf.org/viaf/107155103913976200364 KRNLK|KAC2018I7948 +http://viaf.org/viaf/107155767358927761211 PTBNP|1750744 +http://viaf.org/viaf/107156009953549581388 PLWABN|9810695813805606 +http://viaf.org/viaf/107156009978349582070 PLWABN|9810699070605606 +http://viaf.org/viaf/107156009978349582070 Identities@http://www.worldcat.org/identities/viaf-107156009978349582070 +http://viaf.org/viaf/107156563531623241747 KRNLK|KAC201940641 +http://viaf.org/viaf/107156563531623241747 ISNI|0000000476767232 +http://viaf.org/viaf/107156563618123242758 LC|n 2019047329 +http://viaf.org/viaf/107156563618123242758 Identities@http://www.worldcat.org/identities/lccn-n2019047329 +http://viaf.org/viaf/107156563618123242758 LC@n2019047329 +http://viaf.org/viaf/107157046 DNB@http://d-nb.info/gnd/14046090X +http://viaf.org/viaf/107157046 Identities@http://www.worldcat.org/identities/viaf-107157046 +http://viaf.org/viaf/107157046 ISNI|0000000077134518 +http://viaf.org/viaf/107157046 DNB|14046090X +http://viaf.org/viaf/107157098572872552794 SUDOC|234195576 +http://viaf.org/viaf/107157523440427032464 KRNLK|KAB201723620 +http://viaf.org/viaf/107158066511008431343 NDL|001339195 +http://viaf.org/viaf/107158066511008431343 Identities@http://www.worldcat.org/identities/viaf-107158066511008431343 +http://viaf.org/viaf/107159032526501180375 DE663|40008273 +http://viaf.org/viaf/107159474046527660847 BAV|492_55033 +http://viaf.org/viaf/107159474046527660847 BAV@492/55033 +http://viaf.org/viaf/107165065 ISNI|0000000077134884 +http://viaf.org/viaf/107165065 Identities@http://www.worldcat.org/identities/viaf-107165065 +http://viaf.org/viaf/107165065 DNB@http://d-nb.info/gnd/140469923 +http://viaf.org/viaf/107165065 DNB|140469923 +http://viaf.org/viaf/107181878 DNB@http://d-nb.info/gnd/140489096 +http://viaf.org/viaf/107181878 Identities@http://www.worldcat.org/identities/viaf-107181878 +http://viaf.org/viaf/107181878 ISNI|0000000368087408 +http://viaf.org/viaf/107181878 DNB|140489096 +http://viaf.org/viaf/107183380 Identities@http://www.worldcat.org/identities/viaf-107183380 +http://viaf.org/viaf/107183380 DNB@http://d-nb.info/gnd/140490841 +http://viaf.org/viaf/107183380 DNB|140490841 +http://viaf.org/viaf/107183380 ISNI|0000000077052758 +http://viaf.org/viaf/107190337 DNB|140499024 +http://viaf.org/viaf/107190337 ISNI|0000000077008220 +http://viaf.org/viaf/107190337 Identities@http://www.worldcat.org/identities/viaf-107190337 +http://viaf.org/viaf/107190337 DNB@http://d-nb.info/gnd/140499024 +http://viaf.org/viaf/107191679 DNB|140500634 +http://viaf.org/viaf/107191679 DNB@http://d-nb.info/gnd/140500634 +http://viaf.org/viaf/107203774 Identities@http://www.worldcat.org/identities/viaf-107203774 +http://viaf.org/viaf/107203774 DNB|14051449X +http://viaf.org/viaf/107203774 RERO|A003719235 +http://viaf.org/viaf/107203774 DNB@http://d-nb.info/gnd/14051449X +http://viaf.org/viaf/107207789 ISNI|0000000077381009 +http://viaf.org/viaf/107207789 Identities@http://www.worldcat.org/identities/lccn-no2010037373 +http://viaf.org/viaf/107207789 BAV@495/341764 +http://viaf.org/viaf/107207789 LC|no2010037373 +http://viaf.org/viaf/107207789 BAV|495_341764 +http://viaf.org/viaf/107210000 DNB@http://d-nb.info/gnd/140521720 +http://viaf.org/viaf/107210000 DNB|140521720 +http://viaf.org/viaf/1072154380947030290617 LIH|LNB:SN_g_;=B_e_ +http://viaf.org/viaf/1072154380947030290617 LIH@LNB:SNg;=Be +http://viaf.org/viaf/107219867 DNB@http://d-nb.info/gnd/140533257 +http://viaf.org/viaf/107219867 Identities@http://www.worldcat.org/identities/lccn-no2007082093 +http://viaf.org/viaf/107219867 DNB|140533257 +http://viaf.org/viaf/107226544 DNB@http://d-nb.info/gnd/140540830 +http://viaf.org/viaf/107226544 DNB|140540830 +http://viaf.org/viaf/107228821 DNB@http://d-nb.info/gnd/140543503 +http://viaf.org/viaf/107228821 ISNI|0000000077263854 +http://viaf.org/viaf/107228821 DNB|140543503 +http://viaf.org/viaf/107228821 Identities@http://www.worldcat.org/identities/viaf-107228821 +http://viaf.org/viaf/107231395 DNB@http://d-nb.info/gnd/140546391 +http://viaf.org/viaf/107231395 DNB|140546391 +http://viaf.org/viaf/107231395 ISNI|0000000077138199 +http://viaf.org/viaf/107231395 Identities@http://www.worldcat.org/identities/viaf-107231395 +http://viaf.org/viaf/10723189 DNB@http://d-nb.info/gnd/122244958 +http://viaf.org/viaf/10723189 Identities@http://www.worldcat.org/identities/viaf-10723189 +http://viaf.org/viaf/10723189 ISNI|0000000010982192 +http://viaf.org/viaf/10723189 DNB|122244958 +http://viaf.org/viaf/107236840 DNB|14055260X +http://viaf.org/viaf/107236840 Identities@http://www.worldcat.org/identities/viaf-107236840 +http://viaf.org/viaf/107236840 DNB@http://d-nb.info/gnd/14055260X +http://viaf.org/viaf/107236840 ISNI|0000000077222905 +http://viaf.org/viaf/107237687 J9U|987007428181705171 +http://viaf.org/viaf/107237687 LC|no2010043398 +http://viaf.org/viaf/107237687 BNF@http://catalogue.bnf.fr/ark:/12148/cb16525266z +http://viaf.org/viaf/107237687 DNB@http://d-nb.info/gnd/140553533 +http://viaf.org/viaf/107237687 Identities@http://www.worldcat.org/identities/lccn-no2010043398 +http://viaf.org/viaf/107237687 Wikipedia@http://it.wikipedia.org/wiki/Livia_Vernazza +http://viaf.org/viaf/107237687 Wikipedia@http://es.wikipedia.org/wiki/Livia_Vernazza +http://viaf.org/viaf/107237687 ISNI|0000000121465390 +http://viaf.org/viaf/107237687 BNF|16525266 +http://viaf.org/viaf/107237687 SUDOC|147759420 +http://viaf.org/viaf/107237687 DNB|140553533 +http://viaf.org/viaf/107237687 WKP|Q3835546 +http://viaf.org/viaf/107245255 LC|no2013094520 +http://viaf.org/viaf/107245255 Identities@http://www.worldcat.org/identities/lccn-no2013094520 +http://viaf.org/viaf/107245255 ISNI|0000000418360805 +http://viaf.org/viaf/107247037 DNB@http://d-nb.info/gnd/140564306 +http://viaf.org/viaf/107247037 DNB|140564306 +http://viaf.org/viaf/107247488 NUKAT@vtls010144707 +http://viaf.org/viaf/107247488 ISNI|0000000077098094 +http://viaf.org/viaf/107247488 PLWABN|9810640561105606 +http://viaf.org/viaf/107247488 DNB|140564853 +http://viaf.org/viaf/107247488 NUKAT|n 2013151200 +http://viaf.org/viaf/107247488 Identities@http://www.worldcat.org/identities/viaf-107247488 +http://viaf.org/viaf/107247488 DNB@http://d-nb.info/gnd/140564853 +http://viaf.org/viaf/107260726 ISNI|0000000076977556 +http://viaf.org/viaf/107260726 DNB|140580204 +http://viaf.org/viaf/107260726 DNB@http://d-nb.info/gnd/140580204 +http://viaf.org/viaf/107260726 Identities@http://www.worldcat.org/identities/viaf-107260726 +http://viaf.org/viaf/107282281 DNB|140605304 +http://viaf.org/viaf/107282281 Identities@http://www.worldcat.org/identities/viaf-107282281 +http://viaf.org/viaf/107282281 DNB@http://d-nb.info/gnd/140605304 +http://viaf.org/viaf/107282281 WKP|Q61150630 +http://viaf.org/viaf/107282281 Wikipedia@http://de.wikipedia.org/wiki/Nico_Deppisch +http://viaf.org/viaf/107286296 DNB@http://d-nb.info/gnd/140609873 +http://viaf.org/viaf/107286296 LC|n 00001433 +http://viaf.org/viaf/107286296 DNB|140609873 +http://viaf.org/viaf/107286296 Identities@http://www.worldcat.org/identities/lccn-n00001433 +http://viaf.org/viaf/107286296 ISNI|0000000401771886 +http://viaf.org/viaf/107286296 LC@n00001433 +http://viaf.org/viaf/107297807 DNB@http://d-nb.info/gnd/140623388 +http://viaf.org/viaf/107297807 DNB|140623388 +http://viaf.org/viaf/107297807 Identities@http://www.worldcat.org/identities/viaf-107297807 +http://viaf.org/viaf/10729976 DNB|122546016 +http://viaf.org/viaf/10729976 DNB@http://d-nb.info/gnd/122546016 +http://viaf.org/viaf/10729976 Identities@http://www.worldcat.org/identities/viaf-10729976 +http://viaf.org/viaf/10730361 DNB|122564405 +http://viaf.org/viaf/10730361 Identities@http://www.worldcat.org/identities/viaf-10730361 +http://viaf.org/viaf/10730361 DNB@http://d-nb.info/gnd/122564405 +http://viaf.org/viaf/107308516 Wikipedia@http://eo.wikipedia.org/wiki/Lonnie_Johnson_(muzikisto) +http://viaf.org/viaf/107308516 Wikipedia@http://en.wikipedia.org/wiki/Lonnie_Johnson_(musician) +http://viaf.org/viaf/107308516 NUKAT@vtls007762647 +http://viaf.org/viaf/107308516 Wikipedia@http://fi.wikipedia.org/wiki/Lonnie_Johnson +http://viaf.org/viaf/107308516 Wikipedia@http://fr.wikipedia.org/wiki/Lonnie_Johnson +http://viaf.org/viaf/107308516 NUKAT|n 2011069893 +http://viaf.org/viaf/107308516 ISNI|0000000453893244 +http://viaf.org/viaf/107308516 WKP|Q1351751 +http://viaf.org/viaf/107308516 NLA|000036010815 +http://viaf.org/viaf/107308516 Wikipedia@http://de.wikipedia.org/wiki/Lonnie_Johnson +http://viaf.org/viaf/107308516 Wikipedia@http://lb.wikipedia.org/wiki/Lonnie_Johnson +http://viaf.org/viaf/107308516 LC@n98065444 +http://viaf.org/viaf/107308516 LC|n 98065444 +http://viaf.org/viaf/107308516 LIH|LNB:B_n_U_p_;=CF +http://viaf.org/viaf/107308516 PLWABN|9810672984605606 +http://viaf.org/viaf/107308516 Wikipedia@http://nl.wikipedia.org/wiki/Lonnie_Johnson +http://viaf.org/viaf/107308516 Wikipedia@http://pl.wikipedia.org/wiki/Lonnie_Johnson +http://viaf.org/viaf/107308516 Wikipedia@http://ru.wikipedia.org/wiki/Джонсон,_Лонни +http://viaf.org/viaf/107308516 Wikipedia@http://it.wikipedia.org/wiki/Lonnie_Johnson +http://viaf.org/viaf/107308516 J9U|987007320456705171 +http://viaf.org/viaf/107308516 CAOONL|ncf11356718 +http://viaf.org/viaf/107308516 Wikipedia@http://sv.wikipedia.org/wiki/Lonnie_Johnson +http://viaf.org/viaf/107308516 Wikipedia@http://uk.wikipedia.org/wiki/Лонні_Джонсон +http://viaf.org/viaf/107308516 Wikipedia@http://azb.wikipedia.org/wiki/لونی_جونسون +http://viaf.org/viaf/107308516 Identities@http://www.worldcat.org/identities/lccn-n98065444 +http://viaf.org/viaf/107308516 Wikipedia@http://arz.wikipedia.org/wiki/لونى_جونسون +http://viaf.org/viaf/107308516 Wikipedia@http://ar.wikipedia.org/wiki/لوني_جونسون +http://viaf.org/viaf/107308516 Wikipedia@http://es.wikipedia.org/wiki/Lonnie_Johnson +http://viaf.org/viaf/107308516 LIH@LNB:BnUp;=CF +http://viaf.org/viaf/107312476 NII|DA01336696 +http://viaf.org/viaf/107312476 Identities@http://www.worldcat.org/identities/lccn-n79122728 +http://viaf.org/viaf/107312476 NTA|068326920 +http://viaf.org/viaf/107312476 LC|n 79122728 +http://viaf.org/viaf/107312476 BIBSYS|90156338 +http://viaf.org/viaf/107312476 J9U|987007320350805171 +http://viaf.org/viaf/107312476 ISNI|0000000077015009 +http://viaf.org/viaf/107312476 NLA|000035956546 +http://viaf.org/viaf/107312476 LC@n79122728 +http://viaf.org/viaf/107313367 RERO|A014065225 +http://viaf.org/viaf/107313367 NLA|000035490480 +http://viaf.org/viaf/107313367 LC|n 85078972 +http://viaf.org/viaf/107313367 BIBSYS|5023605 +http://viaf.org/viaf/107313367 NTA|240735315 +http://viaf.org/viaf/107313367 NUKAT@vtls016196293 +http://viaf.org/viaf/107313367 DNB@http://d-nb.info/gnd/1051412552 +http://viaf.org/viaf/107313367 LC@n85078972 +http://viaf.org/viaf/107313367 Identities@http://www.worldcat.org/identities/lccn-n85078972 +http://viaf.org/viaf/107313367 Wikipedia@http://eo.wikipedia.org/wiki/Dominic_Louis_Serventy +http://viaf.org/viaf/107313367 Wikipedia@http://en.wikipedia.org/wiki/Dominic_Serventy +http://viaf.org/viaf/107313367 Wikipedia@http://de.wikipedia.org/wiki/Dominic_Serventy +http://viaf.org/viaf/107313367 NUKAT|n 2017243687 +http://viaf.org/viaf/107313367 SUDOC|152270345 +http://viaf.org/viaf/107313367 DNB|1051412552 +http://viaf.org/viaf/107313367 ISNI|0000000114795877 +http://viaf.org/viaf/107313367 WKP|Q5290649 +http://viaf.org/viaf/107313367 NII|DA13456163 +http://viaf.org/viaf/107314258 Wikipedia@http://en.wikipedia.org/wiki/František_Vyskočil +http://viaf.org/viaf/107314258 WKP|Q5492609 +http://viaf.org/viaf/107314258 LC|n 92036175 +http://viaf.org/viaf/107314258 ISNI|0000000108045308 +http://viaf.org/viaf/107314258 Wikipedia@http://cs.wikipedia.org/wiki/František_Vyskočil +http://viaf.org/viaf/107314258 NKC|jk01151227 +http://viaf.org/viaf/107314258 LC@n92036175 +http://viaf.org/viaf/107314258 Identities@http://www.worldcat.org/identities/lccn-n92036175 +http://viaf.org/viaf/1073148269839005230006 XR|VIAFWORK1039433294 +http://viaf.org/viaf/1073148269839005230006 DNB|1148669892 +http://viaf.org/viaf/1073148269839005230006 DNB@http://d-nb.info/gnd/1148669892 +http://viaf.org/viaf/1073148269839005230006 CAOONL|ncf11783813 +http://viaf.org/viaf/1073151246632544132975 DNB|1146844743 +http://viaf.org/viaf/1073151246632544132975 DNB@http://d-nb.info/gnd/1146844743 +http://viaf.org/viaf/1073152636118220050996 SUDOC|226257444 +http://viaf.org/viaf/1073152636118220050996 Identities@http://www.worldcat.org/identities/viaf-1073152636118220050996 +http://viaf.org/viaf/1073158735244333250005 DNB|1208406337 +http://viaf.org/viaf/1073158735244333250005 DNB@http://d-nb.info/gnd/1208406337 +http://viaf.org/viaf/1073159234571803372068 RERO|A012440656 +http://viaf.org/viaf/1073159478089927990001 CAOONL|ncf10999510 +http://viaf.org/viaf/107319208 Identities@http://www.worldcat.org/identities/lccn-n2009217716 +http://viaf.org/viaf/107319208 LC@n2009217716 +http://viaf.org/viaf/107319208 LC|n 2009217716 +http://viaf.org/viaf/107319659 LC|n 2009221058 +http://viaf.org/viaf/107319659 LC@n2009221058 +http://viaf.org/viaf/107319659 Identities@http://www.worldcat.org/identities/lccn-n2009221058 +http://viaf.org/viaf/107320990 Identities@http://www.worldcat.org/identities/lccn-n2009221951 +http://viaf.org/viaf/107320990 LC|n 2009221951 +http://viaf.org/viaf/107320990 LC@n2009221951 +http://viaf.org/viaf/107321386 LC|n 2010006729 +http://viaf.org/viaf/107321386 NTA|327482710 +http://viaf.org/viaf/107321386 Identities@http://www.worldcat.org/identities/lccn-n2010006729 +http://viaf.org/viaf/107321386 DNB|141349743 +http://viaf.org/viaf/107321386 ISNI|0000000077016167 +http://viaf.org/viaf/107321386 J9U|987007459798505171 +http://viaf.org/viaf/107321386 DNB@http://d-nb.info/gnd/141349743 +http://viaf.org/viaf/107321386 RERO|A024099458 +http://viaf.org/viaf/107321386 LC@n2010006729 +http://viaf.org/viaf/107322321 LC@n2010006871 +http://viaf.org/viaf/107322321 Identities@http://www.worldcat.org/identities/lccn-n2010006871 +http://viaf.org/viaf/107322321 LC|n 2010006871 +http://viaf.org/viaf/107325896 LC|n 2010007428 +http://viaf.org/viaf/107325896 RERO|A023189262 +http://viaf.org/viaf/107325896 Identities@http://www.worldcat.org/identities/lccn-n2010007428 +http://viaf.org/viaf/107325896 LC@n2010007428 +http://viaf.org/viaf/107328118 LC@n2010007842 +http://viaf.org/viaf/107328118 Identities@http://www.worldcat.org/identities/lccn-n2010007842 +http://viaf.org/viaf/107328118 LC|n 2010007842 +http://viaf.org/viaf/107340141 ISNI|0000000077063000 +http://viaf.org/viaf/107340141 LC|n 2010009847 +http://viaf.org/viaf/107340141 Identities@http://www.worldcat.org/identities/lccn-n2010009847 +http://viaf.org/viaf/107340141 LC@n2010009847 +http://viaf.org/viaf/107341807 Identities@http://www.worldcat.org/identities/lccn-n2010010127 +http://viaf.org/viaf/107341807 LC|n 2010010127 +http://viaf.org/viaf/107341807 LC@n2010010127 +http://viaf.org/viaf/107342374 LC@n2010010228 +http://viaf.org/viaf/107342374 Identities@http://www.worldcat.org/identities/lccn-n2010010228 +http://viaf.org/viaf/107342374 LC|n 2010010228 +http://viaf.org/viaf/107344651 SUDOC|148637450 +http://viaf.org/viaf/107344651 ISNI|0000000082874975 +http://viaf.org/viaf/107344651 LC|n 2010010663 +http://viaf.org/viaf/107344651 BNF|16630985 +http://viaf.org/viaf/107344651 BNF@http://catalogue.bnf.fr/ark:/12148/cb16630985b +http://viaf.org/viaf/107344651 LC@n2010010663 +http://viaf.org/viaf/107344651 J9U|987007308602705171 +http://viaf.org/viaf/107344651 Identities@http://www.worldcat.org/identities/lccn-n2010010663 +http://viaf.org/viaf/107345993 LC@n2010010892 +http://viaf.org/viaf/107345993 LC|n 2010010892 +http://viaf.org/viaf/107345993 BIBSYS|1498562807062 +http://viaf.org/viaf/107345993 Identities@http://www.worldcat.org/identities/lccn-n2010010892 +http://viaf.org/viaf/107347324 LC@n2010011138 +http://viaf.org/viaf/107347324 Identities@http://www.worldcat.org/identities/lccn-n2010011138 +http://viaf.org/viaf/107347324 LC|n 2010011138 +http://viaf.org/viaf/107353561 LC|n 2010216035 +http://viaf.org/viaf/107353561 LC@n2010216035 +http://viaf.org/viaf/107355343 LC|nb2008020337 +http://viaf.org/viaf/107361409 ISNI|0000000077021230 +http://viaf.org/viaf/107361409 LC|nb2010003341 +http://viaf.org/viaf/107361409 J9U|987007388453905171 +http://viaf.org/viaf/107365144 J9U|987007322736805171 +http://viaf.org/viaf/107365144 BIBSYS|90921725 +http://viaf.org/viaf/107365144 ISNI|000000007698334X +http://viaf.org/viaf/107365144 Identities@http://www.worldcat.org/identities/lccn-nb2010003935 +http://viaf.org/viaf/107365144 LC|nb2010003935 +http://viaf.org/viaf/107366981 Identities@http://www.worldcat.org/identities/lccn-nb2010004231 +http://viaf.org/viaf/107366981 LC|nb2010004231 +http://viaf.org/viaf/107376782 LC|no2010017177 +http://viaf.org/viaf/107376782 Identities@http://www.worldcat.org/identities/lccn-no2010017177 +http://viaf.org/viaf/107382848 LC|no2010018193 +http://viaf.org/viaf/107382848 Identities@http://www.worldcat.org/identities/lccn-no2010018193 +http://viaf.org/viaf/107382848 J9U|987007590276205171 +http://viaf.org/viaf/107386088 Identities@http://www.worldcat.org/identities/lccn-no2010018795 +http://viaf.org/viaf/107386088 LC|no2010018795 +http://viaf.org/viaf/107386907 LC|no2010018908 +http://viaf.org/viaf/107386907 Identities@http://www.worldcat.org/identities/lccn-no2010018908 +http://viaf.org/viaf/107389300 ISNI|0000000077234738 +http://viaf.org/viaf/107389300 LC|no2010019356 +http://viaf.org/viaf/107389300 Identities@http://www.worldcat.org/identities/lccn-no2010019356 +http://viaf.org/viaf/107391307 LC|no2010019693 +http://viaf.org/viaf/107391307 Identities@http://www.worldcat.org/identities/lccn-no2010019693 +http://viaf.org/viaf/107391307 ISNI|0000000077024853 +http://viaf.org/viaf/107403358 Wikipedia@http://zh.wikipedia.org/wiki/伊藤步 +http://viaf.org/viaf/107403358 Wikipedia@http://id.wikipedia.org/wiki/Ayumi_Ito +http://viaf.org/viaf/107403358 Wikipedia@http://it.wikipedia.org/wiki/Ayumi_Itō +http://viaf.org/viaf/107403358 Wikipedia@http://ja.wikipedia.org/wiki/伊藤歩 +http://viaf.org/viaf/107403358 Wikipedia@http://ko.wikipedia.org/wiki/이토_아유미 +http://viaf.org/viaf/107403358 Wikipedia@http://th.wikipedia.org/wiki/อะยุมิ_อิโต +http://viaf.org/viaf/107403358 CAOONL|ncf11729659 +http://viaf.org/viaf/107403358 BNF|14189333 +http://viaf.org/viaf/107403358 Wikipedia@http://fa.wikipedia.org/wiki/آیومی_ایتو +http://viaf.org/viaf/107403358 WKP|Q1197179 +http://viaf.org/viaf/107403358 SUDOC|136803784 +http://viaf.org/viaf/107403358 ISNI|0000000355673547 +http://viaf.org/viaf/107403358 LC|no2010021359 +http://viaf.org/viaf/107403358 NTA|371203686 +http://viaf.org/viaf/107403358 Wikipedia@http://ar.wikipedia.org/wiki/أيومي_إيتو +http://viaf.org/viaf/107403358 Wikipedia@http://fr.wikipedia.org/wiki/Ayumi_Itō +http://viaf.org/viaf/107403358 Wikipedia@http://en.wikipedia.org/wiki/Ayumi_Ito +http://viaf.org/viaf/107403358 BNF@http://catalogue.bnf.fr/ark:/12148/cb14189333h +http://viaf.org/viaf/107403358 Identities@http://www.worldcat.org/identities/lccn-no2010021359 +http://viaf.org/viaf/107403358 J9U|987007459798205171 +http://viaf.org/viaf/107403358 BIBSYS|4097924 +http://viaf.org/viaf/107410035 ISNI|0000000077070542 +http://viaf.org/viaf/107410035 LC|no2010022483 +http://viaf.org/viaf/107410035 Identities@http://www.worldcat.org/identities/lccn-no2010022483 +http://viaf.org/viaf/107410486 LC|no2010022552 +http://viaf.org/viaf/107410486 Identities@http://www.worldcat.org/identities/lccn-no2010022552 +http://viaf.org/viaf/1074145856994222920928 DNB@http://d-nb.info/gnd/1085772225 +http://viaf.org/viaf/1074145856994222920928 DNB|1085772225 +http://viaf.org/viaf/1074145856994222920928 Identities@http://www.worldcat.org/identities/viaf-1074145856994222920928 +http://viaf.org/viaf/1074159234585203372181 RERO|A018750238 +http://viaf.org/viaf/1074159234585203372181 Identities@http://www.worldcat.org/identities/viaf-1074159234585203372181 +http://viaf.org/viaf/107416327 LC|no2010023500 +http://viaf.org/viaf/107416327 DNB|116144131X +http://viaf.org/viaf/107416327 BNE|XX5786615 +http://viaf.org/viaf/107416327 ISNI|0000000077277332 +http://viaf.org/viaf/107416327 Identities@http://www.worldcat.org/identities/lccn-no2010023500 +http://viaf.org/viaf/107416327 DNB@http://d-nb.info/gnd/116144131X +http://viaf.org/viaf/107422564 LC|no2010024471 +http://viaf.org/viaf/107422564 Identities@http://www.worldcat.org/identities/lccn-no2010024471 +http://viaf.org/viaf/107427514 Wikipedia@http://de.wikipedia.org/wiki/Tom_Jeffords +http://viaf.org/viaf/107427514 Wikipedia@http://en.wikipedia.org/wiki/Tom_Jeffords +http://viaf.org/viaf/107427514 WKP|Q1266733 +http://viaf.org/viaf/107427514 Identities@http://www.worldcat.org/identities/lccn-no2010025285 +http://viaf.org/viaf/107427514 Wikipedia@http://fr.wikipedia.org/wiki/Thomas_Jeffords +http://viaf.org/viaf/107427514 LC|no2010025285 +http://viaf.org/viaf/107431474 Identities@http://www.worldcat.org/identities/lccn-no2010025960 +http://viaf.org/viaf/107431474 ISNI|0000000077073268 +http://viaf.org/viaf/107431474 LC|no2010025960 +http://viaf.org/viaf/10743286 NUKAT@vtls002377051 +http://viaf.org/viaf/10743286 NUKAT|n 2005111688 +http://viaf.org/viaf/10743286 LC|no2003042628 +http://viaf.org/viaf/10743286 Identities@http://www.worldcat.org/identities/lccn-no2003042628 +http://viaf.org/viaf/10743286 NTA|334460425 +http://viaf.org/viaf/10743286 ISNI|0000000117427121 +http://viaf.org/viaf/107433751 Identities@http://www.worldcat.org/identities/lccn-no2010026316 +http://viaf.org/viaf/107433751 LC|no2010026316 +http://viaf.org/viaf/107433751 ISNI|0000000077073567 +http://viaf.org/viaf/107434147 Identities@http://www.worldcat.org/identities/lccn-no2010026367 +http://viaf.org/viaf/107434147 LC|no2010026367 +http://viaf.org/viaf/107434147 SUDOC|221761942 +http://viaf.org/viaf/107434147 BNC|a19362262 +http://viaf.org/viaf/107434147 BNE|XX5690785 +http://viaf.org/viaf/107434147 DNB@http://d-nb.info/gnd/1140439618 +http://viaf.org/viaf/107434147 BNC@.a19362262 +http://viaf.org/viaf/107434147 ISNI|0000000077073639 +http://viaf.org/viaf/107434147 DNB|1140439618 +http://viaf.org/viaf/107436424 Identities@http://www.worldcat.org/identities/lccn-no2010026796 +http://viaf.org/viaf/107436424 ISNI|0000000077030620 +http://viaf.org/viaf/107436424 LC|no2010026796 +http://viaf.org/viaf/107437766 J9U|987007322733405171 +http://viaf.org/viaf/107437766 Identities@http://www.worldcat.org/identities/lccn-no2010027005 +http://viaf.org/viaf/107437766 RERO|A025367912 +http://viaf.org/viaf/107437766 LC|no2010027005 +http://viaf.org/viaf/107437766 ISNI|0000000077115253 +http://viaf.org/viaf/10744221 DNB|12307374X +http://viaf.org/viaf/10744221 DNB@http://d-nb.info/gnd/12307374X +http://viaf.org/viaf/10744221 Identities@http://www.worldcat.org/identities/viaf-10744221 +http://viaf.org/viaf/10744221 ISNI|0000000010996244 +http://viaf.org/viaf/107443101 ISNI|0000000081725214 +http://viaf.org/viaf/107443101 DNB@http://d-nb.info/gnd/140330720 +http://viaf.org/viaf/107443101 Identities@http://www.worldcat.org/identities/lccn-no2010027932 +http://viaf.org/viaf/107443101 NKC|jo2016907061 +http://viaf.org/viaf/107443101 LC|no2010027932 +http://viaf.org/viaf/107443101 DNB|140330720 +http://viaf.org/viaf/107443101 BNE|XX4773412 +http://viaf.org/viaf/10744672 DNB@http://d-nb.info/gnd/123090598 +http://viaf.org/viaf/10744672 NUKAT|n 2009117309 +http://viaf.org/viaf/10744672 LC@n78059369 +http://viaf.org/viaf/10744672 Identities@http://www.worldcat.org/identities/lccn-n78059369 +http://viaf.org/viaf/10744672 SZ|123090598 +http://viaf.org/viaf/10744672 SZ@http://d-nb.info/gnd/123090598 +http://viaf.org/viaf/10744672 SUDOC|094563152 +http://viaf.org/viaf/10744672 NUKAT@vtls006091686 +http://viaf.org/viaf/10744672 RERO|A003641265 +http://viaf.org/viaf/10744672 ISNI|0000000115946569 +http://viaf.org/viaf/10744672 LC|n 78059369 +http://viaf.org/viaf/10744672 DNB|123090598 +http://viaf.org/viaf/107460481 LC|no2010030926 +http://viaf.org/viaf/107460481 Identities@http://www.worldcat.org/identities/lccn-no2010030926 +http://viaf.org/viaf/107460481 ISNI|0000000077117777 +http://viaf.org/viaf/107464540 Identities@http://www.worldcat.org/identities/lccn-no2010031611 +http://viaf.org/viaf/107464540 ISNI|0000000077034293 +http://viaf.org/viaf/107464540 LC|no2010031611 +http://viaf.org/viaf/107468104 LC|no2010032172 +http://viaf.org/viaf/107468104 Identities@http://www.worldcat.org/identities/lccn-no2010032172 +http://viaf.org/viaf/107474297 NKC|jx20100217012 +http://viaf.org/viaf/107474297 ISNI|0000000077244733 +http://viaf.org/viaf/107474297 Identities@http://www.worldcat.org/identities/viaf-107474297 +http://viaf.org/viaf/107475188 NKC|kv2010540383 +http://viaf.org/viaf/107475188 ISNI|0000000077035392 +http://viaf.org/viaf/107475188 Identities@http://www.worldcat.org/identities/viaf-107475188 +http://viaf.org/viaf/107480407 NKC|ola2010548409 +http://viaf.org/viaf/107480407 Identities@http://www.worldcat.org/identities/viaf-107480407 +http://viaf.org/viaf/107480407 ISNI|0000000077119502 +http://viaf.org/viaf/107480858 NKC|osd2010555476 +http://viaf.org/viaf/107484142 NKC|vse2010558283 +http://viaf.org/viaf/107489994 WKP|Q95181338 +http://viaf.org/viaf/107489994 ISNI|0000000077202453 +http://viaf.org/viaf/107489994 NKC|xx0112102 +http://viaf.org/viaf/107495285 J9U|987007299079905171 +http://viaf.org/viaf/107506769 ISNI|0000000077203958 +http://viaf.org/viaf/107506769 J9U|987007301826305171 +http://viaf.org/viaf/107511664 J9U|987007303917605171 +http://viaf.org/viaf/107511664 Identities@http://www.worldcat.org/identities/viaf-107511664 +http://viaf.org/viaf/107511664 ISNI|000000007699302X +http://viaf.org/viaf/107514337 ISNI|0000000077204897 +http://viaf.org/viaf/107514337 Identities@http://www.worldcat.org/identities/viaf-107514337 +http://viaf.org/viaf/107514337 J9U|987007306117705171 +http://viaf.org/viaf/1075146284374415331082 Identities@http://www.worldcat.org/identities/lccn-no2013104568 +http://viaf.org/viaf/1075146284374415331082 SUDOC|192856200 +http://viaf.org/viaf/1075146284374415331082 LC|no2013104568 +http://viaf.org/viaf/1075154260418524480000 LIH@LNB:y13;=BT +http://viaf.org/viaf/1075154260418524480000 Identities@http://www.worldcat.org/identities/viaf-1075154260418524480000 +http://viaf.org/viaf/1075154260418524480000 WKP|Q22332389 +http://viaf.org/viaf/1075154260418524480000 LIH|LNB:_y_13;=BT +http://viaf.org/viaf/1075154260418524480000 Wikipedia@http://sv.wikipedia.org/wiki/Stig_Arbman +http://viaf.org/viaf/107521014 J9U|987007302925605171 +http://viaf.org/viaf/107521014 LC|no2017119294 +http://viaf.org/viaf/107521014 Identities@http://www.worldcat.org/identities/lccn-no2017119294 +http://viaf.org/viaf/107545577 BNE|XX1310045 +http://viaf.org/viaf/107550472 BNE|XX1692138 +http://viaf.org/viaf/107550472 Identities@http://www.worldcat.org/identities/lccn-n2015050999 +http://viaf.org/viaf/107550472 LC@n2015050999 +http://viaf.org/viaf/107550472 LC|n 2015050999 +http://viaf.org/viaf/107555422 Identities@http://www.worldcat.org/identities/viaf-107555422 +http://viaf.org/viaf/107555422 BNE|XX4794739 +http://viaf.org/viaf/107555873 ISNI|0000000077489642 +http://viaf.org/viaf/107555873 Identities@http://www.worldcat.org/identities/viaf-107555873 +http://viaf.org/viaf/107555873 BNE|XX4818808 +http://viaf.org/viaf/107556764 Identities@http://www.worldcat.org/identities/viaf-107556764 +http://viaf.org/viaf/107556764 ISNI|0000000077423512 +http://viaf.org/viaf/107556764 BNE|XX4847670 +http://viaf.org/viaf/107561939 BNE|XX4890960 +http://viaf.org/viaf/107561939 ISNI|0000000077656922 +http://viaf.org/viaf/107561939 LC|no2014057130 +http://viaf.org/viaf/107561939 Identities@http://www.worldcat.org/identities/lccn-no2014057130 +http://viaf.org/viaf/107561939 BNC@.a10793136 +http://viaf.org/viaf/107561939 BNC|a10793136 +http://viaf.org/viaf/107567005 BNE|XX4898832 +http://viaf.org/viaf/107567005 Identities@http://www.worldcat.org/identities/viaf-107567005 +http://viaf.org/viaf/10756750 DNB@http://d-nb.info/gnd/123541328 +http://viaf.org/viaf/10756750 Identities@http://www.worldcat.org/identities/viaf-10756750 +http://viaf.org/viaf/10756750 DNB|123541328 +http://viaf.org/viaf/10756750 ISNI|0000000013231546 +http://viaf.org/viaf/107569238 Identities@http://www.worldcat.org/identities/viaf-107569238 +http://viaf.org/viaf/107569238 BNE|XX4902560 +http://viaf.org/viaf/10757597 DNB|123571693 +http://viaf.org/viaf/10757597 ISNI|0000000013232071 +http://viaf.org/viaf/10757597 Identities@http://www.worldcat.org/identities/viaf-10757597 +http://viaf.org/viaf/10757597 DNB@http://d-nb.info/gnd/123571693 +http://viaf.org/viaf/10758488 NUKAT|n 02204733 +http://viaf.org/viaf/10758488 ISNI|0000000115946737 +http://viaf.org/viaf/10758488 PLWABN|9810698020105606 +http://viaf.org/viaf/10758488 Identities@http://www.worldcat.org/identities/viaf-10758488 +http://viaf.org/viaf/10758488 NUKAT@vtls000278435 +http://viaf.org/viaf/10758488 NTA|241615399 +http://viaf.org/viaf/107588895 RERO|A003733566 +http://viaf.org/viaf/107588895 BNF@FRBNF108745029 +http://viaf.org/viaf/107588895 Identities@http://www.worldcat.org/identities/viaf-107588895 +http://viaf.org/viaf/107588895 CAOONL|ncf11349888 +http://viaf.org/viaf/107588895 SUDOC|198193327 +http://viaf.org/viaf/107588895 BNF|10874502 +http://viaf.org/viaf/107588895 ISNI|0000000077725879 +http://viaf.org/viaf/107588895 NTA|152331166 +http://viaf.org/viaf/107592728 NUKAT@vtls018784452 +http://viaf.org/viaf/107592728 DNB|140779035 +http://viaf.org/viaf/107592728 ISNI|0000000108310191 +http://viaf.org/viaf/107592728 NKC|mub2018993396 +http://viaf.org/viaf/107592728 SUDOC|031153909 +http://viaf.org/viaf/107592728 NTA|07279917X +http://viaf.org/viaf/107592728 BNF|12242458 +http://viaf.org/viaf/107592728 NUKAT|n 2019218408 +http://viaf.org/viaf/107592728 NII|DA17491869 +http://viaf.org/viaf/107592728 RERO|A003180246 +http://viaf.org/viaf/107592728 Identities@http://www.worldcat.org/identities/viaf-107592728 +http://viaf.org/viaf/107592728 DNB@http://d-nb.info/gnd/140779035 +http://viaf.org/viaf/107592728 BNF@http://catalogue.bnf.fr/ark:/12148/cb12242458h +http://viaf.org/viaf/107598696 BNC|a11220545 +http://viaf.org/viaf/107598696 BAV@495/150182 +http://viaf.org/viaf/107598696 LIH@LNB:CTav;=B+ +http://viaf.org/viaf/107598696 NUKAT@vtls009467869 +http://viaf.org/viaf/107598696 DNB@http://d-nb.info/gnd/133999912 +http://viaf.org/viaf/107598696 BNF@FRBNF137772883 +http://viaf.org/viaf/107598696 BNC@.a11220545 +http://viaf.org/viaf/107598696 Identities@http://www.worldcat.org/identities/lccn-nr2002010913 +http://viaf.org/viaf/107598696 BAV|495_150182 +http://viaf.org/viaf/107598696 RERO|A000016955 +http://viaf.org/viaf/107598696 PLWABN|9810668118505606 +http://viaf.org/viaf/107598696 LIH|LNB:CT_a__v_;=B__ +http://viaf.org/viaf/107598696 WKP|Q52149686 +http://viaf.org/viaf/107598696 BLBNB|001444449 +http://viaf.org/viaf/107598696 SUDOC|08589320X +http://viaf.org/viaf/107598696 NUKAT|n 2013137972 +http://viaf.org/viaf/107598696 NTA|074393278 +http://viaf.org/viaf/107598696 LC|nr2002010913 +http://viaf.org/viaf/107598696 ISNI|0000000114796458 +http://viaf.org/viaf/107598696 DNB|133999912 +http://viaf.org/viaf/107598696 BNF|13777288 +http://viaf.org/viaf/107598696 BNE|XX5019723 +http://viaf.org/viaf/1076153653232955900007 LC|no2018114156 +http://viaf.org/viaf/1076155598031315600005 DNB|1183812086 +http://viaf.org/viaf/1076155598031315600005 DNB@http://d-nb.info/gnd/1183812086 +http://viaf.org/viaf/1076159234092503370604 RERO|A012431876 +http://viaf.org/viaf/1076159234203603370951 RERO|A012856933 +http://viaf.org/viaf/1076159234203603370951 Identities@http://www.worldcat.org/identities/viaf-1076159234203603370951 +http://viaf.org/viaf/1076159474335727662505 CAOONL|ncf11474030 +http://viaf.org/viaf/107615966 BNF@http://catalogue.bnf.fr/ark:/12148/cb16186965b +http://viaf.org/viaf/107615966 BNF|16186965 +http://viaf.org/viaf/107615966 SUDOC|071285571 +http://viaf.org/viaf/107615966 ISNI|0000000077711223 +http://viaf.org/viaf/107615966 Identities@http://www.worldcat.org/identities/viaf-107615966 +http://viaf.org/viaf/107618639 BNF|16187792 +http://viaf.org/viaf/107618639 BNF@http://catalogue.bnf.fr/ark:/12148/cb16187792x +http://viaf.org/viaf/107618639 Identities@http://www.worldcat.org/identities/lccn-no2011111995 +http://viaf.org/viaf/107618639 LC|no2011111995 +http://viaf.org/viaf/1076236 Identities@http://www.worldcat.org/identities/viaf-1076236 +http://viaf.org/viaf/1076236 DNB@http://d-nb.info/gnd/128887249 +http://viaf.org/viaf/1076236 ISNI|0000000440385881 +http://viaf.org/viaf/1076236 DNB|128887249 +http://viaf.org/viaf/10762816 DNB|12377795X +http://viaf.org/viaf/10762816 DNB@http://d-nb.info/gnd/12377795X +http://viaf.org/viaf/10762816 Identities@http://www.worldcat.org/identities/viaf-10762816 +http://viaf.org/viaf/107631553 BNF@http://catalogue.bnf.fr/ark:/12148/cb16191291z +http://viaf.org/viaf/107631553 Identities@http://www.worldcat.org/identities/viaf-107631553 +http://viaf.org/viaf/107631553 BNF|16191291 +http://viaf.org/viaf/107632895 SUDOC|18786893X +http://viaf.org/viaf/107632895 RERO|A017696857 +http://viaf.org/viaf/107632895 BNF|16191674 +http://viaf.org/viaf/107632895 BNF@http://catalogue.bnf.fr/ark:/12148/cb16191674g +http://viaf.org/viaf/107632895 Identities@http://www.worldcat.org/identities/viaf-107632895 +http://viaf.org/viaf/107632895 ISNI|000000007760994X +http://viaf.org/viaf/107635117 BNF|16192274 +http://viaf.org/viaf/107635117 ISNI|0000000077435812 +http://viaf.org/viaf/107635117 Identities@http://www.worldcat.org/identities/viaf-107635117 +http://viaf.org/viaf/107635117 BNF@http://catalogue.bnf.fr/ark:/12148/cb16192274m +http://viaf.org/viaf/107663189 Identities@http://www.worldcat.org/identities/viaf-107663189 +http://viaf.org/viaf/107663189 DNB@http://d-nb.info/gnd/140657975 +http://viaf.org/viaf/107663189 DNB|140657975 +http://viaf.org/viaf/107669976 Identities@http://www.worldcat.org/identities/viaf-107669976 +http://viaf.org/viaf/107669976 DNB@http://d-nb.info/gnd/140665927 +http://viaf.org/viaf/107669976 DNB|140665927 +http://viaf.org/viaf/10767442 PLWABN|9810562405605606 +http://viaf.org/viaf/10767442 ISNI|0000000055405700 +http://viaf.org/viaf/10767442 SUDOC|176929738 +http://viaf.org/viaf/10767442 NKC|jn99240001015 +http://viaf.org/viaf/10767442 LC|n 96025050 +http://viaf.org/viaf/10767442 WKP|Q26460323 +http://viaf.org/viaf/10767442 NUKAT|n 2020201588 +http://viaf.org/viaf/10767442 DNB|123954940 +http://viaf.org/viaf/10767442 Wikipedia@http://cs.wikipedia.org/wiki/Petr_Rákos +http://viaf.org/viaf/10767442 Identities@http://www.worldcat.org/identities/lccn-n96025050 +http://viaf.org/viaf/10767442 LC@n96025050 +http://viaf.org/viaf/10767442 NUKAT@vtls019087861 +http://viaf.org/viaf/10767442 DNB@http://d-nb.info/gnd/123954940 +http://viaf.org/viaf/10767442 NSK|000093220 +http://viaf.org/viaf/107674420 DNB@http://d-nb.info/gnd/140671153 +http://viaf.org/viaf/107674420 Identities@http://www.worldcat.org/identities/viaf-107674420 +http://viaf.org/viaf/107674420 DNB|140671153 +http://viaf.org/viaf/107682719 Identities@http://www.worldcat.org/identities/viaf-107682719 +http://viaf.org/viaf/107682719 DNB|140680829 +http://viaf.org/viaf/107682719 DNB@http://d-nb.info/gnd/140680829 +http://viaf.org/viaf/107698983 DNB|140699562 +http://viaf.org/viaf/107698983 ISNI|0000000077657482 +http://viaf.org/viaf/107698983 DNB@http://d-nb.info/gnd/140699562 +http://viaf.org/viaf/107698983 Identities@http://www.worldcat.org/identities/viaf-107698983 +http://viaf.org/viaf/107701942 DNB|140703063 +http://viaf.org/viaf/107701942 Identities@http://www.worldcat.org/identities/viaf-107701942 +http://viaf.org/viaf/107701942 DNB@http://d-nb.info/gnd/140703063 +http://viaf.org/viaf/107706073 SZ|140707921 +http://viaf.org/viaf/107706073 DNB|140707921 +http://viaf.org/viaf/107706073 Identities@http://www.worldcat.org/identities/viaf-107706073 +http://viaf.org/viaf/107706073 DNB@http://d-nb.info/gnd/140707921 +http://viaf.org/viaf/107711248 ISNI|0000000077503993 +http://viaf.org/viaf/107711248 DNB|14071393X +http://viaf.org/viaf/107711248 Identities@http://www.worldcat.org/identities/viaf-107711248 +http://viaf.org/viaf/107711248 DNB@http://d-nb.info/gnd/14071393X +http://viaf.org/viaf/1077127 ISNI|0000000110350352 +http://viaf.org/viaf/1077127 J9U|987007379164505171 +http://viaf.org/viaf/1077127 Identities@http://www.worldcat.org/identities/lccn-no2004097691 +http://viaf.org/viaf/1077127 NUKAT@vtls002185926 +http://viaf.org/viaf/1077127 CAOONL|ncf12123121 +http://viaf.org/viaf/1077127 BIBSYS|1492758309221 +http://viaf.org/viaf/1077127 NUKAT|n 2004251571 +http://viaf.org/viaf/1077127 SUDOC|124217273 +http://viaf.org/viaf/1077127 RERO|A013993183 +http://viaf.org/viaf/1077127 LC|no2004097691 +http://viaf.org/viaf/1077145857937823020378 Wikipedia@http://nl.wikipedia.org/wiki/Hainichen_(concentratiekamp) +http://viaf.org/viaf/1077145857937823020378 Identities@http://www.worldcat.org/identities/lccn-no2016017589 +http://viaf.org/viaf/1077145857937823020378 LC|no2016017589 +http://viaf.org/viaf/1077145857937823020378 WKP|Q2792136 +http://viaf.org/viaf/1077157226613585410000 DNB|1197921923 +http://viaf.org/viaf/1077157226613585410000 DNB@http://d-nb.info/gnd/1197921923 +http://viaf.org/viaf/1077159234465003371834 RERO|A012427298 +http://viaf.org/viaf/107719042 DNB@http://d-nb.info/gnd/140723269 +http://viaf.org/viaf/107719042 Identities@http://www.worldcat.org/identities/viaf-107719042 +http://viaf.org/viaf/107719042 DNB|140723269 +http://viaf.org/viaf/107720202 DNB@http://d-nb.info/gnd/140724656 +http://viaf.org/viaf/107720202 Identities@http://www.worldcat.org/identities/viaf-107720202 +http://viaf.org/viaf/107720202 DNB|140724656 +http://viaf.org/viaf/107725603 Identities@http://www.worldcat.org/identities/viaf-107725603 +http://viaf.org/viaf/107725603 DNB|140730834 +http://viaf.org/viaf/107725603 DNB@http://d-nb.info/gnd/140730834 +http://viaf.org/viaf/107735080 Identities@http://www.worldcat.org/identities/viaf-107735080 +http://viaf.org/viaf/107735080 DNB|140741623 +http://viaf.org/viaf/107735080 DNB@http://d-nb.info/gnd/140741623 +http://viaf.org/viaf/107741641 DNB@http://d-nb.info/gnd/140749195 +http://viaf.org/viaf/107741641 Identities@http://www.worldcat.org/identities/viaf-107741641 +http://viaf.org/viaf/107741641 ISNI|0000000077620161 +http://viaf.org/viaf/107741641 DNB|140749195 +http://viaf.org/viaf/107743379 NKC|xx0187787 +http://viaf.org/viaf/107743379 NUKAT|n 2018122477 +http://viaf.org/viaf/107743379 DNB|140751149 +http://viaf.org/viaf/107743379 BNC|a12194827 +http://viaf.org/viaf/107743379 WKP|Q79267411 +http://viaf.org/viaf/107743379 LC|n 2020025755 +http://viaf.org/viaf/107743379 Identities@http://www.worldcat.org/identities/lccn-n2020025755 +http://viaf.org/viaf/107743379 BNC@.a12194827 +http://viaf.org/viaf/107743379 DNB@http://d-nb.info/gnd/140751149 +http://viaf.org/viaf/107743379 NUKAT@vtls016606197 +http://viaf.org/viaf/107743379 LC@n2020025755 +http://viaf.org/viaf/107743379 ISNI|0000000077726505 +http://viaf.org/viaf/107743379 NTA|098757857 +http://viaf.org/viaf/10775010 LC@n90615959 +http://viaf.org/viaf/10775010 BNF@FRBNF148898431 +http://viaf.org/viaf/10775010 Identities@http://www.worldcat.org/identities/lccn-n90615959 +http://viaf.org/viaf/10775010 Wikipedia@http://pt.wikipedia.org/wiki/Fernando_Echevarría +http://viaf.org/viaf/10775010 Wikipedia@http://gl.wikipedia.org/wiki/Fernando_Echevarría +http://viaf.org/viaf/10775010 Wikipedia@http://es.wikipedia.org/wiki/Fernando_Echevarría +http://viaf.org/viaf/10775010 LIH|LNB:B_z__z_B;=CI +http://viaf.org/viaf/10775010 BLBNB|000467762 +http://viaf.org/viaf/10775010 WKP|Q10281328 +http://viaf.org/viaf/10775010 SUDOC|059412720 +http://viaf.org/viaf/10775010 PTBNP|25499 +http://viaf.org/viaf/10775010 NTA|070511217 +http://viaf.org/viaf/10775010 NKC|kup20000000024263 +http://viaf.org/viaf/10775010 LC|n 90615959 +http://viaf.org/viaf/10775010 ISNI|0000000078243652 +http://viaf.org/viaf/10775010 DNB|124271057 +http://viaf.org/viaf/10775010 BNF|14889843 +http://viaf.org/viaf/10775010 BNE|XX1632582 +http://viaf.org/viaf/10775010 DNB@http://d-nb.info/gnd/124271057 +http://viaf.org/viaf/10775010 LIH@LNB:BzzB;=CI +http://viaf.org/viaf/107754566 DNB|140764097 +http://viaf.org/viaf/107754566 Identities@http://www.worldcat.org/identities/viaf-107754566 +http://viaf.org/viaf/107754566 DNB@http://d-nb.info/gnd/140764097 +http://viaf.org/viaf/107754610 DNB@http://d-nb.info/gnd/140764143 +http://viaf.org/viaf/107754610 Identities@http://www.worldcat.org/identities/viaf-107754610 +http://viaf.org/viaf/107754610 ISNI|0000000077528031 +http://viaf.org/viaf/107754610 DNB|140764143 +http://viaf.org/viaf/10777694 Identities@http://www.worldcat.org/identities/viaf-10777694 +http://viaf.org/viaf/10777694 DNB@http://d-nb.info/gnd/124368913 +http://viaf.org/viaf/10777694 DNB|124368913 +http://viaf.org/viaf/107777787 DNB|140791434 +http://viaf.org/viaf/107777787 DNB@http://d-nb.info/gnd/140791434 +http://viaf.org/viaf/107777787 Identities@http://www.worldcat.org/identities/viaf-107777787 +http://viaf.org/viaf/107777787 ISNI|0000000077537405 +http://viaf.org/viaf/107779613 DNB@http://d-nb.info/gnd/140793496 +http://viaf.org/viaf/107779613 Identities@http://www.worldcat.org/identities/viaf-107779613 +http://viaf.org/viaf/107779613 DNB|140793496 +http://viaf.org/viaf/10778134 DNB@http://d-nb.info/gnd/124384196 +http://viaf.org/viaf/10778134 Identities@http://www.worldcat.org/identities/lccn-nr2003018799 +http://viaf.org/viaf/10778134 LC|nr2003018799 +http://viaf.org/viaf/10778134 DNB|124384196 +http://viaf.org/viaf/107791592 DNB|140807268 +http://viaf.org/viaf/107791592 DNB@http://d-nb.info/gnd/140807268 +http://viaf.org/viaf/107791592 Identities@http://www.worldcat.org/identities/viaf-107791592 +http://viaf.org/viaf/107792483 LC|no2011121447 +http://viaf.org/viaf/107792483 ISNI|0000000355677070 +http://viaf.org/viaf/107792483 DNB|140808337 +http://viaf.org/viaf/107792483 Wikipedia@http://ar.wikipedia.org/wiki/ما_سو +http://viaf.org/viaf/107792483 Wikipedia@http://en.wikipedia.org/wiki/Ma_Su_(actress) +http://viaf.org/viaf/107792483 Wikipedia@http://th.wikipedia.org/wiki/หม่า_ซู_(นักแสดง) +http://viaf.org/viaf/107792483 Wikipedia@http://zh.wikipedia.org/wiki/馬蘇 +http://viaf.org/viaf/107792483 Wikipedia@http://zh_yue.wikipedia.org/wiki/馬蘇_(演員) +http://viaf.org/viaf/107792483 Identities@http://www.worldcat.org/identities/lccn-no2011121447 +http://viaf.org/viaf/107792483 DNB@http://d-nb.info/gnd/140808337 +http://viaf.org/viaf/107792483 WKP|Q6720822 +http://viaf.org/viaf/107800799 Identities@http://www.worldcat.org/identities/viaf-107800799 +http://viaf.org/viaf/107800799 ISNI|0000000077667082 +http://viaf.org/viaf/107800799 DNB|140818197 +http://viaf.org/viaf/107800799 DNB@http://d-nb.info/gnd/140818197 +http://viaf.org/viaf/1078152636061120050104 DNB|1158385439 +http://viaf.org/viaf/1078152636061120050104 DNB@http://d-nb.info/gnd/1158385439 +http://viaf.org/viaf/10781527 Identities@http://www.worldcat.org/identities/viaf-10781527 +http://viaf.org/viaf/10781527 ISNI|0000000013247804 +http://viaf.org/viaf/10781527 DNB|124521134 +http://viaf.org/viaf/10781527 DNB@http://d-nb.info/gnd/124521134 +http://viaf.org/viaf/1078159234847803372889 Identities@http://www.worldcat.org/identities/viaf-1078159234847803372889 +http://viaf.org/viaf/1078159234847803372889 RERO|A020436263 +http://viaf.org/viaf/107816161 WKP|Q16216091 +http://viaf.org/viaf/107816161 DNB|140835822 +http://viaf.org/viaf/107816161 DNB@http://d-nb.info/gnd/140835822 +http://viaf.org/viaf/107816161 Identities@http://www.worldcat.org/identities/viaf-107816161 +http://viaf.org/viaf/107816161 Wikipedia@http://en.wikipedia.org/wiki/Alexia_Sinclair +http://viaf.org/viaf/107816161 Wikipedia@http://arz.wikipedia.org/wiki/اليكسيا_سنكلير +http://viaf.org/viaf/107816161 Wikipedia@http://ar.wikipedia.org/wiki/أليكسيا_سنكلير +http://viaf.org/viaf/107826737 DNB@http://d-nb.info/gnd/140848363 +http://viaf.org/viaf/107826737 Identities@http://www.worldcat.org/identities/viaf-107826737 +http://viaf.org/viaf/107826737 DNB|140848363 +http://viaf.org/viaf/107826737 ISNI|0000000077439602 +http://viaf.org/viaf/107828195 Identities@http://www.worldcat.org/identities/viaf-107828195 +http://viaf.org/viaf/107828195 DNB@http://d-nb.info/gnd/140849963 +http://viaf.org/viaf/107828195 DNB|140849963 +http://viaf.org/viaf/107829905 ISNI|0000000121467329 +http://viaf.org/viaf/107829905 DNB|14085200X +http://viaf.org/viaf/107829905 LIH@LNB:BVoH;=Bl +http://viaf.org/viaf/107829905 DNB@http://d-nb.info/gnd/14085200X +http://viaf.org/viaf/107829905 LC@n2005011493 +http://viaf.org/viaf/107829905 NUKAT@vtls005607965 +http://viaf.org/viaf/107829905 Identities@http://www.worldcat.org/identities/lccn-n2005011493 +http://viaf.org/viaf/107829905 ORCID@http://orcid.org/0000-0003-4332-1886 +http://viaf.org/viaf/107829905 CAOONL|ncf11434443 +http://viaf.org/viaf/107829905 J9U|987007435185405171 +http://viaf.org/viaf/107829905 LIH|LNB:BV_o_H;=B_l_ +http://viaf.org/viaf/107829905 NKC|vse20181017024 +http://viaf.org/viaf/107829905 BIBSYS|6006256 +http://viaf.org/viaf/107829905 SUDOC|108510638 +http://viaf.org/viaf/107829905 NTA|284821144 +http://viaf.org/viaf/107829905 NUKAT|n 2008117935 +http://viaf.org/viaf/107829905 LC|n 2005011493 +http://viaf.org/viaf/107833414 NUKAT@vtls006737510 +http://viaf.org/viaf/107833414 SUDOC|147906423 +http://viaf.org/viaf/107833414 NUKAT|n 2010124535 +http://viaf.org/viaf/107833414 LC|no2010039487 +http://viaf.org/viaf/107833414 CAOONL|ncf11628001 +http://viaf.org/viaf/107833414 Identities@http://www.worldcat.org/identities/lccn-no2010039487 +http://viaf.org/viaf/107833414 DNB|14085603X +http://viaf.org/viaf/107833414 DNB@http://d-nb.info/gnd/14085603X +http://viaf.org/viaf/107833414 ISNI|0000000116973753 +http://viaf.org/viaf/107836538 BNF@http://catalogue.bnf.fr/ark:/12148/cb16241718d +http://viaf.org/viaf/107836538 Identities@http://www.worldcat.org/identities/lccn-no2016052602 +http://viaf.org/viaf/107836538 BNF|16241718 +http://viaf.org/viaf/107836538 LC|no2016052602 +http://viaf.org/viaf/107836538 J9U|987007345448405171 +http://viaf.org/viaf/107836538 SUDOC|145729613 +http://viaf.org/viaf/107836538 ISNI|0000000435115860 +http://viaf.org/viaf/107843215 ISNI|0000000077537616 +http://viaf.org/viaf/107843215 DNB|140867147 +http://viaf.org/viaf/107843215 DNB@http://d-nb.info/gnd/140867147 +http://viaf.org/viaf/107843215 Identities@http://www.worldcat.org/identities/viaf-107843215 +http://viaf.org/viaf/107849183 DNB|140873899 +http://viaf.org/viaf/107849183 DNB@http://d-nb.info/gnd/140873899 +http://viaf.org/viaf/107863268 DNB@http://d-nb.info/gnd/140890335 +http://viaf.org/viaf/107863268 DNB|140890335 +http://viaf.org/viaf/107863268 Identities@http://www.worldcat.org/identities/viaf-107863268 +http://viaf.org/viaf/107864203 Wikipedia@http://arz.wikipedia.org/wiki/توم_ستيفان +http://viaf.org/viaf/107864203 Identities@http://www.worldcat.org/identities/viaf-107864203 +http://viaf.org/viaf/107864203 Wikipedia@http://en.wikipedia.org/wiki/Tom_Stephan +http://viaf.org/viaf/107864203 DNB|140891420 +http://viaf.org/viaf/107864203 WKP|Q3530896 +http://viaf.org/viaf/107864203 DNB@http://d-nb.info/gnd/140891420 +http://viaf.org/viaf/107864203 Wikipedia@http://ar.wikipedia.org/wiki/توم_ستيفان +http://viaf.org/viaf/107869604 DNB|140897933 +http://viaf.org/viaf/107869604 WKP|Q55903081 +http://viaf.org/viaf/107869604 Identities@http://www.worldcat.org/identities/viaf-107869604 +http://viaf.org/viaf/107869604 DNB@http://d-nb.info/gnd/140897933 +http://viaf.org/viaf/107883365 DNB@http://d-nb.info/gnd/140913971 +http://viaf.org/viaf/107883365 DNB|140913971 +http://viaf.org/viaf/107886533 DNB@http://d-nb.info/gnd/140917675 +http://viaf.org/viaf/107886533 DNB|140917675 +http://viaf.org/viaf/107886533 Identities@http://www.worldcat.org/identities/viaf-107886533 +http://viaf.org/viaf/107889657 ISNI|0000000385231563 +http://viaf.org/viaf/107889657 Identities@http://www.worldcat.org/identities/lccn-nr96024674 +http://viaf.org/viaf/107889657 LC|nr 96024674 +http://viaf.org/viaf/107889657 LC@nr96024674 +http://viaf.org/viaf/10789277 Identities@http://www.worldcat.org/identities/lccn-n2003145770 +http://viaf.org/viaf/10789277 LC|n 2003145770 +http://viaf.org/viaf/10789277 ISNI|0000000045410039 +http://viaf.org/viaf/10789277 LC@n2003145770 +http://viaf.org/viaf/107897676 DNB|140930531 +http://viaf.org/viaf/107897676 Identities@http://www.worldcat.org/identities/viaf-107897676 +http://viaf.org/viaf/107897676 DNB@http://d-nb.info/gnd/140930531 +http://viaf.org/viaf/107900635 DNB|140934081 +http://viaf.org/viaf/107900635 DNB@http://d-nb.info/gnd/140934081 +http://viaf.org/viaf/107900635 Identities@http://www.worldcat.org/identities/viaf-107900635 +http://viaf.org/viaf/107909320 CAOONL|ncf10591106 +http://viaf.org/viaf/107909320 Identities@http://www.worldcat.org/identities/viaf-107909320 +http://viaf.org/viaf/107910887 CAOONL|ncf10590344 +http://viaf.org/viaf/107910887 ISNI|0000000077433470 +http://viaf.org/viaf/107910887 Identities@http://www.worldcat.org/identities/viaf-107910887 +http://viaf.org/viaf/1079146997278418891529 Wikipedia@http://ja.wikipedia.org/wiki/海技振興センター +http://viaf.org/viaf/1079146997278418891529 WKP|Q11558938 +http://viaf.org/viaf/1079146997278418891529 NII|DA17523965 +http://viaf.org/viaf/1079147786742868220002 DNB@http://d-nb.info/gnd/1116991225 +http://viaf.org/viaf/1079147786742868220002 DNB|1116991225 +http://viaf.org/viaf/1079154380968530291231 LIH@LNB:SOi;=Bh +http://viaf.org/viaf/1079154380968530291231 LIH|LNB:SO_i_;=B_h_ +http://viaf.org/viaf/1079155648119118330000 DNB@http://d-nb.info/gnd/1184634262 +http://viaf.org/viaf/1079155648119118330000 Identities@http://www.worldcat.org/identities/viaf-1079155648119118330000 +http://viaf.org/viaf/1079155648119118330000 DNB|1184634262 +http://viaf.org/viaf/1079155919065539730000 LC|no2006131449 +http://viaf.org/viaf/107917790 LC@n2009217873 +http://viaf.org/viaf/107917790 LC|n 2009217873 +http://viaf.org/viaf/107917790 Identities@http://www.worldcat.org/identities/lccn-n2009217873 +http://viaf.org/viaf/107922514 LC@n2010011548 +http://viaf.org/viaf/107922514 ISNI|0000000114631987 +http://viaf.org/viaf/107922514 Identities@http://www.worldcat.org/identities/lccn-n2010011548 +http://viaf.org/viaf/107922514 DNB|143464000 +http://viaf.org/viaf/107922514 LC|n 2010011548 +http://viaf.org/viaf/107922514 DNB@http://d-nb.info/gnd/143464000 +http://viaf.org/viaf/107928482 LC|n 2010012574 +http://viaf.org/viaf/107928482 ISNI|0000000077496076 +http://viaf.org/viaf/107928482 Identities@http://www.worldcat.org/identities/lccn-n2010012574 +http://viaf.org/viaf/107928482 LC@n2010012574 +http://viaf.org/viaf/107928482 J9U|987007325264605171 +http://viaf.org/viaf/107933701 ISNI|0000000077730328 +http://viaf.org/viaf/107933701 Identities@http://www.worldcat.org/identities/lccn-n2010013478 +http://viaf.org/viaf/107933701 LC@n2010013478 +http://viaf.org/viaf/107933701 LC|n 2010013478 +http://viaf.org/viaf/107937392 Identities@http://www.worldcat.org/identities/lccn-n2010014111 +http://viaf.org/viaf/107937392 LC@n2010014111 +http://viaf.org/viaf/107937392 RERO|A017468446 +http://viaf.org/viaf/107937392 SZ@http://d-nb.info/gnd/1183057687 +http://viaf.org/viaf/107937392 ISNI|0000000077727188 +http://viaf.org/viaf/107937392 LC|n 2010014111 +http://viaf.org/viaf/107937392 SZ|1183057687 +http://viaf.org/viaf/107937392 DNB|1183057687 +http://viaf.org/viaf/107937392 DNB@http://d-nb.info/gnd/1183057687 +http://viaf.org/viaf/107941225 BNE|XX4605336 +http://viaf.org/viaf/107941225 Identities@http://www.worldcat.org/identities/lccn-n2010014761 +http://viaf.org/viaf/107941225 LC@n2010014761 +http://viaf.org/viaf/107941225 ISNI|0000000119541067 +http://viaf.org/viaf/107941225 LC|n 2010014761 +http://viaf.org/viaf/107943007 Identities@http://www.worldcat.org/identities/lccn-n2010015029 +http://viaf.org/viaf/107943007 LC@n2010015029 +http://viaf.org/viaf/107943007 ISNI|0000000077440080 +http://viaf.org/viaf/107943007 LC|n 2010015029 +http://viaf.org/viaf/107943007 NTA|296386006 +http://viaf.org/viaf/107946626 LC@n2010015645 +http://viaf.org/viaf/107946626 ISNI|0000000077721413 +http://viaf.org/viaf/107946626 LC|n 2010015645 +http://viaf.org/viaf/107946626 Identities@http://www.worldcat.org/identities/lccn-n2010015645 +http://viaf.org/viaf/10795063 ISNI|0000000013257287 +http://viaf.org/viaf/10795063 DNB@http://d-nb.info/gnd/125037988 +http://viaf.org/viaf/10795063 RERO|A018456288 +http://viaf.org/viaf/10795063 Identities@http://www.worldcat.org/identities/viaf-10795063 +http://viaf.org/viaf/10795063 DNB|125037988 +http://viaf.org/viaf/107950630 Identities@http://www.worldcat.org/identities/lccn-n2010016324 +http://viaf.org/viaf/107950630 DNB@http://d-nb.info/gnd/1011449145 +http://viaf.org/viaf/107950630 LC|n 2010016324 +http://viaf.org/viaf/107950630 CAOONL|ncf11570460 +http://viaf.org/viaf/107950630 ISNI|0000000119387696 +http://viaf.org/viaf/107950630 NII|DA19450986 +http://viaf.org/viaf/107950630 DNB|1011449145 +http://viaf.org/viaf/107950630 NTA|334586887 +http://viaf.org/viaf/107950630 SUDOC|154889415 +http://viaf.org/viaf/107950630 LC@n2010016324 +http://viaf.org/viaf/107951521 LC|n 2010016477 +http://viaf.org/viaf/107951521 ISNI|0000000077403909 +http://viaf.org/viaf/107951521 DNB|171617525 +http://viaf.org/viaf/107951521 Identities@http://www.worldcat.org/identities/lccn-n2010016477 +http://viaf.org/viaf/107951521 DNB@http://d-nb.info/gnd/171617525 +http://viaf.org/viaf/107951521 LC@n2010016477 +http://viaf.org/viaf/107951972 LC@n2010016555 +http://viaf.org/viaf/107951972 LC|n 2010016555 +http://viaf.org/viaf/107953303 LC|n 2010016740 +http://viaf.org/viaf/107953303 Identities@http://www.worldcat.org/identities/lccn-n2010016740 +http://viaf.org/viaf/107953303 LC@n2010016740 +http://viaf.org/viaf/107959271 LC@n2010017745 +http://viaf.org/viaf/107959271 LC|n 2010017745 +http://viaf.org/viaf/107959271 Identities@http://www.worldcat.org/identities/lccn-n2010017745 +http://viaf.org/viaf/107959271 ISNI|0000000077594530 +http://viaf.org/viaf/107963555 Identities@http://www.worldcat.org/identities/lccn-n2010018448 +http://viaf.org/viaf/107963555 LC|n 2010018448 +http://viaf.org/viaf/107963555 ISNI|0000000077558812 +http://viaf.org/viaf/107963555 LC@n2010018448 +http://viaf.org/viaf/107964941 DNB|104999227X +http://viaf.org/viaf/107964941 ISNI|0000000077686099 +http://viaf.org/viaf/107964941 BNF@FRBNF177482973 +http://viaf.org/viaf/107964941 Identities@http://www.worldcat.org/identities/lccn-n2010018678 +http://viaf.org/viaf/107964941 BNF|17748297 +http://viaf.org/viaf/107964941 SZ|104999227X +http://viaf.org/viaf/107964941 LC|n 2010018678 +http://viaf.org/viaf/107964941 DNB@http://d-nb.info/gnd/104999227X +http://viaf.org/viaf/107964941 J9U|987007578835705171 +http://viaf.org/viaf/107964941 SZ@http://d-nb.info/gnd/104999227X +http://viaf.org/viaf/107964941 LC@n2010018678 +http://viaf.org/viaf/107969072 Identities@http://www.worldcat.org/identities/lccn-n2010160848 +http://viaf.org/viaf/107969072 LC@n2010160848 +http://viaf.org/viaf/107969072 LC|n 2010160848 +http://viaf.org/viaf/107974698 Identities@http://www.worldcat.org/identities/lccn-n2010181039 +http://viaf.org/viaf/107974698 SUDOC|14577838X +http://viaf.org/viaf/107974698 LC@n2010181039 +http://viaf.org/viaf/107974698 DNB@http://d-nb.info/gnd/13902185X +http://viaf.org/viaf/107974698 LC|n 2010181039 +http://viaf.org/viaf/107974698 ISNI|0000000078892994 +http://viaf.org/viaf/107974698 NII|DA1767533X +http://viaf.org/viaf/107974698 J9U|987007401949105171 +http://viaf.org/viaf/107974698 CAOONL|ncf11010818 +http://viaf.org/viaf/107974698 DNB|13902185X +http://viaf.org/viaf/107977910 ISNI|0000000077575786 +http://viaf.org/viaf/107977910 LC@n2010205807 +http://viaf.org/viaf/107977910 Identities@http://www.worldcat.org/identities/lccn-n2010205807 +http://viaf.org/viaf/107977910 LC|n 2010205807 +http://viaf.org/viaf/107978801 DNB@http://d-nb.info/gnd/141801689 +http://viaf.org/viaf/107978801 LC@n2010215938 +http://viaf.org/viaf/107978801 Identities@http://www.worldcat.org/identities/lccn-n2010215938 +http://viaf.org/viaf/107978801 DNB|141801689 +http://viaf.org/viaf/107978801 LC|n 2010215938 +http://viaf.org/viaf/107986325 Identities@http://www.worldcat.org/identities/lccn-nb2010006017 +http://viaf.org/viaf/107986325 LC|nb2010006017 +http://viaf.org/viaf/107995730 DNB@http://d-nb.info/gnd/1064724876 +http://viaf.org/viaf/107995730 NUKAT@vtls017262135 +http://viaf.org/viaf/107995730 ISNI|0000000122839104 +http://viaf.org/viaf/107995730 RERO|A025504164 +http://viaf.org/viaf/107995730 CAOONL|ncf11572974 +http://viaf.org/viaf/107995730 BNF|16525029 +http://viaf.org/viaf/107995730 J9U|987007441332605171 +http://viaf.org/viaf/107995730 NII|DA16855325 +http://viaf.org/viaf/107995730 SUDOC|143120743 +http://viaf.org/viaf/107995730 DNB|1064724876 +http://viaf.org/viaf/107995730 BIBSYS|10032568 +http://viaf.org/viaf/107995730 NUKAT|n 2018251388 +http://viaf.org/viaf/107995730 NKC|mub2011649239 +http://viaf.org/viaf/107995730 NTA|326388958 +http://viaf.org/viaf/107995730 Identities@http://www.worldcat.org/identities/lccn-nb2010007417 +http://viaf.org/viaf/107995730 BNF@http://catalogue.bnf.fr/ark:/12148/cb165250296 +http://viaf.org/viaf/107995730 LC|nb2010007417 +http://viaf.org/viaf/107998854 BNF@http://catalogue.bnf.fr/ark:/12148/cb16163662b +http://viaf.org/viaf/107998854 ORCID@http://orcid.org/0000-0001-8561-6952 +http://viaf.org/viaf/107998854 BNC@.a12243371 +http://viaf.org/viaf/107998854 BNF|16163662 +http://viaf.org/viaf/107998854 NTA|322365201 +http://viaf.org/viaf/107998854 BNC|a12243371 +http://viaf.org/viaf/107998854 BNE|XX4616997 +http://viaf.org/viaf/107998854 ISNI|000000011697449X +http://viaf.org/viaf/107998854 SUDOC|135683122 +http://viaf.org/viaf/107998854 LC|nb2010007873 +http://viaf.org/viaf/107998854 DNB|1211358380 +http://viaf.org/viaf/107998854 DNB@http://d-nb.info/gnd/1211358380 +http://viaf.org/viaf/107998854 Identities@http://www.worldcat.org/identities/lccn-nb2010007873 +http://viaf.org/viaf/108007951 ISNI|000000007772178X +http://viaf.org/viaf/108007951 Identities@http://www.worldcat.org/identities/lccn-no2010033439 +http://viaf.org/viaf/108007951 LC|no2010033439 +http://viaf.org/viaf/108012351 LC|no2010034110 +http://viaf.org/viaf/108012351 Identities@http://www.worldcat.org/identities/lccn-no2010034110 +http://viaf.org/viaf/108013242 LC|no2010034285 +http://viaf.org/viaf/108013242 WKP|Q94519326 +http://viaf.org/viaf/108013242 Identities@http://www.worldcat.org/identities/lccn-no2010034285 +http://viaf.org/viaf/108014089 LC|no2010034431 +http://viaf.org/viaf/108014089 ISNI|0000000077428073 +http://viaf.org/viaf/108014089 Identities@http://www.worldcat.org/identities/lccn-no2010034431 +http://viaf.org/viaf/1080145857143922922659 DNB@http://d-nb.info/gnd/1089252579 +http://viaf.org/viaf/1080145857143922922659 DNB|1089252579 +http://viaf.org/viaf/108014908 LC|no2010034567 +http://viaf.org/viaf/108014908 ISNI|0000000077658792 +http://viaf.org/viaf/108014908 Identities@http://www.worldcat.org/identities/lccn-no2010034567 +http://viaf.org/viaf/1080152502957810800005 XR|VIAFWORK852126323 +http://viaf.org/viaf/1080154381048730292353 LIH@LNB:OzI;=Bo +http://viaf.org/viaf/1080154381048730292353 LIH|LNB:O_z_I;=B_o_ +http://viaf.org/viaf/1080158858091744490007 XR|VIAFEXP1148062920 +http://viaf.org/viaf/1080159035157901380009 PLWABN|9811475910505606 +http://viaf.org/viaf/1080159234215103370981 RERO|A018346336 +http://viaf.org/viaf/1080159234215103370981 Identities@http://www.worldcat.org/identities/viaf-1080159234215103370981 +http://viaf.org/viaf/1080159477888627990000 BAV@492/61430 +http://viaf.org/viaf/1080159477888627990000 BAV|492_61430 +http://viaf.org/viaf/108019985 CAOONL|ncf10735291 +http://viaf.org/viaf/108019985 LC|no2010035425 +http://viaf.org/viaf/108019985 DNB@http://d-nb.info/gnd/1089693907 +http://viaf.org/viaf/108019985 Identities@http://www.worldcat.org/identities/lccn-no2010035425 +http://viaf.org/viaf/108019985 DNB|1089693907 +http://viaf.org/viaf/108025771 Wikipedia@http://de.wikipedia.org/wiki/Lawrence_Hertzog +http://viaf.org/viaf/108025771 LC|no2010036524 +http://viaf.org/viaf/108025771 WKP|Q575643 +http://viaf.org/viaf/108025771 Wikipedia@http://en.wikipedia.org/wiki/Lawrence_Hertzog +http://viaf.org/viaf/108025771 Wikipedia@http://pl.wikipedia.org/wiki/Lawrence_Hertzog +http://viaf.org/viaf/108025771 Identities@http://www.worldcat.org/identities/lccn-no2010036524 +http://viaf.org/viaf/108027102 ISNI|0000000077618213 +http://viaf.org/viaf/108027102 LC|no2010036765 +http://viaf.org/viaf/108027102 Identities@http://www.worldcat.org/identities/lccn-no2010036765 +http://viaf.org/viaf/108031837 LC|no2010037549 +http://viaf.org/viaf/108031837 Identities@http://www.worldcat.org/identities/lccn-no2010037549 +http://viaf.org/viaf/108047650 LC|no2010040343 +http://viaf.org/viaf/108047650 ISNI|0000000077773432 +http://viaf.org/viaf/108047650 J9U|987007372119305171 +http://viaf.org/viaf/108047650 DNB|142782629 +http://viaf.org/viaf/108047650 DNB@http://d-nb.info/gnd/142782629 +http://viaf.org/viaf/108047650 Identities@http://www.worldcat.org/identities/lccn-no2010040343 +http://viaf.org/viaf/108053716 LC|no2010041339 +http://viaf.org/viaf/108053716 Identities@http://www.worldcat.org/identities/lccn-no2010041339 +http://viaf.org/viaf/108055174 LC|no2010041625 +http://viaf.org/viaf/108055174 Identities@http://www.worldcat.org/identities/lccn-no2010041625 +http://viaf.org/viaf/108063517 DNB|171302605 +http://viaf.org/viaf/108063517 Identities@http://www.worldcat.org/identities/lccn-no2010042937 +http://viaf.org/viaf/108063517 DNB@http://d-nb.info/gnd/171302605 +http://viaf.org/viaf/108063517 LC|no2010042937 +http://viaf.org/viaf/108064408 NTA|327566698 +http://viaf.org/viaf/108064408 LC|no2010043099 +http://viaf.org/viaf/108064408 ISNI|0000000077683904 +http://viaf.org/viaf/108064408 Identities@http://www.worldcat.org/identities/lccn-no2010043099 +http://viaf.org/viaf/108064859 Identities@http://www.worldcat.org/identities/lccn-no2010043165 +http://viaf.org/viaf/108064859 ISNI|0000000077455733 +http://viaf.org/viaf/108064859 LC|no2010043165 +http://viaf.org/viaf/108066361 LC|no2010043347 +http://viaf.org/viaf/108067252 Identities@http://www.worldcat.org/identities/lccn-no2010043475 +http://viaf.org/viaf/108067252 LC|no2010043475 +http://viaf.org/viaf/108067252 ISNI|0000000077428356 +http://viaf.org/viaf/108069980 LC|no2010043945 +http://viaf.org/viaf/108069980 ISNI|0000000077571080 +http://viaf.org/viaf/108069980 Identities@http://www.worldcat.org/identities/lccn-no2010043945 +http://viaf.org/viaf/108073813 NLA|000035072609 +http://viaf.org/viaf/108082679 LC|no2010046074 +http://viaf.org/viaf/108088240 LC|no2010047010 +http://viaf.org/viaf/108088240 Identities@http://www.worldcat.org/identities/lccn-no2010047010 +http://viaf.org/viaf/108088240 ISNI|0000000077508911 +http://viaf.org/viaf/108090698 LC@no91023545 +http://viaf.org/viaf/108090698 ISNI|0000000077461578 +http://viaf.org/viaf/108090698 NLA|000035181190 +http://viaf.org/viaf/108090698 DNB|172030773 +http://viaf.org/viaf/108090698 LC|no 91023545 +http://viaf.org/viaf/108090698 LIH|LNB:_k_,_e_;=B_r_ +http://viaf.org/viaf/108090698 Identities@http://www.worldcat.org/identities/lccn-no91023545 +http://viaf.org/viaf/108090698 DNB@http://d-nb.info/gnd/172030773 +http://viaf.org/viaf/108090698 LIH@LNB:k/e;=Br +http://viaf.org/viaf/108092029 Identities@http://www.worldcat.org/identities/lccn-no2010047618 +http://viaf.org/viaf/108092029 LC|no2010047618 +http://viaf.org/viaf/108098041 BNF|16233225 +http://viaf.org/viaf/108098041 ISNI|0000000116974879 +http://viaf.org/viaf/108098041 ICCU|SBNV025128 +http://viaf.org/viaf/108098041 LC|no2010048556 +http://viaf.org/viaf/108098041 Identities@http://www.worldcat.org/identities/lccn-no2010048556 +http://viaf.org/viaf/108098041 BNF@http://catalogue.bnf.fr/ark:/12148/cb16233225k +http://viaf.org/viaf/108098041 ICCU@IT\ICCU\SBNV\025128 +http://viaf.org/viaf/108098492 LC|no2010048636 +http://viaf.org/viaf/108098492 Identities@http://www.worldcat.org/identities/lccn-no2010048636 +http://viaf.org/viaf/108105466 SUDOC|129419915 +http://viaf.org/viaf/108105466 LC|no2010049797 +http://viaf.org/viaf/108105466 Identities@http://www.worldcat.org/identities/lccn-no2010049797 +http://viaf.org/viaf/108105510 LC|no2010049803 +http://viaf.org/viaf/108105510 ISNI|0000000077692827 +http://viaf.org/viaf/108105510 Identities@http://www.worldcat.org/identities/lccn-no2010049803 +http://viaf.org/viaf/108105961 ISNI|0000000077550829 +http://viaf.org/viaf/108105961 Identities@http://www.worldcat.org/identities/lccn-no2010049872 +http://viaf.org/viaf/108105961 LC|no2010049872 +http://viaf.org/viaf/108106357 LC|no2010049931 +http://viaf.org/viaf/108106357 ISNI|000000007759897X +http://viaf.org/viaf/108106357 DNB|1061744094 +http://viaf.org/viaf/108106357 WKP|Q22289972 +http://viaf.org/viaf/108106357 Identities@http://www.worldcat.org/identities/lccn-no2010049931 +http://viaf.org/viaf/108106357 DNB@http://d-nb.info/gnd/1061744094 +http://viaf.org/viaf/1081087 WKP|Q15430502 +http://viaf.org/viaf/1081087 LC|n 2007060745 +http://viaf.org/viaf/1081087 ISNI|0000000034586266 +http://viaf.org/viaf/1081087 Identities@http://www.worldcat.org/identities/lccn-n2007060745 +http://viaf.org/viaf/1081087 LC@n2007060745 +http://viaf.org/viaf/1081087 DNB@http://d-nb.info/gnd/1139400851 +http://viaf.org/viaf/1081087 Wikipedia@http://de.wikipedia.org/wiki/Axel_Lapp +http://viaf.org/viaf/1081087 Wikipedia@http://en.wikipedia.org/wiki/Axel_Lapp +http://viaf.org/viaf/1081087 RERO|A020500799 +http://viaf.org/viaf/1081087 SUDOC|237257521 +http://viaf.org/viaf/1081087 DNB|1139400851 +http://viaf.org/viaf/1081087 BIBSYS|7061347 +http://viaf.org/viaf/108109525 LC|no2010050470 +http://viaf.org/viaf/108109525 Identities@http://www.worldcat.org/identities/lccn-no2010050470 +http://viaf.org/viaf/108109525 ISNI|0000000077585642 +http://viaf.org/viaf/108114376 LC|no2010051353 +http://viaf.org/viaf/108114376 Identities@http://www.worldcat.org/identities/lccn-no2010051353 +http://viaf.org/viaf/108114376 CAOONL|ncf11525005 +http://viaf.org/viaf/108114376 ISNI|0000000077413971 +http://viaf.org/viaf/1081152502712510800004 XR|VIAFWORK1002098550 +http://viaf.org/viaf/1081152502753510800001 XR|VIAFWORK1027682716 +http://viaf.org/viaf/1081154380948930290853 LIH|LNB:_g_CD;=BE +http://viaf.org/viaf/1081154380948930290853 LIH@LNB:gCD;=BE +http://viaf.org/viaf/1081159234461303371823 Identities@http://www.worldcat.org/identities/viaf-1081159234461303371823 +http://viaf.org/viaf/1081159234461303371823 RERO|A012394672 +http://viaf.org/viaf/1081159234514903371914 Identities@http://www.worldcat.org/identities/viaf-1081159234514903371914 +http://viaf.org/viaf/1081159234514903371914 RERO|A022774320 +http://viaf.org/viaf/108144648980009328314 NTA|197434576 +http://viaf.org/viaf/108144648980009328314 ISNI|0000000061320703 +http://viaf.org/viaf/108144648980009328314 RERO|A024416324 +http://viaf.org/viaf/108144648980009328314 BAV|495_209550 +http://viaf.org/viaf/108144648980009328314 DNB|128174889 +http://viaf.org/viaf/108144648980009328314 Identities@http://www.worldcat.org/identities/viaf-108144648980009328314 +http://viaf.org/viaf/108144648980009328314 BAV@495/209550 +http://viaf.org/viaf/108144648980009328314 LIH@LNB:BjcN;=Bt +http://viaf.org/viaf/108144648980009328314 LIH|LNB:B_j__c_N;=B_t_ +http://viaf.org/viaf/108144648980009328314 SUDOC|242007481 +http://viaf.org/viaf/108144648980009328314 DNB@http://d-nb.info/gnd/128174889 +http://viaf.org/viaf/108144782707063510652 BNF@http://catalogue.bnf.fr/ark:/12148/cb17081504s +http://viaf.org/viaf/108144782707063510652 J9U|987007459129105171 +http://viaf.org/viaf/108144782707063510652 BNF|17081504 +http://viaf.org/viaf/108144782707063510652 BAV@495/354679 +http://viaf.org/viaf/108144782707063510652 Identities@http://www.worldcat.org/identities/lccn-n2015063358 +http://viaf.org/viaf/108144782707063510652 LC@n2015063358 +http://viaf.org/viaf/108144782707063510652 SUDOC|193181878 +http://viaf.org/viaf/108144782707063510652 LC|n 2015063358 +http://viaf.org/viaf/108144782707063510652 BAV|495_354679 +http://viaf.org/viaf/108144782707063510652 ISNI|0000000453903385 +http://viaf.org/viaf/108144782712962939132 Identities@http://www.worldcat.org/identities/lccn-n2015063747 +http://viaf.org/viaf/108144782712962939132 LC@n2015063747 +http://viaf.org/viaf/108144782712962939132 LC|n 2015063747 +http://viaf.org/viaf/108145066491766590760 Identities@http://www.worldcat.org/identities/viaf-108145066491766590760 +http://viaf.org/viaf/108145066491766590760 PLWABN|9810543137705606 +http://viaf.org/viaf/108145067234566630583 XR|VIAFEXP24420359 +http://viaf.org/viaf/108145304390378571361 Identities@http://www.worldcat.org/identities/viaf-108145304390378571361 +http://viaf.org/viaf/108145304390378571361 PLWABN|9810614380505606 +http://viaf.org/viaf/10814566 Identities@http://www.worldcat.org/identities/viaf-10814566 +http://viaf.org/viaf/10814566 DNB|125666632 +http://viaf.org/viaf/10814566 ISNI|0000000013276066 +http://viaf.org/viaf/10814566 DNB@http://d-nb.info/gnd/125666632 +http://viaf.org/viaf/108145660 NLA|000035714675 +http://viaf.org/viaf/108145660 NII|DA00106147 +http://viaf.org/viaf/108145660 BIBSYS|90128508 +http://viaf.org/viaf/108145660 RERO|A002939817 +http://viaf.org/viaf/108145660 SUDOC|071531149 +http://viaf.org/viaf/108145660 ISNI|0000000084595187 +http://viaf.org/viaf/108145660 LC|n 84183044 +http://viaf.org/viaf/108145660 J9U|987007459797205171 +http://viaf.org/viaf/108145660 NTA|072652497 +http://viaf.org/viaf/108145660 LC@n84183044 +http://viaf.org/viaf/108145660 Identities@http://www.worldcat.org/identities/lccn-n84183044 +http://viaf.org/viaf/10814610 RERO|A012313815 +http://viaf.org/viaf/10814610 DNB@http://d-nb.info/gnd/125668465 +http://viaf.org/viaf/10814610 Identities@http://www.worldcat.org/identities/viaf-10814610 +http://viaf.org/viaf/10814610 DNB|125668465 +http://viaf.org/viaf/10814610 ISNI|0000000013276111 +http://viaf.org/viaf/108146461530327731265 Identities@http://www.worldcat.org/identities/lccn-no2016063971 +http://viaf.org/viaf/108146461530327731265 LC|no2016063971 +http://viaf.org/viaf/108146573961738102281 NKC|vse2017956169 +http://viaf.org/viaf/108146573961738102281 NUKAT|n 2016157594 +http://viaf.org/viaf/108146573961738102281 DNB@http://d-nb.info/gnd/1190043440 +http://viaf.org/viaf/108146573961738102281 NUKAT@vtls014227736 +http://viaf.org/viaf/108146573961738102281 Identities@http://www.worldcat.org/identities/viaf-108146573961738102281 +http://viaf.org/viaf/108146573961738102281 WKP|Q65933291 +http://viaf.org/viaf/108146573961738102281 DNB|1190043440 +http://viaf.org/viaf/108146997169718890021 Identities@http://www.worldcat.org/identities/viaf-108146997169718890021 +http://viaf.org/viaf/108146997169718890021 NII|DA11401502 +http://viaf.org/viaf/108146997176018890420 NII|DA08056825 +http://viaf.org/viaf/108147663122260551995 NUKAT@vtls014765377 +http://viaf.org/viaf/108147663122260551995 NUKAT|n 2016148757 +http://viaf.org/viaf/108147665800760670003 PLWABN|9810620523705606 +http://viaf.org/viaf/108148389455210712082 NLA|000058785528 +http://viaf.org/viaf/108148812855545212571 Wikipedia@http://pt.wikipedia.org/wiki/Rémi_Grellety +http://viaf.org/viaf/108148812855545212571 Identities@http://www.worldcat.org/identities/lccn-no2017023162 +http://viaf.org/viaf/108148812855545212571 DNB@http://d-nb.info/gnd/1120533260 +http://viaf.org/viaf/108148812855545212571 WKP|Q28839599 +http://viaf.org/viaf/108148812855545212571 DNB|1120533260 +http://viaf.org/viaf/108148812855545212571 LC|no2017023162 +http://viaf.org/viaf/108148812855545212571 CAOONL|ncf11029008 +http://viaf.org/viaf/108148812855545212571 J9U|987007356544105171 +http://viaf.org/viaf/108148812855545212571 RERO|A027062343 +http://viaf.org/viaf/108148812855545212571 Wikipedia@http://de.wikipedia.org/wiki/Rémi_Grellety +http://viaf.org/viaf/108148995751859750711 BIBSYS|90245361 +http://viaf.org/viaf/108148995751859750711 Identities@http://www.worldcat.org/identities/viaf-108148995751859750711 +http://viaf.org/viaf/108149106055968491064 LC|n 2004049701 +http://viaf.org/viaf/108149106055968491064 LC@n2004049701 +http://viaf.org/viaf/108149106055968491064 DNB@http://d-nb.info/gnd/158205073 +http://viaf.org/viaf/108149106055968491064 Identities@http://www.worldcat.org/identities/lccn-n2004049701 +http://viaf.org/viaf/108149106055968491064 NII|DA16865078 +http://viaf.org/viaf/108149106055968491064 DNB|158205073 +http://viaf.org/viaf/108149106055968491064 BIBSYS|5014713 +http://viaf.org/viaf/108149294073180520052 BIBSYS|4066699 +http://viaf.org/viaf/108149542571400300054 ERRR|a11174602 +http://viaf.org/viaf/108149617081503751590 LC|nb2017010989 +http://viaf.org/viaf/108149617081503751590 Identities@http://www.worldcat.org/identities/lccn-nb2017010989 +http://viaf.org/viaf/108150030631110960037 NUKAT@vtls015782127 +http://viaf.org/viaf/108150030631110960037 NUKAT|n 2017173327 +http://viaf.org/viaf/108150030631110960037 Identities@http://www.worldcat.org/identities/viaf-108150030631110960037 +http://viaf.org/viaf/108150565576206250917 SUDOC|203120752 +http://viaf.org/viaf/108150565576206250917 Identities@http://www.worldcat.org/identities/viaf-108150565576206250917 +http://viaf.org/viaf/108150746874016300147 LC@n2017245098 +http://viaf.org/viaf/108150746874016300147 Identities@http://www.worldcat.org/identities/lccn-n2017245098 +http://viaf.org/viaf/108150746874016300147 LC|n 2017245098 +http://viaf.org/viaf/108150835 NDL|00104187 +http://viaf.org/viaf/108150835 ISNI|0000000082880881 +http://viaf.org/viaf/108150835 LC|n 85357058 +http://viaf.org/viaf/108150835 Identities@http://www.worldcat.org/identities/lccn-n85357058 +http://viaf.org/viaf/108150835 LC@n85357058 +http://viaf.org/viaf/108150835 NII|DA00128616 +http://viaf.org/viaf/108151594464705351770 SUDOC|221427767 +http://viaf.org/viaf/108151594464705351770 Identities@http://www.worldcat.org/identities/viaf-108151594464705351770 +http://viaf.org/viaf/108151776828318012725 PLWABN|9810596964305606 +http://viaf.org/viaf/108152636070820051563 DNB@http://d-nb.info/gnd/1157766730 +http://viaf.org/viaf/108152636070820051563 DNB|1157766730 +http://viaf.org/viaf/108152636070820051563 Identities@http://www.worldcat.org/identities/viaf-108152636070820051563 +http://viaf.org/viaf/108153184 Identities@http://www.worldcat.org/identities/viaf-108153184 +http://viaf.org/viaf/108153184 NDL|00504165 +http://viaf.org/viaf/108153409758541582348 Wikipedia@http://en.wikipedia.org/wiki/Yu_Hui-hyeong +http://viaf.org/viaf/108153409758541582348 Wikipedia@http://it.wikipedia.org/wiki/Yu_Hui-hyeong +http://viaf.org/viaf/108153409758541582348 Wikipedia@http://ko.wikipedia.org/wiki/유희형 +http://viaf.org/viaf/108153409758541582348 Identities@http://www.worldcat.org/identities/viaf-108153409758541582348 +http://viaf.org/viaf/108153409758541582348 WKP|Q39523028 +http://viaf.org/viaf/108153409758541582348 ISNI|0000000467962220 +http://viaf.org/viaf/108153409758541582348 KRNLK|KAC201865823 +http://viaf.org/viaf/108154013828809192960 ISNI|0000000468370462 +http://viaf.org/viaf/108154013828809192960 KRNLK|KAC201897615 +http://viaf.org/viaf/108155707113522412631 LC|no2019060992 +http://viaf.org/viaf/108155707113522412631 Identities@http://www.worldcat.org/identities/lccn-no2019060992 +http://viaf.org/viaf/108155767374927760071 SUDOC|235057657 +http://viaf.org/viaf/108155767374927760071 LC|no2018078962 +http://viaf.org/viaf/108155767374927760071 Identities@http://www.worldcat.org/identities/lccn-no2018078962 +http://viaf.org/viaf/108156009838849580235 PLWABN|9810697673505606 +http://viaf.org/viaf/108156009838849580235 Identities@http://www.worldcat.org/identities/viaf-108156009838849580235 +http://viaf.org/viaf/108156563544923242009 ISNI|0000000476871232 +http://viaf.org/viaf/108156563544923242009 KRNLK|KAC201952482 +http://viaf.org/viaf/108157523333427031399 KRNLK|KAC201928559 +http://viaf.org/viaf/108157523333427031399 Identities@http://www.worldcat.org/identities/viaf-108157523333427031399 +http://viaf.org/viaf/108157523424127032505 DNB|1200420071 +http://viaf.org/viaf/108157523424127032505 Identities@http://www.worldcat.org/identities/viaf-108157523424127032505 +http://viaf.org/viaf/108157523424127032505 DNB@http://d-nb.info/gnd/1200420071 +http://viaf.org/viaf/108157523440227032366 ISNI|0000000477258704 +http://viaf.org/viaf/108157523440227032366 KRNLK|KAC201995598 +http://viaf.org/viaf/108158125194914932600 Identities@http://www.worldcat.org/identities/viaf-108158125194914932600 +http://viaf.org/viaf/108158125194914932600 SUDOC|242143814 +http://viaf.org/viaf/108158185580620060755 Identities@http://www.worldcat.org/identities/viaf-108158185580620060755 +http://viaf.org/viaf/108158185580620060755 DBC@870979.46473256 +http://viaf.org/viaf/108158185580620060755 DBC|87097946473256 +http://viaf.org/viaf/108158185604320060667 ISNI|000000048018366X +http://viaf.org/viaf/108158185604320060667 KRNLK|KAC201993985 +http://viaf.org/viaf/108158790510138850511 GRATEVE|171928 +http://viaf.org/viaf/108158790626238851418 GRATEVE|169615 +http://viaf.org/viaf/108159032727801181771 PLWABN|9811478715805606 +http://viaf.org/viaf/108176729 Identities@http://www.worldcat.org/identities/viaf-108176729 +http://viaf.org/viaf/108176729 NII|DA00212574 +http://viaf.org/viaf/108188483 Identities@http://www.worldcat.org/identities/lccn-n83018441 +http://viaf.org/viaf/108188483 LC@n83018441 +http://viaf.org/viaf/108188483 DNB@http://d-nb.info/gnd/170311104 +http://viaf.org/viaf/108188483 LC|n 83018441 +http://viaf.org/viaf/108188483 NDL|00062052 +http://viaf.org/viaf/108188483 NII|DA00244865 +http://viaf.org/viaf/108188483 WKP|Q18383355 +http://viaf.org/viaf/108188483 ISNI|0000000082883863 +http://viaf.org/viaf/108188483 DNB|170311104 +http://viaf.org/viaf/108188483 Wikipedia@http://ja.wikipedia.org/wiki/尾上久雄 +http://viaf.org/viaf/108190534 NII|DA00250799 +http://viaf.org/viaf/108190534 Identities@http://www.worldcat.org/identities/lccn-n85111327 +http://viaf.org/viaf/108190534 LC@n85111327 +http://viaf.org/viaf/108190534 NDL|00133090 +http://viaf.org/viaf/108190534 LC|n 85111327 +http://viaf.org/viaf/1081906 DNB|129097632 +http://viaf.org/viaf/1081906 LC@n2002119812 +http://viaf.org/viaf/1081906 Wikipedia@http://en.wikipedia.org/wiki/Jackson_Barnett +http://viaf.org/viaf/1081906 DNB@http://d-nb.info/gnd/129097632 +http://viaf.org/viaf/1081906 Identities@http://www.worldcat.org/identities/lccn-n2002119812 +http://viaf.org/viaf/1081906 CAOONL|ncf11540326 +http://viaf.org/viaf/1081906 WKP|Q6116953 +http://viaf.org/viaf/1081906 J9U|987007459817805171 +http://viaf.org/viaf/1081906 NKC|jx20070903001 +http://viaf.org/viaf/1081906 LC|n 2002119812 +http://viaf.org/viaf/1081906 ISNI|000000005542707X +http://viaf.org/viaf/108212430 NII|DA00319997 +http://viaf.org/viaf/1082151778251418130006 DNB@http://d-nb.info/gnd/115168127X +http://viaf.org/viaf/1082151778251418130006 Identities@http://www.worldcat.org/identities/viaf-1082151778251418130006 +http://viaf.org/viaf/1082151778251418130006 DNB|115168127X +http://viaf.org/viaf/1082154380941630290430 LIH@LNB:SNf;=Bd +http://viaf.org/viaf/1082154380941630290430 LIH|LNB:SN_f_;=B_d_ +http://viaf.org/viaf/1082159474210827661735 CAOONL|ncf11374638 +http://viaf.org/viaf/108224464 Identities@http://www.worldcat.org/identities/lccn-n83224321 +http://viaf.org/viaf/108224464 LC@n83224321 +http://viaf.org/viaf/108224464 LC|n 83224321 +http://viaf.org/viaf/108224464 NII|DA00342682 +http://viaf.org/viaf/108224464 ISNI|0000000082887055 +http://viaf.org/viaf/108224464 NDL|00097290 +http://viaf.org/viaf/108228028 LC|n 85234162 +http://viaf.org/viaf/108228028 WKP|Q11397959 +http://viaf.org/viaf/108228028 NII|DA00347835 +http://viaf.org/viaf/108228028 Wikipedia@http://ja.wikipedia.org/wiki/副島種典 +http://viaf.org/viaf/108228028 ISNI|0000000082887442 +http://viaf.org/viaf/108228028 Identities@http://www.worldcat.org/identities/lccn-n85234162 +http://viaf.org/viaf/108228028 LC@n85234162 +http://viaf.org/viaf/108228028 NDL|00073385 +http://viaf.org/viaf/108229414 DNB@http://d-nb.info/gnd/173120016 +http://viaf.org/viaf/108229414 LC@n82119373 +http://viaf.org/viaf/108229414 Identities@http://www.worldcat.org/identities/lccn-n82119373 +http://viaf.org/viaf/108229414 Wikipedia@http://ja.wikipedia.org/wiki/橋本義彦 +http://viaf.org/viaf/108229414 ISNI|0000000084598724 +http://viaf.org/viaf/108229414 NDL|00008504 +http://viaf.org/viaf/108229414 NTA|227142195 +http://viaf.org/viaf/108229414 J9U|987007271817405171 +http://viaf.org/viaf/108229414 SUDOC|234587989 +http://viaf.org/viaf/108229414 WKP|Q11544039 +http://viaf.org/viaf/108229414 NII|DA00349932 +http://viaf.org/viaf/108229414 DNB|173120016 +http://viaf.org/viaf/108229414 LC|n 82119373 +http://viaf.org/viaf/108244066 LC@n83182521 +http://viaf.org/viaf/108244066 ISNI|0000000084599460 +http://viaf.org/viaf/108244066 LC|n 83182521 +http://viaf.org/viaf/108244066 NDL|00062609 +http://viaf.org/viaf/108244066 SUDOC|174571623 +http://viaf.org/viaf/108244066 NII|DA00374940 +http://viaf.org/viaf/108244066 WKP|Q55177959 +http://viaf.org/viaf/108244066 Wikipedia@http://ja.wikipedia.org/wiki/大島清次 +http://viaf.org/viaf/108244066 Identities@http://www.worldcat.org/identities/lccn-n83182521 +http://viaf.org/viaf/108259312 NUKAT@vtls000556820 +http://viaf.org/viaf/108259312 SELIBR@dbqsvmxx19jt3w8 +http://viaf.org/viaf/108259312 DNB@http://d-nb.info/gnd/119464942 +http://viaf.org/viaf/108259312 Identities@http://www.worldcat.org/identities/lccn-n79126972 +http://viaf.org/viaf/108259312 Wikipedia@http://zh.wikipedia.org/wiki/哈里森·索尔兹伯里 +http://viaf.org/viaf/108259312 Wikipedia@http://sv.wikipedia.org/wiki/Harrison_Salisbury +http://viaf.org/viaf/108259312 Wikipedia@http://ru.wikipedia.org/wiki/Солсбери,_Гаррисон +http://viaf.org/viaf/108259312 Wikipedia@http://no.wikipedia.org/wiki/Harrison_Salisbury +http://viaf.org/viaf/108259312 LC@n79126972 +http://viaf.org/viaf/108259312 ICCU@IT\ICCU\CFIV\057684 +http://viaf.org/viaf/108259312 LIH@LNB:V*58536;=BN +http://viaf.org/viaf/108259312 ISNI|0000000121468946 +http://viaf.org/viaf/108259312 NLA|000035472804 +http://viaf.org/viaf/108259312 DNB|119464942 +http://viaf.org/viaf/108259312 SUDOC|032801009 +http://viaf.org/viaf/108259312 WKP|Q2585413 +http://viaf.org/viaf/108259312 NSK|000081715 +http://viaf.org/viaf/108259312 SELIBR|234928 +http://viaf.org/viaf/108259312 LNB|LNC10-000019832 +http://viaf.org/viaf/108259312 NUKAT|n 94002139 +http://viaf.org/viaf/108259312 NTA|068662890 +http://viaf.org/viaf/108259312 BNF|12375997 +http://viaf.org/viaf/108259312 NKC|js20020925009 +http://viaf.org/viaf/108259312 NDL|00455190 +http://viaf.org/viaf/108259312 LC|n 79126972 +http://viaf.org/viaf/108259312 N6I|vtls001237731 +http://viaf.org/viaf/108259312 ICCU|CFIV057684 +http://viaf.org/viaf/108259312 PTBNP|124105 +http://viaf.org/viaf/108259312 KRNLK|KAC199623969 +http://viaf.org/viaf/108259312 NII|DA00398246 +http://viaf.org/viaf/108259312 BIBSYS|90054897 +http://viaf.org/viaf/108259312 B2Q|0000061072 +http://viaf.org/viaf/108259312 BNE|XX873407 +http://viaf.org/viaf/108259312 CAOONL|ncf10000332 +http://viaf.org/viaf/108259312 LIH|LNB:V-58536;=BN +http://viaf.org/viaf/108259312 SIMACOB|8888675 +http://viaf.org/viaf/108259312 ERRR|a12034812 +http://viaf.org/viaf/108259312 ERRR|a12034824 +http://viaf.org/viaf/108259312 PLWABN|9810542646605606 +http://viaf.org/viaf/108259312 J9U|987007267394505171 +http://viaf.org/viaf/108259312 RERO|A003780412 +http://viaf.org/viaf/108259312 Wikipedia@http://ar.wikipedia.org/wiki/هاريسون_سالزبوري +http://viaf.org/viaf/108259312 Wikipedia@http://fr.wikipedia.org/wiki/Harrison_Salisbury +http://viaf.org/viaf/108259312 Wikipedia@http://et.wikipedia.org/wiki/Harrison_Salisbury +http://viaf.org/viaf/108259312 Wikipedia@http://en.wikipedia.org/wiki/Harrison_Salisbury +http://viaf.org/viaf/108259312 Wikipedia@http://arz.wikipedia.org/wiki/هاريسون_سالزبورى +http://viaf.org/viaf/108259312 BNF@http://catalogue.bnf.fr/ark:/12148/cb123759979 +http://viaf.org/viaf/108286493 BNCHL|10000000000000000125938 +http://viaf.org/viaf/108286493 LNB|LNC10-000223938 +http://viaf.org/viaf/108286493 Wikipedia@http://ja.wikipedia.org/wiki/ゴードン・カレン +http://viaf.org/viaf/108286493 SELIBR@zw9cc7ch2rp3w5f +http://viaf.org/viaf/108286493 NUKAT@vtls006439208 +http://viaf.org/viaf/108286493 DNB|119499363 +http://viaf.org/viaf/108286493 JPG|500102089 +http://viaf.org/viaf/108286493 Wikipedia@http://en.wikipedia.org/wiki/Gordon_Cullen +http://viaf.org/viaf/108286493 NII|DA00438544 +http://viaf.org/viaf/108286493 Wikipedia@http://sv.wikipedia.org/wiki/Gordon_Cullen +http://viaf.org/viaf/108286493 NSK|000552758 +http://viaf.org/viaf/108286493 Identities@http://www.worldcat.org/identities/lccn-n95097294 +http://viaf.org/viaf/108286493 BNC|a12375056 +http://viaf.org/viaf/108286493 BNC@.a12375056 +http://viaf.org/viaf/108286493 LC@n95097294 +http://viaf.org/viaf/108286493 NKC|ctu2013745812 +http://viaf.org/viaf/108286493 DNB@http://d-nb.info/gnd/119499363 +http://viaf.org/viaf/108286493 NDL|00436994 +http://viaf.org/viaf/108286493 BLBNB|001058167 +http://viaf.org/viaf/108286493 CAOONL|ncf11202177 +http://viaf.org/viaf/108286493 RERO|A003146897 +http://viaf.org/viaf/108286493 J9U|987007375831405171 +http://viaf.org/viaf/108286493 ISNI|0000000116975759 +http://viaf.org/viaf/108286493 PLWABN|9810661309905606 +http://viaf.org/viaf/108286493 NUKAT|n 2010040271 +http://viaf.org/viaf/108286493 N6I|vtls001349898 +http://viaf.org/viaf/108286493 BNCHL@BNC10000000000000000125938 +http://viaf.org/viaf/108286493 Wikipedia@http://arz.wikipedia.org/wiki/جوردون_كولين +http://viaf.org/viaf/108286493 BIBSYS|90904783 +http://viaf.org/viaf/108286493 SELIBR|182595 +http://viaf.org/viaf/108286493 PTBNP|123331 +http://viaf.org/viaf/108286493 LC|n 95097294 +http://viaf.org/viaf/108286493 SUDOC|108090450 +http://viaf.org/viaf/108286493 NLA|000035032550 +http://viaf.org/viaf/108286493 NTA|073073164 +http://viaf.org/viaf/108286493 Wikipedia@http://it.wikipedia.org/wiki/Gordon_Cullen +http://viaf.org/viaf/108286493 KRNLK|KAC2018N0294 +http://viaf.org/viaf/108286493 WKP|Q3773491 +http://viaf.org/viaf/108294836 LC|n 82008537 +http://viaf.org/viaf/108294836 LC@n82008537 +http://viaf.org/viaf/108294836 Identities@http://www.worldcat.org/identities/lccn-n82008537 +http://viaf.org/viaf/108294836 ISNI|0000000082893375 +http://viaf.org/viaf/108294836 NII|DA00450619 +http://viaf.org/viaf/108294836 CAOONL|ncf10020724 +http://viaf.org/viaf/108294836 J9U|987007336065305171 +http://viaf.org/viaf/1083154380987330291116 Identities@http://www.worldcat.org/identities/viaf-1083154380987330291116 +http://viaf.org/viaf/1083154380987330291116 LIH|LNB:SB_a_;=BM +http://viaf.org/viaf/1083154380987330291116 LIH@LNB:SBa;=BM +http://viaf.org/viaf/1083159234728603372465 RERO|A017158101 +http://viaf.org/viaf/1083159234728603372465 Identities@http://www.worldcat.org/identities/viaf-1083159234728603372465 +http://viaf.org/viaf/1083159234801903372859 RERO|A020232527 +http://viaf.org/viaf/108341185 Identities@http://www.worldcat.org/identities/lccn-n84175356 +http://viaf.org/viaf/108341185 BNF|14430628 +http://viaf.org/viaf/108341185 DNB|1051286786 +http://viaf.org/viaf/108341185 ISNI|0000000116975986 +http://viaf.org/viaf/108341185 LC|n 84175356 +http://viaf.org/viaf/108341185 NKC|mzk2012696637 +http://viaf.org/viaf/108341185 NTA|071828354 +http://viaf.org/viaf/108341185 NUKAT|n 02064049 +http://viaf.org/viaf/108341185 SUDOC|082091943 +http://viaf.org/viaf/108341185 NSK|000028466 +http://viaf.org/viaf/108341185 BIBSYS|90366463 +http://viaf.org/viaf/108341185 LIH|LNB:V-154399;=BR +http://viaf.org/viaf/108341185 NII|DA0051607X +http://viaf.org/viaf/108341185 PLWABN|9810667053005606 +http://viaf.org/viaf/108341185 J9U|987007502429605171 +http://viaf.org/viaf/108341185 RERO|A003645251 +http://viaf.org/viaf/108341185 LIH@LNB:V*154399;=BR +http://viaf.org/viaf/108341185 NUKAT@vtls000471004 +http://viaf.org/viaf/108341185 LC@n84175356 +http://viaf.org/viaf/108341185 DNB@http://d-nb.info/gnd/1051286786 +http://viaf.org/viaf/108341185 BNF@http://catalogue.bnf.fr/ark:/12148/cb144306282 +http://viaf.org/viaf/108342120 NTA|068641931 +http://viaf.org/viaf/108342120 NSK|000598459 +http://viaf.org/viaf/108342120 SUDOC|027019837 +http://viaf.org/viaf/108342120 WKP|Q688955 +http://viaf.org/viaf/108342120 Wikipedia@http://it.wikipedia.org/wiki/Arno_Mayer +http://viaf.org/viaf/108342120 Wikipedia@http://ja.wikipedia.org/wiki/アーノ・マイヤー +http://viaf.org/viaf/108342120 Wikipedia@http://lb.wikipedia.org/wiki/Arno_J._Mayer +http://viaf.org/viaf/108342120 BNF@http://catalogue.bnf.fr/ark:/12148/cb11915322d +http://viaf.org/viaf/108342120 DNB@http://d-nb.info/gnd/1055753001 +http://viaf.org/viaf/108342120 LC@n50006787 +http://viaf.org/viaf/108342120 NUKAT@vtls000430967 +http://viaf.org/viaf/108342120 LIH@LNB:V*377539;=BU +http://viaf.org/viaf/108342120 NKC|vse2014823593 +http://viaf.org/viaf/108342120 NLA|000036524249 +http://viaf.org/viaf/108342120 BNC@.a11921766 +http://viaf.org/viaf/108342120 Identities@http://www.worldcat.org/identities/lccn-n50006787 +http://viaf.org/viaf/108342120 BNF|11915322 +http://viaf.org/viaf/108342120 PLWABN|9810682214305606 +http://viaf.org/viaf/108342120 J9U|987007265139105171 +http://viaf.org/viaf/108342120 DNB|1055753001 +http://viaf.org/viaf/108342120 NII|DA00517312 +http://viaf.org/viaf/108342120 ISNI|0000000110321594 +http://viaf.org/viaf/108342120 CAOONL|ncf12091140 +http://viaf.org/viaf/108342120 Wikipedia@http://ar.wikipedia.org/wiki/أرنو_جاي_ماير +http://viaf.org/viaf/108342120 LC|n 50006787 +http://viaf.org/viaf/108342120 NDL|00449241 +http://viaf.org/viaf/108342120 BNC|a11921766 +http://viaf.org/viaf/108342120 BIBSYS|90189299 +http://viaf.org/viaf/108342120 BLBNB|000292313 +http://viaf.org/viaf/108342120 BNE|XX974090 +http://viaf.org/viaf/108342120 LIH|LNB:V-377539;=BU +http://viaf.org/viaf/108342120 Wikipedia@http://azb.wikipedia.org/wiki/آرنو_جی_مایر +http://viaf.org/viaf/108342120 Wikipedia@http://de.wikipedia.org/wiki/Arno_J._Mayer +http://viaf.org/viaf/108342120 Wikipedia@http://en.wikipedia.org/wiki/Arno_J._Mayer +http://viaf.org/viaf/108342120 PTBNP|135484 +http://viaf.org/viaf/108342120 Wikipedia@http://pt.wikipedia.org/wiki/Arno_Mayer +http://viaf.org/viaf/108342120 Wikipedia@http://es.wikipedia.org/wiki/Arno_Mayer +http://viaf.org/viaf/108342120 Wikipedia@http://fr.wikipedia.org/wiki/Arno_Mayer +http://viaf.org/viaf/108342120 NUKAT|n 00047814 +http://viaf.org/viaf/108367123 Identities@http://www.worldcat.org/identities/viaf-108367123 +http://viaf.org/viaf/108367123 NII|DA00552007 +http://viaf.org/viaf/108374251 SUDOC|028442717 +http://viaf.org/viaf/108374251 RERO|A003206780 +http://viaf.org/viaf/108374251 J9U|987007279265805171 +http://viaf.org/viaf/108374251 N6I|vtls000004826 +http://viaf.org/viaf/108374251 DNB|1145375154 +http://viaf.org/viaf/108374251 NTA|072048395 +http://viaf.org/viaf/108374251 BNC|a1648423x +http://viaf.org/viaf/108374251 ISNI|000000008173222X +http://viaf.org/viaf/108374251 BIBSYS|98074313 +http://viaf.org/viaf/108374251 BNF|12027703 +http://viaf.org/viaf/108374251 BNF@http://catalogue.bnf.fr/ark:/12148/cb12027703h +http://viaf.org/viaf/108374251 LC@n82085393 +http://viaf.org/viaf/108374251 BNC@.a1648423x +http://viaf.org/viaf/108374251 LC|n 82085393 +http://viaf.org/viaf/108374251 Identities@http://www.worldcat.org/identities/lccn-n82085393 +http://viaf.org/viaf/108374251 DNB@http://d-nb.info/gnd/1145375154 +http://viaf.org/viaf/108374251 NII|DA00561245 +http://viaf.org/viaf/108374251 CAOONL|ncf11167259 +http://viaf.org/viaf/108377870 BNF@http://catalogue.bnf.fr/ark:/12148/cb13519496s +http://viaf.org/viaf/108377870 DNB@http://d-nb.info/gnd/124715311 +http://viaf.org/viaf/108377870 LC@n81015365 +http://viaf.org/viaf/108377870 NUKAT@vtls000342274 +http://viaf.org/viaf/108377870 LIH@LNB:y/2;=Bc +http://viaf.org/viaf/108377870 BNC|a11398267 +http://viaf.org/viaf/108377870 BNF|13519496 +http://viaf.org/viaf/108377870 DNB|124715311 +http://viaf.org/viaf/108377870 ISNI|0000000120325599 +http://viaf.org/viaf/108377870 LC|n 81015365 +http://viaf.org/viaf/108377870 LNB|LNC10-000164419 +http://viaf.org/viaf/108377870 N6I|vtls000320283 +http://viaf.org/viaf/108377870 NDL|00445158 +http://viaf.org/viaf/108377870 NKC|mub2011634158 +http://viaf.org/viaf/108377870 NSK|000619466 +http://viaf.org/viaf/108377870 NTA|069835993 +http://viaf.org/viaf/108377870 NUKAT|n 00012065 +http://viaf.org/viaf/108377870 SUDOC|050212265 +http://viaf.org/viaf/108377870 KRNLK|KAC200806040 +http://viaf.org/viaf/108377870 NII|DA00566147 +http://viaf.org/viaf/108377870 BIBSYS|90706267 +http://viaf.org/viaf/108377870 LIH|LNB:_y_,2;=B_c_ +http://viaf.org/viaf/108377870 J9U|987007435184905171 +http://viaf.org/viaf/108377870 RERO|A003441673 +http://viaf.org/viaf/108377870 CAOONL|ncf12091978 +http://viaf.org/viaf/108377870 Identities@http://www.worldcat.org/identities/lccn-n81015365 +http://viaf.org/viaf/108377870 BNC@.a11398267 +http://viaf.org/viaf/108387176 NII|DA00578747 +http://viaf.org/viaf/108396130 Identities@http://www.worldcat.org/identities/viaf-108396130 +http://viaf.org/viaf/108396130 NDL|00095533 +http://viaf.org/viaf/108396130 NII|DA00591199 +http://viaf.org/viaf/108398363 BNF|12418093 +http://viaf.org/viaf/108398363 DNB|130124648 +http://viaf.org/viaf/108398363 ISNI|0000000110809805 +http://viaf.org/viaf/108398363 LC|n 84154307 +http://viaf.org/viaf/108398363 NUKAT@vtls003204380 +http://viaf.org/viaf/108398363 LC@n84154307 +http://viaf.org/viaf/108398363 DNB@http://d-nb.info/gnd/130124648 +http://viaf.org/viaf/108398363 BNF@http://catalogue.bnf.fr/ark:/12148/cb124180933 +http://viaf.org/viaf/108398363 Identities@http://www.worldcat.org/identities/lccn-n84154307 +http://viaf.org/viaf/108398363 Wikipedia@http://ja.wikipedia.org/wiki/井堀利宏 +http://viaf.org/viaf/108398363 CAOONL|ncf12138641 +http://viaf.org/viaf/108398363 J9U|987007435184705171 +http://viaf.org/viaf/108398363 BIBSYS|90968047 +http://viaf.org/viaf/108398363 NII|DA00594200 +http://viaf.org/viaf/108398363 KRNLK|KAC200102196 +http://viaf.org/viaf/108398363 WKP|Q11373475 +http://viaf.org/viaf/108398363 SUDOC|071344241 +http://viaf.org/viaf/108398363 NUKAT|n 2005126598 +http://viaf.org/viaf/108398363 NTA|213082357 +http://viaf.org/viaf/108398363 NDL|00139288 +http://viaf.org/viaf/108398363 RERO|A003398237 +http://viaf.org/viaf/108414698 B2Q|0001313657 +http://viaf.org/viaf/108414698 CAOONL|ncf10193478 +http://viaf.org/viaf/108414698 J9U|987007435184605171 +http://viaf.org/viaf/108414698 NII|DA00616755 +http://viaf.org/viaf/108414698 NUKAT@vtls003274656 +http://viaf.org/viaf/108414698 LC@n84021791 +http://viaf.org/viaf/108414698 DNB@http://d-nb.info/gnd/12473409X +http://viaf.org/viaf/108414698 BNF@http://catalogue.bnf.fr/ark:/12148/cb121190825 +http://viaf.org/viaf/108414698 Identities@http://www.worldcat.org/identities/lccn-n84021791 +http://viaf.org/viaf/108414698 Wikipedia@http://fr.wikipedia.org/wiki/Pierre_Pestieau +http://viaf.org/viaf/108414698 BNF|12119082 +http://viaf.org/viaf/108414698 DNB|12473409X +http://viaf.org/viaf/108414698 ISNI|0000000117793770 +http://viaf.org/viaf/108414698 LC|n 84021791 +http://viaf.org/viaf/108414698 Wikipedia@http://en.wikipedia.org/wiki/Pierre_Pestieau +http://viaf.org/viaf/108414698 RERO|A003685283 +http://viaf.org/viaf/108414698 LNB|LNC10-000103157 +http://viaf.org/viaf/108414698 NKC|vse2006360634 +http://viaf.org/viaf/108414698 NTA|070249822 +http://viaf.org/viaf/108414698 NUKAT|n 2005141744 +http://viaf.org/viaf/108414698 SUDOC|029598982 +http://viaf.org/viaf/108414698 WKP|Q3386578 +http://viaf.org/viaf/108414698 BIBSYS|90073974 +http://viaf.org/viaf/1084156677151733770000 DNB|119310808X +http://viaf.org/viaf/1084156677151733770000 DNB@http://d-nb.info/gnd/119310808X +http://viaf.org/viaf/1084157470192922640007 DNB|1199967009 +http://viaf.org/viaf/1084157470192922640007 DNB@http://d-nb.info/gnd/1199967009 +http://viaf.org/viaf/1084159474343327662707 CAOONL|ncf11887186 +http://viaf.org/viaf/108420033 NII|DA00624039 +http://viaf.org/viaf/108432111 NII|DA00640782 +http://viaf.org/viaf/108434344 WKP|Q63131267 +http://viaf.org/viaf/108434344 KRNLK|KAC201958680 +http://viaf.org/viaf/108434344 LC|n 83195315 +http://viaf.org/viaf/108434344 NII|DA00643995 +http://viaf.org/viaf/108434344 ISNI|0000000082904740 +http://viaf.org/viaf/108434344 Identities@http://www.worldcat.org/identities/lccn-n83195315 +http://viaf.org/viaf/108434344 Wikipedia@http://ja.wikipedia.org/wiki/永丘智郎 +http://viaf.org/viaf/108434344 LC@n83195315 +http://viaf.org/viaf/108434344 NDL|00050059 +http://viaf.org/viaf/108450382 DNB|1166620131 +http://viaf.org/viaf/108450382 NLA|000035925143 +http://viaf.org/viaf/108450382 Identities@http://www.worldcat.org/identities/lccn-n79053429 +http://viaf.org/viaf/108450382 LC@n79053429 +http://viaf.org/viaf/108450382 DNB@http://d-nb.info/gnd/1166620131 +http://viaf.org/viaf/108450382 LC|n 79053429 +http://viaf.org/viaf/108450382 ISNI|0000000082905890 +http://viaf.org/viaf/108450382 CAOONL|ncf11368007 +http://viaf.org/viaf/108450382 NII|DA00665841 +http://viaf.org/viaf/108454892 LC@n86045014 +http://viaf.org/viaf/108454892 Identities@http://www.worldcat.org/identities/lccn-n86045014 +http://viaf.org/viaf/108454892 LC|n 86045014 +http://viaf.org/viaf/108454892 RERO|A023425677 +http://viaf.org/viaf/108454892 NII|DA00671786 +http://viaf.org/viaf/108454892 NDL|00005173 +http://viaf.org/viaf/108454892 DNB|142514926 +http://viaf.org/viaf/108454892 SUDOC|234715723 +http://viaf.org/viaf/108454892 ISNI|000000008405919X +http://viaf.org/viaf/108454892 NTA|329917536 +http://viaf.org/viaf/108454892 DNB@http://d-nb.info/gnd/142514926 +http://viaf.org/viaf/10846741 DNB|126712158 +http://viaf.org/viaf/10846741 DNB@http://d-nb.info/gnd/126712158 +http://viaf.org/viaf/10846741 Identities@http://www.worldcat.org/identities/viaf-10846741 +http://viaf.org/viaf/108467861 RERO|A003399601 +http://viaf.org/viaf/108467861 LC|n 82073979 +http://viaf.org/viaf/108467861 BNCHL|10000000000000000027960 +http://viaf.org/viaf/108467861 ISNI|0000000084608734 +http://viaf.org/viaf/108467861 N6I|vtls000025922 +http://viaf.org/viaf/108467861 PLWABN|9810607706605606 +http://viaf.org/viaf/108467861 NDL|00444227 +http://viaf.org/viaf/108467861 NII|DA00689114 +http://viaf.org/viaf/108467861 BNCHL@BNC10000000000000000027960 +http://viaf.org/viaf/108467861 J9U|987007278534705171 +http://viaf.org/viaf/108467861 Identities@http://www.worldcat.org/identities/lccn-n82073979 +http://viaf.org/viaf/108467861 LC@n82073979 +http://viaf.org/viaf/108474494 ISNI|0000000083464134 +http://viaf.org/viaf/108474494 NII|DA00697917 +http://viaf.org/viaf/108474494 NDL|00004262 +http://viaf.org/viaf/108474494 LC|nr2006029223 +http://viaf.org/viaf/108474494 WKP|Q18700448 +http://viaf.org/viaf/108474494 Wikipedia@http://ja.wikipedia.org/wiki/吾妻光俊 +http://viaf.org/viaf/108474494 Identities@http://www.worldcat.org/identities/lccn-nr2006029223 +http://viaf.org/viaf/108494915 ISNI|000000012283969X +http://viaf.org/viaf/108494915 B2Q|0001110680 +http://viaf.org/viaf/108494915 EGAXA|vtls000872898 +http://viaf.org/viaf/108494915 NUKAT@vtls001306248 +http://viaf.org/viaf/108494915 LC@n50039920 +http://viaf.org/viaf/108494915 Identities@http://www.worldcat.org/identities/lccn-n50039920 +http://viaf.org/viaf/108494915 CAOONL|ncf12077409 +http://viaf.org/viaf/108494915 RERO|A003491429 +http://viaf.org/viaf/108494915 NII|DA00724394 +http://viaf.org/viaf/108494915 NKC|xx0245823 +http://viaf.org/viaf/108494915 J9U|987007273551005171 +http://viaf.org/viaf/108494915 WKP|Q59626627 +http://viaf.org/viaf/108494915 BLBNB|000261620 +http://viaf.org/viaf/108494915 BIBSYS|90317599 +http://viaf.org/viaf/108494915 SUDOC|079112943 +http://viaf.org/viaf/108494915 NUKAT|n 2002069144 +http://viaf.org/viaf/108494915 NTA|069107955 +http://viaf.org/viaf/108494915 NLA|000035288881 +http://viaf.org/viaf/108494915 NDL|00446722 +http://viaf.org/viaf/108494915 LC|n 50039920 +http://viaf.org/viaf/108512301 Identities@http://www.worldcat.org/identities/viaf-108512301 +http://viaf.org/viaf/108512301 NII|DA00747607 +http://viaf.org/viaf/10851592 BNF@http://catalogue.bnf.fr/ark:/12148/cb111251262 +http://viaf.org/viaf/10851592 ISNI|0000000013307379 +http://viaf.org/viaf/10851592 WKP|Q96366760 +http://viaf.org/viaf/10851592 DNB|12688790X +http://viaf.org/viaf/10851592 BNF|11125126 +http://viaf.org/viaf/10851592 Identities@http://www.worldcat.org/identities/viaf-10851592 +http://viaf.org/viaf/10851592 DNB@http://d-nb.info/gnd/12688790X +http://viaf.org/viaf/1085159234751003372629 Identities@http://www.worldcat.org/identities/viaf-1085159234751003372629 +http://viaf.org/viaf/1085159234751003372629 RERO|A014025587 +http://viaf.org/viaf/1085159474068427660989 CAOONL|ncf12024522 +http://viaf.org/viaf/1085159474209827661781 CAOONL|ncf11675495 +http://viaf.org/viaf/1085159477658927990009 DNB@http://d-nb.info/gnd/1057324841 +http://viaf.org/viaf/1085159477658927990009 DNB|1057324841 +http://viaf.org/viaf/108520771 Identities@http://www.worldcat.org/identities/viaf-108520771 +http://viaf.org/viaf/108520771 NII|DA00758975 +http://viaf.org/viaf/10852483 LC|no 98127080 +http://viaf.org/viaf/10852483 LC@no98127080 +http://viaf.org/viaf/10852483 ISNI|000000001330811X +http://viaf.org/viaf/10852483 Identities@http://www.worldcat.org/identities/lccn-no98127080 +http://viaf.org/viaf/108533245 NDL|00091194 +http://viaf.org/viaf/108533245 Identities@http://www.worldcat.org/identities/lccn-n80054110 +http://viaf.org/viaf/108533245 NII|DA00775748 +http://viaf.org/viaf/108533245 LC@n80054110 +http://viaf.org/viaf/108533245 LC|n 80054110 +http://viaf.org/viaf/108553298 NII|DA00803264 +http://viaf.org/viaf/108553298 CAOONL|ncf11234689 +http://viaf.org/viaf/108566267 LIH@LNB:/4G;=qP +http://viaf.org/viaf/108566267 DNB@http://d-nb.info/gnd/178767875 +http://viaf.org/viaf/108566267 Identities@http://www.worldcat.org/identities/lccn-n79114393 +http://viaf.org/viaf/108566267 Wikipedia@http://zh.wikipedia.org/wiki/户川芳郎 +http://viaf.org/viaf/108566267 Wikipedia@http://ja.wikipedia.org/wiki/戸川芳郎 +http://viaf.org/viaf/108566267 NUKAT|n 2020145020 +http://viaf.org/viaf/108566267 LIH|LNB:,4G;=_q_P +http://viaf.org/viaf/108566267 BIBSYS|8056616 +http://viaf.org/viaf/108566267 NII|DA0082200X +http://viaf.org/viaf/108566267 WKP|Q11075437 +http://viaf.org/viaf/108566267 SUDOC|139135723 +http://viaf.org/viaf/108566267 NTA|155353349 +http://viaf.org/viaf/108566267 NDL|00114411 +http://viaf.org/viaf/108566267 LC|n 79114393 +http://viaf.org/viaf/108566267 ISNI|0000000082912150 +http://viaf.org/viaf/108566267 DNB|178767875 +http://viaf.org/viaf/108566267 LC@n79114393 +http://viaf.org/viaf/108566267 KRNLK|KAC199641297 +http://viaf.org/viaf/108566267 NUKAT@vtls019342787 +http://viaf.org/viaf/108581738 DNB@http://d-nb.info/gnd/170259196 +http://viaf.org/viaf/108581738 LC@n84132181 +http://viaf.org/viaf/108581738 NTA|071953477 +http://viaf.org/viaf/108581738 BIBSYS|90345581 +http://viaf.org/viaf/108581738 ISNI|0000000082912855 +http://viaf.org/viaf/108581738 DNB|170259196 +http://viaf.org/viaf/108581738 NII|DA00842856 +http://viaf.org/viaf/108581738 LC|n 84132181 +http://viaf.org/viaf/108581738 CAOONL|ncf11171852 +http://viaf.org/viaf/108581738 J9U|987007433891205171 +http://viaf.org/viaf/108581738 Identities@http://www.worldcat.org/identities/lccn-n84132181 +http://viaf.org/viaf/108612544 NII|DA00889791 +http://viaf.org/viaf/10861393 Wikipedia@http://ja.wikipedia.org/wiki/小宮曠三 +http://viaf.org/viaf/10861393 ISNI|0000000385082836 +http://viaf.org/viaf/10861393 NII|DA01123119 +http://viaf.org/viaf/10861393 DNB@http://d-nb.info/gnd/1035656221 +http://viaf.org/viaf/10861393 WKP|Q11459704 +http://viaf.org/viaf/10861393 NDL|00034737 +http://viaf.org/viaf/10861393 DNB|1035656221 +http://viaf.org/viaf/10861393 Identities@http://www.worldcat.org/identities/viaf-10861393 +http://viaf.org/viaf/1086157226613585410002 DNB@http://d-nb.info/gnd/1197826912 +http://viaf.org/viaf/1086157226613585410002 Identities@http://www.worldcat.org/identities/viaf-1086157226613585410002 +http://viaf.org/viaf/1086157226613585410002 DNB|1197826912 +http://viaf.org/viaf/1086159233939403370201 RERO|A017513975 +http://viaf.org/viaf/1086159233939403370201 Identities@http://www.worldcat.org/identities/viaf-1086159233939403370201 +http://viaf.org/viaf/1086159234730403372515 RERO|A023182560 +http://viaf.org/viaf/1086159234730403372515 Identities@http://www.worldcat.org/identities/viaf-1086159234730403372515 +http://viaf.org/viaf/108644224 NDL|00156023 +http://viaf.org/viaf/108644224 LC|nr 92004383 +http://viaf.org/viaf/108644224 NII|DA00937293 +http://viaf.org/viaf/108644224 ISNI|0000000082915941 +http://viaf.org/viaf/108644224 KRNLK|KAC200812113 +http://viaf.org/viaf/108644224 Identities@http://www.worldcat.org/identities/lccn-nr92004383 +http://viaf.org/viaf/108644224 LC@nr92004383 +http://viaf.org/viaf/108672791 NII|DA00981422 +http://viaf.org/viaf/10868125 DNB|12742508X +http://viaf.org/viaf/10868125 DNB@http://d-nb.info/gnd/12742508X +http://viaf.org/viaf/10868125 Identities@http://www.worldcat.org/identities/viaf-10868125 +http://viaf.org/viaf/10868125 Wikipedia@http://no.wikipedia.org/wiki/Thorvald_Bogsrud +http://viaf.org/viaf/10868125 W2Z|90144120 +http://viaf.org/viaf/10868125 WKP|Q12006228 +http://viaf.org/viaf/10868125 BIBSYS|90144120 +http://viaf.org/viaf/10868125 ISNI|0000000015514275 +http://viaf.org/viaf/108685760 BNE|XX871391 +http://viaf.org/viaf/108685760 NUKAT@vtls000597572 +http://viaf.org/viaf/108685760 LC@n50022446 +http://viaf.org/viaf/108685760 DNB@http://d-nb.info/gnd/115830324 +http://viaf.org/viaf/108685760 BNF@http://catalogue.bnf.fr/ark:/12148/cb136025830 +http://viaf.org/viaf/108685760 Identities@http://www.worldcat.org/identities/lccn-n50022446 +http://viaf.org/viaf/108685760 Wikipedia@http://en.wikipedia.org/wiki/Guy_Stern +http://viaf.org/viaf/108685760 Wikipedia@http://de.wikipedia.org/wiki/Guy_Stern +http://viaf.org/viaf/108685760 Wikipedia@http://ar.wikipedia.org/wiki/قاي_ستيرن +http://viaf.org/viaf/108685760 CAOONL|ncf11291833 +http://viaf.org/viaf/108685760 RERO|A003863577 +http://viaf.org/viaf/108685760 NKC|kup20020000095246 +http://viaf.org/viaf/108685760 J9U|987007268574505171 diff --git a/tests/test_version.py b/tests/test_version.py index 75c0cbe3..36763db1 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -26,6 +26,5 @@ def test_version(): assert __version__ - def test(): print(test) diff --git a/tests/ui/conftest.py b/tests/ui/conftest.py index ce20b6b0..152122ff 100644 --- a/tests/ui/conftest.py +++ b/tests/ui/conftest.py @@ -26,5 +26,4 @@ def create_app(instance_path): """Create test app.""" from invenio_app.factory import create_ui - yield create_ui diff --git a/tests/agents/agents_helpers.py b/tests/unit/agents/agents_helpers.py similarity index 80% rename from tests/agents/agents_helpers.py rename to tests/unit/agents/agents_helpers.py index 38361e75..bd536f29 100644 --- a/tests/agents/agents_helpers.py +++ b/tests/unit/agents/agents_helpers.py @@ -29,6 +29,7 @@ Transformation as Transformation_idref from rero_mef.marctojson.do_rero_agent import \ Transformation as Transformation_rero +from rero_mef.marctojson.logger import Logger def trans_prep(source, xml_part_to_add): @@ -39,13 +40,14 @@ def trans_prep(source, xml_part_to_add): current_dir, 'examples/xml_minimal_record.xml') records = marcxml.parse_xml_to_array( file_name, strict=False, normalize_form=None) + logger = Logger() trans = { - 'gnd': Transformation_gnd(marc=records[0], logger=None, - verbose=False, transform=False), - 'idref': Transformation_idref(marc=records[0], logger=None, - verbose=False, transform=False), - 'rero': Transformation_rero(marc=records[0], logger=None, - verbose=False, transform=False) + 'gnd': Transformation_gnd(marc=records[0], logger=logger, + verbose=True, transform=False), + 'idref': Transformation_idref(marc=records[0], logger=logger, + verbose=True, transform=False), + 'rero': Transformation_rero(marc=records[0], logger=logger, + verbose=True, transform=False) } return trans.get(source) diff --git a/tests/agents/examples/xml_minimal_record.xml b/tests/unit/agents/examples/xml_minimal_record.xml similarity index 100% rename from tests/agents/examples/xml_minimal_record.xml rename to tests/unit/agents/examples/xml_minimal_record.xml diff --git a/tests/agents/test_gnd_agent.py b/tests/unit/agents/test_agent_gnd_transformation.py similarity index 68% rename from tests/agents/test_gnd_agent.py rename to tests/unit/agents/test_agent_gnd_transformation.py index 5839ea09..6cc542ed 100644 --- a/tests/agents/test_gnd_agent.py +++ b/tests/unit/agents/test_agent_gnd_transformation.py @@ -98,6 +98,20 @@ def test_gnd_gender_male(): } +def test_gnd_gender_unknown(): + """Test gender 375 $a 1 = male, 2 = female, " " = not known.""" + xml_part_to_add = """ + + + + """ + trans = trans_prep('gnd', xml_part_to_add) + trans.trans_gnd_gender() + assert trans.json == { + 'gender': 'not known' + } + + def test_gnd_gender_missing(): """Test gender 375 missing""" xml_part_to_add = "" @@ -167,6 +181,24 @@ def test_gnd_pid(): } +def test_gnd_establishment_termination_date(): + """Test date of birth 100 $d YYYY-YYYY""" + xml_part_to_add = """ + + 1816-1855 + + + test + + """ + trans = trans_prep('gnd', xml_part_to_add) + trans.trans_gnd_birth_and_death_dates() + assert trans.json == { + 'date_of_establishment': '1816', + 'date_of_termination': '1855' + } + + def test_gnd_birth_and_death_dates_year_birth_death(): """Test date of birth 100 $d YYYY-YYYY""" xml_part_to_add = """ @@ -210,6 +242,20 @@ def test_gnd_birth_and_death_dates_year_death(): } +def test_gnd_birth_and_death_dates_year_date(): + """Test date of birth 100 $d YYYYMMDD""" + xml_part_to_add = """ + + 18551201 + + """ + trans = trans_prep('gnd', xml_part_to_add) + trans.trans_gnd_birth_and_death_dates() + assert trans.json == { + 'date_of_birth': '1855-12-01' + } + + def test_gnd_birth_and_death_dates_birth_death_date(): """Test date of birth 548 $a DD.MM.YYYY-DD.MM.YYYY $4 datx""" xml_part_to_add = """ @@ -296,6 +342,43 @@ def test_gnd_birth_and_death_dates_missing(): assert not trans.json +def test_gnd_conference(): + """Test conference false: 075 $b = b true: 075 $b = f""" + xml_part_to_add = """ + + b + + + test + + """ + trans = trans_prep('gnd', xml_part_to_add) + trans.trans_gnd_conference() + assert trans.json == {'conference': False} + xml_part_to_add = """ + + f + + + test + + """ + trans = trans_prep('gnd', xml_part_to_add) + trans.trans_gnd_conference() + assert trans.json == {'conference': True} + xml_part_to_add = """ + + x + + + test + + """ + trans = trans_prep('gnd', xml_part_to_add) + trans.trans_gnd_conference() + assert trans.json is None + + def test_gnd_biographical_information(): """Test biographical information 670 $abu""" xml_part_to_add = """ @@ -338,6 +421,18 @@ def test_gnd_preferred_name(): assert trans.json == {'preferred_name': 'Bauer, Johann Gottfried'} +def test_gnd_preferred_name_organisation(): + """Test Preferred Name for Organisation 110 $a""" + xml_part_to_add = """ + + SBeurret Bailly Auktionen + + """ + trans = trans_prep('gnd', xml_part_to_add) + trans.trans_gnd_preferred_name() + assert trans.json == {'preferred_name': 'SBeurret Bailly Auktionen'} + + def test_gnd_preferred_name_missing(): """Test Preferred Name for Person 100 $a missing""" xml_part_to_add = "" @@ -346,7 +441,7 @@ def test_gnd_preferred_name_missing(): assert not trans.json -def test_trans_gnd_numeration(): +def test_gnd_numeration(): """Test numeration for Person 100 $b""" xml_part_to_add = """ @@ -361,7 +456,7 @@ def test_trans_gnd_numeration(): } -def test_trans_gnd_qualifier(): +def test_gnd_qualifier(): """Test numeration for Person 100 $c""" xml_part_to_add = """ @@ -390,7 +485,11 @@ def test_gnd_variant_name(): """ trans = trans_prep('gnd', xml_part_to_add) trans.trans_gnd_variant_name() + trans.trans_gnd_variant_access_point() assert trans.json == { + 'variant_access_point': [ + 'Barbanson, Konstantin von', + 'Barbançon, Konstantyn'], 'variant_name': [ 'Barbanson, Konstantin von', 'Barbanc\u0327on, Konstantyn' @@ -398,11 +497,32 @@ def test_gnd_variant_name(): } +def test_gnd_variant_name_organisation(): + """Test Variant Name for Person 410 $a""" + xml_part_to_add = """ + + ˜Theœ Young Gods + Musikgruppe + + + TYG + + """ + trans = trans_prep('gnd', xml_part_to_add) + trans.trans_gnd_variant_name() + trans.trans_gnd_variant_access_point() + assert trans.json == { + 'variant_access_point': ['The Young Gods. Musikgruppe', 'TYG'], + 'variant_name': ['The Young Gods', 'TYG'] + } + + def test_gnd_variant_name_missing(): """Test Variant Name for Person 400 $a missing""" xml_part_to_add = "" trans = trans_prep('gnd', xml_part_to_add) trans.trans_gnd_variant_name() + trans.trans_gnd_variant_access_point() assert not trans.json @@ -426,6 +546,22 @@ def test_gnd_authorized_access_point(): } +def test_gnd_authorized_access_point_organisation(): + """Test Authorized access point representing a person 100 $abcd""" + xml_part_to_add = """ + + The Young Gods + Musikgruppe + + """ + trans = trans_prep('gnd', xml_part_to_add) + trans.trans_gnd_authorized_access_point() + assert trans.json == { + 'authorized_access_point': 'The Young Gods. Musikgruppe', + 'bf:Agent': 'bf:Organisation' + } + + def test_gnd_authorized_access_point_missing(): """Test Authorized access point representing a person 100 $abcd missing """ @@ -433,3 +569,45 @@ def test_gnd_authorized_access_point_missing(): trans = trans_prep('gnd', xml_part_to_add) trans.trans_gnd_authorized_access_point() assert not trans.json + + +def test_gnd_parallel_access_point(): + """Test Authorized access point representing a person 100 $abcd""" + xml_part_to_add = """ + + Goethe, Johann Wolfgang von + 1749-1832 + + """ + trans = trans_prep('gnd', xml_part_to_add) + trans.trans_gnd_parallel_access_point() + assert trans.json == { + 'parallel_access_point': ['Goethe, Johann Wolfgang von, 1749-1832'] + } + + +def test_gnd_parallel_access_point_organisation(): + """Test Authorized access point representing a person 100 $abcd""" + xml_part_to_add = """ + + Гёте, Йоҳанн Волфганг + 1749-1832 + + """ + trans = trans_prep('gnd', xml_part_to_add) + trans.trans_gnd_parallel_access_point() + assert trans.json == { + 'parallel_access_point': ['Гёте, Йоҳанн Волфганг, 1749-1832'] + } + + +def test_gnd_country_associated(): + """Test country_associated 043 $c codes ISO 3166-1.""" + xml_part_to_add = """ + + XA-DE + + """ + trans = trans_prep('gnd', xml_part_to_add) + trans.trans_gnd_country_associated() + assert trans.json == {'country_associated': 'gw'} diff --git a/tests/agents/test_idref_agent.py b/tests/unit/agents/test_agent_idref_transformation.py similarity index 86% rename from tests/agents/test_idref_agent.py rename to tests/unit/agents/test_agent_idref_transformation.py index 6a921b14..8d05fe1b 100644 --- a/tests/agents/test_idref_agent.py +++ b/tests/unit/agents/test_agent_idref_transformation.py @@ -97,6 +97,20 @@ def test_idref_gender_male(): } +def test_idref_gender_unknown(): + """Test gender 120 $a a = female, b = male, - = not known.""" + xml_part_to_add = """ + + - + + """ + trans = trans_prep('idref', xml_part_to_add) + trans.trans_idref_gender() + assert trans.json == { + 'gender': 'not known' + } + + def test_idref_gender_missing(): """Test gender 120 missing""" xml_part_to_add = "" @@ -346,6 +360,24 @@ def test_idref_birth_and_death_dates_in_two_fields(): } +def test_idref_establishment_termination_date(): + """Test date of birth 103 $a YYYY-YYYY with tag 210""" + xml_part_to_add = """ + + 1816-1855 + + + test + + """ + trans = trans_prep('idref', xml_part_to_add) + trans.trans_idref_birth_and_death_dates() + assert trans.json == { + 'date_of_establishment': '1816', + 'date_of_termination': '1855' + } + + def test_idref_birth_and_death_dates_missing(): """Test date of birth 103 AND 200 missing""" xml_part_to_add = "" @@ -459,11 +491,10 @@ def test_idref_variant_name(): """ trans = trans_prep('idref', xml_part_to_add) trans.trans_idref_variant_name() + trans.trans_idref_variant_access_point() assert trans.json == { - 'variant_name': [ - 'Bell, Currer', - 'Brontë, Carlotta' - ] + 'variant_access_point': ['Bell, Currer', 'Brontë, Carlotta'], + 'variant_name': ['Bell, Currer', 'Brontë, Carlotta'] } @@ -472,6 +503,7 @@ def test_idref_variant_name_missing(): xml_part_to_add = "" trans = trans_prep('idref', xml_part_to_add) trans.trans_idref_variant_name() + trans.trans_idref_variant_access_point() assert not trans.json @@ -543,3 +575,45 @@ def test_authorized_access_point_general_order(): 'authorized_access_point': 'Brontë, Charlotte, 1816-1855, écrivain', 'bf:Agent': 'bf:Person' } + + +def test_idref_parallel_access_point(): + """Test parallel access point 700/710/710.""" + xml_part_to_add = """ + + Brontë, Charlotte, + 1816-1855 + écrivain + + """ + trans = trans_prep('idref', xml_part_to_add) + trans.trans_idref_parallel_access_point() + assert trans.json == { + 'parallel_access_point': ['Brontë, Charlotte, 1816-1855, écrivain'] + } + + xml_part_to_add = """ + + Paul + VI + pape + 1897-1978 + + """ + trans = trans_prep('idref', xml_part_to_add) + trans.trans_idref_parallel_access_point() + assert trans.json == { + 'parallel_access_point': ['Paul. VI ( pape ) ( 1897-1978 )'] + } + + +def test_idref_country_associated(): + """Test country_associated 102 $a codes ISO 3166-1.""" + xml_part_to_add = """ + + DE + + """ + trans = trans_prep('idref', xml_part_to_add) + trans.trans_idref_country_associated() + assert trans.json == {'country_associated': 'gw'} diff --git a/tests/agents/test_rero_agent.py b/tests/unit/agents/test_agent_rero_transformation.py similarity index 68% rename from tests/agents/test_rero_agent.py rename to tests/unit/agents/test_agent_rero_transformation.py index 51221810..0ba319e0 100755 --- a/tests/agents/test_rero_agent.py +++ b/tests/unit/agents/test_agent_rero_transformation.py @@ -117,6 +117,18 @@ def test_rero_preferred_name(): assert trans.json == {'preferred_name': 'Brontë, Charlotte'} +def test_rero_preferred_name_organisation(): + """Test Preferred Name for Person 110 $a""" + xml_part_to_add = """ + + Brontë, Charlotte + + """ + trans = trans_prep('rero', xml_part_to_add) + trans.trans_rero_preferred_name() + assert trans.json == {'preferred_name': 'Brontë, Charlotte'} + + def test_trans_rero_numeration(): """Test numeration for Person 100 $b""" xml_part_to_add = """ @@ -141,10 +153,7 @@ def test_trans_rero_qualifier(): """ trans = trans_prep('rero', xml_part_to_add) trans.trans_rero_qualifier() - assert trans.json == { - 'qualifier': - 'Jr.' - } + assert trans.json == {'qualifier': 'Jr.'} def test_rero_variant_name(): @@ -159,12 +168,37 @@ def test_rero_variant_name(): """ trans = trans_prep('rero', xml_part_to_add) trans.trans_rero_variant_name() + trans.trans_rero_variant_access_point() assert trans.json == { - 'variant_name': [ - 'Bell, Currer', - 'Brontë, Carlotta' - ] + 'variant_access_point': ['Bell, Currer', 'Brontë, Carlotta'], + 'variant_name': ['Bell, Currer', 'Brontë, Carlotta'] + } + xml_part_to_add = """ + + Bell, Currer + + + Brontë, Carlotta + + """ + trans = trans_prep('rero', xml_part_to_add) + trans.trans_rero_variant_name() + trans.trans_rero_variant_access_point() + assert trans.json == { + 'variant_access_point': ['Bell, Currer', 'Brontë, Carlotta'], + 'variant_name': ['Bell, Currer', 'Brontë, Carlotta'] } + xml_part_to_add = """ + + Bell, Currer + + + Brontë, Carlotta + + """ + trans = trans_prep('rero', xml_part_to_add) + trans.trans_rero_variant_name() + trans.trans_rero_variant_access_point() def test_rero_authorized_access_point(): @@ -184,7 +218,7 @@ def test_rero_authorized_access_point(): } xml_part_to_add = """ - + Paul VI pape @@ -195,5 +229,34 @@ def test_rero_authorized_access_point(): trans.trans_rero_authorized_access_point() assert trans.json == { 'authorized_access_point': 'Paul VI pape 1897-1978', - 'bf:Agent': 'bf:Person' + 'bf:Agent': 'bf:Organisation', + 'conference': False, + } + + +def test_rero_parallel_access_point(): + """Test parallel access point 700/710/710.""" + xml_part_to_add = """ + + Brontë, Charlotte, + 1816-1855 + écrivain + + """ + trans = trans_prep('rero', xml_part_to_add) + trans.trans_rero_parallel_access_point() + assert trans.json == { + 'parallel_access_point': ['Brontë, Charlotte, 1816-1855 écrivain'] } + + xml_part_to_add = """ + + Paul + VI + pape + 1897-1978 + + """ + trans = trans_prep('rero', xml_part_to_add) + trans.trans_rero_parallel_access_point() + assert trans.json == {'parallel_access_point': ['Paul VI pape 1897-1978']} diff --git a/tests/agents/test_agents_api.py b/tests/unit/agents/test_agents_api.py similarity index 66% rename from tests/agents/test_agents_api.py rename to tests/unit/agents/test_agents_api.py index c5762d2a..a192c2f0 100644 --- a/tests/agents/test_agents_api.py +++ b/tests/unit/agents/test_agents_api.py @@ -19,26 +19,28 @@ from rero_mef.agents.gnd.api import AgentGndRecord from rero_mef.agents.idref.api import AgentIdrefRecord +from rero_mef.agents.mef.api import AgentMefRecord from rero_mef.agents.rero.api import AgentReroRecord from rero_mef.agents.viaf.api import AgentViafRecord def test_create_agent_record_with_viaf_links( - app, viaf_record, gnd_record, rero_record, idref_record): + app, agent_viaf_record, agent_gnd_record, agent_rero_record, + agent_idref_record): """Test create agent record with VIAF links.""" - returned_record, action = AgentViafRecord.create_or_update( - viaf_record, dbcommit=True, reindex=True + viaf_record, action = AgentViafRecord.create_or_update( + agent_viaf_record, dbcommit=True, reindex=True ) AgentViafRecord.update_indexes() assert action.name == 'CREATE' - assert returned_record['pid'] == '66739143' - assert returned_record['gnd_pid'] == '12391664X' - assert returned_record['rero_pid'] == 'A023655346' - assert returned_record['idref_pid'] == '069774331' + assert viaf_record['pid'] == '66739143' + assert viaf_record['gnd_pid'] == '12391664X' + assert viaf_record['rero_pid'] == 'A023655346' + assert viaf_record['idref_pid'] == '069774331' record, action, m_record, m_action, v_record, online = \ AgentGndRecord.create_or_update_agent_mef_viaf( - data=gnd_record, + data=agent_gnd_record, dbcommit=True, reindex=True, online=False @@ -50,14 +52,14 @@ def test_create_agent_record_with_viaf_links( assert m_record == { '$schema': 'https://mef.rero.ch/schemas/mef/mef-v0.0.1.json', - 'gnd': {'$ref': 'https://mef.rero.ch/api/gnd/12391664X'}, + 'gnd': {'$ref': 'https://mef.rero.ch/api/agents/gnd/12391664X'}, 'pid': '1', 'viaf_pid': '66739143' } record, action, m_record, m_action, v_record, online = \ AgentReroRecord.create_or_update_agent_mef_viaf( - data=rero_record, + data=agent_rero_record, dbcommit=True, reindex=True, online=False @@ -68,15 +70,15 @@ def test_create_agent_record_with_viaf_links( assert m_record == { '$schema': 'https://mef.rero.ch/schemas/mef/mef-v0.0.1.json', - 'gnd': {'$ref': 'https://mef.rero.ch/api/gnd/12391664X'}, + 'gnd': {'$ref': 'https://mef.rero.ch/api/agents/gnd/12391664X'}, 'pid': '1', - 'rero': {'$ref': 'https://mef.rero.ch/api/rero/A023655346'}, + 'rero': {'$ref': 'https://mef.rero.ch/api/agents/rero/A023655346'}, 'viaf_pid': '66739143' } record, action, m_record, m_action, v_record, online = \ AgentIdrefRecord.create_or_update_agent_mef_viaf( - data=idref_record, + data=agent_idref_record, dbcommit=True, reindex=True, online=False @@ -87,53 +89,61 @@ def test_create_agent_record_with_viaf_links( assert m_record == { '$schema': 'https://mef.rero.ch/schemas/mef/mef-v0.0.1.json', - 'gnd': {'$ref': 'https://mef.rero.ch/api/gnd/12391664X'}, - 'idref': {'$ref': 'https://mef.rero.ch/api/idref/069774331'}, + 'gnd': {'$ref': 'https://mef.rero.ch/api/agents/gnd/12391664X'}, + 'idref': {'$ref': 'https://mef.rero.ch/api/agents/idref/069774331'}, 'pid': '1', - 'rero': {'$ref': 'https://mef.rero.ch/api/rero/A023655346'}, + 'rero': {'$ref': 'https://mef.rero.ch/api/agents/rero/A023655346'}, 'viaf_pid': '66739143' } + assert m_record == AgentMefRecord.get_mef_by_entity_pid( + record.pid, 'idref') + assert m_record.pid == AgentMefRecord.get_mef_by_entity_pid( + record.pid, 'idref', pid_only=True) + assert AgentMefRecord.get_mef_by_viaf_pid(viaf_record.pid) == m_record + def test_update_agent_record_with_viaf_links( - app, viaf_record, gnd_record, rero_record, idref_record): + app, agent_viaf_record, agent_gnd_record, agent_rero_record, + agent_idref_record): """Test create agent record with VIAF links.""" returned_record, action = AgentGndRecord.create_or_update( - gnd_record, dbcommit=True, reindex=True + agent_gnd_record, dbcommit=True, reindex=True ) assert action.name == 'UPDATE' assert returned_record['pid'] == '12391664X' returned_record, action = AgentReroRecord.create_or_update( - rero_record, dbcommit=True, reindex=True + agent_rero_record, dbcommit=True, reindex=True ) assert action.name == 'UPDATE' assert returned_record['pid'] == 'A023655346' returned_record, action = AgentIdrefRecord.create_or_update( - idref_record, dbcommit=True, reindex=True + agent_idref_record, dbcommit=True, reindex=True ) assert action.name == 'UPDATE' assert returned_record['pid'] == '069774331' def test_uptodate_agent_record_with_viaf_links_md5( - app, viaf_record, gnd_record, rero_record, idref_record): + app, agent_viaf_record, agent_gnd_record, agent_rero_record, + agent_idref_record): """Test create agent record with VIAF links.""" returned_record, action = AgentGndRecord.create_or_update( - gnd_record, dbcommit=True, reindex=True, test_md5=True + agent_gnd_record, dbcommit=True, reindex=True, test_md5=True ) assert action.name == 'UPTODATE' assert returned_record['pid'] == '12391664X' returned_record, action = AgentReroRecord.create_or_update( - rero_record, dbcommit=True, reindex=True, test_md5=True + agent_rero_record, dbcommit=True, reindex=True, test_md5=True ) assert action.name == 'UPTODATE' assert returned_record['pid'] == 'A023655346' returned_record, action = AgentIdrefRecord.create_or_update( - idref_record, dbcommit=True, reindex=True, + agent_idref_record, dbcommit=True, reindex=True, test_md5=True ) assert action.name == 'UPTODATE' diff --git a/tests/agents/test_agents_api_no_viaf.py b/tests/unit/agents/test_agents_api_no_viaf.py similarity index 85% rename from tests/agents/test_agents_api_no_viaf.py rename to tests/unit/agents/test_agents_api_no_viaf.py index 177b077b..bc7cfd31 100644 --- a/tests/agents/test_agents_api_no_viaf.py +++ b/tests/unit/agents/test_agents_api_no_viaf.py @@ -23,11 +23,11 @@ def test_create_agent_record_no_viaf_links( - app, gnd_record, rero_record, idref_record): + app, agent_gnd_record, agent_rero_record, agent_idref_record): """Test create agent record without VIAF links.""" record, action, m_record, m_action, v_record, online = \ AgentGndRecord.create_or_update_agent_mef_viaf( - data=gnd_record, + data=agent_gnd_record, dbcommit=True, reindex=True, online=False @@ -38,13 +38,13 @@ def test_create_agent_record_no_viaf_links( assert m_record == { '$schema': 'https://mef.rero.ch/schemas/mef/mef-v0.0.1.json', - 'gnd': {'$ref': 'https://mef.rero.ch/api/gnd/12391664X'}, + 'gnd': {'$ref': 'https://mef.rero.ch/api/agents/gnd/12391664X'}, 'pid': '1', } record, action, m_record, m_action, v_record, online = \ AgentReroRecord.create_or_update_agent_mef_viaf( - data=rero_record, + data=agent_rero_record, dbcommit=True, reindex=True, online=False @@ -56,12 +56,12 @@ def test_create_agent_record_no_viaf_links( '$schema': 'https://mef.rero.ch/schemas/mef/mef-v0.0.1.json', 'pid': '2', - 'rero': {'$ref': 'https://mef.rero.ch/api/rero/A023655346'}, + 'rero': {'$ref': 'https://mef.rero.ch/api/agents/rero/A023655346'}, } record, action, m_record, m_action, v_record, online = \ AgentIdrefRecord.create_or_update_agent_mef_viaf( - data=idref_record, + data=agent_idref_record, dbcommit=True, reindex=True, online=False @@ -72,6 +72,6 @@ def test_create_agent_record_no_viaf_links( assert m_record == { '$schema': 'https://mef.rero.ch/schemas/mef/mef-v0.0.1.json', - 'idref': {'$ref': 'https://mef.rero.ch/api/idref/069774331'}, + 'idref': {'$ref': 'https://mef.rero.ch/api/agents/idref/069774331'}, 'pid': '3', } diff --git a/tests/agents/test_agents_api_updates.py b/tests/unit/agents/test_agents_api_updates.py similarity index 62% rename from tests/agents/test_agents_api_updates.py rename to tests/unit/agents/test_agents_api_updates.py index 472daac6..34b2e820 100644 --- a/tests/agents/test_agents_api_updates.py +++ b/tests/unit/agents/test_agents_api_updates.py @@ -28,8 +28,8 @@ @mock.patch( 'rero_mef.agents.viaf.api.AgentViafRecord.get_online_viaf_record') -def test_create_agent_updates(mock_get, app, gnd_record, rero_record, - idref_record): +def test_create_agent_updates(mock_get, app, agent_gnd_record, + agent_rero_record, agent_idref_record): """Test create agent record with VIAF links.""" # we have to mock the access to viaf mock_get.return_value = { @@ -42,7 +42,7 @@ def test_create_agent_updates(mock_get, app, gnd_record, rero_record, assert AgentViafRecord.count() == 0 record, action, m_record, m_action, v_record, online = \ AgentIdrefRecord.create_or_update_agent_mef_viaf( - data=idref_record, + data=agent_idref_record, dbcommit=True, reindex=True, online=True @@ -55,14 +55,14 @@ def test_create_agent_updates(mock_get, app, gnd_record, rero_record, # we should have a MEF and VIAF record now mef_pid = list(AgentMefRecord.get_all_pids())[-1] - mef_record = AgentMefRecord.get_record_by_pid(mef_pid) - assert mef_record.get('pid') == '1' - assert mef_record.get('viaf_pid') == '37268949' - assert 'idref' in mef_record + agent_mef_record = AgentMefRecord.get_record_by_pid(mef_pid) + assert agent_mef_record.get('pid') == '1' + assert agent_mef_record.get('viaf_pid') == '37268949' + assert 'idref' in agent_mef_record viaf_pid = list(AgentViafRecord.get_all_pids())[-1] - viaf_record = AgentViafRecord.get_record_by_pid(viaf_pid) - assert viaf_record.get('pid') == '37268949' - assert viaf_record.get('idref_pid') == '069774331' + agent_viaf_record = AgentViafRecord.get_record_by_pid(viaf_pid) + assert agent_viaf_record.get('pid') == '37268949' + assert agent_viaf_record.get('idref_pid') == '069774331' # we have to mock the access to VIAF mock_get.return_value = { @@ -74,47 +74,47 @@ def test_create_agent_updates(mock_get, app, gnd_record, rero_record, # create second record record, action, m_record, m_action, v_record, online = \ AgentGndRecord.create_or_update_agent_mef_viaf( - data=gnd_record, + data=agent_gnd_record, dbcommit=True, reindex=True, online=True ) mef_pid = list(AgentMefRecord.get_all_pids())[-1] - mef_record = AgentMefRecord.get_record_by_pid(mef_pid) - assert mef_record.get('pid') == '2' - assert mef_record.get('viaf_pid') == '66739143' - assert 'gnd' in mef_record + agent_mef_record = AgentMefRecord.get_record_by_pid(mef_pid) + assert agent_mef_record.get('pid') == '2' + assert agent_mef_record.get('viaf_pid') == '66739143' + assert 'gnd' in agent_mef_record viaf_pid = list(AgentViafRecord.get_all_pids())[-1] - viaf_record = AgentViafRecord.get_record_by_pid(viaf_pid) - assert viaf_record.get('pid') == '66739143' - assert viaf_record.get('gnd_pid') == '12391664X' + agent_viaf_record = AgentViafRecord.get_record_by_pid(viaf_pid) + assert agent_viaf_record.get('pid') == '66739143' + assert agent_viaf_record.get('gnd_pid') == '12391664X' record, action, m_record, m_action, v_record, online = \ AgentReroRecord.create_or_update_agent_mef_viaf( - data=rero_record, + data=agent_rero_record, dbcommit=True, reindex=True, online=True ) mef_pid = list(AgentMefRecord.get_all_pids())[-1] - mef_record = AgentMefRecord.get_record_by_pid(mef_pid) - assert mef_record.get('pid') == '2' - assert mef_record.get('viaf_pid') == '66739143' - assert 'rero' in mef_record + agent_mef_record = AgentMefRecord.get_record_by_pid(mef_pid) + assert agent_mef_record.get('pid') == '2' + assert agent_mef_record.get('viaf_pid') == '66739143' + assert 'rero' in agent_mef_record viaf_pid = list(AgentViafRecord.get_all_pids())[-1] - viaf_record = AgentViafRecord.get_record_by_pid(viaf_pid) - assert viaf_record.get('pid') == '66739143' - assert viaf_record.get('rero_pid') == 'A023655346' + agent_viaf_record = AgentViafRecord.get_record_by_pid(viaf_pid) + assert agent_viaf_record.get('pid') == '66739143' + assert agent_viaf_record.get('rero_pid') == 'A023655346' - mef_record = AgentMefRecord.get_mef_by_viaf_pid(viaf_pid) - assert mef_record == { + agent_mef_record = AgentMefRecord.get_mef_by_viaf_pid(viaf_pid) + assert agent_mef_record == { 'pid': '2', 'viaf_pid': '66739143', '$schema': 'https://mef.rero.ch/schemas/mef/mef-v0.0.1.json', - 'gnd': {'$ref': 'https://mef.rero.ch/api/gnd/12391664X'}, - 'rero': {'$ref': 'https://mef.rero.ch/api/rero/A023655346'} + 'gnd': {'$ref': 'https://mef.rero.ch/api/agents/gnd/12391664X'}, + 'rero': {'$ref': 'https://mef.rero.ch/api/agents/rero/A023655346'} } new_viaf_pid = 'xxxxxxxx' new_viaf_record = { @@ -124,13 +124,14 @@ def test_create_agent_updates(mock_get, app, gnd_record, rero_record, 'rero_pid': 'A023655346' } mock_get.return_value = new_viaf_record - rec, msg = viaf_record.delete(dbcommit=True, delindex=True, online=True) + rec, msg = agent_viaf_record.delete(dbcommit=True, delindex=True, + online=True) assert AgentViafRecord.get_record_by_pid(new_viaf_pid) == new_viaf_record - mef_record = AgentMefRecord.get_mef_by_viaf_pid(new_viaf_pid) - assert mef_record == { + agent_mef_record = AgentMefRecord.get_mef_by_viaf_pid(new_viaf_pid) + assert agent_mef_record == { 'viaf_pid': 'xxxxxxxx', - 'gnd': {'$ref': 'https://mef.rero.ch/api/gnd/12391664X'}, - 'rero': {'$ref': 'https://mef.rero.ch/api/rero/A023655346'}, + 'gnd': {'$ref': 'https://mef.rero.ch/api/agents/gnd/12391664X'}, + 'rero': {'$ref': 'https://mef.rero.ch/api/agents/rero/A023655346'}, '$schema': 'https://mef.rero.ch/schemas/mef/mef-v0.0.1.json', 'pid': '3' diff --git a/tests/unit/agents/test_agents_mef_api.py b/tests/unit/agents/test_agents_mef_api.py new file mode 100644 index 00000000..6adcb685 --- /dev/null +++ b/tests/unit/agents/test_agents_mef_api.py @@ -0,0 +1,78 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2020 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 agents MEF api.""" + +from rero_mef.agents.mef.api import AgentMefRecord + + +def test_get_all_pids_without_agents_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 = AgentMefRecord.create( + data=record, dbcommit=True, reindex=True) + AgentMefRecord.update_indexes() + assert list(AgentMefRecord.get_all_pids_without_agents_and_viaf()) == \ + [m_record.pid] + + +def test_get_pids_with_multiple_mef(app, agent_mef_record): + """Test get pids with multiple MEF.""" + m_record_1 = AgentMefRecord.create( + data=agent_mef_record, delete_pid=True, dbcommit=True, reindex=True) + m_record_2 = AgentMefRecord.create( + data=agent_mef_record, delete_pid=True, dbcommit=True, reindex=True) + AgentMefRecord.update_indexes() + pids, multiple_pids, missing_pids = AgentMefRecord \ + .get_pids_with_multiple_mef(record_types=['aidref', 'aggnd', 'agrero']) + assert pids == {'aggnd': {}, 'agrero': {}, 'aidref': {}} + assert multiple_pids == { + 'aggnd': {'12391664X': [m_record_1.pid, m_record_2.pid]}, + 'agrero': {'A023655346': [m_record_1.pid, m_record_2.pid]}, + 'aidref': {'069774331': [m_record_1.pid, m_record_2.pid]} + } + assert missing_pids == {'aggnd': [], 'agrero': [], 'aidref': []} + + m_record_2.mark_as_deleted(dbcommit=True, reindex=True) + assert m_record_2.deleted is not None + + +# TODO: Find out why this test is not working in github. +# def test_get_all_missing_pids(app, agent_gnd_record, agent_rero_record, +# agent_idref_record): +# """Test get all missing pids.""" +# for mef_record in AgentMefRecord.get_all_records(): +# mef_record.delete(dbcommit=True, delindex=True) +# AgentGndRecord.create( +# data=agent_gnd_record, dbcommit=True, reindex=True) +# AgentGndRecord.update_indexes() +# AgentIdrefRecord.create( +# data=agent_idref_record, dbcommit=True, reindex=True) +# AgentIdrefRecord.update_indexes() +# AgentReroRecord.create( +# data=agent_rero_record, dbcommit=True, reindex=True) +# AgentReroRecord.update_indexes() +# missing_pids, to_much_pids = AgentMefRecord.get_all_missing_pids( +# record_types=['aidref', 'aggnd', 'agrero']) +# assert missing_pids == { +# 'aggnd': {'12391664X': 1}, +# 'agrero': {'A023655346': 1}, +# 'aidref': {'069774331': 1} +# } +# assert to_much_pids == {} diff --git a/tests/agents/test_gnd_contributions_person.py b/tests/unit/agents/test_gnd_contributions_person.py similarity index 100% rename from tests/agents/test_gnd_contributions_person.py rename to tests/unit/agents/test_gnd_contributions_person.py diff --git a/tests/agents/test_idref_contributions_person.py b/tests/unit/agents/test_idref_contributions_person.py similarity index 100% rename from tests/agents/test_idref_contributions_person.py rename to tests/unit/agents/test_idref_contributions_person.py diff --git a/tests/agents/test_ref_resolver.py b/tests/unit/agents/test_ref_resolver.py similarity index 90% rename from tests/agents/test_ref_resolver.py rename to tests/unit/agents/test_ref_resolver.py index 65972d85..e3e2ff16 100644 --- a/tests/agents/test_ref_resolver.py +++ b/tests/unit/agents/test_ref_resolver.py @@ -25,12 +25,13 @@ def test_ref_resolvers( - app, gnd_record, rero_record, viaf_record, idref_record): + app, agent_gnd_record, agent_rero_record, agent_viaf_record, + agent_idref_record): """Test ref resolvers.""" # VIAF record record, action = AgentViafRecord.create_or_update( - data=viaf_record, + data=agent_viaf_record, dbcommit=True, reindex=True ) @@ -39,7 +40,7 @@ def test_ref_resolvers( # GND record record, action, m_record, m_action, v_record, online = \ AgentGndRecord.create_or_update_agent_mef_viaf( - data=gnd_record, + data=agent_gnd_record, dbcommit=True, reindex=True, online=False @@ -49,7 +50,7 @@ def test_ref_resolvers( # RERO record record, action, m_record, m_action, v_record, online = \ AgentReroRecord.create_or_update_agent_mef_viaf( - data=rero_record, + data=agent_rero_record, dbcommit=True, reindex=True, online=False @@ -59,7 +60,7 @@ def test_ref_resolvers( # IDREF record record, action, m_record, m_action, v_record, online = \ AgentIdrefRecord.create_or_update_agent_mef_viaf( - data=idref_record, + data=agent_idref_record, dbcommit=True, reindex=True, online=False diff --git a/tests/agents/test_rero_contributions_person.py b/tests/unit/agents/test_rero_contributions_person.py similarity index 100% rename from tests/agents/test_rero_contributions_person.py rename to tests/unit/agents/test_rero_contributions_person.py diff --git a/tests/agents/test_signals.py b/tests/unit/agents/test_signals.py similarity index 90% rename from tests/agents/test_signals.py rename to tests/unit/agents/test_signals.py index a060437a..e5a7f530 100644 --- a/tests/agents/test_signals.py +++ b/tests/unit/agents/test_signals.py @@ -22,10 +22,10 @@ from rero_mef.agents.viaf.api import AgentViafRecord -def test_create_mef_with_viaf_links(app, viaf_record, gnd_record): +def test_create_mef_with_viaf_links(app, agent_viaf_record, agent_gnd_record): """Test create MEF record from agent with VIAF links.""" v_record, action = AgentViafRecord.create_or_update( - viaf_record, dbcommit=True, reindex=True + agent_viaf_record, dbcommit=True, reindex=True ) assert action.name == 'CREATE' assert v_record['pid'] == '66739143' @@ -35,7 +35,7 @@ def test_create_mef_with_viaf_links(app, viaf_record, gnd_record): record, action, m_record, m_action, v_record, online = \ AgentGndRecord.create_or_update_agent_mef_viaf( - data=gnd_record, + data=agent_gnd_record, dbcommit=True, reindex=True, online=False diff --git a/tests/concepts/concepts_helpers.py b/tests/unit/concepts/concepts_helpers.py similarity index 92% rename from tests/concepts/concepts_helpers.py rename to tests/unit/concepts/concepts_helpers.py index d5cbc9ca..860a33ba 100644 --- a/tests/concepts/concepts_helpers.py +++ b/tests/unit/concepts/concepts_helpers.py @@ -25,6 +25,7 @@ from rero_mef.marctojson.do_rero_concepts import \ Transformation as Transformation_rero_concepts +from rero_mef.marctojson.logger import Logger def trans_prep(source, xml_part_to_add): @@ -35,9 +36,10 @@ def trans_prep(source, xml_part_to_add): current_dir, 'examples/xml_minimal_record.xml') records = marcxml.parse_xml_to_array( file_name, strict=False, normalize_form=None) + logger = Logger() trans = { 'concepts': Transformation_rero_concepts( - marc=records[0], logger=None, verbose=False, transform=False) + marc=records[0], logger=logger, verbose=True, transform=False) } return trans.get(source) diff --git a/tests/concepts/examples/xml_minimal_record.xml b/tests/unit/concepts/examples/xml_minimal_record.xml similarity index 100% rename from tests/concepts/examples/xml_minimal_record.xml rename to tests/unit/concepts/examples/xml_minimal_record.xml diff --git a/tests/concepts/test_rero_concepts.py b/tests/unit/concepts/test_concept_rero_transformation.py similarity index 100% rename from tests/concepts/test_rero_concepts.py rename to tests/unit/concepts/test_concept_rero_transformation.py diff --git a/tests/concepts/conftest.py b/tests/unit/conftest.py similarity index 75% rename from tests/concepts/conftest.py rename to tests/unit/conftest.py index fee1fb04..152122ff 100644 --- a/tests/concepts/conftest.py +++ b/tests/unit/conftest.py @@ -15,7 +15,9 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -"""Pytest configuration.""" +"""Pytest fixtures and plugins for the UI application.""" + +from __future__ import absolute_import, print_function import pytest @@ -23,12 +25,5 @@ @pytest.fixture(scope='module') def create_app(instance_path): """Create test app.""" - from invenio_app.factory import create_app as create_ui_api - return create_ui_api - - -@pytest.fixture(scope='session') -def empty_mef_record(): - """Empty MEF record.""" - json_record = {} - return json_record + from invenio_app.factory import create_ui + yield create_ui diff --git a/tests/unit/test_agents_cli.py b/tests/unit/test_agents_cli.py new file mode 100644 index 00000000..65a7c960 --- /dev/null +++ b/tests/unit/test_agents_cli.py @@ -0,0 +1,95 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2020 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 cli.""" + +import tempfile +from os.path import dirname, isfile, join +from shutil import copy2 + +from click.testing import CliRunner + +from rero_mef.agents.cli import create_csv_mef, create_csv_viaf + + +def test_create_csv_viaf_mef(script_info): + """Test create CSV VIAF.""" + runner = CliRunner() + viaf_text_file = join(dirname(__file__), '../data/viaf.txt') + output_directory = tempfile.mkdtemp() + res = runner.invoke( + create_csv_viaf, + [viaf_text_file, output_directory], + obj=script_info + ) + assert res.output.strip().split('\n') == [ + 'Create VIAF CSV files.', + f' VIAF input file: {viaf_text_file} ', + ' Number of VIAF records created: 859.' + ] + viaf_metadata = join(output_directory, 'viaf_metadata.csv') + viaf_pidstore = join(output_directory, 'viaf_pidstore.csv') + assert isfile(viaf_metadata) + assert isfile(viaf_pidstore) + with open(viaf_metadata) as in_file: + metadata_count = 0 + for line in in_file: + metadata_count += 1 + assert metadata_count == 859 + data = line.strip().split('\t') + id = data[2] + # don't use the first two lines with dates. + assert data[3:] == [ + '{"rero_pid": "A003863577", ' + '"$schema": "https://mef.rero.ch/schemas/viaf/viaf-v0.0.1.json", ' + '"pid": "108685760"}', + '1' + ] + with open(viaf_pidstore) as in_file: + pidstore_count = 0 + for line in in_file: + pidstore_count += 1 + assert pidstore_count == metadata_count + + copy2( + join(dirname(__file__), '../data/aggnd_pidstore.csv'), + output_directory + ) + copy2( + join(dirname(__file__), '../data/aidref_pidstore.csv'), + output_directory + ) + copy2( + join(dirname(__file__), '../data/agrero_pidstore.csv'), + output_directory + ) + res = runner.invoke( + create_csv_mef, + [viaf_metadata, output_directory], + obj=script_info + ) + assert res.output.strip().split('\n') == [ + 'Create MEF CSV files from VIAF metadata.', + f' VIAF input file: {viaf_metadata} ', + ' Number of MEF records created: 749.' + ] + mef_metadata = join(output_directory, 'mef_metadata.csv') + mef_pidstore = join(output_directory, 'mef_pidstore.csv') + mef_id = join(output_directory, 'mef_id.csv') + assert isfile(mef_metadata) + assert isfile(mef_pidstore) + assert isfile(mef_id) diff --git a/tests/unit/test_api.py b/tests/unit/test_api.py new file mode 100644 index 00000000..61e35cf8 --- /dev/null +++ b/tests/unit/test_api.py @@ -0,0 +1,64 @@ +# -*- 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 . + +"""Test api.""" + +from rero_mef.agents.idref.api import AgentIdrefIndexer, AgentIdrefRecord +from rero_mef.api import Action +from rero_mef.tasks import process_bulk_queue + + +def test_reromefrecord_api(app, agent_idref_record): + """Test ReroMefRecord api.""" + + idref = AgentIdrefRecord.create( + data=agent_idref_record, + delete_pid=False, + dbcommit=True, + reindex=True, + ) + AgentIdrefRecord.update_indexes() + + assert AgentIdrefRecord.count() == 1 + assert AgentIdrefRecord.index_all() == 1 + + assert len(list(AgentIdrefRecord.get_all_records())) == len(list( + AgentIdrefRecord.get_all_records(limit=0))) + + assert AgentIdrefRecord.get_metadata_identifier_names() == ( + 'agent_idref_metadata', 'agent_idref_id') + + count = 0 + for _ in AgentIdrefRecord.get_all_records(): + count += 1 + assert count == 1 + + _, agent_action = idref.update_test_md5( + data=idref, dbcommit=True, reindex=True) + assert agent_action == Action.UPTODATE + + idref['gender'] = 'female' + _, agent_action = idref.update_test_md5( + data=idref, dbcommit=True, reindex=True) + assert agent_action == Action.UPDATE + + assert AgentIdrefRecord.get_pid_by_id(idref.id) == idref.pid + + AgentIdrefIndexer().bulk_index(list(AgentIdrefRecord.get_all_ids())) + process_bulk_queue(stats_only=True) + # TODO: Find out how to test bulk indexing. + # assert process_bulk_queue(stats_only=True) == (1, 0) diff --git a/tests/unit/test_cli.py b/tests/unit/test_cli.py new file mode 100644 index 00000000..81a738e0 --- /dev/null +++ b/tests/unit/test_cli.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2020 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 cli.""" + +from click.testing import CliRunner +from utils import create_and_login_monitoring_user + +from rero_mef.cli import tokens_create + + +def test_cli_access_token(app, client, script_info): + """Test access token cli.""" + email = create_and_login_monitoring_user(app, client) + runner = CliRunner() + res = runner.invoke( + tokens_create, + ['-n', 'test', '-u', email, '-t', 'my_token'], + obj=script_info + ) + assert res.output.strip().split('\n') == ['my_token'] diff --git a/tests/unit/test_concepts_task.py b/tests/unit/test_concepts_task.py new file mode 100644 index 00000000..a7ff4da4 --- /dev/null +++ b/tests/unit/test_concepts_task.py @@ -0,0 +1,45 @@ +# -*- 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 . + +"""Test api.""" + +from rero_mef.concepts.mef.api import ConceptMefRecord +from rero_mef.concepts.rero.api import ConceptReroRecord +from rero_mef.concepts.tasks import task_create_mef_for_concept + + +def test_task_create_mef_for_concept(app, concept_rero_record): + """Test ReroMefRecord api.""" + rero = ConceptReroRecord.create( + data=concept_rero_record, + delete_pid=False, + dbcommit=True, + reindex=True + ) + ConceptReroRecord.update_indexes() + assert task_create_mef_for_concept('XXXX', 'corero') == \ + 'Not found concept corero:XXXX' + assert task_create_mef_for_concept(rero.pid, 'corero') == \ + 'Create MEF from corero pid: A021001006 | mef: 1 create' + mef = ConceptMefRecord.get_record_by_pid('1') + assert mef == { + '$schema': + 'https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json', + 'pid': '1', + 'rero': { + '$ref': f'https://mef.rero.ch/api/concepts/rero/{rero.pid}'} + } diff --git a/tests/api/test_marctojson_helper.py b/tests/unit/test_marctojson_helper.py similarity index 99% rename from tests/api/test_marctojson_helper.py rename to tests/unit/test_marctojson_helper.py index 6004b9c2..bc9e23e7 100644 --- a/tests/api/test_marctojson_helper.py +++ b/tests/unit/test_marctojson_helper.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # RERO MEF -# Copyright (C) 2020 RERO +# 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 diff --git a/tests/unit/test_monitoring.py b/tests/unit/test_monitoring.py new file mode 100644 index 00000000..beb26f07 --- /dev/null +++ b/tests/unit/test_monitoring.py @@ -0,0 +1,89 @@ +# -*- 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 . + +"""Test monitoring.""" + +from click.testing import CliRunner + +from rero_mef.agents.idref.api import AgentIdrefRecord +from rero_mef.monitoring import Monitoring, es_db_counts_cli, es_db_missing_cli + + +def test_monitoring(app, agent_idref_record, script_info): + """Test monitoring.""" + + cli_output = [ + 'DB - ES type count index count_es', + '----------------------------------------------------------------', + ' 0 aggnd 0 agents_gnd 0', + ' 0 agrero 0 agents_rero 0', + ' 1 aidref 1 agents_idref 0', + ' 0 comef 0 concepts_mef 0', + ' 0 corero 0 concepts_rero 0', + ' 0 mef 0 mef 0', + ' 0 viaf 0 viaf 0' + ] + mon = Monitoring() + assert mon.get_es_count('xxx') == 'No >>xxx<< in ES' + assert mon.get_db_count('xxx') == 'No >>xxx<< in DB' + idref = AgentIdrefRecord.create( + data=agent_idref_record, + delete_pid=False, + dbcommit=True, + reindex=False + ) + idref_pid = idref.pid + assert mon.get_db_count('aidref') == 1 + assert mon.get_es_count('agents_idref') == 0 + assert mon.check() == {'aidref': {'db_es': 1}} + assert mon.missing('aidref') == { + 'DB': [], 'ES': ['069774331'], 'ES duplicate': []} + # not flushed by default + assert mon.info() == { + 'aggnd': {'db': 0, 'db-es': 0, 'es': 0, 'index': 'agents_gnd'}, + 'agrero': {'db': 0, 'db-es': 0, 'es': 0, 'index': 'agents_rero'}, + 'aidref': {'db': 1, 'db-es': 1, 'es': 0, 'index': 'agents_idref'}, + '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'}, + 'viaf': {'db': 0, 'db-es': 0, 'es': 0, 'index': 'viaf'} + } + assert mon.__str__().split('\n') == cli_output + [''] + + runner = CliRunner() + res = runner.invoke(es_db_missing_cli, ['aidref'], obj=script_info) + assert res.output == 'aidref: pids missing in ES:\n069774331\n' + + runner = CliRunner() + res = runner.invoke(es_db_counts_cli, ['-m'], obj=script_info) + assert res.output.split('\n') == cli_output + [ + 'aidref: pids missing in ES:', '069774331', ''] + + # we have to get the idref again because we lost the session after the use + # of the CliRunner + idref = AgentIdrefRecord.get_record_by_pid(idref_pid) + idref.reindex() + AgentIdrefRecord.update_indexes() + assert mon.get_es_count('agents_idref') == 1 + assert mon.check() == {} + assert mon.missing('aidref') == {'DB': [], 'ES': [], 'ES duplicate': []} + idref.delete(dbcommit=True) + assert mon.get_db_count('aidref') == 0 + assert mon.get_es_count('agents_idref') == 1 + assert mon.check() == {'aidref': {'db_es': -1}} + assert mon.missing('aidref') == { + 'DB': ['069774331'], 'ES': [], 'ES duplicate': []} diff --git a/tests/utils.py b/tests/utils.py new file mode 100644 index 00000000..5fd50cc8 --- /dev/null +++ b/tests/utils.py @@ -0,0 +1,39 @@ +# -*- 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 . + +"""Test utils.""" + +from invenio_accounts.testutils import login_user_via_session + + +def create_and_login_monitoring_user(app, client): + """Creates and logins a monitoring user.""" + datastore = app.extensions['invenio-accounts'].datastore + email = 'monitoring@rero.ch' + user = datastore.get_user(email) + if not user: + user = datastore.create_user( + email='monitoring@rero.ch', + password='1234', + active=True + ) + role = datastore.create_role( + name='monitoring', description='Monitoring Group') + datastore.add_role_to_user(user, role) + datastore.commit() + login_user_via_session(client, user) + return email