diff --git a/common/util.js b/common/util.js
index 4120e4c2744b0661cfdf34293a66ae9bc072068a..118d3079a160b1da15de10f84e9bcf22f008f510 100644
--- a/common/util.js
+++ b/common/util.js
@@ -80,6 +80,27 @@
     return `${kgSchema}/${kgId}`
   }
 
+  const getIdsObj = fullId => {
+    const returnArray = []
+    if (!fullId) return returnArray
+    const legacyFullId = getIdObj(fullId)
+    if (legacyFullId) returnArray.push(`${legacyFullId['kgSchema']}/${legacyFullId['kgId']}`)
+
+    const { ['minds/core/parcellationregion/v1.0.0']: uniMindsParcRegScheIds} = fullId
+    for (const key in uniMindsParcRegScheIds || {}) {
+      returnArray.push(`minds/core/parcellationregion/v1.0.0/${key}`)
+    }
+    return returnArray
+  }
+
+  exports.getStringIdsFromRegion = region => {
+    const { fullId } = region
+    /**
+     * other ways of getting id?
+     */
+    return getIdsObj(fullId)
+  }
+
   const defaultConfig = {
     timeout: 5000,
     retries: 3
@@ -108,6 +129,8 @@
 
   exports.flattenRegions = flattenRegions
 
+  exports.flattenReducer = (acc, curr) => acc.concat(curr)
+
   exports.getRandomHex = (digit = 1024 * 1024 * 1024 * 1024) => Math.round(Math.random() * digit).toString(16)
 
   /**
diff --git a/deploy/assets/images/atlas-selection/short-bundle-hcp.png b/deploy/assets/images/atlas-selection/short-bundle-hcp.png
new file mode 100644
index 0000000000000000000000000000000000000000..0204752305a93284af053ff9210266e30f288001
Binary files /dev/null and b/deploy/assets/images/atlas-selection/short-bundle-hcp.png differ
diff --git a/deploy/atlas/index.js b/deploy/atlas/index.js
index 92ff4f851d80f5762ad6b9a8bdc045bb9738afb9..08d79085e0bdde4e6c8db147853d297d4cc1fad7 100644
--- a/deploy/atlas/index.js
+++ b/deploy/atlas/index.js
@@ -54,6 +54,7 @@ const previewImageFIleNameMap = new Map([
   ['minds/core/parcellationatlas/v1.0.0/ebb923ba-b4d5-4b82-8088-fa9215c2e1fe', 'waxholm-v3.png'],
   ['minds/core/parcellationatlas/v1.0.0/2449a7f0-6dd0-4b5a-8f1e-aec0db03679d', 'waxholm-v2.png'],
   ['minds/core/parcellationatlas/v1.0.0/11017b35-7056-4593-baad-3934d211daba', 'waxholm-v1.png'],
+  ['juelich/iav/atlas/v1.0.0/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c', 'short-bundle-hcp.png'],
 ])
 
 router.get('/preview', (req, res) => {
diff --git a/deploy/datasets/util.js b/deploy/datasets/util.js
index e473e3299f69c0b4a12bc5617be5b4d0e4a849b6..f394dad852746c26996d4fea857a98795cf492b7 100644
--- a/deploy/datasets/util.js
+++ b/deploy/datasets/util.js
@@ -3,7 +3,7 @@ const { getCommonSenseDsFilter } = require('./supplements/commonSense')
 const { hasPreview } = require('./supplements/previewFile')
 const path = require('path')
 const fs = require('fs')
-const { getIdFromFullId, retry, flattenRegions, getUniqueRegionId } = require('../../common/util')
+const { getIdFromFullId, retry, flattenRegions, getUniqueRegionId, getStringIdsFromRegion, flattenReducer } = require('../../common/util')
 
 let getPublicAccessToken
 
@@ -87,34 +87,28 @@ const regionMap = new Map()
 
 const getParseRegion = (template, parcellation) => {
 
-  const getRegionIdFromRegion = region => {
-    return region.fullId
-      ? getIdFromFullId(region.fullId)
-      : getUniqueRegionId(template, parcellation, region)
+  const getRegionIdsFromRegion = region => {
+    return [
+      ...getStringIdsFromRegion(region),
+      getUniqueRegionId(template, parcellation, region)
+    ]
   }
   
   const parseRegion = (region, parent) => {
-    const regionId = getRegionIdFromRegion(region)
+    const regionIds = getRegionIdsFromRegion(region)
+    const regionId = regionIds[0] 
     const { children, relatedAreas } = region
-    const childrenIds = [
-      ...(children || []).map(getRegionIdFromRegion)
-    ]
-
-    const alternateIds = [
-      ...(relatedAreas || []).map(getRegionIdFromRegion)
-    ]
+    const childrenIds = (children || []).map(getRegionIdsFromRegion).reduce(flattenReducer, [])
+    const alternateIds = (relatedAreas || []).map(getRegionIdsFromRegion).reduce(flattenReducer, [])
 
-    regionMap.set(regionId, {
+    const regionObj = {
       parent,
-      self: [ regionId, ...alternateIds ],
+      self: [ ...regionIds, ...alternateIds ],
       children: childrenIds
-    })
+    }
+    regionMap.set(regionId, regionObj)
     for (const altId of alternateIds) {
-      regionMap.set(altId, {
-        parent,
-        self: [ regionId, ...alternateIds ],
-        children: childrenIds
-      })
+      regionMap.set(altId, regionObj)
     }
     for (const c of (children || [])) {
       parseRegion(c, regionId)
@@ -284,6 +278,7 @@ const traverseRegionMap = regionSchemaId => {
 }
 
 const filterDatasetsByRegion = async (datasets = [], regionSchemaId) => {
+  await Promise.all(initPrArray)
   const allRelevantSchemaSet = new Set(traverseRegionMap(regionSchemaId))
   return datasets.filter(ds => ds['parcellationRegion'].some(pr => allRelevantSchemaSet.has(getIdFromFullId(pr.fullId))))
 }
diff --git a/docs/releases/v2.3.0.md b/docs/releases/v2.3.0.md
index 168e0384fb236945f7766bd619d092035e351136..4d6fc0859d24b48fd83fd7329d4dfd88fe88a7f1 100644
--- a/docs/releases/v2.3.0.md
+++ b/docs/releases/v2.3.0.md
@@ -12,6 +12,7 @@
 - tweaked mesh loading strategies. Now it will wait for all image chunks to be loaded before loading any meshes
 - showing contributors to a regional feature/dataset if publications are not available
 - added the ability to customize preview origin dataset to labels other to `View probability map`
+- Added short bundle HCP to the supported atlas
 - **experimental** : previewing of curated regional features: iEEG coordinates
 
 ## Bugfixes:
diff --git a/src/res/ext/MNI152.json b/src/res/ext/MNI152.json
index a318f81ef075e6bbfb957b55184ab1ad11c87958..b0835340cfe7991e80842bef20f5280a45114585 100644
--- a/src/res/ext/MNI152.json
+++ b/src/res/ext/MNI152.json
@@ -13839,6 +13839,17145 @@
       "_": {
         "@src": "https://gin.g-node.org/FZJ-INM1-BDA/20201002_JulichBrain-V2_4-ICBM152_ontology/src/fdfca63e85a1fbea4df916cb604b8b1bc2ab0a28/output/nehuba-ui/julich-brain-v2_4-icbm152.json"
       }
+    },{
+      "@id": "juelich/iav/atlas/v1.0.0/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c",
+      "ngId": "superficial-white-bundle-HCP",
+      "auxillaryMeshIndices": [
+        65535
+      ],
+      "name": "Short Fiber Bundles - HCP",
+      "originDatasets": [
+        {
+          "kgSchema": "minds/core/dataset/v1.0.0",
+          "kgId": "6a7e07ad-303c-4b1d-b444-ded9ee782225"
+        }
+      ],
+      "regions": [
+        {
+          "name": "left hemisphere",
+          "children": [
+            {
+              "name": "lh_CAC-CAC_1",
+              "labelIndex": 1001,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CAC-CAC_1",
+                    "nameOfLocation": "lh_CAC-CAC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CAC-CAC_2",
+              "labelIndex": 1002,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CAC-CAC_2",
+                    "nameOfLocation": "lh_CAC-CAC_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CAC-MOF_1",
+              "labelIndex": 1003,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CAC-MOF_1",
+                    "nameOfLocation": "lh_CAC-MOF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CAC-PoCi_1",
+              "labelIndex": 1004,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CAC-PoCi_1",
+                    "nameOfLocation": "lh_CAC-PoCi_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CAC-PrCu_1",
+              "labelIndex": 1005,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CAC-PrCu_1",
+                    "nameOfLocation": "lh_CAC-PrCu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CAC-RAC_1",
+              "labelIndex": 1006,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CAC-RAC_1",
+                    "nameOfLocation": "lh_CAC-RAC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CAC-SF_1",
+              "labelIndex": 1007,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CAC-SF_1",
+                    "nameOfLocation": "lh_CAC-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CAC-SF_2",
+              "labelIndex": 1008,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CAC-SF_2",
+                    "nameOfLocation": "lh_CAC-SF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CAC-SF_3",
+              "labelIndex": 1009,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CAC-SF_3",
+                    "nameOfLocation": "lh_CAC-SF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CAC-SF_4",
+              "labelIndex": 1010,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CAC-SF_4",
+                    "nameOfLocation": "lh_CAC-SF_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CAC-SF_5",
+              "labelIndex": 1011,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CAC-SF_5",
+                    "nameOfLocation": "lh_CAC-SF_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-CMF_1",
+              "labelIndex": 1012,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-CMF_1",
+                    "nameOfLocation": "lh_CMF-CMF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-CMF_2_1",
+              "labelIndex": 1013,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-CMF_2_1",
+                    "nameOfLocation": "lh_CMF-CMF_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-CMF_3",
+              "labelIndex": 1014,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-CMF_3",
+                    "nameOfLocation": "lh_CMF-CMF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-CMF_4",
+              "labelIndex": 1015,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-CMF_4",
+                    "nameOfLocation": "lh_CMF-CMF_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-CMF_5",
+              "labelIndex": 1016,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-CMF_5",
+                    "nameOfLocation": "lh_CMF-CMF_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-CMF_6",
+              "labelIndex": 1017,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-CMF_6",
+                    "nameOfLocation": "lh_CMF-CMF_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-CMF_7",
+              "labelIndex": 1018,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-CMF_7",
+                    "nameOfLocation": "lh_CMF-CMF_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-CMF_8",
+              "labelIndex": 1019,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-CMF_8",
+                    "nameOfLocation": "lh_CMF-CMF_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-CMF_9",
+              "labelIndex": 1020,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-CMF_9",
+                    "nameOfLocation": "lh_CMF-CMF_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-Op_1",
+              "labelIndex": 1021,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-Op_1",
+                    "nameOfLocation": "lh_CMF-Op_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-PoC_1",
+              "labelIndex": 1022,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-PoC_1",
+                    "nameOfLocation": "lh_CMF-PoC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-PrC_1",
+              "labelIndex": 1023,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-PrC_1",
+                    "nameOfLocation": "lh_CMF-PrC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-PrC_2",
+              "labelIndex": 1024,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-PrC_2",
+                    "nameOfLocation": "lh_CMF-PrC_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-PrC_3",
+              "labelIndex": 1025,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-PrC_3",
+                    "nameOfLocation": "lh_CMF-PrC_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-PrC_4",
+              "labelIndex": 1026,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-PrC_4",
+                    "nameOfLocation": "lh_CMF-PrC_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-RMF_1",
+              "labelIndex": 1027,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-RMF_1",
+                    "nameOfLocation": "lh_CMF-RMF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-RMF_2",
+              "labelIndex": 1028,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-RMF_2",
+                    "nameOfLocation": "lh_CMF-RMF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-RMF_3",
+              "labelIndex": 1029,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-RMF_3",
+                    "nameOfLocation": "lh_CMF-RMF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-SF_1_1",
+              "labelIndex": 1030,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-SF_1_1",
+                    "nameOfLocation": "lh_CMF-SF_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-SF_2",
+              "labelIndex": 1031,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-SF_2",
+                    "nameOfLocation": "lh_CMF-SF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-SF_3",
+              "labelIndex": 1032,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-SF_3",
+                    "nameOfLocation": "lh_CMF-SF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_CMF-SF_4",
+              "labelIndex": 1033,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_CMF-SF_4",
+                    "nameOfLocation": "lh_CMF-SF_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-Cu_1",
+              "labelIndex": 1034,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-Cu_1",
+                    "nameOfLocation": "lh_Cu-Cu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-Cu_2_1",
+              "labelIndex": 1035,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-Cu_2_1",
+                    "nameOfLocation": "lh_Cu-Cu_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-Cu_3",
+              "labelIndex": 1036,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-Cu_3",
+                    "nameOfLocation": "lh_Cu-Cu_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-Cu_4",
+              "labelIndex": 1037,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-Cu_4",
+                    "nameOfLocation": "lh_Cu-Cu_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-Cu_5",
+              "labelIndex": 1038,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-Cu_5",
+                    "nameOfLocation": "lh_Cu-Cu_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-Cu_6",
+              "labelIndex": 1039,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-Cu_6",
+                    "nameOfLocation": "lh_Cu-Cu_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-LO_1",
+              "labelIndex": 1040,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-LO_1",
+                    "nameOfLocation": "lh_Cu-LO_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-LO_2",
+              "labelIndex": 1041,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-LO_2",
+                    "nameOfLocation": "lh_Cu-LO_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-Li_1",
+              "labelIndex": 1042,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-Li_1",
+                    "nameOfLocation": "lh_Cu-Li_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-Li_2",
+              "labelIndex": 1043,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-Li_2",
+                    "nameOfLocation": "lh_Cu-Li_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-Li_3",
+              "labelIndex": 1044,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-Li_3",
+                    "nameOfLocation": "lh_Cu-Li_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-Li_4",
+              "labelIndex": 1045,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-Li_4",
+                    "nameOfLocation": "lh_Cu-Li_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-Li_5",
+              "labelIndex": 1046,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-Li_5",
+                    "nameOfLocation": "lh_Cu-Li_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-Li_6",
+              "labelIndex": 1047,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-Li_6",
+                    "nameOfLocation": "lh_Cu-Li_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-Li_7",
+              "labelIndex": 1048,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-Li_7",
+                    "nameOfLocation": "lh_Cu-Li_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-PeCa_1",
+              "labelIndex": 1049,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-PeCa_1",
+                    "nameOfLocation": "lh_Cu-PeCa_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "c80aa5fe-de2e-4aab-aa6f-34eb625e6c17": {
+                    "name": "Pericalcarine cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-PeCa_2",
+              "labelIndex": 1050,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-PeCa_2",
+                    "nameOfLocation": "lh_Cu-PeCa_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "c80aa5fe-de2e-4aab-aa6f-34eb625e6c17": {
+                    "name": "Pericalcarine cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Cu-PrCu_1",
+              "labelIndex": 1051,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Cu-PrCu_1",
+                    "nameOfLocation": "lh_Cu-PrCu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_En-En_1",
+              "labelIndex": 1052,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_En-En_1",
+                    "nameOfLocation": "lh_En-En_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_En-IC_1",
+              "labelIndex": 1053,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_En-IC_1",
+                    "nameOfLocation": "lh_En-IC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  },
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_En-IT_1",
+              "labelIndex": 1054,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_En-IT_1",
+                    "nameOfLocation": "lh_En-IT_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  },
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_En-Li_1",
+              "labelIndex": 1055,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_En-Li_1",
+                    "nameOfLocation": "lh_En-Li_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_En-MOF_1",
+              "labelIndex": 1056,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_En-MOF_1",
+                    "nameOfLocation": "lh_En-MOF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  },
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_En-PH_1_1",
+              "labelIndex": 1057,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_En-PH_1_1",
+                    "nameOfLocation": "lh_En-PH_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-Fu_10",
+              "labelIndex": 1058,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-Fu_10",
+                    "nameOfLocation": "lh_Fu-Fu_10",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-Fu_1",
+              "labelIndex": 1059,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-Fu_1",
+                    "nameOfLocation": "lh_Fu-Fu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-Fu_2",
+              "labelIndex": 1060,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-Fu_2",
+                    "nameOfLocation": "lh_Fu-Fu_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-Fu_3",
+              "labelIndex": 1061,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-Fu_3",
+                    "nameOfLocation": "lh_Fu-Fu_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-Fu_4",
+              "labelIndex": 1062,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-Fu_4",
+                    "nameOfLocation": "lh_Fu-Fu_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-Fu_5",
+              "labelIndex": 1063,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-Fu_5",
+                    "nameOfLocation": "lh_Fu-Fu_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-Fu_6",
+              "labelIndex": 1064,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-Fu_6",
+                    "nameOfLocation": "lh_Fu-Fu_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-Fu_7",
+              "labelIndex": 1065,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-Fu_7",
+                    "nameOfLocation": "lh_Fu-Fu_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-Fu_8",
+              "labelIndex": 1066,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-Fu_8",
+                    "nameOfLocation": "lh_Fu-Fu_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-Fu_9",
+              "labelIndex": 1067,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-Fu_9",
+                    "nameOfLocation": "lh_Fu-Fu_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-IT_1",
+              "labelIndex": 1068,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-IT_1",
+                    "nameOfLocation": "lh_Fu-IT_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  },
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-IT_2",
+              "labelIndex": 1069,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-IT_2",
+                    "nameOfLocation": "lh_Fu-IT_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  },
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-IT_3",
+              "labelIndex": 1070,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-IT_3",
+                    "nameOfLocation": "lh_Fu-IT_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  },
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-LO_1",
+              "labelIndex": 1071,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-LO_1",
+                    "nameOfLocation": "lh_Fu-LO_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  },
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-LO_2",
+              "labelIndex": 1072,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-LO_2",
+                    "nameOfLocation": "lh_Fu-LO_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  },
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-LO_3",
+              "labelIndex": 1073,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-LO_3",
+                    "nameOfLocation": "lh_Fu-LO_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  },
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-Li_1",
+              "labelIndex": 1074,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-Li_1",
+                    "nameOfLocation": "lh_Fu-Li_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Fu-PH_1",
+              "labelIndex": 1075,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Fu-PH_1",
+                    "nameOfLocation": "lh_Fu-PH_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IC-MOF_1",
+              "labelIndex": 1076,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IC-MOF_1",
+                    "nameOfLocation": "lh_IC-MOF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  },
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IC-PH_1",
+              "labelIndex": 1077,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IC-PH_1",
+                    "nameOfLocation": "lh_IC-PH_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IC-PoCi_1",
+              "labelIndex": 1078,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IC-PoCi_1",
+                    "nameOfLocation": "lh_IC-PoCi_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  },
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IC-PoCi_2",
+              "labelIndex": 1079,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IC-PoCi_2",
+                    "nameOfLocation": "lh_IC-PoCi_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  },
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IC-PoCi_3",
+              "labelIndex": 1080,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IC-PoCi_3",
+                    "nameOfLocation": "lh_IC-PoCi_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  },
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IC-PrCu_1",
+              "labelIndex": 1081,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IC-PrCu_1",
+                    "nameOfLocation": "lh_IC-PrCu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IC-PrCu_2",
+              "labelIndex": 1082,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IC-PrCu_2",
+                    "nameOfLocation": "lh_IC-PrCu_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IC-PrCu_3",
+              "labelIndex": 1083,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IC-PrCu_3",
+                    "nameOfLocation": "lh_IC-PrCu_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-IP_1",
+              "labelIndex": 1084,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-IP_1",
+                    "nameOfLocation": "lh_IP-IP_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-IP_2",
+              "labelIndex": 1085,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-IP_2",
+                    "nameOfLocation": "lh_IP-IP_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-IP_3_1",
+              "labelIndex": 1086,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-IP_3_1",
+                    "nameOfLocation": "lh_IP-IP_3_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-IP_4",
+              "labelIndex": 1087,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-IP_4",
+                    "nameOfLocation": "lh_IP-IP_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-IP_5",
+              "labelIndex": 1088,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-IP_5",
+                    "nameOfLocation": "lh_IP-IP_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-IP_6",
+              "labelIndex": 1089,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-IP_6",
+                    "nameOfLocation": "lh_IP-IP_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-IP_7",
+              "labelIndex": 1090,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-IP_7",
+                    "nameOfLocation": "lh_IP-IP_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-IP_8",
+              "labelIndex": 1091,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-IP_8",
+                    "nameOfLocation": "lh_IP-IP_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-IP_9",
+              "labelIndex": 1092,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-IP_9",
+                    "nameOfLocation": "lh_IP-IP_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-LO_1",
+              "labelIndex": 1093,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-LO_1",
+                    "nameOfLocation": "lh_IP-LO_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-LO_2",
+              "labelIndex": 1094,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-LO_2",
+                    "nameOfLocation": "lh_IP-LO_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-LO_3",
+              "labelIndex": 1095,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-LO_3",
+                    "nameOfLocation": "lh_IP-LO_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-LO_4",
+              "labelIndex": 1096,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-LO_4",
+                    "nameOfLocation": "lh_IP-LO_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-MT_1",
+              "labelIndex": 1097,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-MT_1",
+                    "nameOfLocation": "lh_IP-MT_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-MT_2",
+              "labelIndex": 1098,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-MT_2",
+                    "nameOfLocation": "lh_IP-MT_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-MT_3",
+              "labelIndex": 1099,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-MT_3",
+                    "nameOfLocation": "lh_IP-MT_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-MT_4",
+              "labelIndex": 1100,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-MT_4",
+                    "nameOfLocation": "lh_IP-MT_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-SM_1",
+              "labelIndex": 1101,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-SM_1",
+                    "nameOfLocation": "lh_IP-SM_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-SP_1_1",
+              "labelIndex": 1102,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-SP_1_1",
+                    "nameOfLocation": "lh_IP-SP_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-SP_1_2",
+              "labelIndex": 1103,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-SP_1_2",
+                    "nameOfLocation": "lh_IP-SP_1_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-SP_2",
+              "labelIndex": 1104,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-SP_2",
+                    "nameOfLocation": "lh_IP-SP_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-SP_3",
+              "labelIndex": 1105,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-SP_3",
+                    "nameOfLocation": "lh_IP-SP_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-SP_4",
+              "labelIndex": 1106,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-SP_4",
+                    "nameOfLocation": "lh_IP-SP_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-SP_5",
+              "labelIndex": 1107,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-SP_5",
+                    "nameOfLocation": "lh_IP-SP_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-SP_6",
+              "labelIndex": 1108,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-SP_6",
+                    "nameOfLocation": "lh_IP-SP_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-SP_7",
+              "labelIndex": 1109,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-SP_7",
+                    "nameOfLocation": "lh_IP-SP_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IP-ST_1",
+              "labelIndex": 1110,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IP-ST_1",
+                    "nameOfLocation": "lh_IP-ST_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-IC_1",
+              "labelIndex": 1111,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-IC_1",
+                    "nameOfLocation": "lh_IT-IC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-IT_1",
+              "labelIndex": 1112,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-IT_1",
+                    "nameOfLocation": "lh_IT-IT_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-IT_2",
+              "labelIndex": 1113,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-IT_2",
+                    "nameOfLocation": "lh_IT-IT_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-IT_3",
+              "labelIndex": 1114,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-IT_3",
+                    "nameOfLocation": "lh_IT-IT_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-IT_4",
+              "labelIndex": 1115,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-IT_4",
+                    "nameOfLocation": "lh_IT-IT_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-IT_5",
+              "labelIndex": 1116,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-IT_5",
+                    "nameOfLocation": "lh_IT-IT_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-IT_6",
+              "labelIndex": 1117,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-IT_6",
+                    "nameOfLocation": "lh_IT-IT_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-IT_7",
+              "labelIndex": 1118,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-IT_7",
+                    "nameOfLocation": "lh_IT-IT_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-LO_1",
+              "labelIndex": 1119,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-LO_1",
+                    "nameOfLocation": "lh_IT-LO_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-Li_1",
+              "labelIndex": 1120,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-Li_1",
+                    "nameOfLocation": "lh_IT-Li_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-Li_2",
+              "labelIndex": 1121,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-Li_2",
+                    "nameOfLocation": "lh_IT-Li_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-MT_1",
+              "labelIndex": 1122,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-MT_1",
+                    "nameOfLocation": "lh_IT-MT_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-MT_2",
+              "labelIndex": 1123,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-MT_2",
+                    "nameOfLocation": "lh_IT-MT_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-MT_3",
+              "labelIndex": 1124,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-MT_3",
+                    "nameOfLocation": "lh_IT-MT_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-PH_1",
+              "labelIndex": 1125,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-PH_1",
+                    "nameOfLocation": "lh_IT-PH_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-PH_2",
+              "labelIndex": 1126,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-PH_2",
+                    "nameOfLocation": "lh_IT-PH_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-PH_3",
+              "labelIndex": 1127,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-PH_3",
+                    "nameOfLocation": "lh_IT-PH_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_IT-ST_1",
+              "labelIndex": 1128,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_IT-ST_1",
+                    "nameOfLocation": "lh_IT-ST_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Ins-Ins_1",
+              "labelIndex": 1129,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Ins-Ins_1",
+                    "nameOfLocation": "lh_Ins-Ins_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LO-LO_10",
+              "labelIndex": 1130,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LO-LO_10",
+                    "nameOfLocation": "lh_LO-LO_10",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LO-LO_11",
+              "labelIndex": 1131,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LO-LO_11",
+                    "nameOfLocation": "lh_LO-LO_11",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LO-LO_12",
+              "labelIndex": 1132,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LO-LO_12",
+                    "nameOfLocation": "lh_LO-LO_12",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LO-LO_1",
+              "labelIndex": 1133,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LO-LO_1",
+                    "nameOfLocation": "lh_LO-LO_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LO-LO_2",
+              "labelIndex": 1134,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LO-LO_2",
+                    "nameOfLocation": "lh_LO-LO_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LO-LO_3_1",
+              "labelIndex": 1135,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LO-LO_3_1",
+                    "nameOfLocation": "lh_LO-LO_3_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LO-LO_4",
+              "labelIndex": 1136,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LO-LO_4",
+                    "nameOfLocation": "lh_LO-LO_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LO-LO_5",
+              "labelIndex": 1137,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LO-LO_5",
+                    "nameOfLocation": "lh_LO-LO_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LO-LO_6",
+              "labelIndex": 1138,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LO-LO_6",
+                    "nameOfLocation": "lh_LO-LO_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LO-LO_7",
+              "labelIndex": 1139,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LO-LO_7",
+                    "nameOfLocation": "lh_LO-LO_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LO-LO_8",
+              "labelIndex": 1140,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LO-LO_8",
+                    "nameOfLocation": "lh_LO-LO_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LO-LO_9",
+              "labelIndex": 1141,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LO-LO_9",
+                    "nameOfLocation": "lh_LO-LO_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-Ins_1",
+              "labelIndex": 1142,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-Ins_1",
+                    "nameOfLocation": "lh_LOF-Ins_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-Ins_2",
+              "labelIndex": 1143,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-Ins_2",
+                    "nameOfLocation": "lh_LOF-Ins_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-LOF_10",
+              "labelIndex": 1144,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-LOF_10",
+                    "nameOfLocation": "lh_LOF-LOF_10",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-LOF_1",
+              "labelIndex": 1145,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-LOF_1",
+                    "nameOfLocation": "lh_LOF-LOF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-LOF_2",
+              "labelIndex": 1146,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-LOF_2",
+                    "nameOfLocation": "lh_LOF-LOF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-LOF_3_1",
+              "labelIndex": 1147,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-LOF_3_1",
+                    "nameOfLocation": "lh_LOF-LOF_3_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-LOF_4",
+              "labelIndex": 1148,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-LOF_4",
+                    "nameOfLocation": "lh_LOF-LOF_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-LOF_5",
+              "labelIndex": 1149,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-LOF_5",
+                    "nameOfLocation": "lh_LOF-LOF_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-LOF_6",
+              "labelIndex": 1150,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-LOF_6",
+                    "nameOfLocation": "lh_LOF-LOF_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-LOF_7",
+              "labelIndex": 1151,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-LOF_7",
+                    "nameOfLocation": "lh_LOF-LOF_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-LOF_8",
+              "labelIndex": 1152,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-LOF_8",
+                    "nameOfLocation": "lh_LOF-LOF_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-LOF_9",
+              "labelIndex": 1153,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-LOF_9",
+                    "nameOfLocation": "lh_LOF-LOF_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-MOF_1",
+              "labelIndex": 1154,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-MOF_1",
+                    "nameOfLocation": "lh_LOF-MOF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-Or_1",
+              "labelIndex": 1155,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-Or_1",
+                    "nameOfLocation": "lh_LOF-Or_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "a0f4cde7-83ff-4e78-b009-851b468741ba": {
+                    "name": "Pars orbitalis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-RAC_1",
+              "labelIndex": 1156,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-RAC_1",
+                    "nameOfLocation": "lh_LOF-RAC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-ST_1",
+              "labelIndex": 1157,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-ST_1",
+                    "nameOfLocation": "lh_LOF-ST_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-ST_2",
+              "labelIndex": 1158,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-ST_2",
+                    "nameOfLocation": "lh_LOF-ST_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_LOF-ST_3",
+              "labelIndex": 1159,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_LOF-ST_3",
+                    "nameOfLocation": "lh_LOF-ST_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Li-Li_10",
+              "labelIndex": 1160,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Li-Li_10",
+                    "nameOfLocation": "lh_Li-Li_10",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Li-Li_12",
+              "labelIndex": 1161,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Li-Li_12",
+                    "nameOfLocation": "lh_Li-Li_12",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Li-Li_1",
+              "labelIndex": 1162,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Li-Li_1",
+                    "nameOfLocation": "lh_Li-Li_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Li-Li_2",
+              "labelIndex": 1163,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Li-Li_2",
+                    "nameOfLocation": "lh_Li-Li_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Li-Li_3",
+              "labelIndex": 1164,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Li-Li_3",
+                    "nameOfLocation": "lh_Li-Li_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Li-Li_4",
+              "labelIndex": 1165,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Li-Li_4",
+                    "nameOfLocation": "lh_Li-Li_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Li-Li_5",
+              "labelIndex": 1166,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Li-Li_5",
+                    "nameOfLocation": "lh_Li-Li_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Li-Li_6",
+              "labelIndex": 1167,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Li-Li_6",
+                    "nameOfLocation": "lh_Li-Li_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Li-Li_7",
+              "labelIndex": 1168,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Li-Li_7",
+                    "nameOfLocation": "lh_Li-Li_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Li-PH_1",
+              "labelIndex": 1169,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Li-PH_1",
+                    "nameOfLocation": "lh_Li-PH_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Li-PH_2",
+              "labelIndex": 1170,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Li-PH_2",
+                    "nameOfLocation": "lh_Li-PH_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Li-PrCu_1",
+              "labelIndex": 1171,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Li-PrCu_1",
+                    "nameOfLocation": "lh_Li-PrCu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MOF-MOF_1",
+              "labelIndex": 1172,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MOF-MOF_1",
+                    "nameOfLocation": "lh_MOF-MOF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MOF-MOF_2",
+              "labelIndex": 1173,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MOF-MOF_2",
+                    "nameOfLocation": "lh_MOF-MOF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MOF-MOF_3",
+              "labelIndex": 1174,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MOF-MOF_3",
+                    "nameOfLocation": "lh_MOF-MOF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MOF-MOF_4",
+              "labelIndex": 1175,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MOF-MOF_4",
+                    "nameOfLocation": "lh_MOF-MOF_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MOF-PH_1",
+              "labelIndex": 1176,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MOF-PH_1",
+                    "nameOfLocation": "lh_MOF-PH_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MOF-PoCi_1",
+              "labelIndex": 1177,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MOF-PoCi_1",
+                    "nameOfLocation": "lh_MOF-PoCi_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  },
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MOF-RAC_1_1",
+              "labelIndex": 1178,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MOF-RAC_1_1",
+                    "nameOfLocation": "lh_MOF-RAC_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  },
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MOF-RAC_2",
+              "labelIndex": 1179,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MOF-RAC_2",
+                    "nameOfLocation": "lh_MOF-RAC_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  },
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MOF-SF_1_1",
+              "labelIndex": 1180,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MOF-SF_1_1",
+                    "nameOfLocation": "lh_MOF-SF_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MOF-ST_1",
+              "labelIndex": 1181,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MOF-ST_1",
+                    "nameOfLocation": "lh_MOF-ST_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-MT_10",
+              "labelIndex": 1182,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-MT_10",
+                    "nameOfLocation": "lh_MT-MT_10",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-MT_11",
+              "labelIndex": 1183,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-MT_11",
+                    "nameOfLocation": "lh_MT-MT_11",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-MT_12",
+              "labelIndex": 1184,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-MT_12",
+                    "nameOfLocation": "lh_MT-MT_12",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-MT_13",
+              "labelIndex": 1185,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-MT_13",
+                    "nameOfLocation": "lh_MT-MT_13",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-MT_14",
+              "labelIndex": 1186,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-MT_14",
+                    "nameOfLocation": "lh_MT-MT_14",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-MT_1_1",
+              "labelIndex": 1187,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-MT_1_1",
+                    "nameOfLocation": "lh_MT-MT_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-MT_2",
+              "labelIndex": 1188,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-MT_2",
+                    "nameOfLocation": "lh_MT-MT_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-MT_3",
+              "labelIndex": 1189,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-MT_3",
+                    "nameOfLocation": "lh_MT-MT_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-MT_4",
+              "labelIndex": 1190,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-MT_4",
+                    "nameOfLocation": "lh_MT-MT_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-MT_5",
+              "labelIndex": 1191,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-MT_5",
+                    "nameOfLocation": "lh_MT-MT_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-MT_6",
+              "labelIndex": 1192,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-MT_6",
+                    "nameOfLocation": "lh_MT-MT_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-MT_7",
+              "labelIndex": 1193,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-MT_7",
+                    "nameOfLocation": "lh_MT-MT_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-MT_8",
+              "labelIndex": 1194,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-MT_8",
+                    "nameOfLocation": "lh_MT-MT_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-MT_9",
+              "labelIndex": 1195,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-MT_9",
+                    "nameOfLocation": "lh_MT-MT_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-SM_1",
+              "labelIndex": 1196,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-SM_1",
+                    "nameOfLocation": "lh_MT-SM_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  },
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-ST_1",
+              "labelIndex": 1197,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-ST_1",
+                    "nameOfLocation": "lh_MT-ST_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-ST_2",
+              "labelIndex": 1198,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-ST_2",
+                    "nameOfLocation": "lh_MT-ST_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_MT-ST_3",
+              "labelIndex": 1199,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_MT-ST_3",
+                    "nameOfLocation": "lh_MT-ST_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Op-Op_1",
+              "labelIndex": 1200,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Op-Op_1",
+                    "nameOfLocation": "lh_Op-Op_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Op-Op_2",
+              "labelIndex": 1201,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Op-Op_2",
+                    "nameOfLocation": "lh_Op-Op_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Op-Op_3",
+              "labelIndex": 1202,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Op-Op_3",
+                    "nameOfLocation": "lh_Op-Op_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Op-Op_4_1",
+              "labelIndex": 1203,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Op-Op_4_1",
+                    "nameOfLocation": "lh_Op-Op_4_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Op-Op_5",
+              "labelIndex": 1204,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Op-Op_5",
+                    "nameOfLocation": "lh_Op-Op_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Op-PrC_1",
+              "labelIndex": 1205,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Op-PrC_1",
+                    "nameOfLocation": "lh_Op-PrC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Op-SF_1",
+              "labelIndex": 1206,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Op-SF_1",
+                    "nameOfLocation": "lh_Op-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Op-Tr_1",
+              "labelIndex": 1207,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Op-Tr_1",
+                    "nameOfLocation": "lh_Op-Tr_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  },
+                  "bd978cc2-8546-4b7b-bd48-f4216943ba8b": {
+                    "name": "Pars triangularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Op-Tr_2",
+              "labelIndex": 1208,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Op-Tr_2",
+                    "nameOfLocation": "lh_Op-Tr_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  },
+                  "bd978cc2-8546-4b7b-bd48-f4216943ba8b": {
+                    "name": "Pars triangularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Or-Ins_1",
+              "labelIndex": 1209,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Or-Ins_1",
+                    "nameOfLocation": "lh_Or-Ins_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a0f4cde7-83ff-4e78-b009-851b468741ba": {
+                    "name": "Pars orbitalis"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Or-Or_1",
+              "labelIndex": 1210,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Or-Or_1",
+                    "nameOfLocation": "lh_Or-Or_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a0f4cde7-83ff-4e78-b009-851b468741ba": {
+                    "name": "Pars orbitalis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Or-Or_2",
+              "labelIndex": 1211,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Or-Or_2",
+                    "nameOfLocation": "lh_Or-Or_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a0f4cde7-83ff-4e78-b009-851b468741ba": {
+                    "name": "Pars orbitalis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Or-RMF_1",
+              "labelIndex": 1212,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Or-RMF_1",
+                    "nameOfLocation": "lh_Or-RMF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a0f4cde7-83ff-4e78-b009-851b468741ba": {
+                    "name": "Pars orbitalis"
+                  },
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PC-PC_1",
+              "labelIndex": 1213,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PC-PC_1",
+                    "nameOfLocation": "lh_PC-PC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PC-PC_2_1",
+              "labelIndex": 1214,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PC-PC_2_1",
+                    "nameOfLocation": "lh_PC-PC_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PC-PC_3",
+              "labelIndex": 1215,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PC-PC_3",
+                    "nameOfLocation": "lh_PC-PC_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PC-PC_4_1",
+              "labelIndex": 1216,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PC-PC_4_1",
+                    "nameOfLocation": "lh_PC-PC_4_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PC-PoC_1",
+              "labelIndex": 1217,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PC-PoC_1",
+                    "nameOfLocation": "lh_PC-PoC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  },
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PC-PoCi_1",
+              "labelIndex": 1218,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PC-PoCi_1",
+                    "nameOfLocation": "lh_PC-PoCi_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  },
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PC-PoCi_2",
+              "labelIndex": 1219,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PC-PoCi_2",
+                    "nameOfLocation": "lh_PC-PoCi_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  },
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PC-PrC_1",
+              "labelIndex": 1220,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PC-PrC_1",
+                    "nameOfLocation": "lh_PC-PrC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PC-PrCu_1",
+              "labelIndex": 1221,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PC-PrCu_1",
+                    "nameOfLocation": "lh_PC-PrCu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PC-PrCu_2",
+              "labelIndex": 1222,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PC-PrCu_2",
+                    "nameOfLocation": "lh_PC-PrCu_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PC-SF_1",
+              "labelIndex": 1223,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PC-SF_1",
+                    "nameOfLocation": "lh_PC-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PC-SP_1",
+              "labelIndex": 1224,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PC-SP_1",
+                    "nameOfLocation": "lh_PC-SP_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PH-PH_1",
+              "labelIndex": 1225,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PH-PH_1",
+                    "nameOfLocation": "lh_PH-PH_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-Ins_1",
+              "labelIndex": 1226,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-Ins_1",
+                    "nameOfLocation": "lh_PoC-Ins_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-Ins_2_1",
+              "labelIndex": 1227,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-Ins_2_1",
+                    "nameOfLocation": "lh_PoC-Ins_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PoC_1",
+              "labelIndex": 1228,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PoC_1",
+                    "nameOfLocation": "lh_PoC-PoC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PoC_2_1",
+              "labelIndex": 1229,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PoC_2_1",
+                    "nameOfLocation": "lh_PoC-PoC_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PoC_3",
+              "labelIndex": 1230,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PoC_3",
+                    "nameOfLocation": "lh_PoC-PoC_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PoC_4",
+              "labelIndex": 1231,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PoC_4",
+                    "nameOfLocation": "lh_PoC-PoC_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PoC_5_1",
+              "labelIndex": 1232,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PoC_5_1",
+                    "nameOfLocation": "lh_PoC-PoC_5_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PoC_5_2",
+              "labelIndex": 1233,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PoC_5_2",
+                    "nameOfLocation": "lh_PoC-PoC_5_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PoC_6_1",
+              "labelIndex": 1234,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PoC_6_1",
+                    "nameOfLocation": "lh_PoC-PoC_6_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PoC_7",
+              "labelIndex": 1235,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PoC_7",
+                    "nameOfLocation": "lh_PoC-PoC_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PoC_8",
+              "labelIndex": 1236,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PoC_8",
+                    "nameOfLocation": "lh_PoC-PoC_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PoC_9",
+              "labelIndex": 1237,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PoC_9",
+                    "nameOfLocation": "lh_PoC-PoC_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PrC_1",
+              "labelIndex": 1238,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PrC_1",
+                    "nameOfLocation": "lh_PoC-PrC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PrC_2",
+              "labelIndex": 1239,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PrC_2",
+                    "nameOfLocation": "lh_PoC-PrC_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PrC_3_1",
+              "labelIndex": 1240,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PrC_3_1",
+                    "nameOfLocation": "lh_PoC-PrC_3_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PrC_4",
+              "labelIndex": 1241,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PrC_4",
+                    "nameOfLocation": "lh_PoC-PrC_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PrC_5",
+              "labelIndex": 1242,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PrC_5",
+                    "nameOfLocation": "lh_PoC-PrC_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PrC_6",
+              "labelIndex": 1243,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PrC_6",
+                    "nameOfLocation": "lh_PoC-PrC_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PrC_7",
+              "labelIndex": 1244,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PrC_7",
+                    "nameOfLocation": "lh_PoC-PrC_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PrC_8",
+              "labelIndex": 1245,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PrC_8",
+                    "nameOfLocation": "lh_PoC-PrC_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-PrC_9",
+              "labelIndex": 1246,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-PrC_9",
+                    "nameOfLocation": "lh_PoC-PrC_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-SM_1_1",
+              "labelIndex": 1247,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-SM_1_1",
+                    "nameOfLocation": "lh_PoC-SM_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-SM_2",
+              "labelIndex": 1248,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-SM_2",
+                    "nameOfLocation": "lh_PoC-SM_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-SM_3",
+              "labelIndex": 1249,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-SM_3",
+                    "nameOfLocation": "lh_PoC-SM_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-SP_1",
+              "labelIndex": 1250,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-SP_1",
+                    "nameOfLocation": "lh_PoC-SP_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-SP_2",
+              "labelIndex": 1251,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-SP_2",
+                    "nameOfLocation": "lh_PoC-SP_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoC-ST_1",
+              "labelIndex": 1252,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoC-ST_1",
+                    "nameOfLocation": "lh_PoC-ST_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoCi-PrCu_1",
+              "labelIndex": 1253,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoCi-PrCu_1",
+                    "nameOfLocation": "lh_PoCi-PrCu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoCi-PrCu_2_1",
+              "labelIndex": 1254,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoCi-PrCu_2_1",
+                    "nameOfLocation": "lh_PoCi-PrCu_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoCi-PrCu_3",
+              "labelIndex": 1255,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoCi-PrCu_3",
+                    "nameOfLocation": "lh_PoCi-PrCu_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoCi-RAC_1",
+              "labelIndex": 1256,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoCi-RAC_1",
+                    "nameOfLocation": "lh_PoCi-RAC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  },
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoCi-RAC_2",
+              "labelIndex": 1257,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoCi-RAC_2",
+                    "nameOfLocation": "lh_PoCi-RAC_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  },
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoCi-SF_1",
+              "labelIndex": 1258,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoCi-SF_1",
+                    "nameOfLocation": "lh_PoCi-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PoCi-SF_2_1",
+              "labelIndex": 1259,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PoCi-SF_2_1",
+                    "nameOfLocation": "lh_PoCi-SF_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrC-Ins_1",
+              "labelIndex": 1260,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrC-Ins_1",
+                    "nameOfLocation": "lh_PrC-Ins_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrC-Ins_2_1",
+              "labelIndex": 1261,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrC-Ins_2_1",
+                    "nameOfLocation": "lh_PrC-Ins_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrC-PrC_1_1",
+              "labelIndex": 1262,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrC-PrC_1_1",
+                    "nameOfLocation": "lh_PrC-PrC_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrC-PrC_2",
+              "labelIndex": 1263,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrC-PrC_2",
+                    "nameOfLocation": "lh_PrC-PrC_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrC-PrC_3",
+              "labelIndex": 1264,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrC-PrC_3",
+                    "nameOfLocation": "lh_PrC-PrC_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrC-PrC_4_1",
+              "labelIndex": 1265,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrC-PrC_4_1",
+                    "nameOfLocation": "lh_PrC-PrC_4_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrC-PrC_5",
+              "labelIndex": 1266,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrC-PrC_5",
+                    "nameOfLocation": "lh_PrC-PrC_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrC-PrC_6",
+              "labelIndex": 1267,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrC-PrC_6",
+                    "nameOfLocation": "lh_PrC-PrC_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrC-PrC_7",
+              "labelIndex": 1268,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrC-PrC_7",
+                    "nameOfLocation": "lh_PrC-PrC_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrC-PrC_8",
+              "labelIndex": 1269,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrC-PrC_8",
+                    "nameOfLocation": "lh_PrC-PrC_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrC-SF_1",
+              "labelIndex": 1270,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrC-SF_1",
+                    "nameOfLocation": "lh_PrC-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrC-SF_2",
+              "labelIndex": 1271,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrC-SF_2",
+                    "nameOfLocation": "lh_PrC-SF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrC-SF_3",
+              "labelIndex": 1272,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrC-SF_3",
+                    "nameOfLocation": "lh_PrC-SF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrC-SF_5",
+              "labelIndex": 1273,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrC-SF_5",
+                    "nameOfLocation": "lh_PrC-SF_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrC-SM_1",
+              "labelIndex": 1274,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrC-SM_1",
+                    "nameOfLocation": "lh_PrC-SM_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  },
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrCu-PrCu_1_1",
+              "labelIndex": 1275,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrCu-PrCu_1_1",
+                    "nameOfLocation": "lh_PrCu-PrCu_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrCu-PrCu_2",
+              "labelIndex": 1276,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrCu-PrCu_2",
+                    "nameOfLocation": "lh_PrCu-PrCu_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrCu-PrCu_3",
+              "labelIndex": 1277,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrCu-PrCu_3",
+                    "nameOfLocation": "lh_PrCu-PrCu_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrCu-PrCu_4_1",
+              "labelIndex": 1278,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrCu-PrCu_4_1",
+                    "nameOfLocation": "lh_PrCu-PrCu_4_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrCu-PrCu_5",
+              "labelIndex": 1279,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrCu-PrCu_5",
+                    "nameOfLocation": "lh_PrCu-PrCu_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrCu-PrCu_6",
+              "labelIndex": 1280,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrCu-PrCu_6",
+                    "nameOfLocation": "lh_PrCu-PrCu_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrCu-PrCu_7",
+              "labelIndex": 1281,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrCu-PrCu_7",
+                    "nameOfLocation": "lh_PrCu-PrCu_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrCu-PrCu_8",
+              "labelIndex": 1282,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrCu-PrCu_8",
+                    "nameOfLocation": "lh_PrCu-PrCu_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrCu-PrCu_9",
+              "labelIndex": 1283,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrCu-PrCu_9",
+                    "nameOfLocation": "lh_PrCu-PrCu_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrCu-SF_1",
+              "labelIndex": 1284,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrCu-SF_1",
+                    "nameOfLocation": "lh_PrCu-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_PrCu-SP_1",
+              "labelIndex": 1285,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_PrCu-SP_1",
+                    "nameOfLocation": "lh_PrCu-SP_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RAC-RAC_1",
+              "labelIndex": 1286,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RAC-RAC_1",
+                    "nameOfLocation": "lh_RAC-RAC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RAC-RAC_2",
+              "labelIndex": 1287,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RAC-RAC_2",
+                    "nameOfLocation": "lh_RAC-RAC_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RAC-RAC_3",
+              "labelIndex": 1288,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RAC-RAC_3",
+                    "nameOfLocation": "lh_RAC-RAC_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RAC-SF_1",
+              "labelIndex": 1289,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RAC-SF_1",
+                    "nameOfLocation": "lh_RAC-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RAC-SF_2",
+              "labelIndex": 1290,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RAC-SF_2",
+                    "nameOfLocation": "lh_RAC-SF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RAC-ST_1_1",
+              "labelIndex": 1291,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RAC-ST_1_1",
+                    "nameOfLocation": "lh_RAC-ST_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-RMF_10",
+              "labelIndex": 1292,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-RMF_10",
+                    "nameOfLocation": "lh_RMF-RMF_10",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-RMF_11",
+              "labelIndex": 1293,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-RMF_11",
+                    "nameOfLocation": "lh_RMF-RMF_11",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-RMF_12",
+              "labelIndex": 1294,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-RMF_12",
+                    "nameOfLocation": "lh_RMF-RMF_12",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-RMF_1_1",
+              "labelIndex": 1295,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-RMF_1_1",
+                    "nameOfLocation": "lh_RMF-RMF_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-RMF_2",
+              "labelIndex": 1296,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-RMF_2",
+                    "nameOfLocation": "lh_RMF-RMF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-RMF_3",
+              "labelIndex": 1297,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-RMF_3",
+                    "nameOfLocation": "lh_RMF-RMF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-RMF_4",
+              "labelIndex": 1298,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-RMF_4",
+                    "nameOfLocation": "lh_RMF-RMF_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-RMF_5",
+              "labelIndex": 1299,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-RMF_5",
+                    "nameOfLocation": "lh_RMF-RMF_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-RMF_6",
+              "labelIndex": 1300,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-RMF_6",
+                    "nameOfLocation": "lh_RMF-RMF_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-RMF_7",
+              "labelIndex": 1301,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-RMF_7",
+                    "nameOfLocation": "lh_RMF-RMF_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-RMF_8",
+              "labelIndex": 1302,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-RMF_8",
+                    "nameOfLocation": "lh_RMF-RMF_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-RMF_9",
+              "labelIndex": 1303,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-RMF_9",
+                    "nameOfLocation": "lh_RMF-RMF_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-SF_1_1",
+              "labelIndex": 1304,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-SF_1_1",
+                    "nameOfLocation": "lh_RMF-SF_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-SF_1_2",
+              "labelIndex": 1305,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-SF_1_2",
+                    "nameOfLocation": "lh_RMF-SF_1_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-SF_2",
+              "labelIndex": 1306,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-SF_2",
+                    "nameOfLocation": "lh_RMF-SF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-SF_3",
+              "labelIndex": 1307,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-SF_3",
+                    "nameOfLocation": "lh_RMF-SF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-SF_4",
+              "labelIndex": 1308,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-SF_4",
+                    "nameOfLocation": "lh_RMF-SF_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-SF_5",
+              "labelIndex": 1309,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-SF_5",
+                    "nameOfLocation": "lh_RMF-SF_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_RMF-SF_6",
+              "labelIndex": 1310,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_RMF-SF_6",
+                    "nameOfLocation": "lh_RMF-SF_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_10",
+              "labelIndex": 1311,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_10",
+                    "nameOfLocation": "lh_SF-SF_10",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_11_1",
+              "labelIndex": 1312,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_11_1",
+                    "nameOfLocation": "lh_SF-SF_11_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_12",
+              "labelIndex": 1313,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_12",
+                    "nameOfLocation": "lh_SF-SF_12",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_13",
+              "labelIndex": 1314,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_13",
+                    "nameOfLocation": "lh_SF-SF_13",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_14",
+              "labelIndex": 1315,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_14",
+                    "nameOfLocation": "lh_SF-SF_14",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_15",
+              "labelIndex": 1316,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_15",
+                    "nameOfLocation": "lh_SF-SF_15",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_16",
+              "labelIndex": 1317,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_16",
+                    "nameOfLocation": "lh_SF-SF_16",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_17",
+              "labelIndex": 1318,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_17",
+                    "nameOfLocation": "lh_SF-SF_17",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_18",
+              "labelIndex": 1319,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_18",
+                    "nameOfLocation": "lh_SF-SF_18",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_1",
+              "labelIndex": 1320,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_1",
+                    "nameOfLocation": "lh_SF-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_2",
+              "labelIndex": 1321,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_2",
+                    "nameOfLocation": "lh_SF-SF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_3",
+              "labelIndex": 1322,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_3",
+                    "nameOfLocation": "lh_SF-SF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_4",
+              "labelIndex": 1323,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_4",
+                    "nameOfLocation": "lh_SF-SF_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_5",
+              "labelIndex": 1324,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_5",
+                    "nameOfLocation": "lh_SF-SF_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_6",
+              "labelIndex": 1325,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_6",
+                    "nameOfLocation": "lh_SF-SF_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_7",
+              "labelIndex": 1326,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_7",
+                    "nameOfLocation": "lh_SF-SF_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_8",
+              "labelIndex": 1327,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_8",
+                    "nameOfLocation": "lh_SF-SF_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SF-SF_9",
+              "labelIndex": 1328,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SF-SF_9",
+                    "nameOfLocation": "lh_SF-SF_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SM-Ins_1",
+              "labelIndex": 1329,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SM-Ins_1",
+                    "nameOfLocation": "lh_SM-Ins_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SM-SM_10",
+              "labelIndex": 1330,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SM-SM_10",
+                    "nameOfLocation": "lh_SM-SM_10",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SM-SM_11",
+              "labelIndex": 1331,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SM-SM_11",
+                    "nameOfLocation": "lh_SM-SM_11",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SM-SM_12",
+              "labelIndex": 1332,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SM-SM_12",
+                    "nameOfLocation": "lh_SM-SM_12",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SM-SM_1",
+              "labelIndex": 1333,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SM-SM_1",
+                    "nameOfLocation": "lh_SM-SM_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SM-SM_2",
+              "labelIndex": 1334,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SM-SM_2",
+                    "nameOfLocation": "lh_SM-SM_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SM-SM_3",
+              "labelIndex": 1335,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SM-SM_3",
+                    "nameOfLocation": "lh_SM-SM_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SM-SM_4",
+              "labelIndex": 1336,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SM-SM_4",
+                    "nameOfLocation": "lh_SM-SM_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SM-SM_5",
+              "labelIndex": 1337,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SM-SM_5",
+                    "nameOfLocation": "lh_SM-SM_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SM-SM_6",
+              "labelIndex": 1338,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SM-SM_6",
+                    "nameOfLocation": "lh_SM-SM_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SM-SM_7",
+              "labelIndex": 1339,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SM-SM_7",
+                    "nameOfLocation": "lh_SM-SM_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SM-SM_8",
+              "labelIndex": 1340,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SM-SM_8",
+                    "nameOfLocation": "lh_SM-SM_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SM-SM_9",
+              "labelIndex": 1341,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SM-SM_9",
+                    "nameOfLocation": "lh_SM-SM_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SM-TT_1",
+              "labelIndex": 1342,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SM-TT_1",
+                    "nameOfLocation": "lh_SM-TT_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  },
+                  "665853e4-266f-471a-881e-ded90db70b72": {
+                    "name": "Transverse temporal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SP-SM_1_1",
+              "labelIndex": 1343,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SP-SM_1_1",
+                    "nameOfLocation": "lh_SP-SM_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  },
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SP-SM_2",
+              "labelIndex": 1344,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SP-SM_2",
+                    "nameOfLocation": "lh_SP-SM_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  },
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SP-SP_1",
+              "labelIndex": 1345,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SP-SP_1",
+                    "nameOfLocation": "lh_SP-SP_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SP-SP_2",
+              "labelIndex": 1346,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SP-SP_2",
+                    "nameOfLocation": "lh_SP-SP_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SP-SP_3",
+              "labelIndex": 1347,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SP-SP_3",
+                    "nameOfLocation": "lh_SP-SP_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SP-SP_4",
+              "labelIndex": 1348,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SP-SP_4",
+                    "nameOfLocation": "lh_SP-SP_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SP-SP_5",
+              "labelIndex": 1349,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SP-SP_5",
+                    "nameOfLocation": "lh_SP-SP_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SP-SP_6",
+              "labelIndex": 1350,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SP-SP_6",
+                    "nameOfLocation": "lh_SP-SP_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_SP-SP_7",
+              "labelIndex": 1351,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_SP-SP_7",
+                    "nameOfLocation": "lh_SP-SP_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_ST-Ins_1",
+              "labelIndex": 1352,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_ST-Ins_1",
+                    "nameOfLocation": "lh_ST-Ins_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_ST-Ins_2",
+              "labelIndex": 1353,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_ST-Ins_2",
+                    "nameOfLocation": "lh_ST-Ins_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_ST-SM_1",
+              "labelIndex": 1354,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_ST-SM_1",
+                    "nameOfLocation": "lh_ST-SM_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  },
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_ST-SM_2",
+              "labelIndex": 1355,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_ST-SM_2",
+                    "nameOfLocation": "lh_ST-SM_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  },
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_ST-ST_1",
+              "labelIndex": 1356,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_ST-ST_1",
+                    "nameOfLocation": "lh_ST-ST_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_ST-ST_2",
+              "labelIndex": 1357,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_ST-ST_2",
+                    "nameOfLocation": "lh_ST-ST_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_ST-ST_3",
+              "labelIndex": 1358,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_ST-ST_3",
+                    "nameOfLocation": "lh_ST-ST_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Tr-Ins_1_1",
+              "labelIndex": 1359,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Tr-Ins_1_1",
+                    "nameOfLocation": "lh_Tr-Ins_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "bd978cc2-8546-4b7b-bd48-f4216943ba8b": {
+                    "name": "Pars triangularis"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Tr-RMF_1",
+              "labelIndex": 1360,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Tr-RMF_1",
+                    "nameOfLocation": "lh_Tr-RMF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "bd978cc2-8546-4b7b-bd48-f4216943ba8b": {
+                    "name": "Pars triangularis"
+                  },
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Tr-RMF_2",
+              "labelIndex": 1361,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Tr-RMF_2",
+                    "nameOfLocation": "lh_Tr-RMF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "bd978cc2-8546-4b7b-bd48-f4216943ba8b": {
+                    "name": "Pars triangularis"
+                  },
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Tr-RMF_3",
+              "labelIndex": 1362,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Tr-RMF_3",
+                    "nameOfLocation": "lh_Tr-RMF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "bd978cc2-8546-4b7b-bd48-f4216943ba8b": {
+                    "name": "Pars triangularis"
+                  },
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Tr-Tr_1",
+              "labelIndex": 1363,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Tr-Tr_1",
+                    "nameOfLocation": "lh_Tr-Tr_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "bd978cc2-8546-4b7b-bd48-f4216943ba8b": {
+                    "name": "Pars triangularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Tr-Tr_2",
+              "labelIndex": 1364,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Tr-Tr_2",
+                    "nameOfLocation": "lh_Tr-Tr_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "bd978cc2-8546-4b7b-bd48-f4216943ba8b": {
+                    "name": "Pars triangularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "lh_Tr-Tr_3",
+              "labelIndex": 1365,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-lh_Tr-Tr_3",
+                    "nameOfLocation": "lh_Tr-Tr_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                      "nameOfLocation": "Left hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "bd978cc2-8546-4b7b-bd48-f4216943ba8b": {
+                    "name": "Pars triangularis"
+                  }
+                }
+              }
+            }
+          ],
+          "fullId": {
+            "sands": {
+              "d2912956684aa38c46a72ca2b357d248866e2242": {
+                "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-left-hemisphere",
+                "nameOfLocation": "Left hemisphere"
+              }
+            }
+          }
+        },
+        {
+          "name": "right hemisphere",
+          "children": [
+            {
+              "name": "rh_CAC-CAC_1",
+              "labelIndex": 2001,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CAC-CAC_1",
+                    "nameOfLocation": "rh_CAC-CAC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CAC-CAC_2",
+              "labelIndex": 2002,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CAC-CAC_2",
+                    "nameOfLocation": "rh_CAC-CAC_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CAC-CAC_3",
+              "labelIndex": 2003,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CAC-CAC_3",
+                    "nameOfLocation": "rh_CAC-CAC_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CAC-PrCu_1",
+              "labelIndex": 2004,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CAC-PrCu_1",
+                    "nameOfLocation": "rh_CAC-PrCu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CAC-PrCu_2",
+              "labelIndex": 2005,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CAC-PrCu_2",
+                    "nameOfLocation": "rh_CAC-PrCu_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CAC-PrCu_3",
+              "labelIndex": 2006,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CAC-PrCu_3",
+                    "nameOfLocation": "rh_CAC-PrCu_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CAC-RAC_1",
+              "labelIndex": 2007,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CAC-RAC_1",
+                    "nameOfLocation": "rh_CAC-RAC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CAC-SF_1",
+              "labelIndex": 2008,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CAC-SF_1",
+                    "nameOfLocation": "rh_CAC-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CAC-SF_2",
+              "labelIndex": 2009,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CAC-SF_2",
+                    "nameOfLocation": "rh_CAC-SF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CAC-SF_3",
+              "labelIndex": 2010,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CAC-SF_3",
+                    "nameOfLocation": "rh_CAC-SF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CAC-SF_4",
+              "labelIndex": 2011,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CAC-SF_4",
+                    "nameOfLocation": "rh_CAC-SF_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "1b74b2d0-c8d5-4a99-9e99-e2be63e92016": {
+                    "name": "Caudal anterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-CMF_10",
+              "labelIndex": 2012,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-CMF_10",
+                    "nameOfLocation": "rh_CMF-CMF_10",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-CMF_1",
+              "labelIndex": 2013,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-CMF_1",
+                    "nameOfLocation": "rh_CMF-CMF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-CMF_2",
+              "labelIndex": 2014,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-CMF_2",
+                    "nameOfLocation": "rh_CMF-CMF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-CMF_3",
+              "labelIndex": 2015,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-CMF_3",
+                    "nameOfLocation": "rh_CMF-CMF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-CMF_4",
+              "labelIndex": 2016,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-CMF_4",
+                    "nameOfLocation": "rh_CMF-CMF_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-CMF_5_1",
+              "labelIndex": 2017,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-CMF_5_1",
+                    "nameOfLocation": "rh_CMF-CMF_5_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-CMF_6",
+              "labelIndex": 2018,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-CMF_6",
+                    "nameOfLocation": "rh_CMF-CMF_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-CMF_7",
+              "labelIndex": 2019,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-CMF_7",
+                    "nameOfLocation": "rh_CMF-CMF_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-CMF_8",
+              "labelIndex": 2020,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-CMF_8",
+                    "nameOfLocation": "rh_CMF-CMF_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-CMF_9",
+              "labelIndex": 2021,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-CMF_9",
+                    "nameOfLocation": "rh_CMF-CMF_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-Op_1",
+              "labelIndex": 2022,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-Op_1",
+                    "nameOfLocation": "rh_CMF-Op_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-PrC_1_1",
+              "labelIndex": 2023,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-PrC_1_1",
+                    "nameOfLocation": "rh_CMF-PrC_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-PrC_2_1",
+              "labelIndex": 2024,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-PrC_2_1",
+                    "nameOfLocation": "rh_CMF-PrC_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-RMF_1",
+              "labelIndex": 2025,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-RMF_1",
+                    "nameOfLocation": "rh_CMF-RMF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-RMF_2",
+              "labelIndex": 2026,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-RMF_2",
+                    "nameOfLocation": "rh_CMF-RMF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-SF_1",
+              "labelIndex": 2027,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-SF_1",
+                    "nameOfLocation": "rh_CMF-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-SF_2_1",
+              "labelIndex": 2028,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-SF_2_1",
+                    "nameOfLocation": "rh_CMF-SF_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-SF_3",
+              "labelIndex": 2029,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-SF_3",
+                    "nameOfLocation": "rh_CMF-SF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_CMF-SF_4",
+              "labelIndex": 2030,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_CMF-SF_4",
+                    "nameOfLocation": "rh_CMF-SF_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "52c6b001-bb5d-4ded-99b7-3ce04e007335": {
+                    "name": "Caudal middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Cu-Cu_1",
+              "labelIndex": 2031,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Cu-Cu_1",
+                    "nameOfLocation": "rh_Cu-Cu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Cu-Cu_2",
+              "labelIndex": 2032,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Cu-Cu_2",
+                    "nameOfLocation": "rh_Cu-Cu_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Cu-Cu_3",
+              "labelIndex": 2033,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Cu-Cu_3",
+                    "nameOfLocation": "rh_Cu-Cu_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Cu-En_1",
+              "labelIndex": 2034,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Cu-En_1",
+                    "nameOfLocation": "rh_Cu-En_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Cu-LO_1",
+              "labelIndex": 2035,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Cu-LO_1",
+                    "nameOfLocation": "rh_Cu-LO_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Cu-LO_2",
+              "labelIndex": 2036,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Cu-LO_2",
+                    "nameOfLocation": "rh_Cu-LO_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Cu-Li_1",
+              "labelIndex": 2037,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Cu-Li_1",
+                    "nameOfLocation": "rh_Cu-Li_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Cu-Li_2",
+              "labelIndex": 2038,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Cu-Li_2",
+                    "nameOfLocation": "rh_Cu-Li_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Cu-Li_3",
+              "labelIndex": 2039,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Cu-Li_3",
+                    "nameOfLocation": "rh_Cu-Li_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Cu-Li_4",
+              "labelIndex": 2040,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Cu-Li_4",
+                    "nameOfLocation": "rh_Cu-Li_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Cu-PrCu_1",
+              "labelIndex": 2041,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Cu-PrCu_1",
+                    "nameOfLocation": "rh_Cu-PrCu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Cu-PrCu_2",
+              "labelIndex": 2042,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Cu-PrCu_2",
+                    "nameOfLocation": "rh_Cu-PrCu_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Cu-PrCu_3",
+              "labelIndex": 2043,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Cu-PrCu_3",
+                    "nameOfLocation": "rh_Cu-PrCu_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "678a8085-9472-4bf3-bce3-a3b62215663d": {
+                    "name": "Cuneus cortex"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_En-En_1",
+              "labelIndex": 2044,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_En-En_1",
+                    "nameOfLocation": "rh_En-En_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_En-IC_1",
+              "labelIndex": 2045,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_En-IC_1",
+                    "nameOfLocation": "rh_En-IC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  },
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_En-IT_1",
+              "labelIndex": 2046,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_En-IT_1",
+                    "nameOfLocation": "rh_En-IT_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  },
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_En-MOF_1_1",
+              "labelIndex": 2047,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_En-MOF_1_1",
+                    "nameOfLocation": "rh_En-MOF_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  },
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_En-PH_1",
+              "labelIndex": 2048,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_En-PH_1",
+                    "nameOfLocation": "rh_En-PH_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_En-PH_2",
+              "labelIndex": 2049,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_En-PH_2",
+                    "nameOfLocation": "rh_En-PH_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_En-PH_3",
+              "labelIndex": 2050,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_En-PH_3",
+                    "nameOfLocation": "rh_En-PH_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_En-PH_4",
+              "labelIndex": 2051,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_En-PH_4",
+                    "nameOfLocation": "rh_En-PH_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_En-PH_5",
+              "labelIndex": 2052,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_En-PH_5",
+                    "nameOfLocation": "rh_En-PH_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "989802cd-d2ce-48d7-bb04-bf9d7a609fd1": {
+                    "name": "Entorhinal cortex"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-Fu_10",
+              "labelIndex": 2053,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-Fu_10",
+                    "nameOfLocation": "rh_Fu-Fu_10",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-Fu_1",
+              "labelIndex": 2054,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-Fu_1",
+                    "nameOfLocation": "rh_Fu-Fu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-Fu_2",
+              "labelIndex": 2055,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-Fu_2",
+                    "nameOfLocation": "rh_Fu-Fu_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-Fu_3",
+              "labelIndex": 2056,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-Fu_3",
+                    "nameOfLocation": "rh_Fu-Fu_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-Fu_4",
+              "labelIndex": 2057,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-Fu_4",
+                    "nameOfLocation": "rh_Fu-Fu_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-Fu_5",
+              "labelIndex": 2058,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-Fu_5",
+                    "nameOfLocation": "rh_Fu-Fu_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-Fu_6",
+              "labelIndex": 2059,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-Fu_6",
+                    "nameOfLocation": "rh_Fu-Fu_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-Fu_7",
+              "labelIndex": 2060,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-Fu_7",
+                    "nameOfLocation": "rh_Fu-Fu_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-Fu_8",
+              "labelIndex": 2061,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-Fu_8",
+                    "nameOfLocation": "rh_Fu-Fu_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-Fu_9",
+              "labelIndex": 2062,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-Fu_9",
+                    "nameOfLocation": "rh_Fu-Fu_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-IT_1",
+              "labelIndex": 2063,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-IT_1",
+                    "nameOfLocation": "rh_Fu-IT_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  },
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-IT_2",
+              "labelIndex": 2064,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-IT_2",
+                    "nameOfLocation": "rh_Fu-IT_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  },
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-IT_3",
+              "labelIndex": 2065,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-IT_3",
+                    "nameOfLocation": "rh_Fu-IT_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  },
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-IT_4",
+              "labelIndex": 2066,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-IT_4",
+                    "nameOfLocation": "rh_Fu-IT_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  },
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-LO_1",
+              "labelIndex": 2067,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-LO_1",
+                    "nameOfLocation": "rh_Fu-LO_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  },
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-LO_2",
+              "labelIndex": 2068,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-LO_2",
+                    "nameOfLocation": "rh_Fu-LO_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  },
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Fu-PH_1",
+              "labelIndex": 2069,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Fu-PH_1",
+                    "nameOfLocation": "rh_Fu-PH_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a9d22097-0f4d-4bd4-9ce1-3f317d6f70c6": {
+                    "name": "Fusiform gyrus"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IC-MOF_1",
+              "labelIndex": 2070,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IC-MOF_1",
+                    "nameOfLocation": "rh_IC-MOF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  },
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IC-PH_1",
+              "labelIndex": 2071,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IC-PH_1",
+                    "nameOfLocation": "rh_IC-PH_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IC-PH_2",
+              "labelIndex": 2072,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IC-PH_2",
+                    "nameOfLocation": "rh_IC-PH_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IC-PrCu_1_1",
+              "labelIndex": 2073,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IC-PrCu_1_1",
+                    "nameOfLocation": "rh_IC-PrCu_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IC-PrCu_2",
+              "labelIndex": 2074,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IC-PrCu_2",
+                    "nameOfLocation": "rh_IC-PrCu_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IC-PrCu_3",
+              "labelIndex": 2075,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IC-PrCu_3",
+                    "nameOfLocation": "rh_IC-PrCu_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-IP_1",
+              "labelIndex": 2076,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-IP_1",
+                    "nameOfLocation": "rh_IP-IP_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-IP_2",
+              "labelIndex": 2077,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-IP_2",
+                    "nameOfLocation": "rh_IP-IP_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-IP_3",
+              "labelIndex": 2078,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-IP_3",
+                    "nameOfLocation": "rh_IP-IP_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-IP_4",
+              "labelIndex": 2079,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-IP_4",
+                    "nameOfLocation": "rh_IP-IP_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-IP_5",
+              "labelIndex": 2080,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-IP_5",
+                    "nameOfLocation": "rh_IP-IP_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-IP_6",
+              "labelIndex": 2081,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-IP_6",
+                    "nameOfLocation": "rh_IP-IP_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-IP_7",
+              "labelIndex": 2082,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-IP_7",
+                    "nameOfLocation": "rh_IP-IP_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-IP_8",
+              "labelIndex": 2083,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-IP_8",
+                    "nameOfLocation": "rh_IP-IP_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-IT_1",
+              "labelIndex": 2084,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-IT_1",
+                    "nameOfLocation": "rh_IP-IT_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-IT_2",
+              "labelIndex": 2085,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-IT_2",
+                    "nameOfLocation": "rh_IP-IT_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-IT_3",
+              "labelIndex": 2086,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-IT_3",
+                    "nameOfLocation": "rh_IP-IT_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-MT_1",
+              "labelIndex": 2087,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-MT_1",
+                    "nameOfLocation": "rh_IP-MT_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-MT_2",
+              "labelIndex": 2088,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-MT_2",
+                    "nameOfLocation": "rh_IP-MT_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-MT_3",
+              "labelIndex": 2089,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-MT_3",
+                    "nameOfLocation": "rh_IP-MT_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-MT_4",
+              "labelIndex": 2090,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-MT_4",
+                    "nameOfLocation": "rh_IP-MT_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-SM_1",
+              "labelIndex": 2091,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-SM_1",
+                    "nameOfLocation": "rh_IP-SM_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-SP_1",
+              "labelIndex": 2092,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-SP_1",
+                    "nameOfLocation": "rh_IP-SP_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-SP_2",
+              "labelIndex": 2093,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-SP_2",
+                    "nameOfLocation": "rh_IP-SP_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-SP_3_1",
+              "labelIndex": 2094,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-SP_3_1",
+                    "nameOfLocation": "rh_IP-SP_3_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-SP_4_1",
+              "labelIndex": 2095,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-SP_4_1",
+                    "nameOfLocation": "rh_IP-SP_4_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IP-SP_5",
+              "labelIndex": 2096,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IP-SP_5",
+                    "nameOfLocation": "rh_IP-SP_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "0c4a7fa7-4892-4f38-8e8e-ded35bc479c1": {
+                    "name": "Inferior parietal cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IT-IC_1",
+              "labelIndex": 2097,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IT-IC_1",
+                    "nameOfLocation": "rh_IT-IC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "9593fabf-b388-4408-8662-debc1954ec9c": {
+                    "name": "Isthmus division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IT-IT_1",
+              "labelIndex": 2098,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IT-IT_1",
+                    "nameOfLocation": "rh_IT-IT_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IT-IT_2",
+              "labelIndex": 2099,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IT-IT_2",
+                    "nameOfLocation": "rh_IT-IT_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IT-IT_3",
+              "labelIndex": 2100,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IT-IT_3",
+                    "nameOfLocation": "rh_IT-IT_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IT-IT_4",
+              "labelIndex": 2101,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IT-IT_4",
+                    "nameOfLocation": "rh_IT-IT_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IT-IT_5",
+              "labelIndex": 2102,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IT-IT_5",
+                    "nameOfLocation": "rh_IT-IT_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IT-IT_6",
+              "labelIndex": 2103,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IT-IT_6",
+                    "nameOfLocation": "rh_IT-IT_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IT-LOF_1",
+              "labelIndex": 2104,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IT-LOF_1",
+                    "nameOfLocation": "rh_IT-LOF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IT-LO_1_1",
+              "labelIndex": 2105,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IT-LO_1_1",
+                    "nameOfLocation": "rh_IT-LO_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IT-MT_1",
+              "labelIndex": 2106,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IT-MT_1",
+                    "nameOfLocation": "rh_IT-MT_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IT-MT_2",
+              "labelIndex": 2107,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IT-MT_2",
+                    "nameOfLocation": "rh_IT-MT_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_IT-PH_1",
+              "labelIndex": 2108,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_IT-PH_1",
+                    "nameOfLocation": "rh_IT-PH_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "f28ffa7d-248a-4e55-9e90-31b7b027726d": {
+                    "name": "Inferior temporal gyrus"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Ins-Ins_1_1",
+              "labelIndex": 2109,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Ins-Ins_1_1",
+                    "nameOfLocation": "rh_Ins-Ins_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Ins-Ins_2",
+              "labelIndex": 2110,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Ins-Ins_2",
+                    "nameOfLocation": "rh_Ins-Ins_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Ins-Ins_3",
+              "labelIndex": 2111,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Ins-Ins_3",
+                    "nameOfLocation": "rh_Ins-Ins_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Ins-Ins_4_1",
+              "labelIndex": 2112,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Ins-Ins_4_1",
+                    "nameOfLocation": "rh_Ins-Ins_4_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-LO_10",
+              "labelIndex": 2113,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-LO_10",
+                    "nameOfLocation": "rh_LO-LO_10",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-LO_11",
+              "labelIndex": 2114,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-LO_11",
+                    "nameOfLocation": "rh_LO-LO_11",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-LO_12",
+              "labelIndex": 2115,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-LO_12",
+                    "nameOfLocation": "rh_LO-LO_12",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-LO_13",
+              "labelIndex": 2116,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-LO_13",
+                    "nameOfLocation": "rh_LO-LO_13",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-LO_14_1",
+              "labelIndex": 2117,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-LO_14_1",
+                    "nameOfLocation": "rh_LO-LO_14_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-LO_1",
+              "labelIndex": 2118,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-LO_1",
+                    "nameOfLocation": "rh_LO-LO_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-LO_2",
+              "labelIndex": 2119,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-LO_2",
+                    "nameOfLocation": "rh_LO-LO_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-LO_3",
+              "labelIndex": 2120,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-LO_3",
+                    "nameOfLocation": "rh_LO-LO_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-LO_4",
+              "labelIndex": 2121,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-LO_4",
+                    "nameOfLocation": "rh_LO-LO_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-LO_5",
+              "labelIndex": 2122,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-LO_5",
+                    "nameOfLocation": "rh_LO-LO_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-LO_6",
+              "labelIndex": 2123,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-LO_6",
+                    "nameOfLocation": "rh_LO-LO_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-LO_7",
+              "labelIndex": 2124,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-LO_7",
+                    "nameOfLocation": "rh_LO-LO_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-LO_8",
+              "labelIndex": 2125,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-LO_8",
+                    "nameOfLocation": "rh_LO-LO_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-LO_9",
+              "labelIndex": 2126,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-LO_9",
+                    "nameOfLocation": "rh_LO-LO_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-Li_1",
+              "labelIndex": 2127,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-Li_1",
+                    "nameOfLocation": "rh_LO-Li_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-Li_2",
+              "labelIndex": 2128,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-Li_2",
+                    "nameOfLocation": "rh_LO-Li_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  },
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-SP_1",
+              "labelIndex": 2129,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-SP_1",
+                    "nameOfLocation": "rh_LO-SP_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LO-SP_2",
+              "labelIndex": 2130,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LO-SP_2",
+                    "nameOfLocation": "rh_LO-SP_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6e2555db-1f47-4476-913b-701e38328441": {
+                    "name": "Lateral occipital cortex"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-Ins_1",
+              "labelIndex": 2131,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-Ins_1",
+                    "nameOfLocation": "rh_LOF-Ins_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-Ins_2",
+              "labelIndex": 2132,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-Ins_2",
+                    "nameOfLocation": "rh_LOF-Ins_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-LOF_10",
+              "labelIndex": 2133,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-LOF_10",
+                    "nameOfLocation": "rh_LOF-LOF_10",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-LOF_1_1",
+              "labelIndex": 2134,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-LOF_1_1",
+                    "nameOfLocation": "rh_LOF-LOF_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-LOF_2",
+              "labelIndex": 2135,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-LOF_2",
+                    "nameOfLocation": "rh_LOF-LOF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-LOF_3",
+              "labelIndex": 2136,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-LOF_3",
+                    "nameOfLocation": "rh_LOF-LOF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-LOF_4",
+              "labelIndex": 2137,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-LOF_4",
+                    "nameOfLocation": "rh_LOF-LOF_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-LOF_5",
+              "labelIndex": 2138,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-LOF_5",
+                    "nameOfLocation": "rh_LOF-LOF_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-LOF_6",
+              "labelIndex": 2139,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-LOF_6",
+                    "nameOfLocation": "rh_LOF-LOF_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-LOF_7",
+              "labelIndex": 2140,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-LOF_7",
+                    "nameOfLocation": "rh_LOF-LOF_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-LOF_9",
+              "labelIndex": 2141,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-LOF_9",
+                    "nameOfLocation": "rh_LOF-LOF_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-MOF_1",
+              "labelIndex": 2142,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-MOF_1",
+                    "nameOfLocation": "rh_LOF-MOF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-MOF_2",
+              "labelIndex": 2143,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-MOF_2",
+                    "nameOfLocation": "rh_LOF-MOF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-MOF_3",
+              "labelIndex": 2144,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-MOF_3",
+                    "nameOfLocation": "rh_LOF-MOF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-MOF_4",
+              "labelIndex": 2145,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-MOF_4",
+                    "nameOfLocation": "rh_LOF-MOF_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-Or_1",
+              "labelIndex": 2146,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-Or_1",
+                    "nameOfLocation": "rh_LOF-Or_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "a0f4cde7-83ff-4e78-b009-851b468741ba": {
+                    "name": "Pars orbitalis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-Or_2",
+              "labelIndex": 2147,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-Or_2",
+                    "nameOfLocation": "rh_LOF-Or_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "a0f4cde7-83ff-4e78-b009-851b468741ba": {
+                    "name": "Pars orbitalis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-Or_3",
+              "labelIndex": 2148,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-Or_3",
+                    "nameOfLocation": "rh_LOF-Or_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "a0f4cde7-83ff-4e78-b009-851b468741ba": {
+                    "name": "Pars orbitalis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-ST_1_1",
+              "labelIndex": 2149,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-ST_1_1",
+                    "nameOfLocation": "rh_LOF-ST_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-ST_2_1",
+              "labelIndex": 2150,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-ST_2_1",
+                    "nameOfLocation": "rh_LOF-ST_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_LOF-ST_3",
+              "labelIndex": 2151,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_LOF-ST_3",
+                    "nameOfLocation": "rh_LOF-ST_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "19440397-26e5-4e39-a747-29d9bc3737f7": {
+                    "name": "Lateral orbitofrontal division"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Li-Li_1_1",
+              "labelIndex": 2152,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Li-Li_1_1",
+                    "nameOfLocation": "rh_Li-Li_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Li-Li_2",
+              "labelIndex": 2153,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Li-Li_2",
+                    "nameOfLocation": "rh_Li-Li_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Li-PH_1",
+              "labelIndex": 2154,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Li-PH_1",
+                    "nameOfLocation": "rh_Li-PH_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Li-PH_2",
+              "labelIndex": 2155,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Li-PH_2",
+                    "nameOfLocation": "rh_Li-PH_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Li-PeCa_1",
+              "labelIndex": 2156,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Li-PeCa_1",
+                    "nameOfLocation": "rh_Li-PeCa_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "ab734330-304d-4604-9401-db8377825263": {
+                    "name": "Lingual gyrus"
+                  },
+                  "c80aa5fe-de2e-4aab-aa6f-34eb625e6c17": {
+                    "name": "Pericalcarine cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MOF-MOF_1",
+              "labelIndex": 2157,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MOF-MOF_1",
+                    "nameOfLocation": "rh_MOF-MOF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MOF-MOF_2",
+              "labelIndex": 2158,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MOF-MOF_2",
+                    "nameOfLocation": "rh_MOF-MOF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MOF-PH_1",
+              "labelIndex": 2159,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MOF-PH_1",
+                    "nameOfLocation": "rh_MOF-PH_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  },
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MOF-RAC-SF_1",
+              "labelIndex": 2160,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MOF-RAC-SF_1",
+                    "nameOfLocation": "rh_MOF-RAC-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  },
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MOF-RAC_1",
+              "labelIndex": 2161,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MOF-RAC_1",
+                    "nameOfLocation": "rh_MOF-RAC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  },
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MOF-ST_1",
+              "labelIndex": 2162,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MOF-ST_1",
+                    "nameOfLocation": "rh_MOF-ST_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MOF-ST_2",
+              "labelIndex": 2163,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MOF-ST_2",
+                    "nameOfLocation": "rh_MOF-ST_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MOF-ST_3",
+              "labelIndex": 2164,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MOF-ST_3",
+                    "nameOfLocation": "rh_MOF-ST_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6c52c49a-7495-4126-8a72-dd057e4f27f0": {
+                    "name": "Middle orbitofrontal division"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MT-MT_10",
+              "labelIndex": 2165,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MT-MT_10",
+                    "nameOfLocation": "rh_MT-MT_10",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MT-MT_1",
+              "labelIndex": 2166,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MT-MT_1",
+                    "nameOfLocation": "rh_MT-MT_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MT-MT_2_1",
+              "labelIndex": 2167,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MT-MT_2_1",
+                    "nameOfLocation": "rh_MT-MT_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MT-MT_3",
+              "labelIndex": 2168,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MT-MT_3",
+                    "nameOfLocation": "rh_MT-MT_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MT-MT_4",
+              "labelIndex": 2169,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MT-MT_4",
+                    "nameOfLocation": "rh_MT-MT_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MT-MT_5",
+              "labelIndex": 2170,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MT-MT_5",
+                    "nameOfLocation": "rh_MT-MT_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MT-MT_6",
+              "labelIndex": 2171,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MT-MT_6",
+                    "nameOfLocation": "rh_MT-MT_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MT-MT_7",
+              "labelIndex": 2172,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MT-MT_7",
+                    "nameOfLocation": "rh_MT-MT_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MT-MT_8",
+              "labelIndex": 2173,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MT-MT_8",
+                    "nameOfLocation": "rh_MT-MT_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MT-MT_9",
+              "labelIndex": 2174,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MT-MT_9",
+                    "nameOfLocation": "rh_MT-MT_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MT-ST_1",
+              "labelIndex": 2175,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MT-ST_1",
+                    "nameOfLocation": "rh_MT-ST_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MT-ST_2",
+              "labelIndex": 2176,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MT-ST_2",
+                    "nameOfLocation": "rh_MT-ST_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MT-ST_3",
+              "labelIndex": 2177,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MT-ST_3",
+                    "nameOfLocation": "rh_MT-ST_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MT-ST_4",
+              "labelIndex": 2178,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MT-ST_4",
+                    "nameOfLocation": "rh_MT-ST_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_MT-ST_5",
+              "labelIndex": 2179,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_MT-ST_5",
+                    "nameOfLocation": "rh_MT-ST_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6720d424-57f3-4c86-ad2f-04a89c16b8c3": {
+                    "name": "Middle temporal gyrus"
+                  },
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Op-Op_1_1",
+              "labelIndex": 2180,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Op-Op_1_1",
+                    "nameOfLocation": "rh_Op-Op_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Op-Op_2_1",
+              "labelIndex": 2181,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Op-Op_2_1",
+                    "nameOfLocation": "rh_Op-Op_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Op-Op_3",
+              "labelIndex": 2182,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Op-Op_3",
+                    "nameOfLocation": "rh_Op-Op_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Op-Op_4",
+              "labelIndex": 2183,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Op-Op_4",
+                    "nameOfLocation": "rh_Op-Op_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Op-PrC_1_1",
+              "labelIndex": 2184,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Op-PrC_1_1",
+                    "nameOfLocation": "rh_Op-PrC_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Op-PrC_2",
+              "labelIndex": 2185,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Op-PrC_2",
+                    "nameOfLocation": "rh_Op-PrC_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Op-PrC_3",
+              "labelIndex": 2186,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Op-PrC_3",
+                    "nameOfLocation": "rh_Op-PrC_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Op-SF_1",
+              "labelIndex": 2187,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Op-SF_1",
+                    "nameOfLocation": "rh_Op-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7614bd90-a4e4-42ce-aad8-ef1df4e06efd": {
+                    "name": "Pars opercularis"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Or-Ins_1_1",
+              "labelIndex": 2188,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Or-Ins_1_1",
+                    "nameOfLocation": "rh_Or-Ins_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "a0f4cde7-83ff-4e78-b009-851b468741ba": {
+                    "name": "Pars orbitalis"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PC-PoC_1",
+              "labelIndex": 2189,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PC-PoC_1",
+                    "nameOfLocation": "rh_PC-PoC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  },
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PC-PoCi_1",
+              "labelIndex": 2190,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PC-PoCi_1",
+                    "nameOfLocation": "rh_PC-PoCi_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  },
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PC-PoCi_2",
+              "labelIndex": 2191,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PC-PoCi_2",
+                    "nameOfLocation": "rh_PC-PoCi_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  },
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PC-PoCi_3",
+              "labelIndex": 2192,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PC-PoCi_3",
+                    "nameOfLocation": "rh_PC-PoCi_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  },
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PC-PrCu_1",
+              "labelIndex": 2193,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PC-PrCu_1",
+                    "nameOfLocation": "rh_PC-PrCu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PC-PrCu_2",
+              "labelIndex": 2194,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PC-PrCu_2",
+                    "nameOfLocation": "rh_PC-PrCu_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "3f48926e-cc5e-419e-8473-8da38d3bb241": {
+                    "name": "Paracentral lobule"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PH-PrCu_1",
+              "labelIndex": 2195,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PH-PrCu_1",
+                    "nameOfLocation": "rh_PH-PrCu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "b6b10703-b802-49b2-bb0d-4c35c814ccf2": {
+                    "name": "Parahippocampal gyrus"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-PoC_1",
+              "labelIndex": 2196,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-PoC_1",
+                    "nameOfLocation": "rh_PoC-PoC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-PoC_2_1",
+              "labelIndex": 2197,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-PoC_2_1",
+                    "nameOfLocation": "rh_PoC-PoC_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-PoC_3",
+              "labelIndex": 2198,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-PoC_3",
+                    "nameOfLocation": "rh_PoC-PoC_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-PoC_4",
+              "labelIndex": 2199,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-PoC_4",
+                    "nameOfLocation": "rh_PoC-PoC_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-PoC_5",
+              "labelIndex": 2200,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-PoC_5",
+                    "nameOfLocation": "rh_PoC-PoC_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-PoC_6",
+              "labelIndex": 2201,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-PoC_6",
+                    "nameOfLocation": "rh_PoC-PoC_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-PoC_7",
+              "labelIndex": 2202,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-PoC_7",
+                    "nameOfLocation": "rh_PoC-PoC_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-PoC_8",
+              "labelIndex": 2203,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-PoC_8",
+                    "nameOfLocation": "rh_PoC-PoC_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-PoC_9",
+              "labelIndex": 2204,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-PoC_9",
+                    "nameOfLocation": "rh_PoC-PoC_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-PrC_1",
+              "labelIndex": 2205,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-PrC_1",
+                    "nameOfLocation": "rh_PoC-PrC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-PrC_2",
+              "labelIndex": 2206,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-PrC_2",
+                    "nameOfLocation": "rh_PoC-PrC_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-PrC_3_1",
+              "labelIndex": 2207,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-PrC_3_1",
+                    "nameOfLocation": "rh_PoC-PrC_3_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-PrC_4_1",
+              "labelIndex": 2208,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-PrC_4_1",
+                    "nameOfLocation": "rh_PoC-PrC_4_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-SM_1",
+              "labelIndex": 2209,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-SM_1",
+                    "nameOfLocation": "rh_PoC-SM_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-SP_1_1",
+              "labelIndex": 2210,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-SP_1_1",
+                    "nameOfLocation": "rh_PoC-SP_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-SP_2",
+              "labelIndex": 2211,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-SP_2",
+                    "nameOfLocation": "rh_PoC-SP_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-SP_3",
+              "labelIndex": 2212,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-SP_3",
+                    "nameOfLocation": "rh_PoC-SP_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoC-SP_4",
+              "labelIndex": 2213,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoC-SP_4",
+                    "nameOfLocation": "rh_PoC-SP_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "c91eac96-227e-4a9a-b9bc-2a00f004cc87": {
+                    "name": "Postcentral gyrus"
+                  },
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoCi-PrCu_1",
+              "labelIndex": 2214,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoCi-PrCu_1",
+                    "nameOfLocation": "rh_PoCi-PrCu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoCi-PrCu_2",
+              "labelIndex": 2215,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoCi-PrCu_2",
+                    "nameOfLocation": "rh_PoCi-PrCu_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  },
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PoCi-RAC_1",
+              "labelIndex": 2216,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PoCi-RAC_1",
+                    "nameOfLocation": "rh_PoCi-RAC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "d9a8560f-9b80-4870-a99a-fca38f8b3d89": {
+                    "name": "Posterior cingulate division"
+                  },
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrC-Ins_1",
+              "labelIndex": 2217,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrC-Ins_1",
+                    "nameOfLocation": "rh_PrC-Ins_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrC-PrC_1",
+              "labelIndex": 2218,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrC-PrC_1",
+                    "nameOfLocation": "rh_PrC-PrC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrC-PrC_2",
+              "labelIndex": 2219,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrC-PrC_2",
+                    "nameOfLocation": "rh_PrC-PrC_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrC-PrC_3_1",
+              "labelIndex": 2220,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrC-PrC_3_1",
+                    "nameOfLocation": "rh_PrC-PrC_3_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrC-PrC_4",
+              "labelIndex": 2221,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrC-PrC_4",
+                    "nameOfLocation": "rh_PrC-PrC_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrC-PrC_5",
+              "labelIndex": 2222,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrC-PrC_5",
+                    "nameOfLocation": "rh_PrC-PrC_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrC-SF_1",
+              "labelIndex": 2223,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrC-SF_1",
+                    "nameOfLocation": "rh_PrC-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrC-SF_2_1",
+              "labelIndex": 2224,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrC-SF_2_1",
+                    "nameOfLocation": "rh_PrC-SF_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrC-SF_3",
+              "labelIndex": 2225,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrC-SF_3",
+                    "nameOfLocation": "rh_PrC-SF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "6d2b10fd-fc51-4624-af97-a56e76c14712": {
+                    "name": "Precentral gyrus"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrCu-PrCu_1",
+              "labelIndex": 2226,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrCu-PrCu_1",
+                    "nameOfLocation": "rh_PrCu-PrCu_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrCu-PrCu_2_1",
+              "labelIndex": 2227,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrCu-PrCu_2_1",
+                    "nameOfLocation": "rh_PrCu-PrCu_2_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrCu-PrCu_3",
+              "labelIndex": 2228,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrCu-PrCu_3",
+                    "nameOfLocation": "rh_PrCu-PrCu_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrCu-PrCu_4",
+              "labelIndex": 2229,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrCu-PrCu_4",
+                    "nameOfLocation": "rh_PrCu-PrCu_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrCu-PrCu_5",
+              "labelIndex": 2230,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrCu-PrCu_5",
+                    "nameOfLocation": "rh_PrCu-PrCu_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrCu-PrCu_6",
+              "labelIndex": 2231,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrCu-PrCu_6",
+                    "nameOfLocation": "rh_PrCu-PrCu_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_PrCu-SF_1",
+              "labelIndex": 2232,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_PrCu-SF_1",
+                    "nameOfLocation": "rh_PrCu-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "4fa33640-3ef7-4f7d-a69a-553cade7a233": {
+                    "name": "Precuneus cortex"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RAC-RAC_1",
+              "labelIndex": 2233,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RAC-RAC_1",
+                    "nameOfLocation": "rh_RAC-RAC_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RAC-SF_1",
+              "labelIndex": 2234,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RAC-SF_1",
+                    "nameOfLocation": "rh_RAC-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RAC-SF_2",
+              "labelIndex": 2235,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RAC-SF_2",
+                    "nameOfLocation": "rh_RAC-SF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fb573be5-64b8-4990-8d7e-9c25455d98dd": {
+                    "name": "Rostral anterior cingulate division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_10",
+              "labelIndex": 2236,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_10",
+                    "nameOfLocation": "rh_RMF-RMF_10",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_11",
+              "labelIndex": 2237,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_11",
+                    "nameOfLocation": "rh_RMF-RMF_11",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_12",
+              "labelIndex": 2238,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_12",
+                    "nameOfLocation": "rh_RMF-RMF_12",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_13_1",
+              "labelIndex": 2239,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_13_1",
+                    "nameOfLocation": "rh_RMF-RMF_13_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_14",
+              "labelIndex": 2240,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_14",
+                    "nameOfLocation": "rh_RMF-RMF_14",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_15",
+              "labelIndex": 2241,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_15",
+                    "nameOfLocation": "rh_RMF-RMF_15",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_16",
+              "labelIndex": 2242,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_16",
+                    "nameOfLocation": "rh_RMF-RMF_16",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_17",
+              "labelIndex": 2243,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_17",
+                    "nameOfLocation": "rh_RMF-RMF_17",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_18",
+              "labelIndex": 2244,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_18",
+                    "nameOfLocation": "rh_RMF-RMF_18",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_19",
+              "labelIndex": 2245,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_19",
+                    "nameOfLocation": "rh_RMF-RMF_19",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_1",
+              "labelIndex": 2246,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_1",
+                    "nameOfLocation": "rh_RMF-RMF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_2",
+              "labelIndex": 2247,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_2",
+                    "nameOfLocation": "rh_RMF-RMF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_3",
+              "labelIndex": 2248,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_3",
+                    "nameOfLocation": "rh_RMF-RMF_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_4",
+              "labelIndex": 2249,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_4",
+                    "nameOfLocation": "rh_RMF-RMF_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_5",
+              "labelIndex": 2250,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_5",
+                    "nameOfLocation": "rh_RMF-RMF_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_6",
+              "labelIndex": 2251,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_6",
+                    "nameOfLocation": "rh_RMF-RMF_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_7",
+              "labelIndex": 2252,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_7",
+                    "nameOfLocation": "rh_RMF-RMF_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_8",
+              "labelIndex": 2253,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_8",
+                    "nameOfLocation": "rh_RMF-RMF_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-RMF_9",
+              "labelIndex": 2254,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-RMF_9",
+                    "nameOfLocation": "rh_RMF-RMF_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-SF_1",
+              "labelIndex": 2255,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-SF_1",
+                    "nameOfLocation": "rh_RMF-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_RMF-SF_2",
+              "labelIndex": 2256,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_RMF-SF_2",
+                    "nameOfLocation": "rh_RMF-SF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "7d41890a-ce5b-4a23-b9aa-f9d4f24f69f4": {
+                    "name": "Rostral middle frontal division"
+                  },
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_10",
+              "labelIndex": 2257,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_10",
+                    "nameOfLocation": "rh_SF-SF_10",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_11",
+              "labelIndex": 2258,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_11",
+                    "nameOfLocation": "rh_SF-SF_11",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_12",
+              "labelIndex": 2259,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_12",
+                    "nameOfLocation": "rh_SF-SF_12",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_13",
+              "labelIndex": 2260,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_13",
+                    "nameOfLocation": "rh_SF-SF_13",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_14",
+              "labelIndex": 2261,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_14",
+                    "nameOfLocation": "rh_SF-SF_14",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_15",
+              "labelIndex": 2262,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_15",
+                    "nameOfLocation": "rh_SF-SF_15",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_16",
+              "labelIndex": 2263,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_16",
+                    "nameOfLocation": "rh_SF-SF_16",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_17",
+              "labelIndex": 2264,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_17",
+                    "nameOfLocation": "rh_SF-SF_17",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_18",
+              "labelIndex": 2265,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_18",
+                    "nameOfLocation": "rh_SF-SF_18",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_19",
+              "labelIndex": 2266,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_19",
+                    "nameOfLocation": "rh_SF-SF_19",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_1",
+              "labelIndex": 2267,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_1",
+                    "nameOfLocation": "rh_SF-SF_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_20",
+              "labelIndex": 2268,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_20",
+                    "nameOfLocation": "rh_SF-SF_20",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_21",
+              "labelIndex": 2269,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_21",
+                    "nameOfLocation": "rh_SF-SF_21",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_22",
+              "labelIndex": 2270,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_22",
+                    "nameOfLocation": "rh_SF-SF_22",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_23",
+              "labelIndex": 2271,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_23",
+                    "nameOfLocation": "rh_SF-SF_23",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_2",
+              "labelIndex": 2272,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_2",
+                    "nameOfLocation": "rh_SF-SF_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_37",
+              "labelIndex": 2273,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_37",
+                    "nameOfLocation": "rh_SF-SF_37",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_3_1",
+              "labelIndex": 2274,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_3_1",
+                    "nameOfLocation": "rh_SF-SF_3_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_4",
+              "labelIndex": 2275,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_4",
+                    "nameOfLocation": "rh_SF-SF_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_5",
+              "labelIndex": 2276,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_5",
+                    "nameOfLocation": "rh_SF-SF_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_6",
+              "labelIndex": 2277,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_6",
+                    "nameOfLocation": "rh_SF-SF_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_7",
+              "labelIndex": 2278,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_7",
+                    "nameOfLocation": "rh_SF-SF_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_8",
+              "labelIndex": 2279,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_8",
+                    "nameOfLocation": "rh_SF-SF_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SF-SF_9",
+              "labelIndex": 2280,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SF-SF_9",
+                    "nameOfLocation": "rh_SF-SF_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "9ff67049-fdcd-4474-a6cb-c67a4d8323d7": {
+                    "name": "Superior frontal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SM-Ins_1",
+              "labelIndex": 2281,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SM-Ins_1",
+                    "nameOfLocation": "rh_SM-Ins_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SM-Ins_2",
+              "labelIndex": 2282,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SM-Ins_2",
+                    "nameOfLocation": "rh_SM-Ins_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SM-SM_1",
+              "labelIndex": 2283,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SM-SM_1",
+                    "nameOfLocation": "rh_SM-SM_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SM-SM_2",
+              "labelIndex": 2284,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SM-SM_2",
+                    "nameOfLocation": "rh_SM-SM_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SM-SM_3",
+              "labelIndex": 2285,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SM-SM_3",
+                    "nameOfLocation": "rh_SM-SM_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SM-SM_4",
+              "labelIndex": 2286,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SM-SM_4",
+                    "nameOfLocation": "rh_SM-SM_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SM-SM_5",
+              "labelIndex": 2287,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SM-SM_5",
+                    "nameOfLocation": "rh_SM-SM_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SM-SM_6",
+              "labelIndex": 2288,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SM-SM_6",
+                    "nameOfLocation": "rh_SM-SM_6",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SM-SM_7",
+              "labelIndex": 2289,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SM-SM_7",
+                    "nameOfLocation": "rh_SM-SM_7",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SM-SM_8",
+              "labelIndex": 2290,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SM-SM_8",
+                    "nameOfLocation": "rh_SM-SM_8",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SM-SM_9",
+              "labelIndex": 2291,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SM-SM_9",
+                    "nameOfLocation": "rh_SM-SM_9",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SP-SM_1_1",
+              "labelIndex": 2292,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SP-SM_1_1",
+                    "nameOfLocation": "rh_SP-SM_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  },
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SP-SM_2",
+              "labelIndex": 2293,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SP-SM_2",
+                    "nameOfLocation": "rh_SP-SM_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  },
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SP-SP_1",
+              "labelIndex": 2294,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SP-SP_1",
+                    "nameOfLocation": "rh_SP-SP_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SP-SP_2",
+              "labelIndex": 2295,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SP-SP_2",
+                    "nameOfLocation": "rh_SP-SP_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SP-SP_3",
+              "labelIndex": 2296,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SP-SP_3",
+                    "nameOfLocation": "rh_SP-SP_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_SP-SP_4",
+              "labelIndex": 2297,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_SP-SP_4",
+                    "nameOfLocation": "rh_SP-SP_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "fdd0d3c1-b7d3-423b-9427-ffa5f690413f": {
+                    "name": "Superior parietal cortex"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_ST-Ins_1",
+              "labelIndex": 2298,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_ST-Ins_1",
+                    "nameOfLocation": "rh_ST-Ins_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_ST-SM_1_1",
+              "labelIndex": 2299,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_ST-SM_1_1",
+                    "nameOfLocation": "rh_ST-SM_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  },
+                  "031baeb1-2840-402c-94ba-73ebc1062873": {
+                    "name": "Supramarginal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_ST-ST_1",
+              "labelIndex": 2300,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_ST-ST_1",
+                    "nameOfLocation": "rh_ST-ST_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_ST-ST_2",
+              "labelIndex": 2301,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_ST-ST_2",
+                    "nameOfLocation": "rh_ST-ST_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_ST-ST_3",
+              "labelIndex": 2302,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_ST-ST_3",
+                    "nameOfLocation": "rh_ST-ST_3",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_ST-ST_4",
+              "labelIndex": 2303,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_ST-ST_4",
+                    "nameOfLocation": "rh_ST-ST_4",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_ST-ST_5",
+              "labelIndex": 2304,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_ST-ST_5",
+                    "nameOfLocation": "rh_ST-ST_5",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "5834f6a2-70d3-463a-9aa9-b100eee68b5c": {
+                    "name": "Superior temporal gyrus"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Tr-Ins_1_1",
+              "labelIndex": 2305,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Tr-Ins_1_1",
+                    "nameOfLocation": "rh_Tr-Ins_1_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "bd978cc2-8546-4b7b-bd48-f4216943ba8b": {
+                    "name": "Pars triangularis"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Tr-Ins_2",
+              "labelIndex": 2306,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Tr-Ins_2",
+                    "nameOfLocation": "rh_Tr-Ins_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "bd978cc2-8546-4b7b-bd48-f4216943ba8b": {
+                    "name": "Pars triangularis"
+                  },
+                  "c1d72383-7c59-469d-889e-52123f005b85": {
+                    "name": "Insula"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Tr-Tr_1",
+              "labelIndex": 2307,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Tr-Tr_1",
+                    "nameOfLocation": "rh_Tr-Tr_1",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "bd978cc2-8546-4b7b-bd48-f4216943ba8b": {
+                    "name": "Pars triangularis"
+                  }
+                }
+              }
+            },
+            {
+              "name": "rh_Tr-Tr_2",
+              "labelIndex": 2308,
+              "children": [],
+              "fullId": {
+                "sands": {
+                  "d2912956684aa38c46a72ca2b357d248866e2242": {
+                    "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                    "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                    "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-rh_Tr-Tr_2",
+                    "nameOfLocation": "rh_Tr-Tr_2",
+                    "parentStructure": {
+                      "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                      "nameOfLocation": "Right hemisphere"
+                    }
+                  }
+                },
+                "minds/core/parcellationregion/v1.0.0": {
+                  "bd978cc2-8546-4b7b-bd48-f4216943ba8b": {
+                    "name": "Pars triangularis"
+                  }
+                }
+              }
+            }
+          ],
+          "fullId": {
+            "sands": {
+              "d2912956684aa38c46a72ca2b357d248866e2242": {
+                "$schema": "https://github.com/HumanBrainProject/SANDS/raw/d2912956684aa38c46a72ca2b357d248866e2242/v0.1/core/anatomicalEntity.schema.json",
+                "@type": "https://schema.hbp.eu/sands/AnatomicalEntity",
+                "@id": "sands/v0.1/core/anatomicalEntity/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c-right-hemisphere",
+                "nameOfLocation": "Right hemisphere"
+              }
+            }
+          }
+        }
+      ],
+      "_": {
+        "@src": "https://gin.g-node.org/FZJ-INM1-BDA/20201005-superficial-white-matter-HCP/raw/master/output/nehubaUI/short-bundle-hcp.json"
+      }
     },{
       "@id": "juelich/iav/atlas/v1.0.0/8",
       "fullId": "juelich/iav/atlas/v1.0.0/8",
diff --git a/src/res/ext/MNI152NehubaConfig.json b/src/res/ext/MNI152NehubaConfig.json
index b155b9172f98d720ddc07f7cb46e614044c42057..20f685aeaf022076f14029c38f69ca59acf91330 100644
--- a/src/res/ext/MNI152NehubaConfig.json
+++ b/src/res/ext/MNI152NehubaConfig.json
@@ -158,7 +158,7 @@
         "julich brain mni152 v22 left": {
           "type": "segmentation",
           "visible": false,
-          "source": "precomputed://https://neuroglancer-dev.humanbrainproject.org/precomputed/data-repo/20200807_julich_brain_v2_mni152_left/precomputed",
+          "source": "precomputed://https://neuroglancer.humanbrainproject.org/precomputed/data-repo/20200807_julich_brain_v2_mni152_left/precomputed",
           "transform": [
             [
               1,
@@ -189,7 +189,7 @@
         "julich brain mni152 v22 right": {
           "type": "segmentation",
           "visible": false,
-          "source": "precomputed://https://neuroglancer-dev.humanbrainproject.org/precomputed/data-repo/20200807_julich_brain_v2_mni152_right/precomputed",
+          "source": "precomputed://https://neuroglancer.humanbrainproject.org/precomputed/data-repo/20200807_julich_brain_v2_mni152_right/precomputed",
           "transform": [
             [
               1,
@@ -346,6 +346,39 @@
             ]
           ]
         },
+        "superficial-white-bundle-HCP": {
+          "transform": [
+            [
+              1,
+              0,
+              0,
+              -96500000
+            ],
+            [
+              0,
+              1,
+              0,
+              -132500000
+            ],
+            [
+              0,
+              0,
+              1,
+              -78500000
+            ],
+            [
+              0,
+              0,
+              0,
+              1
+            ]
+          ],
+          "type": "segmentation",
+          "source": "precomputed://https://neuroglancer.humanbrainproject.eu/precomputed/data-repo/20201111-superficial-whitematter-ng-volume/precomputed",
+          "_": {
+            "@src": "https://gin.g-node.org/FZJ-INM1-BDA/20201111-superficial-whitematter-ng-volume/src/6bcd8428556cce104b646de1fe8ef14aa9009728/output/nehuba-ui/nehuba-ui-config-prettified.json"
+          }
+        },
         "DiFuMo Atlas (64 dimensions)": {
           "type": "segmentation",
           "visible": false,
diff --git a/src/res/ext/atlas/atlas_multiLevelHuman.json b/src/res/ext/atlas/atlas_multiLevelHuman.json
index fdbb4afc693d56c5f4dfcdb902b4d72b6243630f..9f2c680338253486a3dd1f26a3c7ed552b2780ba 100644
--- a/src/res/ext/atlas/atlas_multiLevelHuman.json
+++ b/src/res/ext/atlas/atlas_multiLevelHuman.json
@@ -25,6 +25,10 @@
           "name": "Short Bundle",
           "@id": "juelich/iav/atlas/v1.0.0/6"
         },
+        {
+          "ngId": "superficial-white-bundle-HCP",
+          "@id": "juelich/iav/atlas/v1.0.0/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c"
+        },
         {
           "name": "64 dimensions",
           "@id": "minds/core/parcellationatlas/v1.0.0/d80fbab2-ce7f-4901-a3a2-3c8ef8a3b721"
@@ -201,6 +205,20 @@
         }
       ]
     },
+    {
+      "ngId": "superficial-white-bundle-HCP",
+      "@id": "juelich/iav/atlas/v1.0.0/79cbeaa4ee96d5d3dfe2876e9f74b3dc3d3ffb84304fb9b965b1776563a1069c",
+      "groupName": "Fibre tracts",
+      "availableIn": [
+        {
+          "@id": "minds/core/referencespace/v1.0.0/dafcffc5-4826-4bf1-8ff6-46b8a31ff8e2",
+          "name": "MNI 152 ICBM 2009c Nonlinear Asymmetric",
+          "originalDatasetFormats": [{
+            "name": "probability map"
+          }]
+        }
+      ]
+    },
     {
       "name": "64 dimensions",
       "@id": "minds/core/parcellationatlas/v1.0.0/d80fbab2-ce7f-4901-a3a2-3c8ef8a3b721",
diff --git a/src/ui/databrowserModule/databrowser.service.ts b/src/ui/databrowserModule/databrowser.service.ts
index fb1c8cc099a9121d61057e368e8c69017c079a5c..7c8ccc1dfc1d9b1de747ded340616cf1bc3cae5f 100644
--- a/src/ui/databrowserModule/databrowser.service.ts
+++ b/src/ui/databrowserModule/databrowser.service.ts
@@ -17,7 +17,7 @@ import { NO_METHODS } from "./util/filterDataEntriesByMethods.pipe";
 import { FilterDataEntriesByRegion } from "./util/filterDataEntriesByRegion.pipe";
 import { datastateActionToggleFav, datastateActionUnfavDataset, datastateActionFavDataset } from "src/services/state/dataState/actions";
 
-import { getIdFromFullId } from 'common/util'
+import { getStringIdsFromRegion } from 'common/util'
 import { viewerStateSelectorNavigation } from "src/services/state/viewerState/selectors";
 
 const noMethodDisplayName = 'No methods described'
@@ -271,21 +271,34 @@ export class DatabrowserService implements OnDestroy {
   public fetchingFlag: boolean = false
   private mostRecentFetchToken: any
 
-  private memoizedDatasetByRegion = new Map<string, Observable<IDataEntry>>()
-  private getDatasetsByRegion(region: { fullId: string }){
-    const fullId = getIdFromFullId(region.fullId)
-    if (this.memoizedDatasetByRegion.has(fullId)) return this.memoizedDatasetByRegion.get(fullId)
-    const obs$ =  this.http.get<IDataEntry>(
-      `${this.constantService.backendUrl}datasets/byRegion/${encodeURIComponent(fullId)}`,
-      {
-        headers: this.constantService.getHttpHeader(),
-        responseType: 'json'
+  private memoizedDatasetByRegion = new Map<string, Observable<IDataEntry[]>>()
+  private getDatasetsByRegion(region: { fullId: any }){
+    const fullIds = getStringIdsFromRegion(region) as string[]
+
+    for (const fullId of fullIds) {
+      if (!this.memoizedDatasetByRegion.has(fullId)) {
+        const obs$ =  this.http.get<IDataEntry[]>(
+          `${this.constantService.backendUrl}datasets/byRegion/${encodeURIComponent(fullId)}`,
+          {
+            headers: this.constantService.getHttpHeader(),
+            responseType: 'json'
+          }
+        ).pipe(
+          shareReplay(1),
+        )
+        this.memoizedDatasetByRegion.set(fullId, obs$)
       }
+    }
+
+    return forkJoin(
+      fullIds.map(fullId => this.memoizedDatasetByRegion.get(fullId))
     ).pipe(
-      shareReplay(1),
+      map(array => array.reduce((acc, currArr) => {
+        return acc.concat(
+          currArr.filter(ds => !new Set(acc.map(ds => ds['fullId'])).has(ds['fullId']))
+        )
+      }, []))
     )
-    this.memoizedDatasetByRegion.set(fullId, obs$)
-    return obs$
   }
 
   private lowLevelQuery(templateName: string, parcellationName: string): Promise<IDataEntry[]> {
diff --git a/src/ui/databrowserModule/databrowser/databrowser.base.ts b/src/ui/databrowserModule/databrowser/databrowser.base.ts
index a3ec2a4fc14a666b57f166b8bd23dfbb7e85d7f3..c2c8279a94419ca203a44a2a011aa6c9c5b098d3 100644
--- a/src/ui/databrowserModule/databrowser/databrowser.base.ts
+++ b/src/ui/databrowserModule/databrowser/databrowser.base.ts
@@ -3,8 +3,9 @@ import { LoggingService } from "src/logging"
 import { DatabrowserService } from "../singleDataset/singleDataset.base"
 import { Observable, Subject, Subscription } from "rxjs"
 import { IDataEntry } from "src/services/stateStore.service"
-import { getIdFromFullId, setsEql } from 'common/util'
+import { setsEql } from 'common/util'
 import { switchMap, tap } from "rxjs/operators"
+import { getStringIdsFromRegion, flattenReducer } from 'common/util'
 
 export class DatabrowserBase implements OnDestroy{
 
@@ -21,10 +22,10 @@ export class DatabrowserBase implements OnDestroy{
   }
   @Input()
   set regions(arr: any[]){
-    const currentSet = new Set(this._regions.map(r => getIdFromFullId(r.fullId)))
-    const newSet = new Set(arr.map(r => getIdFromFullId(r.fullId)).filter(v => !!v))
+    const currentSet = new Set(this._regions.map(r => getStringIdsFromRegion(r)).reduce(flattenReducer, []))
+    const newSet = new Set(arr.map(r => getStringIdsFromRegion(r)).reduce(flattenReducer, []).filter(v => !!v))
     if (setsEql(newSet, currentSet)) return
-    this._regions = arr.filter(r => !!getIdFromFullId(r.fullId))
+    this._regions = arr.filter(r => !getStringIdsFromRegion(r).every(id => !id))
     this.regions$.next(this._regions)
   }
 
diff --git a/src/ui/regionalFeatures/regionalFeature.service.ts b/src/ui/regionalFeatures/regionalFeature.service.ts
index faa71b067870bdcaf85f4f39443a6b0d3fd800dd..8e47bfeb5b62c14e243bb2df909d2af5e4030ba0 100644
--- a/src/ui/regionalFeatures/regionalFeature.service.ts
+++ b/src/ui/regionalFeatures/regionalFeature.service.ts
@@ -1,9 +1,9 @@
 import { HttpClient } from "@angular/common/http";
 import { Injectable, OnDestroy } from "@angular/core";
 import { PureContantService } from "src/util";
-import { getIdFromFullId, getRegionHemisphere } from 'common/util'
+import { getIdFromFullId, getRegionHemisphere, getStringIdsFromRegion, flattenReducer } from 'common/util'
 import { forkJoin, Subject, Subscription } from "rxjs";
-import { switchMap } from "rxjs/operators";
+import { map, switchMap } from "rxjs/operators";
 import { IHasId } from "src/util/interfaces";
 import { select, Store } from "@ngrx/store";
 import { viewerStateSelectedTemplateSelector } from "src/services/state/viewerState/selectors";
@@ -47,7 +47,7 @@ export class RegionalFeaturesService implements OnDestroy{
   public getAllFeaturesByRegion(region: {['fullId']: string}){
     if (!region.fullId) throw new Error(`getAllFeaturesByRegion - region does not have fullId defined`)
     const regionFullId = getIdFromFullId(region.fullId)
-
+    const regionFullIds = getStringIdsFromRegion(region)
     const hemisphereObj = (() => {
       const hemisphere = getRegionHemisphere(region)
       return hemisphere ? { hemisphere } : {}
@@ -56,31 +56,35 @@ export class RegionalFeaturesService implements OnDestroy{
     const refSpaceObj = this.templateSelected && this.templateSelected.fullId
       ? { referenceSpaceId: getIdFromFullId(this.templateSelected.fullId) }
       : {}
-
-    return this.http.get<{features: IHasId[]}>(
-      `${this.pureConstantService.backendUrl}regionalFeatures/byRegion/${encodeURIComponent( regionFullId )}`,
-      {
-        params: {
-          ...hemisphereObj,
-          ...refSpaceObj,
-        },
-        responseType: 'json'
-      }
-    ).pipe(
-      switchMap(({ features }) => forkJoin(
-        features.map(({ ['@id']: featureId }) => 
-          this.http.get<IFeature>(
-            `${this.pureConstantService.backendUrl}regionalFeatures/byRegion/${encodeURIComponent( regionFullId )}/${encodeURIComponent( featureId )}`,
-            {
-              params: {
-                ...hemisphereObj,
-                ...refSpaceObj,
-              },
-              responseType: 'json'
-            }
+    
+    return forkJoin(
+      regionFullIds.map(regionFullId => this.http.get<{features: IHasId[]}>(
+        `${this.pureConstantService.backendUrl}regionalFeatures/byRegion/${encodeURIComponent( regionFullId )}`,
+        {
+          params: {
+            ...hemisphereObj,
+            ...refSpaceObj,
+          },
+          responseType: 'json'
+        }
+      ).pipe(
+        switchMap(({ features }) => forkJoin(
+          features.map(({ ['@id']: featureId }) => 
+            this.http.get<IFeature>(
+              `${this.pureConstantService.backendUrl}regionalFeatures/byRegion/${encodeURIComponent( regionFullId )}/${encodeURIComponent( featureId )}`,
+              {
+                params: {
+                  ...hemisphereObj,
+                  ...refSpaceObj,
+                },
+                responseType: 'json'
+              }
+            )
           )
-        )
-      )),
+        )),
+      ))
+    ).pipe(
+      map((arr: IFeature[][]) => arr.reduce(flattenReducer, []))
     )
   }