{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 10,
   "id": "c768ec2e7807c721",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2026-03-17T01:52:01.880657Z",
     "start_time": "2026-03-17T01:52:01.864615Z"
    }
   },
   "outputs": [],
   "source": [
    "import requests\n",
    "import pprint\n",
    "from urllib.parse import urlencode, quote_plus\n",
    "import urllib3\n",
    "import json\n",
    "import os\n",
    "from rdflib import Graph, Namespace, Literal, URIRef\n",
    "from rdflib.namespace import XSD\n",
    "\n",
    "import getpass\n",
    "\n",
    "# from py_aas_rdf.models.submodel import Submodel\n",
    "# from pyoxigraph import RdfFormat, Store\n",
    "import rdflib\n",
    "from pathlib import Path\n",
    "import copy"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "33c7513df092d012",
   "metadata": {},
   "source": [
    "### Setup connection to RDF converter API and create SAMM KG for all three aspects models and corresponding payloads (Material Data, Service Life, Load Collective)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "4362ab13c6483646",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2026-03-17T01:52:07.212376Z",
     "start_time": "2026-03-17T01:52:07.201224Z"
    }
   },
   "outputs": [],
   "source": [
    "rdf_headers = {\n",
    "    \"Accept\": \"application/rdf+json\",\n",
    "}\n",
    "# The yaml mappings file in the DataPoral contains all access points to the payloads, so no need to specify all data_urls\n",
    "mapping_url  = \"https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/57321d11-1344-4062-92c9-32eca346ef54/download/cx_mappings.yaml\"\n",
    "json_data_url_material = \"https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json\"\n",
    "# json_data_url_life     = \"https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/191635ed-508b-4c64-87bf-fad75788bd67/download/usagedata_servicelife_sample.json\"\n",
    "# json_data_url_load     = \"https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/0b1191ae-bd28-4cd4-a480-67b19843ed99/download/usagedata-loadcollective_sample.json\"\n",
    "rdf_api_link = \"https://rdfconverter.matolab.org/api/createrdf\"\n",
    "\n",
    "return_type = \"turtle\"\n",
    "params = {\n",
    "    \"mapping_url\": mapping_url,\n",
    "    \"data_url\": json_data_url_material,\n",
    "    \"return_type\": return_type\n",
    "}\n",
    "\n",
    "\n",
    "query_link = rdf_api_link + \"?\" + urlencode(params)\n",
    "r = requests.post(query_link, headers=rdf_headers)\n",
    "r.raise_for_status()\n",
    "payload = r.json()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "6ed7361036e02796",
   "metadata": {},
   "source": [
    "### Remove unwanted prefixes, print output and save it to a SAMM-KG.ttl file"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "469f6f4d9ac21575",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2026-03-17T01:52:12.153156Z",
     "start_time": "2026-03-17T01:52:11.922360Z"
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "@prefix mat: <urn:samm:io.catenax.material_data:1.0.0#> .\n",
      "@prefix usage: <urn:samm:io.catenax.usagedata:1.0.0#> .\n",
      "@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#MaterialData_Z1234> a mat:MaterialData ;\n",
      "    mat:materialInformation <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#MaterialInformation_Z1234> ;\n",
      "    mat:mechanicalProperty <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#MechanicalProperty_210_9800> ;\n",
      "    mat:physicalProperty <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#PhysicalProperty_1530> ;\n",
      "    mat:thermophysicalProperty <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ThermophysicalProperty_2.1_223> .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#UsageDataServiceLife_13.5> a usage:UsageData ;\n",
      "    usage:serviceLife <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ServiceLifeComponent_13.5_14> .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#UsageData_10> a usage:UsageData ;\n",
      "    usage:componentStatus <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ComponentStatus_10> ;\n",
      "    usage:loadSpectrum <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#LoadSpectrum_Salt%20spray%3A%2096%20hours%20Humidity%3A%2085%25%20RH%20at%2035%3FC> .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ChemicalMediumServiceLifeComponent_14_15> a usage:ChemicalMediumServiceLifeComponent ;\n",
      "    usage:chemicalMediumServiceLifeComponent \"14.0\"^^xsd:float ;\n",
      "    usage:humidityMediumServiceLifeComponent \"15.0\"^^xsd:float .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ComponentStatus_10> a usage:ComponentStatus ;\n",
      "    usage:ageOfComponent \"10.0\"^^xsd:float ;\n",
      "    usage:incidents \"none\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#LinearThermalExpansionCoefficient_0.0025> a mat:LinearThermalExpansionCoefficientEntity ;\n",
      "    mat:linearThermalExpansionCoefficientParallel \"0.0025\" ;\n",
      "    mat:linearThermalExpansionCoefficientTransverse \"0.0115\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#LoadSpectrum_Salt%20spray%3A%2096%20hours%20Humidity%3A%2085%25%20RH%20at%2035%3FC> a usage:LoadSpectrum ;\n",
      "    usage:environmentalSpectrum \"Salt spray: 96 hours Humidity: 85% RH at 35?C\" ;\n",
      "    usage:mechanicalLoadSpectrumLevelOfFleet <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#MechanicalLoadSpectrumLevelOfFleet_1500%20N> ;\n",
      "    usage:mechanicalLoadSpectrumLevelOfInstance <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#MechanicalLoadSpectrumLevelOfInstance_15_10000%20load%20cycles> ;\n",
      "    usage:temperatureSpectrum <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#TemperatureSpectrum_20%20C%20to%2080%20C%20%28500%20cycles%29%20Peak%20temp%3A%2085%20C> .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#MaterialInformation_Z1234> a mat:MaterialInformationEntity ;\n",
      "    mat:materialIdentifier \"Z1234\" ;\n",
      "    mat:materialName \"PA6GF30\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#MechanicalLoadSpectrumLevelOfFleet_1500%20N> a usage:MechanicalLoadSpectrumLevelOfFleet ;\n",
      "    usage:mechanicalLoadAmplitudelevelOfFleet \"1500 N\" ;\n",
      "    usage:mechanicalLoadCycleslevelOfFleet \"10\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#MechanicalLoadSpectrumLevelOfInstance_15_10000%20load%20cycles> a usage:MechanicalLoadSpectrumLevelOfInstance ;\n",
      "    usage:mechanicalLoadAmplitudelevelOfInstance \"15\" ;\n",
      "    usage:mechanicalLoadCycleslevelOfInstance \"10000 load cycles\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#MechanicalProperty_210_9800> a mat:MechanicalPropertyEntity ;\n",
      "    mat:flexuralModulus \"8600\" ;\n",
      "    mat:flexuralStrength \"210\" ;\n",
      "    mat:impactStrength \"74\" ;\n",
      "    mat:strainAtBreak \"3\" ;\n",
      "    mat:stressAtBreak \"140\" ;\n",
      "    mat:youngsModulus \"9800\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#PhysicalProperty_1530> a mat:PhysicalPropertyEntity ;\n",
      "    mat:density \"1530\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_100.046_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7213532074627305\" ;\n",
      "    mat:temperature \"100.046\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_100.369_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7260616434627305\" ;\n",
      "    mat:temperature \"100.369\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_100.75_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7427610654627305\" ;\n",
      "    mat:temperature \"100.75\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_102.05_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7370836844627305\" ;\n",
      "    mat:temperature \"102.05\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_102.245_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7316783364627305\" ;\n",
      "    mat:temperature \"102.245\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_102.324_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7216704074627305\" ;\n",
      "    mat:temperature \"102.324\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_102.6_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7265983004627304\" ;\n",
      "    mat:temperature \"102.6\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_103.06_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7434473444627305\" ;\n",
      "    mat:temperature \"103.06\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_104.075_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.71749\" ;\n",
      "    mat:temperature \"104.075\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_104.365_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7377201374627305\" ;\n",
      "    mat:temperature \"104.365\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_104.569_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7321983184627305\" ;\n",
      "    mat:temperature \"104.569\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_104.697_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7222081474627305\" ;\n",
      "    mat:temperature \"104.697\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_105.03_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7273096824627305\" ;\n",
      "    mat:temperature \"105.03\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_105.41_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7444755574627305\" ;\n",
      "    mat:temperature \"105.41\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_106.78_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7385273234627305\" ;\n",
      "    mat:temperature \"106.78\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_106.973_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7329588727627305\" ;\n",
      "    mat:temperature \"106.973\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_107.124_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7226620574627305\" ;\n",
      "    mat:temperature \"107.124\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_107.5_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7276066204627305\" ;\n",
      "    mat:temperature \"107.5\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_107.86_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7450632874627305\" ;\n",
      "    mat:temperature \"107.86\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_109.11_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.71834\" ;\n",
      "    mat:temperature \"109.11\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_109.23_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7392072714627305\" ;\n",
      "    mat:temperature \"109.23\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_109.502_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7334830176627305\" ;\n",
      "    mat:temperature \"109.502\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_109.586_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7233782874627305\" ;\n",
      "    mat:temperature \"109.586\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_110.004_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7281103744627305\" ;\n",
      "    mat:temperature \"110.004\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_110.299_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7460317474627305\" ;\n",
      "    mat:temperature \"110.299\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_111.676_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7401141974627304\" ;\n",
      "    mat:temperature \"111.676\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_112.042_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7342246749627305\" ;\n",
      "    mat:temperature \"112.042\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_112.25_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7238029574627305\" ;\n",
      "    mat:temperature \"112.25\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_112.49_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7291615564627305\" ;\n",
      "    mat:temperature \"112.49\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_112.822_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7466989774627305\" ;\n",
      "    mat:temperature \"112.822\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_114.134_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7410157914627304\" ;\n",
      "    mat:temperature \"114.134\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_114.145_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.71961\" ;\n",
      "    mat:temperature \"114.145\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_114.604_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7349510464627305\" ;\n",
      "    mat:temperature \"114.604\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_114.817_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7245371004627305\" ;\n",
      "    mat:temperature \"114.817\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_115.08_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7294391284627305\" ;\n",
      "    mat:temperature \"115.08\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_115.335_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7476835274627305\" ;\n",
      "    mat:temperature \"115.335\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_116.74_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7415897724627305\" ;\n",
      "    mat:temperature \"116.74\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_117.145_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7355423634627305\" ;\n",
      "    mat:temperature \"117.145\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_117.36_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7248886094627305\" ;\n",
      "    mat:temperature \"117.36\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_117.644_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7301256974627305\" ;\n",
      "    mat:temperature \"117.644\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_117.824_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7483042574627304\" ;\n",
      "    mat:temperature \"117.824\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_119.295_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7423511664627305\" ;\n",
      "    mat:temperature \"119.295\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_119.306_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.72065\" ;\n",
      "    mat:temperature \"119.306\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_119.64_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7362292994627305\" ;\n",
      "    mat:temperature \"119.64\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_119.98_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7256528144627304\" ;\n",
      "    mat:temperature \"119.98\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_120.126_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7307837984627304\" ;\n",
      "    mat:temperature \"120.126\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_120.305_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7491570974627305\" ;\n",
      "    mat:temperature \"120.305\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_121.775_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7430111004627304\" ;\n",
      "    mat:temperature \"121.775\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_122.133_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7372887974627305\" ;\n",
      "    mat:temperature \"122.133\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_122.415_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7260622614627305\" ;\n",
      "    mat:temperature \"122.415\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_122.625_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7315134684627305\" ;\n",
      "    mat:temperature \"122.625\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_122.852_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7499586074627305\" ;\n",
      "    mat:temperature \"122.852\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_124.255_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7438897274627305\" ;\n",
      "    mat:temperature \"124.255\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_124.453_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.72151\" ;\n",
      "    mat:temperature \"124.453\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_124.61_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7379035994627305\" ;\n",
      "    mat:temperature \"124.61\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_125.005_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7267609964627305\" ;\n",
      "    mat:temperature \"125.005\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_125.215_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7320079504627305\" ;\n",
      "    mat:temperature \"125.215\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_125.297_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7509020874627305\" ;\n",
      "    mat:temperature \"125.297\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_126.686_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7448651174627305\" ;\n",
      "    mat:temperature \"126.686\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_127.102_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7388084154627305\" ;\n",
      "    mat:temperature \"127.102\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_127.546_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7274170494627304\" ;\n",
      "    mat:temperature \"127.546\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_127.73_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7517774174627305\" ;\n",
      "    mat:temperature \"127.73\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_127.7_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7328101384627305\" ;\n",
      "    mat:temperature \"127.7\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_129.163_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7455917674627305\" ;\n",
      "    mat:temperature \"129.163\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_129.578_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7394245564627305\" ;\n",
      "    mat:temperature \"129.578\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_129.5_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.72276\" ;\n",
      "    mat:temperature \"129.5\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_130.032_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7281025334627305\" ;\n",
      "    mat:temperature \"130.032\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_130.21_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7525396674627305\" ;\n",
      "    mat:temperature \"130.21\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_130.355_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7334989352627305\" ;\n",
      "    mat:temperature \"130.355\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_131.76_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7462312774627304\" ;\n",
      "    mat:temperature \"131.76\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_132.196_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7400246614627305\" ;\n",
      "    mat:temperature \"132.196\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_132.694_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7286596214627304\" ;\n",
      "    mat:temperature \"132.694\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_132.774_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7534660074627305\" ;\n",
      "    mat:temperature \"132.774\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_132.858_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7343653212627305\" ;\n",
      "    mat:temperature \"132.858\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_134.295_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7472277874627304\" ;\n",
      "    mat:temperature \"134.295\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_134.653_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.72379\" ;\n",
      "    mat:temperature \"134.653\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_134.676_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7407145104627305\" ;\n",
      "    mat:temperature \"134.676\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_135.243_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7542455474627305\" ;\n",
      "    mat:temperature \"135.243\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_135.274_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7294457754627305\" ;\n",
      "    mat:temperature \"135.274\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_135.373_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7350614804627305\" ;\n",
      "    mat:temperature \"135.373\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_136.825_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7477637174627305\" ;\n",
      "    mat:temperature \"136.825\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_137.285_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7415333364627305\" ;\n",
      "    mat:temperature \"137.285\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_137.702_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7300823414627305\" ;\n",
      "    mat:temperature \"137.702\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_137.715_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7553789874627305\" ;\n",
      "    mat:temperature \"137.715\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_138.026_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7355228564627305\" ;\n",
      "    mat:temperature \"138.026\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_139.296_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7489258474627305\" ;\n",
      "    mat:temperature \"139.296\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_139.752_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.72491\" ;\n",
      "    mat:temperature \"139.752\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_139.75_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7423000824627305\" ;\n",
      "    mat:temperature \"139.75\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_140.068_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7562202974627305\" ;\n",
      "    mat:temperature \"140.068\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_140.335_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7308128684627305\" ;\n",
      "    mat:temperature \"140.335\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_140.49_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7365598734627304\" ;\n",
      "    mat:temperature \"140.49\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_141.875_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7494343974627304\" ;\n",
      "    mat:temperature \"141.875\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_142.35_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7431342154627305\" ;\n",
      "    mat:temperature \"142.35\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_142.564_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7571152474627305\" ;\n",
      "    mat:temperature \"142.564\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_142.905_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7312020364627305\" ;\n",
      "    mat:temperature \"142.905\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_143.111_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7370965114627305\" ;\n",
      "    mat:temperature \"143.111\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_144.4_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7503367374627304\" ;\n",
      "    mat:temperature \"144.4\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_144.929_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.7262\" ;\n",
      "    mat:temperature \"144.929\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_144.945_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7437267604627305\" ;\n",
      "    mat:temperature \"144.945\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_145.135_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7581144574627305\" ;\n",
      "    mat:temperature \"145.135\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_145.443_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7321504914627305\" ;\n",
      "    mat:temperature \"145.443\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_145.599_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7378825004627305\" ;\n",
      "    mat:temperature \"145.599\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_146.945_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7512281574627305\" ;\n",
      "    mat:temperature \"146.945\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_147.46_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7447451974627305\" ;\n",
      "    mat:temperature \"147.46\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_147.685_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7589595274627305\" ;\n",
      "    mat:temperature \"147.685\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_147.865_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7327076154627304\" ;\n",
      "    mat:temperature \"147.865\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_148.16_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7385522664627305\" ;\n",
      "    mat:temperature \"148.16\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_149.378_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7522580574627304\" ;\n",
      "    mat:temperature \"149.378\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_150.006_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7453050774627304\" ;\n",
      "    mat:temperature \"150.006\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_150.009_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.72768\" ;\n",
      "    mat:temperature \"150.009\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_150.267_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7597253174627305\" ;\n",
      "    mat:temperature \"150.267\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_150.555_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7334065419627305\" ;\n",
      "    mat:temperature \"150.555\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_150.61_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7392131974627305\" ;\n",
      "    mat:temperature \"150.61\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_151.91_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7529311574627305\" ;\n",
      "    mat:temperature \"151.91\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_152.506_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7461276074627304\" ;\n",
      "    mat:temperature \"152.506\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_152.748_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7606184074627305\" ;\n",
      "    mat:temperature \"152.748\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_153.055_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7339812507627305\" ;\n",
      "    mat:temperature \"153.055\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_153.192_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7400028734627305\" ;\n",
      "    mat:temperature \"153.192\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_154.439_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7540638974627305\" ;\n",
      "    mat:temperature \"154.439\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_155.075_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7471084174627305\" ;\n",
      "    mat:temperature \"155.075\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_155.084_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.72912\" ;\n",
      "    mat:temperature \"155.084\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_155.202_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7617588174627304\" ;\n",
      "    mat:temperature \"155.202\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_155.572_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7347121958627305\" ;\n",
      "    mat:temperature \"155.572\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_155.67_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7407035854627305\" ;\n",
      "    mat:temperature \"155.67\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_156.906_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7548516074627305\" ;\n",
      "    mat:temperature \"156.906\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_157.465_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7478978074627305\" ;\n",
      "    mat:temperature \"157.465\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_157.645_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7626093574627305\" ;\n",
      "    mat:temperature \"157.645\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_158.105_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7354977104627305\" ;\n",
      "    mat:temperature \"158.105\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_158.2_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7414570664627305\" ;\n",
      "    mat:temperature \"158.2\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_159.388_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7558450174627305\" ;\n",
      "    mat:temperature \"159.388\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_159.982_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7638068674627305\" ;\n",
      "    mat:temperature \"159.982\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_160.04_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7485856174627304\" ;\n",
      "    mat:temperature \"160.04\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_160.23_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.7301\" ;\n",
      "    mat:temperature \"160.23\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_160.619_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7421928454627305\" ;\n",
      "    mat:temperature \"160.619\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_160.67_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7360427894627305\" ;\n",
      "    mat:temperature \"160.67\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_161.829_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7568687874627305\" ;\n",
      "    mat:temperature \"161.829\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_162.455_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7495178574627305\" ;\n",
      "    mat:temperature \"162.455\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_162.52_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7648149774627305\" ;\n",
      "    mat:temperature \"162.52\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_163.173_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7367551174627305\" ;\n",
      "    mat:temperature \"163.173\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_163.29_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7430138654627305\" ;\n",
      "    mat:temperature \"163.29\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_164.383_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7578004074627305\" ;\n",
      "    mat:temperature \"164.383\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_164.905_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7504296474627304\" ;\n",
      "    mat:temperature \"164.905\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_164.921_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7659741374627305\" ;\n",
      "    mat:temperature \"164.921\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_165.285_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.73152\" ;\n",
      "    mat:temperature \"165.285\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_165.706_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7374462724627305\" ;\n",
      "    mat:temperature \"165.706\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_165.795_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7438350994627305\" ;\n",
      "    mat:temperature \"165.795\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_166.787_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7586417374627304\" ;\n",
      "    mat:temperature \"166.787\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_167.429_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7670583074627305\" ;\n",
      "    mat:temperature \"167.429\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_167.496_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7512456574627305\" ;\n",
      "    mat:temperature \"167.496\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_168.275_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7446840874627305\" ;\n",
      "    mat:temperature \"168.275\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_168.275_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7382806254627305\" ;\n",
      "    mat:temperature \"168.275\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_169.29_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7595393974627305\" ;\n",
      "    mat:temperature \"169.29\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_169.92_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7681614174627305\" ;\n",
      "    mat:temperature \"169.92\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_170.07_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7522805274627304\" ;\n",
      "    mat:temperature \"170.07\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_170.403_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.73273\" ;\n",
      "    mat:temperature \"170.403\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_170.765_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7390222194627305\" ;\n",
      "    mat:temperature \"170.765\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_170.816_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7454164974627305\" ;\n",
      "    mat:temperature \"170.816\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_171.81_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7606499574627305\" ;\n",
      "    mat:temperature \"171.81\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_172.43_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7692450174627304\" ;\n",
      "    mat:temperature \"172.43\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_172.645_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7529593174627305\" ;\n",
      "    mat:temperature \"172.645\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_173.295_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7396386784627305\" ;\n",
      "    mat:temperature \"173.295\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_173.373_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7461366874627305\" ;\n",
      "    mat:temperature \"173.373\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_174.34_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7619134574627305\" ;\n",
      "    mat:temperature \"174.34\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_174.94_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7705515374627305\" ;\n",
      "    mat:temperature \"174.94\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_175.158_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7538865874627305\" ;\n",
      "    mat:temperature \"175.158\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_175.548_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.73408\" ;\n",
      "    mat:temperature \"175.548\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_175.905_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7403790534627305\" ;\n",
      "    mat:temperature \"175.905\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_175.965_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7471354574627305\" ;\n",
      "    mat:temperature \"175.965\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_176.905_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7628324974627305\" ;\n",
      "    mat:temperature \"176.905\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_177.46_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7716883474627305\" ;\n",
      "    mat:temperature \"177.46\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_177.618_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7550744374627305\" ;\n",
      "    mat:temperature \"177.618\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_178.485_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7477267874627305\" ;\n",
      "    mat:temperature \"178.485\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_178.51_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7410232134627305\" ;\n",
      "    mat:temperature \"178.51\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_179.546_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7637126874627305\" ;\n",
      "    mat:temperature \"179.546\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_180.055_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7730794774627305\" ;\n",
      "    mat:temperature \"180.055\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_180.3_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7558806874627305\" ;\n",
      "    mat:temperature \"180.3\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_180.635_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.73552\" ;\n",
      "    mat:temperature \"180.635\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_181.06_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7486580374627305\" ;\n",
      "    mat:temperature \"181.06\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_181.088_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7418993994627305\" ;\n",
      "    mat:temperature \"181.088\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_182.037_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7649629474627305\" ;\n",
      "    mat:temperature \"182.037\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_182.69_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7740745974627304\" ;\n",
      "    mat:temperature \"182.69\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_182.765_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7567644774627305\" ;\n",
      "    mat:temperature \"182.765\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_183.195_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.73632\" ;\n",
      "    mat:temperature \"183.195\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_183.522_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7495120674627305\" ;\n",
      "    mat:temperature \"183.522\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_183.635_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7425156994627304\" ;\n",
      "    mat:temperature \"183.635\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_184.54_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7661577574627305\" ;\n",
      "    mat:temperature \"184.54\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_185.015_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7757821774627305\" ;\n",
      "    mat:temperature \"185.015\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_185.25_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7577118474627305\" ;\n",
      "    mat:temperature \"185.25\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_185.76_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.7371\" ;\n",
      "    mat:temperature \"185.76\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_186.15_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7505400474627305\" ;\n",
      "    mat:temperature \"186.15\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_186.255_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7435151734627304\" ;\n",
      "    mat:temperature \"186.255\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_186.915_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7676477874627305\" ;\n",
      "    mat:temperature \"186.915\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_187.475_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7773951274627305\" ;\n",
      "    mat:temperature \"187.475\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_187.71_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7586692774627305\" ;\n",
      "    mat:temperature \"187.71\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_188.275_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.73754\" ;\n",
      "    mat:temperature \"188.275\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_188.737_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7510805574627305\" ;\n",
      "    mat:temperature \"188.737\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_188.795_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7444411974627305\" ;\n",
      "    mat:temperature \"188.795\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_189.35_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7686590274627305\" ;\n",
      "    mat:temperature \"189.35\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_190.045_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7790863674627305\" ;\n",
      "    mat:temperature \"190.045\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_190.255_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7596518174627305\" ;\n",
      "    mat:temperature \"190.255\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_190.835_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.73854\" ;\n",
      "    mat:temperature \"190.835\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_191.252_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7521967274627305\" ;\n",
      "    mat:temperature \"191.252\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_191.315_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7450560574627305\" ;\n",
      "    mat:temperature \"191.315\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_191.895_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7700348174627305\" ;\n",
      "    mat:temperature \"191.895\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_192.598_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7814340574627305\" ;\n",
      "    mat:temperature \"192.598\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_192.74_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7608750674627305\" ;\n",
      "    mat:temperature \"192.74\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_193.48_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.73912\" ;\n",
      "    mat:temperature \"193.48\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_193.745_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7533158474627305\" ;\n",
      "    mat:temperature \"193.745\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_193.862_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7461619474627305\" ;\n",
      "    mat:temperature \"193.862\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_194.535_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7713350774627304\" ;\n",
      "    mat:temperature \"194.535\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_195.225_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7621055274627305\" ;\n",
      "    mat:temperature \"195.225\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_195.235_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7850382474627304\" ;\n",
      "    mat:temperature \"195.235\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_195.995_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.74\" ;\n",
      "    mat:temperature \"195.995\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_196.195_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7542335374627305\" ;\n",
      "    mat:temperature \"196.195\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_196.364_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7467283274627305\" ;\n",
      "    mat:temperature \"196.364\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_197.11_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7731849274627305\" ;\n",
      "    mat:temperature \"197.11\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_197.68_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7910279774627305\" ;\n",
      "    mat:temperature \"197.68\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_197.736_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7631736274627305\" ;\n",
      "    mat:temperature \"197.736\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_198.552_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.74077\" ;\n",
      "    mat:temperature \"198.552\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_198.828_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7549507274627305\" ;\n",
      "    mat:temperature \"198.828\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_198.915_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7476305274627305\" ;\n",
      "    mat:temperature \"198.915\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_199.622_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7754545674627304\" ;\n",
      "    mat:temperature \"199.622\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_200.075_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8014493174627305\" ;\n",
      "    mat:temperature \"200.075\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_200.35_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7644569274627305\" ;\n",
      "    mat:temperature \"200.35\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_201.093_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.74134\" ;\n",
      "    mat:temperature \"201.093\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_201.372_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7561044674627305\" ;\n",
      "    mat:temperature \"201.372\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_201.39_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7482676974627305\" ;\n",
      "    mat:temperature \"201.39\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_202.19_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7791407774627305\" ;\n",
      "    mat:temperature \"202.19\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_202.445_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8087716474627304\" ;\n",
      "    mat:temperature \"202.445\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_202.824_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7659683174627305\" ;\n",
      "    mat:temperature \"202.824\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_203.649_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.74218\" ;\n",
      "    mat:temperature \"203.649\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_203.915_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7494585374627305\" ;\n",
      "    mat:temperature \"203.915\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_203.92_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7571097774627304\" ;\n",
      "    mat:temperature \"203.92\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_204.66_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7852949174627305\" ;\n",
      "    mat:temperature \"204.66\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_204.865_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8102317774627305\" ;\n",
      "    mat:temperature \"204.865\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_205.375_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7675330674627305\" ;\n",
      "    mat:temperature \"205.375\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_206.175_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.74313\" ;\n",
      "    mat:temperature \"206.175\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_206.435_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7580608674627305\" ;\n",
      "    mat:temperature \"206.435\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_206.465_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7502019974627305\" ;\n",
      "    mat:temperature \"206.465\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_207.073_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7951914174627305\" ;\n",
      "    mat:temperature \"207.073\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_207.28_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8110615274627305\" ;\n",
      "    mat:temperature \"207.28\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_207.965_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7696430174627304\" ;\n",
      "    mat:temperature \"207.965\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_208.777_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.74379\" ;\n",
      "    mat:temperature \"208.777\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_208.935_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7593109674627305\" ;\n",
      "    mat:temperature \"208.935\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_208.946_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7512815374627305\" ;\n",
      "    mat:temperature \"208.946\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_209.63_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8007442774627305\" ;\n",
      "    mat:temperature \"209.63\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_209.775_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8119758774627305\" ;\n",
      "    mat:temperature \"209.775\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_210.511_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7730072074627304\" ;\n",
      "    mat:temperature \"210.511\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_211.25_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.74474\" ;\n",
      "    mat:temperature \"211.25\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_211.431_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7522911074627305\" ;\n",
      "    mat:temperature \"211.431\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_211.552_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7609950074627305\" ;\n",
      "    mat:temperature \"211.552\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_212.08_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8017124274627305\" ;\n",
      "    mat:temperature \"212.08\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_212.399_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8127872074627305\" ;\n",
      "    mat:temperature \"212.399\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_213.025_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7788233474627305\" ;\n",
      "    mat:temperature \"213.025\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_213.884_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.74555\" ;\n",
      "    mat:temperature \"213.884\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_214.09_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7532423874627305\" ;\n",
      "    mat:temperature \"214.09\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_214.105_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7625056874627305\" ;\n",
      "    mat:temperature \"214.105\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_214.585_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8025748474627304\" ;\n",
      "    mat:temperature \"214.585\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_214.824_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8138916374627305\" ;\n",
      "    mat:temperature \"214.824\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_215.455_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7876682074627305\" ;\n",
      "    mat:temperature \"215.455\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_216.463_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.74652\" ;\n",
      "    mat:temperature \"216.463\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_216.555_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7545534374627305\" ;\n",
      "    mat:temperature \"216.555\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_216.743_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7649026774627304\" ;\n",
      "    mat:temperature \"216.743\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_217.125_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8034027474627305\" ;\n",
      "    mat:temperature \"217.125\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_217.42_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8148017174627304\" ;\n",
      "    mat:temperature \"217.42\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_217.885_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7924861974627305\" ;\n",
      "    mat:temperature \"217.885\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_218.955_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.7474\" ;\n",
      "    mat:temperature \"218.955\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_219.185_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7558342974627305\" ;\n",
      "    mat:temperature \"219.185\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_219.26_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7689305774627305\" ;\n",
      "    mat:temperature \"219.26\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_219.595_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8043442074627305\" ;\n",
      "    mat:temperature \"219.595\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_219.901_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8157840474627305\" ;\n",
      "    mat:temperature \"219.901\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_220.41_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7933701174627305\" ;\n",
      "    mat:temperature \"220.41\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_221.486_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.74864\" ;\n",
      "    mat:temperature \"221.486\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_221.772_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7749374474627305\" ;\n",
      "    mat:temperature \"221.772\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_221.853_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7573570974627305\" ;\n",
      "    mat:temperature \"221.853\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_222.18_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8050719374627305\" ;\n",
      "    mat:temperature \"222.18\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_222.31_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8167469774627305\" ;\n",
      "    mat:temperature \"222.31\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_222.855_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7940821174627305\" ;\n",
      "    mat:temperature \"222.855\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_224.058_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.74967\" ;\n",
      "    mat:temperature \"224.058\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_224.113_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7828782474627305\" ;\n",
      "    mat:temperature \"224.113\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_224.385_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7598716774627305\" ;\n",
      "    mat:temperature \"224.385\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_224.77_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8056602874627306\" ;\n",
      "    mat:temperature \"224.77\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_224.879_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8175328474627305\" ;\n",
      "    mat:temperature \"224.879\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_225.455_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7946224774627305\" ;\n",
      "    mat:temperature \"225.455\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_226.605_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7853517074627305\" ;\n",
      "    mat:temperature \"226.605\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_226.615_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.75088\" ;\n",
      "    mat:temperature \"226.615\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_226.975_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7634436974627304\" ;\n",
      "    mat:temperature \"226.975\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_227.202_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8067062574627305\" ;\n",
      "    mat:temperature \"227.202\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_227.291_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8184197874627305\" ;\n",
      "    mat:temperature \"227.291\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_227.94_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7955245074627305\" ;\n",
      "    mat:temperature \"227.94\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_229.073_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7860127974627305\" ;\n",
      "    mat:temperature \"229.073\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_229.096_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.75259\" ;\n",
      "    mat:temperature \"229.096\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_229.34_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7695329474627305\" ;\n",
      "    mat:temperature \"229.34\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_229.601_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8074211074627304\" ;\n",
      "    mat:temperature \"229.601\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_229.825_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8193623574627305\" ;\n",
      "    mat:temperature \"229.825\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_230.425_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7961970574627305\" ;\n",
      "    mat:temperature \"230.425\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_231.628_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7865425574627305\" ;\n",
      "    mat:temperature \"231.628\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_231.72_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.7547\" ;\n",
      "    mat:temperature \"231.72\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_231.765_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7763078974627304\" ;\n",
      "    mat:temperature \"231.765\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_231.968_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8084263374627305\" ;\n",
      "    mat:temperature \"231.968\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_232.145_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8202527374627305\" ;\n",
      "    mat:temperature \"232.145\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_233.005_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7968203674627305\" ;\n",
      "    mat:temperature \"233.005\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_234.005_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7872560674627305\" ;\n",
      "    mat:temperature \"234.005\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_234.15_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7785760274627305\" ;\n",
      "    mat:temperature \"234.15\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_234.29_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.75826\" ;\n",
      "    mat:temperature \"234.29\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_234.38_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8213246274627305\" ;\n",
      "    mat:temperature \"234.38\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_234.536_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8090210074627305\" ;\n",
      "    mat:temperature \"234.536\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_235.419_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7977609074627305\" ;\n",
      "    mat:temperature \"235.419\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_236.535_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7793945974627305\" ;\n",
      "    mat:temperature \"236.535\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_236.536_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7880140374627305\" ;\n",
      "    mat:temperature \"236.536\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_236.61_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.76396\" ;\n",
      "    mat:temperature \"236.61\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_236.914_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8222596674627305\" ;\n",
      "    mat:temperature \"236.914\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_236.9_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8101035974627305\" ;\n",
      "    mat:temperature \"236.9\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_237.94_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7982760274627305\" ;\n",
      "    mat:temperature \"237.94\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_239.008_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7886535674627305\" ;\n",
      "    mat:temperature \"239.008\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_239.025_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.77043\" ;\n",
      "    mat:temperature \"239.025\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_239.146_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7796302874627304\" ;\n",
      "    mat:temperature \"239.146\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_239.175_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8231780374627304\" ;\n",
      "    mat:temperature \"239.175\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_239.535_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8107961074627305\" ;\n",
      "    mat:temperature \"239.535\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_240.41_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7991143474627305\" ;\n",
      "    mat:temperature \"240.41\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_241.505_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.7721\" ;\n",
      "    mat:temperature \"241.505\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_241.52_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7893533274627305\" ;\n",
      "    mat:temperature \"241.52\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_241.633_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8239570374627305\" ;\n",
      "    mat:temperature \"241.633\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_241.645_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7803590874627305\" ;\n",
      "    mat:temperature \"241.645\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_242.079_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8113222174627305\" ;\n",
      "    mat:temperature \"242.079\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_242.885_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7997934974627305\" ;\n",
      "    mat:temperature \"242.885\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_244.02_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8248606474627305\" ;\n",
      "    mat:temperature \"244.02\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_244.09_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7901455374627305\" ;\n",
      "    mat:temperature \"244.09\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_244.15_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7811747874627305\" ;\n",
      "    mat:temperature \"244.15\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_244.15_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.77255\" ;\n",
      "    mat:temperature \"244.15\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_244.396_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8122990574627305\" ;\n",
      "    mat:temperature \"244.396\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_245.446_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.8006321874627305\" ;\n",
      "    mat:temperature \"245.446\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_246.512_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8258261374627305\" ;\n",
      "    mat:temperature \"246.512\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_246.67_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.77324\" ;\n",
      "    mat:temperature \"246.67\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_246.68_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7907141874627305\" ;\n",
      "    mat:temperature \"246.68\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_246.786_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7814507674627305\" ;\n",
      "    mat:temperature \"246.786\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_247.995_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.8016329974627305\" ;\n",
      "    mat:temperature \"247.995\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_247_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8132836974627304\" ;\n",
      "    mat:temperature \"247\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_249.14_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8267085974627305\" ;\n",
      "    mat:temperature \"249.14\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_249.156_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7915070074627305\" ;\n",
      "    mat:temperature \"249.156\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_249.32_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.77399\" ;\n",
      "    mat:temperature \"249.32\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_249.378_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7821299374627305\" ;\n",
      "    mat:temperature \"249.378\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_249.612_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8142048874627305\" ;\n",
      "    mat:temperature \"249.612\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_250.665_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.8021847474627305\" ;\n",
      "    mat:temperature \"250.665\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_251.714_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8275450974627305\" ;\n",
      "    mat:temperature \"251.714\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_251.844_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7922913574627305\" ;\n",
      "    mat:temperature \"251.844\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_251.915_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7828291674627305\" ;\n",
      "    mat:temperature \"251.915\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_251.925_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.77462\" ;\n",
      "    mat:temperature \"251.925\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_252.33_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8149868174627305\" ;\n",
      "    mat:temperature \"252.33\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_253.345_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.8029415474627305\" ;\n",
      "    mat:temperature \"253.345\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_254.336_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8287079074627305\" ;\n",
      "    mat:temperature \"254.336\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_254.535_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.77523\" ;\n",
      "    mat:temperature \"254.535\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_254.582_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7927699374627305\" ;\n",
      "    mat:temperature \"254.582\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_254.718_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7835162374627305\" ;\n",
      "    mat:temperature \"254.718\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_255.094_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8157941474627305\" ;\n",
      "    mat:temperature \"255.094\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_256.145_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.8036952574627305\" ;\n",
      "    mat:temperature \"256.145\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_257.175_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.77575\" ;\n",
      "    mat:temperature \"257.175\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_257.18_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8298680374627305\" ;\n",
      "    mat:temperature \"257.18\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_257.2_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7936121874627304\" ;\n",
      "    mat:temperature \"257.2\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_257.45_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7841746174627305\" ;\n",
      "    mat:temperature \"257.45\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_257.845_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8166664074627304\" ;\n",
      "    mat:temperature \"257.845\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_258.926_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.8048225074627304\" ;\n",
      "    mat:temperature \"258.926\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_259.97_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8310588474627305\" ;\n",
      "    mat:temperature \"259.97\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_260.035_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.77651\" ;\n",
      "    mat:temperature \"260.035\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_260.09_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7942657774627305\" ;\n",
      "    mat:temperature \"260.09\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_260.335_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7849429974627304\" ;\n",
      "    mat:temperature \"260.335\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_260.607_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8178487374627305\" ;\n",
      "    mat:temperature \"260.607\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_261.74_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.8054248574627305\" ;\n",
      "    mat:temperature \"261.74\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_262.905_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.77696\" ;\n",
      "    mat:temperature \"262.905\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_262.998_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8323746574627304\" ;\n",
      "    mat:temperature \"262.998\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_262.99_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7952702774627305\" ;\n",
      "    mat:temperature \"262.99\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_263.17_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7855277074627305\" ;\n",
      "    mat:temperature \"263.17\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_263.577_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8190293774627305\" ;\n",
      "    mat:temperature \"263.577\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_264.641_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.8065325574627304\" ;\n",
      "    mat:temperature \"264.641\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_265.855_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.77759\" ;\n",
      "    mat:temperature \"265.855\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_266.04_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7864881374627305\" ;\n",
      "    mat:temperature \"266.04\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_266.086_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7958563574627305\" ;\n",
      "    mat:temperature \"266.086\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_266.104_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8337915274627304\" ;\n",
      "    mat:temperature \"266.104\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_266.538_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8197178074627305\" ;\n",
      "    mat:temperature \"266.538\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_267.655_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.8073237274627305\" ;\n",
      "    mat:temperature \"267.655\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_268.925_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.77828\" ;\n",
      "    mat:temperature \"268.925\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_268.965_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7871291774627305\" ;\n",
      "    mat:temperature \"268.965\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_269.157_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7966380374627304\" ;\n",
      "    mat:temperature \"269.157\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_269.26_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8347852874627305\" ;\n",
      "    mat:temperature \"269.26\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_269.415_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8209489574627304\" ;\n",
      "    mat:temperature \"269.415\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_270.698_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.8079981874627304\" ;\n",
      "    mat:temperature \"270.698\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_271.845_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.77919\" ;\n",
      "    mat:temperature \"271.845\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_271.885_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7879132274627305\" ;\n",
      "    mat:temperature \"271.885\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_271.918_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7974047474627305\" ;\n",
      "    mat:temperature \"271.918\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_272.32_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8359159874627304\" ;\n",
      "    mat:temperature \"272.32\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_272.35_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8215074274627305\" ;\n",
      "    mat:temperature \"272.35\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_273.15_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.8089156674627305\" ;\n",
      "    mat:temperature \"273.15\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_274.585_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7982306874627305\" ;\n",
      "    mat:temperature \"274.585\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_274.615_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.77975\" ;\n",
      "    mat:temperature \"274.615\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_274.665_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8222777174627305\" ;\n",
      "    mat:temperature \"274.665\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_274.698_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7886805774627305\" ;\n",
      "    mat:temperature \"274.698\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_275.022_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8368560874627304\" ;\n",
      "    mat:temperature \"275.022\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_275.611_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.8096919974627305\" ;\n",
      "    mat:temperature \"275.611\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_276.583_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8229019774627305\" ;\n",
      "    mat:temperature \"276.583\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_276.974_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7988815574627305\" ;\n",
      "    mat:temperature \"276.974\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_277.11_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7892860774627305\" ;\n",
      "    mat:temperature \"277.11\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_277.25_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.7804\" ;\n",
      "    mat:temperature \"277.25\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_277.365_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8378174874627304\" ;\n",
      "    mat:temperature \"277.365\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_277.5771_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.8097593074627305\" ;\n",
      "    mat:temperature \"277.5771\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_278.005_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.8231695374627305\" ;\n",
      "    mat:temperature \"278.005\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_278.915_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7991698874627304\" ;\n",
      "    mat:temperature \"278.915\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_279.076_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.8100796574627305\" ;\n",
      "    mat:temperature \"279.076\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_279.085_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.8380747874627305\" ;\n",
      "    mat:temperature \"279.085\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_279.26_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7897607974627305\" ;\n",
      "    mat:temperature \"279.26\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_279.568_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.78055\" ;\n",
      "    mat:temperature \"279.568\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_280.364_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7992963374627304\" ;\n",
      "    mat:temperature \"280.364\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_280.674_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7897768074627305\" ;\n",
      "    mat:temperature \"280.674\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_281.18_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.78093\" ;\n",
      "    mat:temperature \"281.18\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_61.034_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7130246674627305\" ;\n",
      "    mat:temperature \"61.034\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_61.08601_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7216386374627305\" ;\n",
      "    mat:temperature \"61.08601\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_61.24_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7168840774627305\" ;\n",
      "    mat:temperature \"61.24\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_61.74_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7261067044627305\" ;\n",
      "    mat:temperature \"61.74\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_61.84_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7313703784627305\" ;\n",
      "    mat:temperature \"61.84\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_62.23_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7216779274627305\" ;\n",
      "    mat:temperature \"62.23\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_62.316_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7128845774627305\" ;\n",
      "    mat:temperature \"62.316\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_62.32_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7174434674627305\" ;\n",
      "    mat:temperature \"62.32\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_62.894_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7265238394627305\" ;\n",
      "    mat:temperature \"62.894\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_62.935_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7318119634627305\" ;\n",
      "    mat:temperature \"62.935\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_63.14_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.70897\" ;\n",
      "    mat:temperature \"63.14\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_63.325_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7220685374627305\" ;\n",
      "    mat:temperature \"63.325\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_63.38_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7130512174627305\" ;\n",
      "    mat:temperature \"63.38\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_63.48_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7175465674627305\" ;\n",
      "    mat:temperature \"63.48\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_63.984_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7268868914627304\" ;\n",
      "    mat:temperature \"63.984\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_64.08199_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7321943564627305\" ;\n",
      "    mat:temperature \"64.08199\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_64.58801_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7223617274627305\" ;\n",
      "    mat:temperature \"64.58801\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_64.63501_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7132698574627305\" ;\n",
      "    mat:temperature \"64.63501\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_64.748_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7178407274627305\" ;\n",
      "    mat:temperature \"64.748\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_65.113_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7273618944627305\" ;\n",
      "    mat:temperature \"65.113\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_65.24_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7328366604627304\" ;\n",
      "    mat:temperature \"65.24\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_65.53_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.7095\" ;\n",
      "    mat:temperature \"65.53\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_65.81999_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7136099474627305\" ;\n",
      "    mat:temperature \"65.81999\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_65.84999_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7226435374627305\" ;\n",
      "    mat:temperature \"65.84999\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_65.90999_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7180736974627305\" ;\n",
      "    mat:temperature \"65.90999\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_66.34999_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7275209934627305\" ;\n",
      "    mat:temperature \"66.34999\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_66.53999_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7328334754627305\" ;\n",
      "    mat:temperature \"66.53999\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_67.08001_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7230535774627305\" ;\n",
      "    mat:temperature \"67.08001\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_67.11501_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7139758974627305\" ;\n",
      "    mat:temperature \"67.11501\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_67.225_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7183011974627305\" ;\n",
      "    mat:temperature \"67.225\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_67.61_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7276998234627305\" ;\n",
      "    mat:temperature \"67.61\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_67.772_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7334514501627305\" ;\n",
      "    mat:temperature \"67.772\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_68.039_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.71037\" ;\n",
      "    mat:temperature \"68.039\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_68.35001_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7231069874627305\" ;\n",
      "    mat:temperature \"68.35001\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_68.38_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7141212074627304\" ;\n",
      "    mat:temperature \"68.38\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_68.55_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7185593774627305\" ;\n",
      "    mat:temperature \"68.55\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_68.89001_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7280752304627305\" ;\n",
      "    mat:temperature \"68.89001\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_68.98_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7338583768627305\" ;\n",
      "    mat:temperature \"68.98\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_69.65_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7236985474627304\" ;\n",
      "    mat:temperature \"69.65\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_69.675_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7146627674627305\" ;\n",
      "    mat:temperature \"69.675\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_69.846_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7186986274627305\" ;\n",
      "    mat:temperature \"69.846\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_70.19_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7284376004627305\" ;\n",
      "    mat:temperature \"70.19\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_70.40001_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7341661086627305\" ;\n",
      "    mat:temperature \"70.40001\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_70.828_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.71067\" ;\n",
      "    mat:temperature \"70.828\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_71.064_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7237944974627305\" ;\n",
      "    mat:temperature \"71.064\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_71.11301_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7147466974627305\" ;\n",
      "    mat:temperature \"71.11301\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_71.259_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7192632274627305\" ;\n",
      "    mat:temperature \"71.259\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_71.585_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7285671744627304\" ;\n",
      "    mat:temperature \"71.585\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_71.832_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7341514726627305\" ;\n",
      "    mat:temperature \"71.832\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_72.50999_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7150984074627305\" ;\n",
      "    mat:temperature \"72.50999\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_72.54801_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7240734214627305\" ;\n",
      "    mat:temperature \"72.54801\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_72.69499_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7195731874627305\" ;\n",
      "    mat:temperature \"72.69499\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_73.014_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7290872124627304\" ;\n",
      "    mat:temperature \"73.014\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_73.26001_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7347214781627305\" ;\n",
      "    mat:temperature \"73.26001\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_73.655_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.71141\" ;\n",
      "    mat:temperature \"73.655\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_73.96999_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7246279624627305\" ;\n",
      "    mat:temperature \"73.96999\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_74.045_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7153634274627305\" ;\n",
      "    mat:temperature \"74.045\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_74.21_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7199437574627305\" ;\n",
      "    mat:temperature \"74.21\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_74.38_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7294675494627305\" ;\n",
      "    mat:temperature \"74.38\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_74.78999_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7352002344627305\" ;\n",
      "    mat:temperature \"74.78999\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_75.53_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7249485254627305\" ;\n",
      "    mat:temperature \"75.53\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_75.558_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7159991874627305\" ;\n",
      "    mat:temperature \"75.558\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_75.785_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7202125974627305\" ;\n",
      "    mat:temperature \"75.785\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_75.91001_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7301584974627305\" ;\n",
      "    mat:temperature \"75.91001\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_76.255_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7356664624627305\" ;\n",
      "    mat:temperature \"76.255\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_76.73_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.7119\" ;\n",
      "    mat:temperature \"76.73\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_76.99501_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7254496044627304\" ;\n",
      "    mat:temperature \"76.99501\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_77.08499_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7162370674627305\" ;\n",
      "    mat:temperature \"77.08499\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_77.30201_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7206949674627305\" ;\n",
      "    mat:temperature \"77.30201\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_77.4_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7303411874627305\" ;\n",
      "    mat:temperature \"77.4\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_77.85999_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7360325794627305\" ;\n",
      "    mat:temperature \"77.85999\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_78.62801_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7259376084627305\" ;\n",
      "    mat:temperature \"78.62801\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_78.68201_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7166114074627304\" ;\n",
      "    mat:temperature \"78.68201\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_78.94001_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7211400574627305\" ;\n",
      "    mat:temperature \"78.94001\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_79.02_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7305016094627305\" ;\n",
      "    mat:temperature \"79.02\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_79.401_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7362006634627305\" ;\n",
      "    mat:temperature \"79.401\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_79.955_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.71266\" ;\n",
      "    mat:temperature \"79.955\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_80.30501_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7260733754627305\" ;\n",
      "    mat:temperature \"80.30501\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_80.45499_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7166587874627305\" ;\n",
      "    mat:temperature \"80.45499\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_80.567_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7215305974627305\" ;\n",
      "    mat:temperature \"80.567\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_80.63501_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7310005514627305\" ;\n",
      "    mat:temperature \"80.63501\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_81.175_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7367432094627305\" ;\n",
      "    mat:temperature \"81.175\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_82.01801_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7264780534627305\" ;\n",
      "    mat:temperature \"82.01801\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_82.08001_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7170316874627305\" ;\n",
      "    mat:temperature \"82.08001\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_82.342_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7219230274627305\" ;\n",
      "    mat:temperature \"82.342\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_82.34999_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7314185574627304\" ;\n",
      "    mat:temperature \"82.34999\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_82.77_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7371842264627305\" ;\n",
      "    mat:temperature \"82.77\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_83.395_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.71316\" ;\n",
      "    mat:temperature \"83.395\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_83.72_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7271119074627305\" ;\n",
      "    mat:temperature \"83.72\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_83.83498_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7177766674627305\" ;\n",
      "    mat:temperature \"83.83498\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_84.04601_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7319538584627305\" ;\n",
      "    mat:temperature \"84.04601\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_84.105_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7219705674627305\" ;\n",
      "    mat:temperature \"84.105\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_84.62601_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7378395134627305\" ;\n",
      "    mat:temperature \"84.62601\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_85.624_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7271447884627305\" ;\n",
      "    mat:temperature \"85.624\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_85.701_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7181513374627305\" ;\n",
      "    mat:temperature \"85.701\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_85.806_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7323671584627305\" ;\n",
      "    mat:temperature \"85.806\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_85.91899_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7226715174627305\" ;\n",
      "    mat:temperature \"85.91899\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_86.43001_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7383410914627305\" ;\n",
      "    mat:temperature \"86.43001\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_87.096_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.71394\" ;\n",
      "    mat:temperature \"87.096\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_87.437_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7279510124627305\" ;\n",
      "    mat:temperature \"87.437\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_87.595_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7182184374627305\" ;\n",
      "    mat:temperature \"87.595\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_87.675_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7329048451627305\" ;\n",
      "    mat:temperature \"87.675\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_87.80099_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7231446974627305\" ;\n",
      "    mat:temperature \"87.80099\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_88.246_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7387673334627305\" ;\n",
      "    mat:temperature \"88.246\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_89.355_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7286279644627305\" ;\n",
      "    mat:temperature \"89.355\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_89.466_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7189389574627305\" ;\n",
      "    mat:temperature \"89.466\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_89.54501_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7335264950627305\" ;\n",
      "    mat:temperature \"89.54501\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_89.77201_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7236758274627305\" ;\n",
      "    mat:temperature \"89.77201\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_90.21_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7393066864627305\" ;\n",
      "    mat:temperature \"90.21\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_90.959_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.71486\" ;\n",
      "    mat:temperature \"90.959\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_91.29999_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7290170694627305\" ;\n",
      "    mat:temperature \"91.29999\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_91.46899_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7193729974627305\" ;\n",
      "    mat:temperature \"91.46899\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_91.49199_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7341885259627305\" ;\n",
      "    mat:temperature \"91.49199\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_91.78_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7240551834627305\" ;\n",
      "    mat:temperature \"91.78\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_92.19401_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7399120084627305\" ;\n",
      "    mat:temperature \"92.19401\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_93.436_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7347070447627305\" ;\n",
      "    mat:temperature \"93.436\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_93.451_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7293027114627305\" ;\n",
      "    mat:temperature \"93.451\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_93.476_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7199344774627305\" ;\n",
      "    mat:temperature \"93.476\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_93.85_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7243523974627305\" ;\n",
      "    mat:temperature \"93.85\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_94.21999_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7407975594627305\" ;\n",
      "    mat:temperature \"94.21999\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_95.11_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.71565\" ;\n",
      "    mat:temperature \"95.11\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_95.50001_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7299005224627305\" ;\n",
      "    mat:temperature \"95.50001\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_95.53999_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7204680074627305\" ;\n",
      "    mat:temperature \"95.53999\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_95.557_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7352696214627304\" ;\n",
      "    mat:temperature \"95.557\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_95.94099_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7251110014627304\" ;\n",
      "    mat:temperature \"95.94099\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_96.31998_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7414052574627304\" ;\n",
      "    mat:temperature \"96.31998\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_97.62801_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7356749794627305\" ;\n",
      "    mat:temperature \"97.62801\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_97.69801_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7304365834627304\" ;\n",
      "    mat:temperature \"97.69801\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_97.74001_160> a mat:PvtEntity ;\n",
      "    mat:pressure \"160\" ;\n",
      "    mat:specificVolume \"0.7208380274627305\" ;\n",
      "    mat:temperature \"97.74001\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_98.11_120> a mat:PvtEntity ;\n",
      "    mat:pressure \"120\" ;\n",
      "    mat:specificVolume \"0.7255418694627305\" ;\n",
      "    mat:temperature \"98.11\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_98.51001_10> a mat:PvtEntity ;\n",
      "    mat:pressure \"10\" ;\n",
      "    mat:specificVolume \"0.7421760904627305\" ;\n",
      "    mat:temperature \"98.51001\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_99.465_200> a mat:PvtEntity ;\n",
      "    mat:pressure \"200\" ;\n",
      "    mat:specificVolume \"0.71645\" ;\n",
      "    mat:temperature \"99.465\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_99.775_40> a mat:PvtEntity ;\n",
      "    mat:pressure \"40\" ;\n",
      "    mat:specificVolume \"0.7363519464627305\" ;\n",
      "    mat:temperature \"99.775\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_99.94499_80> a mat:PvtEntity ;\n",
      "    mat:pressure \"80\" ;\n",
      "    mat:specificVolume \"0.7309258384627305\" ;\n",
      "    mat:temperature \"99.94499\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ServiceLifeComponent_13.5_14> a usage:ServiceLifeComponent ;\n",
      "    usage:chemicalServiceLifeComponent <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ChemicalMediumServiceLifeComponent_14_15> ;\n",
      "    usage:mechanicalServiceLifeComponent \"13.5\"^^xsd:float ;\n",
      "    usage:thermalServiceLifeComponent \"14.0\"^^xsd:float .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#TemperatureSpectrum_20%20C%20to%2080%20C%20%28500%20cycles%29%20Peak%20temp%3A%2085%20C> a usage:TemperatureSpectrum ;\n",
      "    usage:temperatureOverCycles \"20 C to 80 C (500 cycles) Peak temp: 85 C\" .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ThermophysicalProperty_2.1_223> a mat:ThermophysicalPropertyEntity ;\n",
      "    mat:glassTransitionTemperature \"20\" ;\n",
      "    mat:humidity \"2.1\" ;\n",
      "    mat:linearThermalExpansionCoefficient <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#LinearThermalExpansionCoefficient_0.0025> ;\n",
      "    mat:meltingTemperature \"223\" ;\n",
      "    mat:pvt <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_100.046_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_100.369_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_100.75_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_102.05_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_102.245_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_102.324_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_102.6_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_103.06_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_104.075_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_104.365_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_104.569_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_104.697_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_105.03_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_105.41_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_106.78_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_106.973_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_107.124_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_107.5_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_107.86_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_109.11_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_109.23_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_109.502_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_109.586_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_110.004_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_110.299_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_111.676_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_112.042_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_112.25_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_112.49_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_112.822_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_114.134_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_114.145_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_114.604_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_114.817_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_115.08_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_115.335_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_116.74_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_117.145_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_117.36_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_117.644_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_117.824_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_119.295_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_119.306_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_119.64_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_119.98_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_120.126_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_120.305_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_121.775_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_122.133_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_122.415_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_122.625_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_122.852_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_124.255_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_124.453_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_124.61_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_125.005_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_125.215_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_125.297_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_126.686_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_127.102_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_127.546_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_127.73_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_127.7_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_129.163_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_129.578_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_129.5_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_130.032_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_130.21_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_130.355_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_131.76_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_132.196_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_132.694_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_132.774_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_132.858_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_134.295_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_134.653_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_134.676_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_135.243_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_135.274_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_135.373_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_136.825_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_137.285_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_137.702_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_137.715_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_138.026_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_139.296_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_139.752_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_139.75_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_140.068_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_140.335_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_140.49_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_141.875_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_142.35_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_142.564_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_142.905_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_143.111_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_144.4_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_144.929_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_144.945_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_145.135_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_145.443_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_145.599_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_146.945_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_147.46_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_147.685_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_147.865_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_148.16_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_149.378_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_150.006_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_150.009_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_150.267_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_150.555_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_150.61_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_151.91_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_152.506_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_152.748_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_153.055_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_153.192_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_154.439_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_155.075_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_155.084_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_155.202_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_155.572_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_155.67_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_156.906_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_157.465_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_157.645_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_158.105_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_158.2_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_159.388_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_159.982_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_160.04_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_160.23_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_160.619_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_160.67_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_161.829_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_162.455_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_162.52_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_163.173_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_163.29_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_164.383_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_164.905_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_164.921_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_165.285_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_165.706_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_165.795_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_166.787_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_167.429_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_167.496_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_168.275_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_168.275_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_169.29_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_169.92_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_170.07_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_170.403_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_170.765_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_170.816_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_171.81_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_172.43_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_172.645_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_173.295_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_173.373_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_174.34_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_174.94_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_175.158_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_175.548_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_175.905_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_175.965_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_176.905_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_177.46_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_177.618_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_178.485_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_178.51_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_179.546_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_180.055_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_180.3_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_180.635_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_181.06_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_181.088_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_182.037_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_182.69_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_182.765_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_183.195_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_183.522_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_183.635_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_184.54_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_185.015_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_185.25_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_185.76_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_186.15_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_186.255_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_186.915_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_187.475_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_187.71_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_188.275_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_188.737_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_188.795_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_189.35_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_190.045_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_190.255_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_190.835_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_191.252_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_191.315_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_191.895_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_192.598_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_192.74_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_193.48_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_193.745_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_193.862_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_194.535_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_195.225_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_195.235_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_195.995_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_196.195_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_196.364_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_197.11_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_197.68_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_197.736_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_198.552_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_198.828_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_198.915_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_199.622_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_200.075_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_200.35_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_201.093_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_201.372_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_201.39_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_202.19_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_202.445_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_202.824_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_203.649_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_203.915_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_203.92_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_204.66_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_204.865_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_205.375_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_206.175_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_206.435_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_206.465_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_207.073_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_207.28_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_207.965_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_208.777_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_208.935_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_208.946_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_209.63_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_209.775_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_210.511_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_211.25_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_211.431_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_211.552_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_212.08_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_212.399_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_213.025_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_213.884_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_214.09_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_214.105_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_214.585_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_214.824_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_215.455_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_216.463_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_216.555_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_216.743_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_217.125_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_217.42_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_217.885_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_218.955_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_219.185_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_219.26_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_219.595_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_219.901_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_220.41_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_221.486_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_221.772_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_221.853_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_222.18_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_222.31_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_222.855_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_224.058_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_224.113_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_224.385_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_224.77_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_224.879_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_225.455_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_226.605_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_226.615_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_226.975_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_227.202_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_227.291_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_227.94_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_229.073_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_229.096_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_229.34_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_229.601_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_229.825_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_230.425_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_231.628_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_231.72_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_231.765_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_231.968_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_232.145_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_233.005_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_234.005_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_234.15_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_234.29_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_234.38_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_234.536_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_235.419_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_236.535_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_236.536_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_236.61_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_236.914_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_236.9_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_237.94_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_239.008_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_239.025_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_239.146_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_239.175_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_239.535_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_240.41_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_241.505_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_241.52_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_241.633_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_241.645_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_242.079_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_242.885_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_244.02_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_244.09_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_244.15_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_244.15_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_244.396_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_245.446_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_246.512_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_246.67_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_246.68_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_246.786_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_247.995_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_247_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_249.14_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_249.156_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_249.32_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_249.378_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_249.612_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_250.665_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_251.714_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_251.844_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_251.915_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_251.925_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_252.33_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_253.345_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_254.336_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_254.535_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_254.582_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_254.718_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_255.094_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_256.145_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_257.175_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_257.18_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_257.2_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_257.45_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_257.845_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_258.926_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_259.97_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_260.035_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_260.09_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_260.335_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_260.607_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_261.74_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_262.905_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_262.998_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_262.99_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_263.17_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_263.577_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_264.641_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_265.855_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_266.04_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_266.086_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_266.104_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_266.538_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_267.655_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_268.925_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_268.965_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_269.157_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_269.26_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_269.415_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_270.698_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_271.845_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_271.885_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_271.918_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_272.32_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_272.35_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_273.15_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_274.585_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_274.615_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_274.665_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_274.698_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_275.022_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_275.611_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_276.583_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_276.974_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_277.11_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_277.25_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_277.365_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_277.5771_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_278.005_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_278.915_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_279.076_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_279.085_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_279.26_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_279.568_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_280.364_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_280.674_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_281.18_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_61.034_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_61.08601_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_61.24_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_61.74_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_61.84_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_62.23_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_62.316_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_62.32_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_62.894_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_62.935_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_63.14_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_63.325_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_63.38_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_63.48_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_63.984_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_64.08199_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_64.58801_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_64.63501_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_64.748_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_65.113_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_65.24_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_65.53_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_65.81999_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_65.84999_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_65.90999_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_66.34999_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_66.53999_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_67.08001_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_67.11501_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_67.225_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_67.61_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_67.772_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_68.039_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_68.35001_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_68.38_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_68.55_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_68.89001_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_68.98_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_69.65_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_69.675_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_69.846_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_70.19_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_70.40001_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_70.828_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_71.064_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_71.11301_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_71.259_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_71.585_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_71.832_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_72.50999_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_72.54801_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_72.69499_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_73.014_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_73.26001_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_73.655_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_73.96999_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_74.045_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_74.21_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_74.38_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_74.78999_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_75.53_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_75.558_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_75.785_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_75.91001_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_76.255_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_76.73_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_76.99501_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_77.08499_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_77.30201_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_77.4_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_77.85999_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_78.62801_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_78.68201_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_78.94001_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_79.02_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_79.401_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_79.955_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_80.30501_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_80.45499_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_80.567_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_80.63501_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_81.175_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_82.01801_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_82.08001_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_82.342_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_82.34999_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_82.77_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_83.395_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_83.72_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_83.83498_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_84.04601_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_84.105_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_84.62601_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_85.624_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_85.701_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_85.806_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_85.91899_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_86.43001_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_87.096_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_87.437_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_87.595_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_87.675_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_87.80099_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_88.246_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_89.355_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_89.466_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_89.54501_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_89.77201_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_90.21_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_90.959_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_91.29999_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_91.46899_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_91.49199_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_91.78_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_92.19401_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_93.436_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_93.451_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_93.476_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_93.85_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_94.21999_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_95.11_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_95.50001_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_95.53999_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_95.557_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_95.94099_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_96.31998_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_97.62801_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_97.69801_80>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_97.74001_160>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_98.11_120>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_98.51001_10>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_99.465_200>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_99.775_40>,\n",
      "        <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#Pvt_99.94499_80> ;\n",
      "    mat:waterAbsorption \"6.5\" .\n",
      "\n",
      "\n"
     ]
    },
    {
     "data": {
      "text/plain": [
       "<Graph identifier=Nd5fb74de22fe4cdf86d258b320f8b9a2 (<class 'rdflib.graph.Graph'>)>"
      ]
     },
     "execution_count": 3,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "ttl_in = payload[\"graph\"]\n",
    "\n",
    "g = rdflib.Graph()\n",
    "g.parse(data=ttl_in, format=\"turtle\")\n",
    "\n",
    "PREFIXES = (\n",
    "    \"http://www.w3.org/ns/prov#\",\n",
    "    \"https://github.com/Mat-O-Lab/RDFConverter/releases/tag/v\",\n",
    ")\n",
    "\n",
    "to_remove = [t for t in g if any(isinstance(n, rdflib.URIRef) and str(n).startswith(PREFIXES) for n in t)]\n",
    "for t in to_remove:\n",
    "    g.remove(t)\n",
    "\n",
    "ttl_content_clean = g.serialize(format=\"turtle\")\n",
    "print(ttl_content_clean)\n",
    "\n",
    "g.serialize(destination=\"SAMM-KG.ttl\", format=\"turtle\")\n"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "6c9c1a6af0079e4",
   "metadata": {},
   "source": [
    "### Applying insert query to convert from SAMM-KG to PMDco-KG"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "9227d448",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "PMDco graph has 19938 triples\n",
      "@prefix obo: <http://purl.obolibrary.org/obo/> .\n",
      "@prefix pmdco: <https://w3id.org/pmd/co/> .\n",
      "@prefix qudt: <https://qudt.org/schema/qudt/> .\n",
      "@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n",
      "@prefix unit: <https://qudt.org/vocab/unit/> .\n",
      "@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ChemicalMediumServiceLifeComponent_14_15-datum-chemServiceLife> a obo:OBI_0001931 ;\n",
      "    rdfs:label \"Service life — chemicalMediumServiceLifeComponent\" ;\n",
      "    obo:OBI_0001938 <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ChemicalMediumServiceLifeComponent_14_15-qv-chemServiceLife> .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ChemicalMediumServiceLifeComponent_14_15-datum-humidityServiceLife> a obo:OBI_0001931 ;\n",
      "    rdfs:label \"Service life — humidityMediumServiceLifeComponent\" ;\n",
      "    obo:OBI_0001938 <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ChemicalMediumServiceLifeComponent_14_15-qv-humidityServiceLife> .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ChemicalMediumServiceLifeComponent_14_15-qual-chemServiceLife> a pmdco:PMD_0000972 ;\n",
      "    rdfs:label \"Service life — chemicalMediumServiceLifeComponent\" ;\n",
      "    obo:IAO_0000417 <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ChemicalMediumServiceLifeComponent_14_15-datum-chemServiceLife> ;\n",
      "    obo:RO_0000052 <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#UsageDataServiceLife_13.5-component> .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ChemicalMediumServiceLifeComponent_14_15-qual-humidityServiceLife> a pmdco:PMD_0000972 ;\n",
      "    rdfs:label \"Service life — humidityMediumServiceLifeComponent\" ;\n",
      "    obo:IAO_0000417 <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ChemicalMediumServiceLifeComponent_14_15-datum-humidityServiceLife> ;\n",
      "    obo:RO_0000052 <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#UsageD\n"
     ]
    },
    {
     "data": {
      "text/plain": [
       "<Graph identifier=pmdco (<class 'rdflib.graph.Graph'>)>"
      ]
     },
     "execution_count": 11,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# ── Load the SPARQL query ──────────────────────────────────────────────────────\n",
    "insert_query = Path(\"insertQuery-PMDco.sparql\").read_text(encoding=\"utf-8\")\n",
    "\n",
    "# ── Create a Dataset and load SAMM-KG into a NAMED graph ──────────────────────\n",
    "ds = rdflib.Dataset()\n",
    "\n",
    "\n",
    "# Load the SAMM knowledge graph into a named graph \n",
    "SAMM_GRAPH_URI = rdflib.URIRef(\"urn:samm-kg\")\n",
    "samm_graph = ds.graph(SAMM_GRAPH_URI)\n",
    "samm_graph.parse(data=ttl_content_clean, format=\"turtle\")\n",
    "\n",
    "# ── Pre-process: cast untyped string literals to xsd:float where needed ───────\n",
    "# Material properties stored as plain strings need numeric typing\n",
    "# for SPARQL numeric filters to work.\n",
    "MAT  = Namespace(\"urn:samm:io.catenax.material_data:1.0.0#\")\n",
    "USAGE = Namespace(\"urn:samm:io.catenax.usagedata:1.0.0#\")\n",
    "\n",
    "# Properties that should be numeric (xsd:float) for material data\n",
    "NUMERIC_MAT_PROPS = {\n",
    "    MAT.flexuralStrength,\n",
    "    MAT.impactStrength,\n",
    "    MAT.youngsModulus,\n",
    "    MAT.strainAtBreak,\n",
    "    MAT.stressAtBreak,\n",
    "    MAT.flexuralModulus,\n",
    "    MAT.density,\n",
    "    MAT.humidity,\n",
    "    MAT.glassTransitionTemperature,\n",
    "    MAT.meltingTemperature,\n",
    "    MAT.waterAbsorption,\n",
    "    MAT.linearThermalExpansionCoefficientParallel,\n",
    "    MAT.linearThermalExpansionCoefficientTransverse,\n",
    "    MAT.temperature,\n",
    "    MAT.specificVolume,\n",
    "    MAT.pressure,\n",
    "}\n",
    "\n",
    "# Usage properties that should be numeric\n",
    "NUMERIC_USAGE_PROPS = {\n",
    "    USAGE.ageOfComponent,\n",
    "    USAGE.mechanicalServiceLifeComponent,\n",
    "    USAGE.thermalServiceLifeComponent,\n",
    "    USAGE.chemicalMediumServiceLifeComponent,\n",
    "    USAGE.humidityMediumServiceLifeComponent,\n",
    "}\n",
    "\n",
    "def recast_literals(graph, numeric_props):\n",
    "    \"\"\"Replace untyped string literals with xsd:float where applicable.\"\"\"\n",
    "    to_remove = []\n",
    "    to_add = []\n",
    "    for prop in numeric_props:\n",
    "        for s, p, o in graph.triples((None, prop, None)):\n",
    "            if isinstance(o, Literal) and o.datatype is None:\n",
    "                try:\n",
    "                    float_val = float(str(o))\n",
    "                    to_remove.append((s, p, o))\n",
    "                    to_add.append((s, p, Literal(float_val, datatype=XSD.float)))\n",
    "                except ValueError:\n",
    "                    pass  # skip non-numeric strings like \"1500 N\"\n",
    "    for triple in to_remove:\n",
    "        graph.remove(triple)\n",
    "    for triple in to_add:\n",
    "        graph.add(triple)\n",
    "\n",
    "recast_literals(samm_graph, NUMERIC_MAT_PROPS)\n",
    "recast_literals(samm_graph, NUMERIC_USAGE_PROPS)\n",
    "\n",
    "# ── Run the INSERT query ───────────────────────────────────────────────────────\n",
    "ds.update(insert_query)\n",
    "\n",
    "# ── Retrieve the PMDco output graph ───────────────────────────────────────────\n",
    "PMD_GRAPH_URI = URIRef(\"pmdco\")\n",
    "pmd_graph = ds.graph(PMD_GRAPH_URI)\n",
    "\n",
    "print(f\"PMDco graph has {len(pmd_graph)} triples\")\n",
    "\n",
    "# ── Bind prefixes for clean Turtle output ─────────────────────────────────────\n",
    "pmd_graph.bind(\"obo\",    \"http://purl.obolibrary.org/obo/\")\n",
    "pmd_graph.bind(\"pmdco\",  \"https://w3id.org/pmd/co/\")\n",
    "pmd_graph.bind(\"qudt\",   \"https://qudt.org/schema/qudt/\")\n",
    "pmd_graph.bind(\"unit\",   \"https://qudt.org/vocab/unit/\")\n",
    "pmd_graph.bind(\"xsd\",    \"http://www.w3.org/2001/XMLSchema#\")\n",
    "pmd_graph.bind(\"rdfs\",   \"http://www.w3.org/2000/01/rdf-schema#\")\n",
    "pmd_graph.bind(\"rdf\",    \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\")\n",
    "pmd_graph.bind(\"mat\",    \"urn:samm:io.catenax.material_data:1.0.0#\")\n",
    "pmd_graph.bind(\"usage\",  \"urn:samm:io.catenax.usagedata:1.0.0#\")\n",
    "pmd_graph.bind(\"sunit\",  \"urn:samm:org.eclipse.esmf.samm:unit:2.2.0#\")\n",
    "pmd_graph.bind(\"samm-c\", \"urn:samm:org.eclipse.esmf.samm:characteristic:2.2.0#\")\n",
    "pmd_graph.bind(\"samm\",   \"urn:samm:org.eclipse.esmf.samm:meta-model:2.2.0#\")\n",
    "\n",
    "# ── Serialize ──────────────────────────────────────────────────────────────────\n",
    "pmd_ttl = pmd_graph.serialize(format=\"turtle\")\n",
    "print(pmd_ttl[:3000])\n",
    "\n",
    "pmd_graph.serialize(destination=\"PMDco-KG.ttl\", format=\"turtle\")\n"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "317961cc",
   "metadata": {},
   "source": [
    "### Applying insert query to convert from SAMM-KG to AUTOMATCE-KG\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "48390d63",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "AUTOMATe-CE graph has 8415 triples\n",
      "@prefix automatce: <https://w3id.org/pmd/automatce/> .\n",
      "@prefix co: <https://w3id.org/pmd/co/> .\n",
      "@prefix obo: <http://purl.obolibrary.org/obo/> .\n",
      "@prefix qudt: <https://qudt.org/schema/qudt/> .\n",
      "@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n",
      "@prefix unit: <https://qudt.org/vocab/unit/> .\n",
      "@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ComponentStatus_10-age> a automatce:AUTOMATCE_0010268 ;\n",
      "    rdfs:label \"Age of component\" ;\n",
      "    obo:OBI_0001938 <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ComponentStatus_10-age-qv> .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#UsageDataServiceLife_13.5-component> a obo:BFO_0000040 ;\n",
      "    rdfs:label \"https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#UsageDataServiceLife_13.5\" ;\n",
      "    automatce:AUTOMATCE_0009004 <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#UsageDataServiceLife_13.5-usagedata> .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ChemicalMediumServiceLifeComponent_14_15-sl-chem> a automatce:AUTOMATCE_0010264 ;\n",
      "    rdfs:label \"Chemical medium service life\" ;\n",
      "    obo:OBI_0001938 <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ChemicalMediumServiceLifeComponent_14_15-sl-chem-qv> .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ChemicalMediumServiceLifeComponent_14_15-sl-chem-qv> a qudt:QuantityValue ;\n",
      "    rdfs:label \"Chemical medium service life\" ;\n",
      "    qudt:numericValue \"14.0\"^^xsd:float ;\n",
      "    qudt:unit unit:HR .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ChemicalMediumServiceLifeComponent_14_15-sl-humidity> a automatce:AUTOMATCE_0010265 ;\n",
      "    rdfs:label \"Humidity medium service life\" ;\n",
      "    obo:OBI_0001938 <https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-26330bcbf7c5/resource/4a3e6125-0416-490b-995f-e59ef6cb677b/download/materialdata_sample.json#ChemicalMediumServiceLifeComponent_14_15-sl-humidity-qv> .\n",
      "\n",
      "<https://dataportal.material-digital.de/dataset/2347d95a-4588-44da-9e94-2633\n"
     ]
    },
    {
     "data": {
      "text/plain": [
       "<Graph identifier=automatce (<class 'rdflib.graph.Graph'>)>"
      ]
     },
     "execution_count": 12,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# ── Load the SPARQL query ──────────────────────────────────────────────────────\n",
    "insert_query = Path(\"insertQuery-AUTOMATCE.sparql\").read_text(encoding=\"utf-8\")  # CHANGED filename\n",
    "\n",
    "# ── Create a Dataset and load SAMM-KG into a NAMED graph ──────────────────────\n",
    "ds = rdflib.Dataset()\n",
    "\n",
    "SAMM_GRAPH_URI = rdflib.URIRef(\"urn:samm-kg\")\n",
    "samm_graph = ds.graph(SAMM_GRAPH_URI)\n",
    "samm_graph.parse(data=ttl_content_clean, format=\"turtle\")\n",
    "\n",
    "# ── Pre-process: cast untyped string literals to xsd:float ────────────────────\n",
    "MAT   = Namespace(\"urn:samm:io.catenax.material_data:1.0.0#\")\n",
    "USAGE = Namespace(\"urn:samm:io.catenax.usagedata:1.0.0#\")\n",
    "\n",
    "NUMERIC_MAT_PROPS = {\n",
    "    MAT.flexuralStrength, MAT.impactStrength, MAT.youngsModulus,\n",
    "    MAT.strainAtBreak, MAT.stressAtBreak, MAT.flexuralModulus,\n",
    "    MAT.density, MAT.humidity, MAT.glassTransitionTemperature,\n",
    "    MAT.meltingTemperature, MAT.waterAbsorption,\n",
    "    MAT.linearThermalExpansionCoefficientParallel,\n",
    "    MAT.linearThermalExpansionCoefficientTransverse,\n",
    "    MAT.temperature, MAT.specificVolume, MAT.pressure,\n",
    "}\n",
    "\n",
    "NUMERIC_USAGE_PROPS = {\n",
    "    USAGE.ageOfComponent,\n",
    "    USAGE.mechanicalServiceLifeComponent,\n",
    "    USAGE.thermalServiceLifeComponent,\n",
    "    USAGE.chemicalMediumServiceLifeComponent,\n",
    "    USAGE.humidityMediumServiceLifeComponent,\n",
    "}\n",
    "\n",
    "def recast_literals(graph, numeric_props):\n",
    "    to_remove, to_add = [], []\n",
    "    for prop in numeric_props:\n",
    "        for s, p, o in graph.triples((None, prop, None)):\n",
    "            if isinstance(o, Literal) and o.datatype is None:\n",
    "                try:\n",
    "                    to_remove.append((s, p, o))\n",
    "                    to_add.append((s, p, Literal(float(str(o)), datatype=XSD.float)))\n",
    "                except ValueError:\n",
    "                    pass\n",
    "    for triple in to_remove:\n",
    "        graph.remove(triple)\n",
    "    for triple in to_add:\n",
    "        graph.add(triple)\n",
    "\n",
    "recast_literals(samm_graph, NUMERIC_MAT_PROPS)\n",
    "recast_literals(samm_graph, NUMERIC_USAGE_PROPS)\n",
    "\n",
    "# ── Run the INSERT query ───────────────────────────────────────────────────────\n",
    "ds.update(insert_query)\n",
    "\n",
    "# ── Retrieve the AUTOMATe output graph ────────────────────────────────────────\n",
    "AUTOMATCE_GRAPH_URI = URIRef(\"automatce\")        \n",
    "automatce_graph = ds.graph(AUTOMATCE_GRAPH_URI)  \n",
    "\n",
    "print(f\"AUTOMATe-CE graph has {len(automatce_graph)} triples\")\n",
    "\n",
    "# ── Bind prefixes for clean Turtle output ─────────────────────────────────────\n",
    "automatce_graph.bind(\"automatce\", \"https://w3id.org/pmd/automatce/\")  \n",
    "automatce_graph.bind(\"co\",        \"https://w3id.org/pmd/co/\")         \n",
    "automatce_graph.bind(\"obo\",       \"http://purl.obolibrary.org/obo/\")\n",
    "automatce_graph.bind(\"xsd\",       \"http://www.w3.org/2001/XMLSchema#\")\n",
    "automatce_graph.bind(\"rdfs\",      \"http://www.w3.org/2000/01/rdf-schema#\")\n",
    "automatce_graph.bind(\"rdf\",       \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\")\n",
    "automatce_graph.bind(\"qudt\",      \"https://qudt.org/schema/qudt/\")    \n",
    "automatce_graph.bind(\"unit\",      \"https://qudt.org/vocab/unit/\")     \n",
    "automatce_graph.bind(\"mat\",       \"urn:samm:io.catenax.material_data:1.0.0#\")\n",
    "automatce_graph.bind(\"usage\",     \"urn:samm:io.catenax.usagedata:1.0.0#\")\n",
    "\n",
    "# ── Serialize ─────────────────────────────────────────────────────────────────\n",
    "automatce_ttl = automatce_graph.serialize(format=\"turtle\")\n",
    "print(automatce_ttl[:3000])\n",
    "\n",
    "automatce_graph.serialize(destination=\"AUTOMATCE-KG.ttl\", format=\"turtle\")  "
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.10.12"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
